From 2c0c455b5c1f893e9c5d60eebe8a96bf493cda97 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Mon, 21 Oct 2024 07:54:51 +0200 Subject: [PATCH] Upgrade tools --- .github/workflows/analyzers.yaml | 3 +- .github/workflows/code-style.yaml | 2 +- .github/workflows/functional.yaml | 2 +- .github/workflows/tests.yaml | 4 +- .phive/phars.xml | 8 +- composer.json | 2 +- infection.json.dist | 7 +- src/Executor/AsyncTaskExecutor.php | 2 + src/Finder/PhpExecutableFinder.php | 2 +- src/Result/ResultMap.php | 4 +- src/Scripts/ParallelScript.php | 2 +- .../Unit/Exception/ParallelExceptionTest.php | 9 +- tests/Unit/Finder/PhpExecutableFinderTest.php | 22 + tests/Unit/Scripts/ParallelScriptTest.php | 30 +- tools/full-coverage-check.php | 2 +- tools/infection.phar | Bin 1025342 -> 1011925 bytes tools/php-cs-fixer.phar | Bin 2684413 -> 3229161 bytes tools/phpunit.phar | 161473 ++++++++------- tools/psalm.phar | Bin 12090660 -> 12650343 bytes 19 files changed, 86810 insertions(+), 74764 deletions(-) diff --git a/.github/workflows/analyzers.yaml b/.github/workflows/analyzers.yaml index da30d9e..b2eb05f 100644 --- a/.github/workflows/analyzers.yaml +++ b/.github/workflows/analyzers.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: @@ -23,3 +23,4 @@ jobs: run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} - name: Run the tests run: composer run psalm + continue-on-error: ${{ matrix.php-versions == '8.4'}} diff --git a/.github/workflows/code-style.yaml b/.github/workflows/code-style.yaml index 01a6757..1c63cc5 100644 --- a/.github/workflows/code-style.yaml +++ b/.github/workflows/code-style.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: diff --git a/.github/workflows/functional.yaml b/.github/workflows/functional.yaml index 62e9a01..2e2b2de 100644 --- a/.github/workflows/functional.yaml +++ b/.github/workflows/functional.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest, windows-latest, macos-latest] - php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c4670f6..8bd979a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: @@ -24,4 +24,4 @@ jobs: - name: Run the tests run: composer run tests - name: Check tests quality - run: composer parallel coverage infection || true + run: composer parallel coverage infection diff --git a/.phive/phars.xml b/.phive/phars.xml index 696eec2..40ee428 100644 --- a/.phive/phars.xml +++ b/.phive/phars.xml @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/composer.json b/composer.json index 3c9bd78..b124b38 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "composer-plugin-api": "~2.0" }, "require-dev": { diff --git a/infection.json.dist b/infection.json.dist index e2edb8d..bbf3cde 100644 --- a/infection.json.dist +++ b/infection.json.dist @@ -13,6 +13,11 @@ "text": "infection.log" }, "mutators": { - "@default": true + "@default": true, + "CastInt": { + "ignore": [ + "ComposerRunParallel\\Scripts\\ParallelScript::__invoke" + ] + } } } \ No newline at end of file diff --git a/src/Executor/AsyncTaskExecutor.php b/src/Executor/AsyncTaskExecutor.php index ac800c8..2dff2f2 100644 --- a/src/Executor/AsyncTaskExecutor.php +++ b/src/Executor/AsyncTaskExecutor.php @@ -41,6 +41,8 @@ public function __invoke(string $task, array $args): PromiseInterface * @param list $args * * @throws ParallelException + * + * @psalm-suppress RiskyTruthyFalsyComparison */ private function buildProcess(string $task, array $args): string { diff --git a/src/Finder/PhpExecutableFinder.php b/src/Finder/PhpExecutableFinder.php index 971b88d..c9a5123 100644 --- a/src/Finder/PhpExecutableFinder.php +++ b/src/Finder/PhpExecutableFinder.php @@ -32,7 +32,7 @@ public static function default(): self public function __invoke(): string { $phpPath = $this->finder->find(false); - if (!$phpPath) { + if (false === $phpPath) { throw ParallelException::phpBinaryNotFound(); } diff --git a/src/Result/ResultMap.php b/src/Result/ResultMap.php index 4a4677f..19952ee 100644 --- a/src/Result/ResultMap.php +++ b/src/Result/ResultMap.php @@ -59,7 +59,7 @@ public function listFailedTasks(): array } /** - * @throws ParallelException + * @throws ParallelException * * @return list */ @@ -96,7 +96,7 @@ public function getResultCode(): int */ public function conclude( callable $onSuccess, - callable $onFailure + callable $onFailure, ) { $resultCode = $this->getResultCode(); diff --git a/src/Scripts/ParallelScript.php b/src/Scripts/ParallelScript.php index 6501041..753d7ed 100644 --- a/src/Scripts/ParallelScript.php +++ b/src/Scripts/ParallelScript.php @@ -61,7 +61,7 @@ public function __invoke(Event $event): int static function (Process $process) use ($task, $io, $resultMap): void { $resultMap->registerResult($task, (int) $process->getExitCode()); - $io->write('Finished task '.$task.''); + $io->write(sprintf('Finished task %s', $task)); $io->writeError($process->getErrorOutput()); $io->write([$process->getOutput(), '']); } diff --git a/tests/Unit/Exception/ParallelExceptionTest.php b/tests/Unit/Exception/ParallelExceptionTest.php index 4ce3274..fb1bbe8 100644 --- a/tests/Unit/Exception/ParallelExceptionTest.php +++ b/tests/Unit/Exception/ParallelExceptionTest.php @@ -16,6 +16,7 @@ final class ParallelExceptionTest extends TestCase public function it_can_throw_exception_on_invalid_amount_of_tasks(): void { $this->expectException(ParallelException::class); + $this->expectExceptionMessage('Expected at least 1 task to run in parallel!'); throw ParallelException::atLeastOneTask(); } @@ -24,7 +25,7 @@ public function it_can_throw_exception_on_invalid_amount_of_tasks(): void public function it_can_throw_exception_on_unkown_task(): void { $this->expectException(ParallelException::class); - $this->expectExceptionMessage('taskName'); + $this->expectExceptionMessage('Script "taskName" is not defined in this package'); throw ParallelException::invalidTask('taskName'); } @@ -33,7 +34,7 @@ public function it_can_throw_exception_on_unkown_task(): void public function it_can_throw_exception_on_no_result_yet_for_task(): void { $this->expectException(ParallelException::class); - $this->expectExceptionMessage('taskName'); + $this->expectExceptionMessage('Received no result for task taskName yet.'); throw ParallelException::noResultForTaskYet('taskName'); } @@ -42,6 +43,9 @@ public function it_can_throw_exception_on_no_result_yet_for_task(): void public function it_can_throw_exception_if_composer_does_not_contain_executor(): void { $this->expectException(ParallelException::class); + $this->expectExceptionMessage( + 'The composer Loop does not contain a ProcessExecutor. Please log an issue with detailed information on how to reproduce!' + ); throw ParallelException::noProcessExecutorDetected(); } @@ -50,6 +54,7 @@ public function it_can_throw_exception_if_composer_does_not_contain_executor(): public function it_can_throw_exception_if_php_binary_cannot_be_found(): void { $this->expectException(ParallelException::class); + $this->expectExceptionMessage('Failed to locate PHP binary to execute.'); throw ParallelException::phpBinaryNotFound(); } diff --git a/tests/Unit/Finder/PhpExecutableFinderTest.php b/tests/Unit/Finder/PhpExecutableFinderTest.php index 6f7ece8..e71ba20 100644 --- a/tests/Unit/Finder/PhpExecutableFinderTest.php +++ b/tests/Unit/Finder/PhpExecutableFinderTest.php @@ -4,6 +4,7 @@ namespace ComposerRunParallel\Test\Unit\Executor; +use Composer\Util\ProcessExecutor; use ComposerRunParallel\Exception\ParallelException; use ComposerRunParallel\Finder\PhpExecutableFinder; use PHPUnit\Framework\TestCase; @@ -27,6 +28,27 @@ public function it_throws_exception_on_php_executable_not_found(): void $phpExecutableFinder(); } + /** @test */ + public function it_can_find_executable(): void + { + $finder = $this->createMock(SymfonyPhpExecutableFinder::class); + $finder->method('find')->with(false)->willReturn('php'); + + $phpExecutableFinder = new PhpExecutableFinder($finder); + $actual = $phpExecutableFinder(); + + $allowUrlFOpenFlag = '-d allow_url_fopen='.ProcessExecutor::escape(ini_get('allow_url_fopen')); + $disableFunctionsFlag = '-d disable_functions='.ProcessExecutor::escape(ini_get('disable_functions')); + $memoryLimitFlag = '-d memory_limit='.ProcessExecutor::escape(ini_get('memory_limit')); + + self::assertSame( + <<method('find')->willReturn('php'); $finder->method('findArguments')->willReturn([]); + // Composer comes with symfony console 2.8, which has deprecated methods: + // Deprecated: Return type of Symfony\Component\Console\Helper\HelperSet::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, + // Since it's a composer dependency, we can't change it, so we need to suppress the deprecation notice + // Let's mute it for now. + $previousErrorLevel = error_reporting(0); $this->io = new BufferIO(); + error_reporting($previousErrorLevel); $dispatcher = $this->createMock(EventDispatcher::class); $dispatcher ->method('hasEventListeners') ->will($this->returnCallback( - static fn (Event $event) => in_array($event->getName(), ['task1', 'task2'], true) + static fn (Event $event) => in_array($event->getName(), ['task1', 'task2', 'task3', 'task4'], true) )); $this->composer = new Composer(); @@ -81,36 +87,48 @@ public function it_fails_if_a_task_is_not_known(): void public function it_can_successfully_run_scripts_in_parallel(): void { $this->processExecutor->method('executeAsync')->willReturn( + $this->createProcessResult(true), $this->createProcessResult(true) ); - $result = ($this->script)($this->createEvent(['task1'])); + $result = ($this->script)($this->createEvent(['task1', 'task2'])); self::assertEquals(0, $result); $output = $this->io->getOutput(); - self::assertStringContainsString('Finished running: '.PHP_EOL.'task1', $output); + self::assertStringContainsString('Running tasks in parallel:'.PHP_EOL.'task1'.PHP_EOL.'task2'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task1'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task2'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Finished running: '.PHP_EOL.'task1'.PHP_EOL.'task2', $output); } /** @test */ public function it_can_insuccessfully_run_scripts_in_parallel(): void { $this->processExecutor->method('executeAsync')->willReturn( + $this->createProcessResult(false), + $this->createProcessResult(true), $this->createProcessResult(false), $this->createProcessResult(true) ); $exception = null; try { - ($this->script)($this->createEvent(['task1', 'task2'])); + ($this->script)($this->createEvent(['task1', 'task2', 'task3', 'task4'])); } catch (ScriptExecutionException $exception) { } self::assertInstanceOf(ScriptExecutionException::class, $exception); + self::assertSame(1, $exception->getCode()); $output = $this->io->getOutput(); - self::assertStringContainsString('Succesfully ran: '.PHP_EOL.'task2', $output); - self::assertStringContainsString('Failed running: '.PHP_EOL.'task1', $output); + self::assertStringContainsString('Running tasks in parallel:'.PHP_EOL.'task1'.PHP_EOL.'task2'.PHP_EOL.'task3'.PHP_EOL.'task4'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task1'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task2'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task3'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Finished task task4'.PHP_EOL.'stderr'.PHP_EOL.'stdout'.PHP_EOL, $output); + self::assertStringContainsString('Succesfully ran: '.PHP_EOL.'task2'.PHP_EOL.'task4', $output); + self::assertStringContainsString('Failed running: '.PHP_EOL.'task1'.PHP_EOL.'task3', $output); self::assertStringContainsString('Not all tasks could be executed successfully!', $output); } diff --git a/tools/full-coverage-check.php b/tools/full-coverage-check.php index 52bc809..9cc2e22 100755 --- a/tools/full-coverage-check.php +++ b/tools/full-coverage-check.php @@ -11,7 +11,7 @@ $checkedElements = (int) current($xml->xpath('/coverage/project/metrics/@coveredelements')); $coverage = round(($checkedElements / $totalElements) * 100, 2); - if ($coverage !== 100) { + if ($coverage !== 100.0) { echo('Expected coverage of 100%, only got '.$coverage.'%.'.PHP_EOL); exit(1); } diff --git a/tools/infection.phar b/tools/infection.phar index accd900091f0b30e4fc697aab14400a322d0f7d8..257191b97d9f90200b965e27752494e0f12255e3 100755 GIT binary patch delta 900058 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

#o*| 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ⅈgGE!xw6nUYV> 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%0Aqk z_x-&|Qboj%!nPdqho52A@oRU8xV#rx<>!QN_g$R-YH5xUT>>f51`2_te0jg+A`=7c zL(WOx=Qp^*I@UMu+O#{J9?AET?Cq@XVedRSjFJ}fOE=(;X6X0T$sVO^{LLJ5Tt)ux zAhA-Zzu~ohos$UhGcmH3oOF=fq)BLNjfku+-ofW6SC@S-3jWk5e{~Ryk6shHJUvi%)MC zZ7+}wzVr8iP%K#q!zG5J;W=dyNIoNDE2WngVgvP7;XZ_$GD$k>H%@wc(}K0-j+dW7 z!S47CHjtB}%_5La_&2c(&22dhk4PNeyZNt7t5=lQ~y5GGw znKUopP_H^iuvnC|In#^23JG5l@o&p07!IB0MiW-0H_TSC&g?fD=}sUz#b{=JwdY#RzBA%S;dRm;ZjdJPsBZSr}XA*_{7&mUEGlLZZ=#AS1B-=p4yKz4{ z(AL~8(1C|*MZGMRDf&jD&>85)T=6)pg4(qjZuECg2_;z0W}4K?o0N$>cND+2;A1UA zRCFwaD2zOcbT8gFv-sDb&im0qdTJ691AgKUXPQe*iTifX7X2M&bwvrIv5jY6mXF*9 zsLt7Xr=cj$p?SvPOOI&x>4I*$_xCVX;PIv}C0L8}ASEWlRUJuv^26PgD}C+bRly5! zGVNR>n`2c-L&)}f)4lr^QMcOv-N^Yr8#*E2q~*(;*fbQ?i5kzO)nDWznM*cLN2b%` z$k?C7zF#Ms^2zH#^%EZbq@MHe*!Fwgzqe~=2qqp#Q4JOTZ_yB0{(a$3rX_#^t&_)S z6?LP2kd8aCcl5g`0?6Zh9w&8I`G~qcprh^R``f;=U7s>eACxx-?M1;)__b(IfYo7C zxK`DMneVMk=|^hi*-ziWo0ohx&{B5(W$eQD`*BOB#>TELg2+@hR_))JOok7hz_||_ zCq}ePj2!>@)*H$1j3exG6&Aqw&fvmL|3GCy<7Yui|Ir@!S=a!Vbqm&xL|DZ~J9;-` zd-RV$XOxu&Yr9xh-$wOQ+67qTcbMP)Y43C#&^1pc;QR0{I!^nsxEUj5>xjc09$H_f zH3#EGIE&LxC7C2yWBH1O1pmCI;{7b~tqzidp88c*0qw{36|E}^K}DcEA*eW|aa&q} zzYo1%+k?f6?(YO!_L?d-2l;cbTDvNw48(n!aXjjuz^0}xmtGytRVgXqXBzfY)R_?` z#JrEl?ZO^P3zc|Acw-9Q{V&9JW#9=_^Qjc4E`9^9*l*M zKqI&N#xNV^8kU{M^3T_?ZmDJD;}jcylLPj9x@h(oQmwwpUYmu7Yz|>hf8T&O3Qq%r zDjI&-Lu9pp?8mQ1*y2qPHL)u}F5mUN!kjx!lA|la)u-|88YG|?YvU~v_at6e#V4VE zJ>bm2ZAIYNu$JcpQfp#rX5AbywJ>Gj0^N4;h0&JsP=vC26e?KB|`b zdPx7Byiee8>QPqdnZH~(VdQ8<7u%tUZ_ojq&R*S0ro9sU2iyQh#SJQ*H=8Za!@K8Iw-@$J2mM-oJu`(XLCNr=&sLp9OIm2>9wshW&j62pM z;{R7#>hP>9^Dvsbp7Lbq(G)53<-bFekY&I3&tZF& z_s7PIJV!_S*tOQExpE$<;w%^#g|_J1oh!7bEaI?^@bv_0LCMVN^{7nKr}PRMNEa+{Uo7$uV-o3>bcH<- zD~v1B22^64v;h2K3JULH53q%u{BvFS<2(q; z07`nu0upUCxbaoeZ^a{X#9QsY_Y9Rv3@Z`GL39bxc{BX`E52huorB&`)EC$!Fa7c^rBNT!;`ak-QdWS<@YbReLs+gcBfa*cp_#% zCZ{{lhT(<}9A4DBk8fto@c~{-#5AD<}LMTGDBsVEw-$sTy%W5dC9UCCbAT&Ij3dDK&88 zj^8^3i~GA1eBNTId|hUv1Q}z}S@uY)sQ=K_g2qPNHz8WgZ;43mTjCDyqEJ1`gh$w+ z3{KWmvKQ3r=+o!7M#t&Y*RAv$*p%WzMYx+?O&tO$^q%lq{q(lyQkCw`vwu-`s%JaH zq}wK_&KZRQyrrK(I0JFNy$d_4i*!0{|C%UDVKdOTZwzS)i-Q#rw2 z-X#t8yj@*&53E+AZt3+4wtxv{0tkBNB{K>Uj7q|u9_?}C{- z{=%qChNO9#?^)qXgu+M3|HQ?ls-Wy?Gu1`*M8G`Epja7=+YVEH%PdK!L(WE)zju{b z^3J3VYP`F45ovg+hTeuV(?=4ng0;q=tK#bl3Oxu?YPL>qUq7Ui^uXmjjsa7TZa0FF zZU=yPvI}WpUR{*}VyZYuapxS78e?+UODTY~h{%ARElDj-P>?dldVy5A{>eESgIE>K zHP(APyxluc9I9u+DB>xIgi$#jLW3@w*r)7gcp4qUq;i~-7nP)D7yf|d6`Y#e{y z&Qv$-85eXp*O8WVVZ$R3{0-?u#-=(c_X3b{@jStwCH?a)?IG#4*B=b=mw;)19m6s2 z4qz3qF)EA9ePcEw7>PY@||PA&hpVpTV|EEo)^$-gIzt0gV=aA&tJ zH&_NuFj8;G#w0h0j}L9_tmnLT-m_Z50x#l!{c*87H5Pu1^Mk38lri=rBo@NiZMOm| z!fv9Qt3>+rlOr)OOt9qx5!n@+HL3S8rWq5)0u_Bm8w$mWN#*uBE{n4XZI0EuyZJ-5 zt76tMll5!toa`r9^x&0TK~*qA+Pbwzmp*0PfG1k6*>4Wqa{_xW+pz7pP83IrqRAL| zyamF^1RJ1M(ZI}Ndny?w3h(=|4-QaG0&Tks;x_@+3vH2Z+G->TH?t6?hXCTRgYU9T zz~c1j3_gaYf+uW5#aT4kM?8cq<0d#}Z2{S4jZR5sFZ-L)?v$L33Paxc5OA3Ixuv zMdCAw`V&5Se<3xC`Pa$SWWBe<>6eJ5>~y6v7EUhG2Th>T)(RXNB!D-|GCJ={4LNuA zcItOZ6t)A@yA7ICk(-E1Rhdk~YzuSxupwmke4yk47Vy z51QJIcPIO5{A zDnI=F*0+r`J@a!0iOM;b;#dNpO0KS+^DH)f30qe62%{r3Ib&l+_A3Y!OE{3i@3)VL zg!lztD0EqUP;~(=&QVH|P>j^U?adK$&@GPL!YEr9-qfrnjU&gC{&Ux6kmE1ay@`js zp|GC&`^EvTWrH;DM^5e+YF#$E&}rfRgIMS%mOLB2VKLddaG*hc{x@$a2CPGjTTF;i zNJ>w5HOe;l-pY|uDri*%;O=kMZ6OzB1(F(%jHa;m_$hF%nP=Z&8JIQuL2$d&rqY9A zdou7WtV03&IZy>@?)NIEE!WDTc2|JR`lr$^pDy-X^gB5+>TaMXRyeLEM1IBPndJ^o z12vnly)zS(V?U^KodIG)re9r6(2~Kw2&G0I0hZ#_pWmx?*VQ(W%w^k|A*wYM0=>!D zi0Sarf7b$;cK%vU8Mo*a-UgLdZsf-8oQP8Gj1!+lme2;#r?FwPer=N)nwvxUx;7mJ z!zK%!`|KQW_d0AHCeFg1xFetHB(M53bQ-V3LvXt{b37nE_9lt^rXHsAWa=rXUY z!8O9z@m628v@$B0^Kc-3p7So?Po$kMg{62fC#%hejXP*u-^mVX#EH?zC2i0NfH%x@ zQ^j3h(y|>h<<)nS1|8WHuA`LR%0rv6h&dVr>6aHZuz4{W_?X@csI962Hkc=N zUH3i{W4e89nGV!8#Qlg1_nh)H!T7-pYj?n-KH!w{tuHa13tV+*1940Ar&nA^i!GN( z%f;fp66u`S(TmWPu`#$uPp{Nw?T(FP?R;wP6NMf~)K2}YDv*hx{b{G4omDsEJlz`O zaS!UJqWoWs;Qz(w!JgnGC+V?A-3ulcq?VNTt&^5*?=v~gu)&hp?OnHn2vfM)1-vi) zo;R0mYQxN}urmwQf{;besgv!`mcCu?u*#-m(ltp+hv;S(xN;x6B^+i56}pk#MZ{-q zp$)@ECt!BS65c41O4vhVsfrfzt2@J5BABfe_c9wSRS2#X8alR&_d@Xa+c8}I40);4 zf|FXa7bJ+RrzyXnRz-~TW4ker0)CAjNbzi9C|EuVw~O0U)}KJShPZ|*$+r+f zlh%hRl(7ATdDJ?o*ErYb48lHJtI*wSY+|QEcZMWj=bpc%1B%S?)wYdZ)Z`s-safo{N1Ixh8@UfF9r2p8D6x4m2-bqm1x+ zJcp|6o<>~?lDa~k?th2yo4S-JrvbShzn&RyCEI9Vcms`9{eS)VzaXU2DHY2_on^Gd zB-Jb6Y86ey2bB9m6+fh&ir^~#UK3;{NJ(fu4#j=E_{31sUe1mC4RtN6Zq(0*3g3W|DlS_d|DoT1zjD zZ~Z#895klS5qyl83RUwZ(KvYxzaUFTYQ->-08*VYZb2mi|N73kNB|PEAdemkh*xWRLIdV?S86jXLHkV zty}Z)uXa8SD}Je~9(dQ2QBi}Xc=SQe#^crct9M%su*T+Ryrb$D2)U`PTdxcMcSuA} zB7xe5;Fp?($wkhdz#Rs0M~ZCYWy+MQd3HfWW7{g&GVIe zYZq3)yT#P?*R1gpT%Mj7oV%v^-0(2NunF00_MJ{EHuy#11PKcUt^A7!yrv9FMUYJH z4R(?=rJs5e&(j?h;XDv_*z!J2Gd6*J@@b;zz6qU^#j@8^lGcvbU#o*bC+u(x<6q&e zT_*Q{<2O`{07qWni*`Ktkr`>0|DcoQfTIM=$I=>+Sh2ONA8gNM)d}Y5&@n{s^XD|| z1}KSV)3|Tc6}8LdOwfP(%AGW5S@Umf~!t*td%1!ifSr zam9R$^(26W`#bfS=k_w9*i^TN6O&Ytz^^VYznbrVI1+Ee3p{yP2PRYka;I6GqZhq;$oE-u;75UyL@U~zJbj^Qe3`DRi(Vc29R~%<%&$v`Et!} z>7eN*AND>)Gfh9+{%!~@jr-M)$9)s`!=}aQkoHbHq(6=hA=J*JBH?ab)l;{9y|-JS z6!HT9H6k~!H8*yQq%KeA1T((#EYDbP2gO1NLTeCAGKAuRVMfejZl?>G zU2twPd41D(<0Lb<&fd=VKLM3gRym8Xty)F6Upx=>xc~b*!oHfBT-;iYPR(hEQA)^E zBSC|n)qM}BNpPflKr0b|{*cD!nd9TtTHNasfM-<+w#zEZtiyPBhaT;g23{FgpqWv( z7uGaWorAdFCa9Vsb`o0(7w>)C#$tzPq(#j>FrCYMTR1PPS7r{i74Y%bwOR5dOxp?FL>&LhaLb^ zB2LW{zg#T;h66y8#qXn<#=_)5<$xdkjFmY0z2+;#6GX{RNKR`h-3R{&TnLfibdC% z)<3Sy-*yI{hdj8$#W~9fgV0FfjH)Eu{$44V8QiKmYo@vl1y-8U(SoT^t{3!NYiso< zmX^{}%=J+mt!j?%w&ctCbQu!P88V!(X#~`)gXTl_6$JotWSgmW>`^EV*wMC*$*i)B z_^RNGj0r?Dq6nHUBn{#Ou68FhfewQrPs8t7MpYy_x<0y-sO&_O%5_SRsg=`eTP6~) zjTJ^UCfJD1lT^YSCPjfePK+;Br%7K8f#rYf){@hfWnD%G_(hqVzWrtKd)!yWfi*RH z+?Rg7tWQ8<&Cwf2K34Y$uKT*>V+?y8QGrLj{yu;W-%f4Eju*XU$FjV)fD6}OOcxE% z3R&-WL4-?V{o_^ft3Ak>i2*CUl30#D$GLv9+cR{(r8GA17iNzR7(kKVcqfLx%nBwS zkqasufD0;_m*5UjBdH*BChU3aAY6LYD3@P6AqCh>9KB~N;(YFYh<>;+hxigC6+>+o zvm>0;`or!jqNW=plCTIJ2{D;S3J-Xkz7sELVMr=jsk2Ba>La|}LD?OkRttu;ygk!s z{A=H+e8#hj75eY*H}w35jK=!REBA@GVgEKwC%GLAYIM0!$qTLuJvnz;S6 z`5t3h6Bta+s*Z=Y%j3n~Se3>eLM=Vn&?4^pAUHwLlFJjuRd#ykcpa=diTo3EvEY5d zQMsbJLEL@e>$|s$|6gOewR{KIv&IP5sgFirM=T)aFksP|pNWo$_}mPkrG6;k+Zyq? zreyPJ0ijY+pGAIJ<JIv}Bbwq2kFf86nJiCc{ z#IFh?#LTAQZaslEO$0)@D$1D_Oz2mSX-7N`t^)Z}0gjGq^X7`P(^Vcs;AJPJZnWg$ z(p0seOFtDOqEl623T+8sP2f7~G~A`u|GxUf8*Q!YwF~69=oWuvpLzTlfyor`Qr^SOuE?bI9Dwpms8{$pw+{0V3T+J<>|ayL2PsEi zEW((SR6gLvGB%#l@Wr7W?A)i8l_8ETz27{(ZuRrH-Xi!xK}`nO>}cj#SC{1_gZFlH z$6=2v-YC%S&}igAkBezqMu#7Vnd*wiaQG*ArbMI>5=$te%KTxD(<)ZRB_!=W?j|ci z_OpfNbiBKWzOB3K!I^l?CWGZ%_g8~Z|#Aa|eBl>{JrdCW~ z@EN!=;#MlenQmE&4WJ#KTOJbe&3a#f%gr>tpC^rX5DB%^J6sjRlFqQ?i{dEI{N^F(A8m zdEN6yqIx0QE*5wuU+bn^6FFz6K6x87!Z=n)I(^cU7P5x^2DgzTZiQs}XV$Fq_b%4_ z1V{6DsM-n8uvDHo{T=oa%r%0Z{P<+t4xx~QP&u=>!M9iXkxE;7opy}HNpF*H2{U9q zsyFgd8af(J;PQjZ-s6r*newH|ZgrCrsS36ETlf;rmktHwg0_;u0=+?YLEE@7Uq$Os zV?n&wWO|VJVMA1F$p=1rQi>wv=%56+76B3U_g@8kJRcE_k2tIH`!ufwa%ISdXjj9 zp2186;NZ>3dMB(^hxM(-IQGoZ{eeb72h3-QjrbZGwI>@sdb`f~CI|+M(5HUX!50{d zIl2LmL>ca-T#&O0*}NHY-zYkZXVhdLj1fmvMef5yd!=3b@NS%kvQeDS>B+L<;yYk2Cy*OEYy&SQ5jS@t#z?s!8V&dJkN;sDHq zQI$dF6H1qMREoConfpk`R^+c+|skv*iAbR3|*J$L#~n|;VB<8=5(tzip5 zaY4NAMYU2S#U?<WrDfK#PM)Q+tG%5>*ka4AXs%Phd{)pD1WPv!4)`WHP_MjM3)uRbM+BLblGYDVg; zvE9FHK$k$Nt`MgvVWY+7$LNE;cFHR#D`bfY*E0O6H;L6v)$TIJr&r|oBVW`AR95+t z&x?d;6t%Qmg(MPM=pQ(u=XW>F713WxLWT=VXAjDK*zJ}rI6JDdtn0&kLfYtN^2#7v z(OrBpQBnc;cRN~6OIWU}0%X9*tZUC`ygTvEB*EBND6*VLSm8z}NmxVDgCn%M6k|UM z-{qQ1nX^jX#!~38v;Egmk2R9gf7S6tBdM18RQV6!x-mQ9dM1w%DPd*gIqS{X z5FiNcoN3^91fKw16?NVlZ{`mn4$I9Bl(;1nkI)xxU4YUIYK=04F09lhulL8%(jW(U zLE+ekc8No>5v6d<&pWr^hCf5L)=Qxr6@*WRy0t_&^eiMd(PR`J#j6?oFn{;rFlPFF zi>cx5Ilcjis|O>HW!^4kvE@QAQ;2e!9Ctd#rDE|LKyGc)xFJ;Z2&s_n8^)#^fx3*8rH2g3Z?&9)S~`A(i>Pj#|XiDH2Z2p z@)(lUMXj00_^m@C+Yi5%?{GN}gxR+&xERcy6s7>+?lz_uCeV}u?WzoR?+(F!0Ubbf zqh3dg0w+j;oabg2XNL_!eWkVxAF7Fn-~@GQtgBjPEQBR!pJVhH;9j+Ez)OAQN$WIN z&E_|vH?3tv?5?=(er+4VV4HQCLT=Zg{mmM(#y=KwcYKzRa>4Mp(@d&$_M4Xy*$M0s z&7uw1wm`q~>y+$V^>epJdU)GEbrtZ@i@|ypBEq*wSi8f4y0}X4qffb=JtrCu(+;l_ zCNP^FlNtS^q`F)iCB71x@QVUxR`+!&k&l#-(WODXzcMvF*xVeW;Ru2j)k60$MD+!m zoPNl9DMRjIwsaSnA=l)uuARKS$ktEUX?G<+s60*OiF-6+p3JJ`w_0ZS zRh)l}Z^)7L(pMkh4bl0fUvLlz;ZohPwbB37@de-N%Oo&Z@ zBq0;{Q2Qb(yXD7~qfHEmZ%fV&W0;iJN&l+zmTPw;z4f?U#EiY)WumO#h+-2qxp~An zL$}NR37Q?7@l6dCC$$=}Vq)1iZ`~ecb{I4<5V~NDmCM&qj&zmv(2%rfn#%Kf%4SM& zvSj+i+bcvFt|!8u-@!!QKUSd^^P zxTs`E2K`>?Gn-c&0^t$pZ^odZc#S_P?L?-_q{wT$o=4eDm!wp%Rai=H?t(Zz`R7S_ z1$xGvyFC#J%qa##;2wG?-SE;FqcvjyGFpDjt(W;!4w{eV?`nIE7yPl^j-bA{Nq`l{ zs0buYVyAC=+7B1Yq3}mupeb*LTbI4Wh5hswF&NcX?hAFFR3b@Ms~7)G;DmH$k#juXfqusXH+!E!H-g#K6R@C)!gcqK{1!z?&|7n!~th86F(cn$13eAE5ef~kJ^ohwpF zlJgSGxNYhftS>dp@X8_=NNe1_>fKNv!fjzOG_QMkc+op46c6e(Nm|pJ!qcsMadlrh zIOgsf>7Hx*wH+N`Me^tR)5!~2l#Wj*xwW30kK~ynowg75I#Gh#kYcacSh!eURt~M= z@KlyojjU?qgA&zOvD{vzFY%oAG%NGvT8-d*OLo!gdafF`>(pu<(Bxql*=<7`%AyeN zP=~$hfr^Alq*f_LOUqP{(5S)5V&j_-J{mQ&mBo>C6qze<+1a|B=AW#nw9_Rxjbs4xxC) zq3*t}5ei_X6c&oT6`qm8ExBU-K-D*B$0hulp}XtgI@seBf}-iI9fb1dB5 z*uLAV?yV(WqX&Mr_pbzOSgLX60^l3bm(n^Sh_1=LMjRSlp?F{7ONzQMlg^k*f;8)DqqFk079UNm{&=FH z;JOEj*#{rNu0qNzshEzY%N^<`CcWWW0t5-<0U6HUw1XYzwHR z%e6*u7$qQ70|xtpB8knF;RUyAu0AYAWpjy>>XaM?N!Zz+K1gnG5;6)2PsaX{;@RiG z$hEKO6jQVv3Iq+g7k!{oF~#=>oohHHtX|2+fG=i|L>7ql4LmBsX@$2@P;Cvw^oseT zW)_~7tkWNrghpa!*im)HltgAa!>tV}C9U`~4z{ibDx5#Y2+wj>>V7!Wfk4XWF2OU|JrFHMq^wLR_2t-J)K{hbc)5u6+mB zG;CCW#pw8Q*ghZ}Q}sM$k-(Q-uaO`Ibe-}I-J*`xcq_nw3e0A24QZqKpA<}wq-X?s z+*-LPYYkg%r{bGFhj{$b>zPD(f##eM0ZlUdJgoUYRP%yrNv4z6|ltpP~amNsUll6<*u2 z^k5FibH%kJeDqdds519P;=f2qg6@*;gG3^pPw(n$;=eAb{X5jznS;szlI;K_%^5~t4`lRVRoRo<# zKC>tmoH4FxRRa@?1k&^XE2-zit8>V$wV2|z4p&i{Kw>$XWq?B53-wRjJl%CE^@0wn z_Hrnmj?}%HESgV7iStZ^Y(1Fd(h#^}7n%ixh2s>=^z6IGc3N<}q=PI?5{3-9L zoqU4$Ol}AJShF-v<%jATNG*waayMCc6G1pz;@oUTWVBCV@z$_I*lLhHZG6=**S_hu z#Fdw6bhLAAocqfIz~~|nOs_M)Ap1gvenC^#g#QCxwb2KmxPCXRlpIe}$=^w1+zi(- zm9yWgOaA406jzh-aowHFzO>Rd`G=hAILAdufmK(nlQxP~F0~H2o{Ua)ZKht73*gI; z)JZv^O(dmvi=#1av9~XpJ?ATQ(XQ%+IlSG<=$@ESC>#YkmuGyr3vbXWX!B}=!L7UX z^o4r}|7@I)fsc<{F1QA9#+)+|>gSzcwB>A;WZRc0Gd3&z{;Ee2-ux2G+$&ToRVXw> zxlz|{#|oJ_h5KgJI_YBCDvJHyRn|8ATAf65V6c22FiDA=^hh&QOB4G!AXu@QIX=LV zm+hKdGyn?RZ{1Dr=uZV)pYIm8CWFx!)EE&@Vuv*EK?lp}v@UpT>1>TcSxMa>V)jLK zw9#v3$T-&}DV_d(bNu^*z5CT3ejqtF&y;}b3HonLd94^`w&sDbHL`G*p;Ae}hL-jo(XX_+Y#Mhgl>qc&N$rP%t_3JEP;B+F$BW z1#l(q9EVAtX*2G0j$bJg^bHLP<_>Gn382s9bjaG2!IVBp>TpN3Fdb}`&&cn%Pjii1 zGW~Rx`lv`m9;4aj-{OV`L@X;H#~c&fJvp&k{uN+e%>Q7B4NrdAQy^JRqKp*tz8-U| zO%)XdbU$VF-fPLG8baN}hh6>5v&j1ehMKY3CW~wMhYDGm0#i#l=Z>p(73O%(q{wqE&1`h&-&YAb$)h5_3jbS2cJHe(`t%~t*3-K5I1Q5EW;%BD;Ep6Wi! z7a|eJpWTg|h%GGWy@OlrJv{DryG7%b#L|fXR-~lSuyx<%+7&H(^u8nEXpy)o1->x_ z+X3c$n-_}gaH*`h3EHPDZ1{F_2L{cV7czHn0+05&aDiKc?$0tVZlYvv8vBj5lchHf za1>32wZ31}m7>LBRH8LDLX)?D{yzLr3pA`RULz!cBvZ^{uNtzXt%XV@(oa_;yPp-%I_t`CUyFa|7J&qpIrI|d|hY9fNcLDf2CdZbq!o!?pmjT z4@f0J>jg){i4glN9&~?3UU?Wm$%$nSv|J1Y4q3|Zo_(|#09A|x!6ac^I80LmmXVy6 zt7rI>q7sv-K{B$J`eUl49FtI9FuQ(axaQOgwlq#Yl;jO{VlCwZC5i*0N>xwDJs|?R zOOgUyU4-He8~Wf?jSMS?50>5-kM5v8Q$(@Ep_|e)=8<%^-9^4#iSSztn2ufmB-JIU z@w_GP+0Q5neP!3KR)Y6Pk0m}L9C%qGJHBAsS3WHM@DfSk)0s_m9b}yfqf&fZG^;*Z z9m6h1n#(UyIxA?fdckQ=(Qc&0xfw!j-CIw%rag*FfK?stZ z5$@YHzL)BIy+clO#CIRw5aL|6*2Svq&0KvzY7VASp@s9Gy)!=}uFUT1n+3HEofKKk z5{&J%hcI6w@n7k+YEt+E>geM`6a=LH59rrcosLR=(zMK42GB~X8)$rUooA;!2*azx zy_g^ZZ@Sw)CMV}MXsGByUVq-t+W+ykFW(@;?+|J%2O;{Ex8>_phy^u#=5O9(uNKHj zM=+bCgu!Y?zXvZKJL*)awtH2%4<@4=af?PGasqIU6=(Yu$Ax3d-CE=5tVHJ zY@9uC_qGwd2M(nhs|dx}hbgYg)mRO!uB`r%$KMj}lV7glXGt;)BgK+==@+FEA(HO5*iA=M zld)h!$-*Sd-;I{xT9^NIZyHgeyF=d(DU;u2zK(}FvY`G)37aozZAszv%O%hR>0%-( zJP$*I!AwfyRP6jGnG|Mat_f~VJHyXkm!XL2H<&TmpL=IrLB-j|V;HgkLvwxupXCYU zhh|X&Agg9n6v^SOy{oQe<(q9eqI0@b7IX{VMC~xZu~GCBRhMrtg+TBfjGqCFjf@ zrk|y?^vFy1oT*5sxwD0rnilDI#n<%p;N5DurRN>?DYclmHIRv+UT+bJW^NZtG|;dD zoUe43nU2#J5SC5~wxPDeGcPn;ZL|j}M%gPKLj4U64(;>GaMbOU(f(rW zj0S;Y0ojZnAx4K&;>o;0v0cEeYrj-qGzQIouX%pq8%jpU8o9M@(P!v9pu7PO$ z*tELw;V0*C&2{>Eyzd}Q{Ej;eejo!qk-p_)Z~w_%-DQ3Nt84k9C%tqkGhfohfRn^E zUr6~;Rwc+bQJl#%P2AmJ_3x}IN`I3((nvXza?yT}0x|*av|5B!p3iU&)h*u&Q=)t0 zRV%Le5vd=pUMnUx#xP%fd7~Uq+x)|ay&t%saZ1B&*b_3m`tn?tp|a$B!QC?NNXJ03 zpyM5}W1H_%@qYlOKv}=v;J*GW?&}HecUW8vX0?0!0dd0%GefQ8S-lf(aw>$joU$B9 z9}U!xZ@0q9vR`ZLKyBD@OG%gW1;U5JUTAfAK&moovoL~-B!R7Z5j6!GD!iUu)Yi5P$clxI#!|XrO~V&1*_Y!)O_6X~tkA z#c1*+7IP#c$w^D`cdslvPU1LTrY9rm?)T^JqfYRSp^;|PGBlC#qf@+N~8DgfnBNMYif2GpvUAYmG;7emVd(9Vo;c% zyqf(rvR zX*Dfpl@J%>pXImJTOj3r!}w}q$v`VMxGWJbVQ!llPx&%)cV9YOa9KKSXi9M;c1>ib zQ~%49*&c(1R7hD2m^^;U>HUo=gVt*w!AaK)ovB;nv z0bQzsNTLQI4XmiK>`aV+uc>>;;9>gs12l_qMfW@E&`+m#zxb9^Nv$eXS1+Dhg}t0* z8Tw^v>;GEvsO24LSl4u^?RnlJ)Yznli4XRbCWmk>jvqUK$+3Q?vt#_bE92Y-!HO>5jR5WVYHOksms@G}B&SevjKkvfj=ZL_q)4Nr zOUZw)EZI0X-6pzNdY*Y7Bdxdks2Mw8BWi$z z6*rxd)psR%*A|R9i@==>=v;VTbF8d3og`j_n)%nM=SrSDLw~Q8L`egeRRXIU6dFzS zLz%uNLKDxQZohM+9gUw`=?S52*v9p((MHQ51q+kDO;Kg)=_who~MQm890OT;-t8Bd@{(f_^ zbQ0+Gl6_n5g@40>x8=*x^CcNv!?WrROUIG#auZaAOdpaYKa*nuz6sU*N=M}=nM36# zhFK0t@|gWEU5oV7p$*|C*H0sm!*+rW$ZIFaN0Cm5Hvv%(@vcLj2rd#CBxmHz@TH6# zu!ZsErpdaKTx~Aw`YLSTVcn>{_pdHs)Bf?o!Z3{4-hV`z2P4748OryqL&G$fSN0d3 zR8ec&Fc5zCuh2tAY-k62ZPtzvT2|=Ts0(|jhf(CSBW6oNI;9Jv|9vMrwiA=IrFyVV zr#s!J?>qVP7qd1|RDh_t1r|HBQeci-1Mc!uvWOIKz!@%p-Kr7X5TDomYt+v@xH%6;K$Wkk(Ysh|hG=Cm<)2*VSCCR;rN~w6ws4tvjKgk&& zDFJu7s=$uyG1-_J8amOj39-??h|w^9MY4?m^ITAAv|eCLST`Jj4J5Id>&-LP?;cRX zX1Ko`qbBmOS##(ZBZ(h6Wo>~MOYIeoI};YzOt+4ty-0VR=cAX>>gDc?U*2Xj2;3#? zf`4taEcVKUL0F|bzZ#ecCZ)ynKHq_;e{H8A_4}`3A{E%>QEb}u(Du-GOrBpoS&2}q z_;Efz>zg&62Z=A(2lsI&V`o3K8o98b;N3w7^3zg(^VFI56v$UKr1S?<0x@90os43AJC1V&KF0v^S+OLzj2KdqC#b)M@RyDt@xck9ESB>nhPsi3{EP9 zM_Z#}tcvlW$rjHTD0+p(t8OtDA_jyy+Mx-pR-Slh^!4fc8tnRdvi^Ir;6{hl!z6nH%RYHf(t;(15=S+xK<=craM0XP z=ST|n5r2k{Gu-3`>|xtEZsMn_=znbtf4EDm$>R+0IqIe2)xA#F@53WUZ~rX|t22k+ z&5z<6ZBk21!$1(e@2?mku&HQG5qfAEJt^%$i*50sm9pJT>_V~|_92Mmzq?7=l2qq3 z%Qy2qhMnG*`;w3pdCoLKXsj08ZtZu8CK(N4B3Xf^WE^2GGvpT2P1^`1H-Aes%4v?9 zwJ0zq#2JLl$p!?^RK&#d8Ur={sC2=sMNNJP_$sydVitibX)LVgPY>JKVmW_XJg*>u zceknKs!^J(#ZJUUl{Xj zGU>-<1_CFAt%EhqE6W|8s|P~b7pJU1=_eud&q2rUO?Nf!Z8o{O+ZRa!(K-L$2*ac= zIy~4M0tMQasQOlqrmmBYE4b{@{ddB{h3mf)_PiVtRiq-ng^|HZ#D6dlhVOZb@znO< zVXv)4M1(CU6pP}aP}+3b4K|aINrmF>yW4HmT}5zCNto~dCdt*c-B}@8ltb+hLiSEc zU-`)*r<*7dRBL2gON5L%lpfo1T_{84BeEHt#PR{PaZ@71$Y+hWMq9(^%9j?KvESCz z4!?KFf=EN`A>ZazaetF%>sdF_Vmaj%b%&)QRrTl-F;C14tNC7O<>f4USu zv7)}1*rU!!{iFK2J*3C%`CHni4`9ECAMX{%^Ekz;vKHHCbbmaH=G+DO9_AoE09{eh zPUA2TeD_!E11JfKO5pA(0V*m1hfbgq?df!os&djziImtm?*=G{e?P~rg1`@xXxE;Z z-8q?dkDU-}EE{PMLSj>wyy9(#bb1tJLdh1XlO@8ns<32S=l-YGD!)V0y(uxj!B(4X zCPYsNRj*td8h^dXK37!V7HC$LHm&3@J)?WI{!$w?=d!|_I#VmI{GGA&2a8s}O2hd% z5ssfs*pZ09Tf20Mj7Gc(u*WhzNk%BOB8K0$*NZuv!b30%VhDaZym5HtaN+Qm!wZM^ z4*$-AW#$R{qN&Rd=d6G9tyFg?*Rp7EZuhD-Vby5Kuzy!<87YDk$dw&|_ca{vKTS6V ztwpnVln8+l?0%aDWNSCcpet}sCUB)Wg?$R5Y}DB6 z^fMYevZsYJNMH(~U2o)r2yJ+y=23F|EgJkL9}EV$Hwt!{guy;ph4^#AI|4Wy7{0^7 z!A>`ZV}CotWY}OFL@^LHRhqgK9{i2v&g;8)7ykjBRNZUaFc5$DUvUGE*dr|9!F@#~);{Oiw54{QEk~-@fae_PiMRo*9I|k`bIX zlxwt;+i>hjmZH^+BP?WsoG^~6LMR#iM5{8xF@Ji*RGED2d6~V~ID2uxjMEcZx;GB; zRheI>x1KHA;_TJYkFR^Zvzx_C6PgNwD`^Q(Va@Qk|-&<7kjk1B}}9F8%JHrS}f1?H2_UH_FU}NLKVb=NQJZD{r12uoxSV@ zZ+~=eHl-_*aSEL110#e63H-#>>#`m~eO^pcZozjmUP!TGv}?{foO5{)M#yQj zOvJWG7bZ19llZvfsoy`Dz+mw2bX6=BMKf^c=S^6$J@jjAq)k?ZiBs^S=@zL@9OIxn z*|2A=gW-&gZf`#Sr-V-v_|i0y$$KytB4AphjGt6-Cwf5)>t6xf!0EyVgNkmmKYv;N z7(Wh%9T8#6-w`+?zJs83<=fVdryFwg{s4_oO-lnY5WVMD%t2^!@X)L42U0CoaJRHz zFAK{yJ8J`N5+)P1NdLR(wk%Z?I+x7Hdo%Cl`p&Ps5Dn^eO$ahD8O;@MJ%*d1%7m>q z7<{b}CbmV**p!FFI9tvzxJVkyDStVQAvnr}hykIEwnIRJt+Ci-UANybHVtjdk&h!s zIC9Z4(y#IyMjkgyq@q2xbI0Q}NypO7dJV}^2yh&Rj+Au1n+8dI2}t4Na&0sOt~ouu zXn#OS1y^7!chCc2AEpI)v?T}Ar)jmAKDw_D;XU7JDNlK@Qyaev^_d8$C z_w`%3D5GeO86y%QQCiYW&wuo)M0Nh9Ka4n8qAE#-aLsefG|s2)2NisJBZ>m$Fp4UL zkXO8x0$r9&%yC#tTfA=3CQ+OBC1F{`h!*mw$1hYB)9O+%W;Aa(RGM(@U!zydDl2yG z&M6aIX?VDLn2qjlhWiAz0mmfAsVXJqIuC42p=J_GB>GUnkPoAra(}|WlvOGCj?Y!` zgEDjlt1E;{b-wV+Q2la&B zG8Cn-u?}kqJsC)Lw$DN^=n2kNm*NE_&Tq~6_G@4c-ntcJf!dI;3{}#H0T3z4s^Mjy zp2CtylVt3UPQf`$bAQ5=>7T6)6NQyOJ_WMJCnJp~LK8NC7(PQ!FQ_`ZIG}xYVX)M8 zt|bh~itD7`8ZT~>`p72C=6DRP#7o1<)pkFr`8N-m&lDns*s0?5kbNtnf6qOVQpncS zwMLyV^?1cKdF=+^^l)+-hfWcDulM@q2nEJ(c_ z2UIjFwUyE=A^1iM`)x4st5)hE z_1n5y**$1~f!IIg_Ac&j){UL*8@I+K@ka$qw*(CAH-FvPH(mH2w=QX83rynkIQ7fl zt{MAwh{R7@vg_zCC5*8SfN`~8Y7p|ll^wFx%Hl7yVca9)DT<#w+i#(x)Ns!86P zIbG5#5e@K@%iu~aM{m6?33@)%4T*b0lk?!KjPQn`+e@6KYv&M<8=@$NJZ@GS1-D{u z;}57s34eEJnM`+?KE!KMc}~&uSmgi20k-mOtX0iNb~(GHp)dUawN_hi+AtJ;&#&+U z4Ji~g=`&)~azHQw+UN)HH4|7yjmC-h<&E@7{4v7>GDaPayeKxmfa~{X2pE@_ zAtr9i;d{`*5!v^|CQe9f$@ZUk1`!e|CX5iZQ#1CHNq z38QIkYRtnpKC+d0md$F(Uk8V(p7zI%5t{Ee!=fXPN+%p%d8;p`@ z!rp;{J1K2f0vp4tg~Fhz7En(#>yCVwIQ+!Ir5{y8ihKy8(#~h;SH}MJP4Q2uesDYZiGSs` zsMf;aNr_s4T%dB0A*YDK2bzIOic;;SC}(G9nZNXCnx!=3l{A^b+L0ryD#u(=2pbL`9v`OFxFzg&>FP%qh-+{-J>P(w!*8ijXK8r)gE)I;%2Nxie_#Y` zH=Hi%cDU4{8{A9i`!PMK`!BJvrL(GLvqAPr&2$WxNHlFgi4t z`{kDntKe~cmXQ|%uCcrc*B6wsWblamWTik;ZVmRs;nj3@vACPB9vAbc#k|I?*-y3R z8(MS6aLDe5Vn*oBZ5yHG`F7B_HOI^D`IN{tFEYbhzE8{v);fmF23B16X@6_xtAR|; z36c7}+--VYO)nSMxpD29P1o~#xr>I7^5r@AmR z+x#e622c~9JgtpIQ>lY40vbocQEHk{8w7MATDk^~A{Qfd$p3$dcm3))N=psyU@-^u z-#;t%I^NzM{Ivc8byC5O(|<4!z56SMRacux>49s*7D2nxE{nvf?Tw(ybtbJvu+4a~ z5TX7%UZ+Vz0bi0C`@J`BX5PGY2PZ^{s+NS1cqXlQ%dJCy`#Q~qk>AiesSqAag^IB( zx*u&#@zL)0NX0#~%Y|q>Le-df1=?&Sk!}svfOxvxpCYWjzCxPZ!GWG?6WQ5QaB(M6ZCnJ0YpI0aNY<9odJZ(QcW^j>OtnS`z?v`IND8jHX zO-DXsJ)OU94Ac1!NhUNYIju%=bDAlX{Z;@WH)OB`X`nIq(|^T{f}v+Bls1EFf0K>P zrXxp3@gH?#St~q?FGr#$SJyr=UlmlCtL&nI?`_#8X)kpYNAVktRAG;rKoI@TuhGO zQAP!ju2dq8RDY;;Imr9By@AH)6UdxKKqf4KNI|@+K2pwBQ@+`NSdEp+2bxw$AQ5L$ z5ohU5C$rH!90$Q7bml{M@M?9w2tsG+2lJ1f`)TR=!8yR#wTG^Eb_MhPe|0hUgVDsD z4*heho*OK^S>V|-e{?<`U)6L{u+nJb-KPnxqC#XL{C|e%I%)$dWeL9yOj)X~qa-Mv zU&hH?q)a6P4R=&Z;w!QH0m8v(Crg1T?T0^N0XY{+>Vt}=SZ8U}Xch3Y z0IAA8V}Bdc*`sBO;X6MoHU>G&KZB5nZzeGHBkY?0ispmltVb;3VUMB_C^;*G`_Vzy zD84R9SAQeT^3gF5WQk>6_HF#D?;xxpJwlwSW03i!(s_V+e)@g-eKA6X6}*W zy>Q6U220%DLOMJ??o@p@oD!a1o2>)_R3R8)@ax#^-Bwbgl2Zq~XfN7dg^*iI12GVV z-+%KfhEnM+RA~ht+Vw)M#fpMb3%)EYX?D6@Xp@l4idFjG&1QAAt(SR8NX~pS=bT>X zg=Q>8vE&9Juw-&U39U8Svu+qM$yaDK7YH|Uj)E|at4pqAe5bMuO*|&j5o3k@CVIlz zO1*MJ@xWTFkBH54$(P{9Sql?~R?;GSV}IaE7qew9K)5G@@pSr-+~2|(9Ctd=FaN{I zXfPdJc~SR6Wb$WD2)QI^TH;jLp-OR!FfXJx07>FurVteDG_-3{nTgDxIaBF6^q6Yh zvMN{ozTq;%V5{A&-G-B1uMMryi}tAimws=kbk0eNM{unO8V9z~3Zt6aq(yEI&wsyo z&f=b%&5xckq{mtqgwQXe*jd{k6-Mq)`GK5_~V|;VJzj07o{MOgL!CY|D2! zCep{d^$242q{&#qjd-$!+;m+y%763`=b7^K#^t^4Mu4h>F9%DhvmZhxCF6n*C_ z{16GE1+{x^mQLxCES1u&S~~4vbjUFmVhLL9{G;C-CZT!9$(g?|bV88{Kxl{rt`Ra#i9Jv?p&Cm?0C-a?*#;zfa3vZ4&; zJ0O+fEj-~&Ds;QNjptui4nmi7jZ=t90a;vNMYay)dS9fR?IVp*at2Iw(DNOE(k8RO zG>4>H9(!70DUsG{M$>emgL>lwO+a{$9@0-)ZE{Llmb3X{`h9g5Uw=*4b2LFd7c`^n ztiV#M>5uILT@7(upA{8RK`H11R)9_^f(G(LWLW2JC>?rn%7%B{D=b5UtSd=#8zE=; z3QHI@j%!d}2?8@Jw4AymkVACQ9W zBu)1n&z>qeyoCA-0)MMDgP*=m>yMD1=+ye{a?+77G_kP3F;Hk{eM@sJ9WJbEr?eJ?ysZI;vT#|#Z^sj(?Aft`&SH=t2j~;#Fda#G;Ku% zMW{jIKv1-?$IgPiYwfN>Bh>%S*lRnE?UcfWJtXV#y!m=F<2M)SHg%i;{g^2PPaDO3 zvo`w__3YJf>IjygPMMEzD?;=Q1}l5vQmj76C_*)LoPSIsgqbL$5TQY_n-;azgp7I4^;NmN#wQIaV159!mKVc9tWgv@WI@pmhmnR8$r8=sRx@CIY61Do0g}C~zrC6izW$?6~P8Am>oH`*F zECy;(t)a}r`U9S%G3I5}aF>~)r9PuJTtrmaEH>KeIlmmBlV+Qk`v-UHwJ!y=eC8XE zeC?P)=xZ!+H$Bo3RG3~$!PR}@4ywgS4Qt5{xPJ~M;3jQR$4jSaYCoMf9jqP88eks} zS}p3qjSIoBD7h{CV{iFM&l|#P*hwBVl=DNL8c+E-q5x*#nl0Dkc^@(3xw1Ep7FdOU z1fLmy3*Hk809<_VG0lS;w%uEI6tb<=7pBR^l8EsRpz)k`-yLerBJ$mEo*#uKQ=$=2 zeSdQ|iU|sBcAO+7SIC=L@DRKgWh_T@jOQ#(sk&?vKs-56y-8TW5Dl2hVku!D%3ZMK>CGI=?G zNqZ{t)HNsb`(>Qb2C3U^R5i^A8lM=itX0KLxr@r>)m%p1S)f#j3tF!Qy(f0n34bc< zLAq*D30r1|X@e+$@;0yGT<23$`Kcp)bbbSsl)-D;Fcik``YUt@#D?~;>#}5r5NNul z0XwimTZ|^ZxLRe&=slH%k^g68sH=;G^!>i~N$C08_vW!-tOTir1D+r`C8?l8 z133SZ&X^H3U?U{(wb_FtDDS(8vVZ3O##R-$8Dk#L?r)&A!~VMzT6!(W2BanS-b5Y$ zjn))kq%EP_k=7vb>wJ4#?5?uy&mv4#S+>n)Y_E*aJj6xhxvy*C4%Y$iqHt9=8fq|v z{6-nrcoJ=e9Uv)FWq@82c3SqA@h}?yODp-7r6^)?=OrbLQ_q5czst`j^?&J78r?e2 z<5}klC{%7^VUqH%TsS8V1F9X9Qjp+temBLC9H)G~2y?O|bbFR?uBG*c;`)Rh6<#jh zCAnOLO1o1eNiX>HNoft`NQ)nD;s_f{OZyCNw85>V_Tq;gfKoK04ORnnhdXE8Sol>N zQ9KwDe^#F`$WMsQ=1Dc<4}Xvk)Dc&evEwgrJy1uSR1I5CW8Xkfm%TjlHL8!XzG-q9 zimy$nWV_YzFI&sdsqrm{3O+XMm09SeXe0Y)RKjLVqUAvUpKuQkv)3kaK;9XCH~6h2 zv9T`B{Zi5w^2m>j3IZ_@1^fMqE$>QOqgV^th~>c%lT8f7O@GL41QGvT&wJIt z3~zU+_X^<2W!ne`(UzRf`l=-R&1it_gQQwVc;rA%$xkb!!qch5NX-BwR%&6X&Ry-| zt|Xc`UPyXYSwnaO{#N@fCx@Z){{?f2!-!jamgEh5;0u*hO>f&U488kT5J3vtK-yy0 zCe02*yA^2BVC`)l41dk069Kj)h;%n&$bX;w?K(x#=|ofH6Z!b)&1Z8ko|j^h3yTmC zTbXdol|j1x6s|ob3M3;EggcdC!k9*_A+?I`^?r|b?Rh03WTk4nAPbZ06xTDaiiNeJ zYTb!e#IXCei*Fw9Ti1ZUBU>YP=y!_IX0Cu4-VpvIGK?~rV}EQ)jvX+gVtO~4jFpPB zS&ZvFCKi?{{w?`1tLmvLGOeoUi!O{-?uqEuy-5`@7SYY01WiN9-Q!^Y55Q=yy-X^R zgBu7D)c%%-hE^=<-r%8RQNQqv#8U0QBb7N*8|VG?z#UWm%4IS(7sn0dwoEv1-M;?|kz3zfeRV!HXLDKnlEaiN=M|NgiJ_VtZcMl`8M*GwG2VMHej_-Em z>hjVL!$|>scCYW#v>#m_ajHx92ORf}*7`qJ5V^VF34dyRPIP?=-!m}jreP8=ck(-h z>{;m;aV2OQbQ=-)o927_d_d4DuWF5;C}ojVsqKT`omEA`onqIuf8mDY1J4p-m~UT+VIRK(h_)`p)*DWo*v!x`RD>{{WR& zTTkOS6n^io@M=4XBZZ2cN4hXV9cDobOx1RtN>!QEDbcu2WIF@w4*z|RFKL{_9lE^W z`rN;B@yVZ`%BONL*wB;_K@pZppIIB8;1xLmrr@7I<&N?c=s;fm8{rMdmAu+N42-I{y!ls ztr$^-cvoUZWyO@76pR6-7T6o!kr#WD7F;Scy`HXTU%%adUSD6{ep!E;cGv~@zUkcU zjepNcMjyV*LUf~RbI4NUTxA^|NXNP)8{e7vVz!=MeqP^ReOZL=XE%RcF9K==Eh*{x z00c()c#!3sFa$LqC7M!kS1ApnO|MA<-BGS2y3IK?L=aw3sdBz`P+H!>zXJq+W%bDN zv@x?@8y`iLDhzS{Ac~@1($H|%y-HBc-G5CO8j8+MY%E**Z$U4%RDqW|1c_sGX3No& z(tpErZ@j?)oui?8%H_#LDgZ<3TyGda-?&ks$Rnd5vs^}w9wjKMVUzmD-_RU%qfb{d zC8awG0jl(A{>l}3LCwV?-_Z^FS}8;Qo|jJKX3Gm}at^vq=wR=LoenckeU0%Okms|)Z^9ATYppStk_D(zHefoYXaNS@Eb$3no^0P=C<`HV8a6y z{5!hJ^mvr0gbC!eQRFEUR8@joy<@-e-O!La5N`nZ0A#En3JsvgV+LNBfsd_lf<7kw7b1?2cgVtJaB%%}csdoV+VOe*4{b27Gf5{6F@FHQwFU3Z zq8?AdnP7*P9s)Vv&==GGqImB1y*ETWmyDR582j6j}6U|d(JofT;KgRly!6J~=| zlAy<;V1RdVOEdNERI$4quGKgdk*QFt0)1+&d!Vqjt$b}wJ?^VNU4;qg)RT^9t z4s6%qVEeFmyQvu-9e17-twk!e zX~(0{sPEfBxd5yN(A4{$?PF;^DZ@K_U_}bC)qU|c_z#U#U2EGg6n)pP5Fx`hBy@YV zlaA7++n`-bo5COtL3OSjZL(w}Ib8_;@4K>{#5384pM>t$Ie+IKdGfK?6ojlH5ljR1 zjnzD{E4wSeOg{t>kt_#OumtEAnL=V=9XAKAWPGQx40J?DY0k#)!L>8-6PQw1bFGBH zh{6h2ke0GeJ5@fj6k@XhAy)7cl3p5OTWKf+f{A{g_`J(gC3o?)$_phy+W3|WFgs%* zj~|)c^g1D`Jbxl7mrPJ3ZVdgz?dS6KN=jv!OEC>K%JV`%jvWoX;}Y)6COijYxy)K# zO)l9JieFK_3ZBpedsuoiyS;k3o39>T=8rFPI;9@U9bQ}*yH=(3qHe_z-D*`A>oT!^ zq4}0spnV1DQ1@tjtI@>n`i%1;};|DaPOl!95RDZc|C|nqUE|$^hve4=~4tY|_ z-f&%y+hLBA(Lb%r_cCs&hV8gu8s#33%|^YAtwIU6AiN+rwM>-;mTag$v>R^5mwh(l zOGG;}2`gYd!``K1(29WInV~~C8x1;SYV4pj%7uhHN6n+t%RiOYGaoe1oG+d&({9C1 zE4VH{{{T?krx3&2 z6eklUTdBE%nCd+&Ls@cHJxhhHBgoP!EK!q(xzxA_#B0M9dXl<$M;{dVmSw*T;;`XM zNdeoSn`qcdOs>oFX$C{!&hhF*RS$<0 zoQ98NWr(XGBya~ew3B`?zDOL5qhrI>ZN`=-CTL2tTS$^PU!+o)_poTePCRwaxL(SJ z?1alo6aRtc)c26L{F%wr3vT$r5vT3)JV`YBr)L)qhLdFZf7y(pjN0+K_oQJtVw5;SOy7DfIjF71VUN#hBUhPX6hPjMt_KRC-L0qO4i=;?sliq?jy%#=LmOtC#}&9Xe>T^ zsmc%m;Ws{lGin!8y@U7^(!7BE)XJ~0f0NnwP<+8gjm&62LTfB`HN1z6?MTkORk@O( zkpE%ba<_dp+?H=p*ANHf#&6D*@QR~ZmiS$lmamIk-U0@Xu`_e=>knsRMSnw858=IS z73Q6hAPMK_P+*VV^B7=H{ty~Y>z|brwDP(uj&3%>=%64kkhNCsI0F5rP?|JL*99H_ zJ~sfGxHHJaof@Qxc(o^d(H~7z=SaI&`i2fC+Y%N6|K6G=goq-R;8>J#7oyjAO0Ve6 z+GD5mpWsmHI!Mnebba1gmVbE0etI@t%|cyX*MLuRn1wwYiL#<>NnWj}_DZF*`0-dk zZ*>Pv`~z9S@auTSEP75YA4_m6-R1T4xaq~5e!Ot(7+eUP&7f&xB4*mrisnE@1BR$<%sj-hrWu&KMwi&8tu6a7f;D7thG4I|>tCLF(7=(?` z#C>u~sMd57upfTrb8`MBsFQQFblarF z{bO?UBruq?qr|rw?8s6<8E;2{i2{3vp$0dM=A8vb0ov2GR=O*Bi*;19kwAZs-XSn+ zFucr@$h!wH3xCj#E|yYtKfucX?dTxZd|E))96)qh!5x2X#C}>;e=~;0FJ&s2-SYf$ zYlsQ&a)B=Se!&WvVDUH^R;5wO$6Y)c2KXJ$J=Dn+>LI!6A6R#Bx!Nr4FxeWN5KFZ> zcvZl`;?-5OtNXG%P}-MiyRfU5!%xJr+l7N_G6$*$<$u*~1N)}G_s~G2>yis{_kg|h z{pKgzZq{zStkeU8D=W7}`eCqb_L@VXCAkYmXzT{SaohN;nB{OOXHhs^Lg(CYAwAx3 zVCUR%m92E5ei=J{0xuUB2xTi0zY!zUc%pWiAyOH?}$mlXH>#0 zw0`A&6T4Dg!2hb>gksh}kU=laj1SYIO6r&BFMqXHQIDfG5Ps)Z%t>qkl~%gfqS14}ZM{|#n0!2jJ?>kQ3|FG!l*!ETQ3+ggtdPjQAxAd%GRjB}D&0cB6Yk`nG)I%i zCKXs9lLGE3L(M>MeL^8A+t>scU++H;)PJX{UvrwAf~?mKeqJXsRPf%2L~s)aK6h4P zXnkMHG6z4!*Lw30^4C&Oxp%E4%l9A4H{_T;sKO0y)`qA-XmB0|(QZ&GHkzskBbb@S z>Fm-UUtmSJI(}&?CEylT8Oep}n4?c#ZuI)|i?jCpqE>ymrQ(+lDp;FA6)?1`ZhtBo zzdMnT3R9_|pjj41PAFHBhi>#&X2^#Ce(h0gfGl{Kpiq~-CE zIr)LnI=`F3WdfhWC5Fe+S~}{nTh-DO_yTL=)~kTiK||L=4Q_Zrmh7k;+UYd5Sfe4O z5_)z#pS8|!?yxeA3sCE)^M7I{-!QllP&6$kW?H95wO|bY^Knbu8Jxr5Hi+%Kd=i*Q zKNy0SsbssiQGtc_Mh?CffNyBn0*)rZ@;LENBe)T>n^YU0A70cSod=^^Kg0XjIk@SP zM@~2T9Y7EM3nI7riFd(mDGAr(zqv$%u9oX(^{RI4x~mE5_jKD4Z+|4O@mdagwLHG{ zg>5i)Jh7=?d!82b0E~8+(%Toq(^Q2 zrOVVw=~lIQnU*PX>;v3_vFsyS6y?9qhBSdT*`)aeuqfP9rHFa*AAUqmIB^D4_gFK@9dMxIxjzXi>Ogu5E4+gpG^ zA+rZCb%CZ07&ZB6Et{+p&?8M@`D7}&0?8^4BQF(_7Q_lRhB)dkqJS2Ih*A|$f<#09 z#pmrjVwbAdge)p&S80IONh2Fp>BkSR4IZ23kX$ZFcrVYgX0VblO(>B)WJ1O z3x$M3YI|ce8-EXSL}jkym~k0B84iWm=tu&_Qk8u~JDv~@vx~Vf_=@o5%)&S|E!7+D z(}r8kB#A3*OnAj=2N2oD&kk7A?Sf|C>;?CSm#P~Ekw7T@57r7@=;It~#qAYY&WW{6dBwW5UuS*GF{b@-&94VtvbsTp~IN=kAM24``(w!p`6b)7JY6T1`@PC zY*0d$Q<(uDzVGULRYFg>weMNg|J$vo-L$3ct}quSoLHncc61?r&@byGvOnb{Zm)O} zx3|7=#II4;Vh6i+J$8Z88qWRcWOm+ho!^arkblYP;biSz{2+LdviJS~y&2nX+sO6Z zUoo2+6@Q6noft)cR$j+YYUtOr<1O|m_8svfNMdJ{ z>~=VF9%vL^ot@!)*~#PJU%A}svz5u_pCGjX>*ZO7V{X^ttaQy480I+ z9T{tp|3R#HNlYl3K1|nx$;d!D-KSGGBYzO=WAJR{sRpJ3dhTwq!vtIJFkJ&)3PECq za}_$x@D5^|di&F0Bn6ut1tU4*&;WszHKA@s$@*JBO**g}Vl%MjhiIF`2MEF_O=1wj zxd*ApflwSdQ&%A=;Qxv@QSxsf;q(b8OFgd6wn6NM2$C!z2+VSL!Wqk&Gn^(F{eP4P zp^vk(U(XQyrCIRoQe}?2!D4W`7*59P`J%sgoUgz1r|23jjqvOBJ`YEu!5zB(h&rDG zh+)6eMKz$o{I)-pQ1d){4xU@!X0yqRL(TG-1`!@)S&}tDE{0zQck9XHf`W|I6kQJJj?dj9wEqJRIlb;$>_0I0r|kKxbbi9$Wx#YxsI*!=TwIyJyn zR}FffjzHI=!T9IJ1E~A53FK~gf4_bh^zQ~U03D78a}e-x44OcHlJGpuls>jz^OITb zQA^>fWomRDnM>V*vYDmPd1kEGoU(AGmqso&%-t*-^+c)D;Mre>Aw$M!*?%G49!Kt1 zoDn$G;TpRHm3HVJNbZx+Cwy_)*$2Bl|M{2qupK7f_{)d)D|ll`K){{TeL#Nv2nm6Q zkYzJetkN|=EYv!O+NxS8>9LkX@KdBZ#@8luV?T&@imN2TDR|do77E}!r77vXdl#rf z7dyxT`Q{=>-m&vR^jc^RNq^pj$u7A_f#7N-UFfCaC56JP5`o^ehQiSPd7%;(Y47#fwA@!=BXJ+{U{h1hZh({GaKT(n+QRHBEo3PfGV*U$-RUTtwebne0P&_#N;B!9H3-fRSvtv{CZ zYtlpS$;8$Vap6Vf)um^D!4_FRm_4nG?dZG3KjW*sGPHB!7fMsM)`tz9PPohC52V%|I_^!j17aJug_AvQ8zJS0$FMOe!WF zjYDQrDNd~fiRe$L8;VXIG7NMEK=g;}YxKSrLNX0~IxwA;TFMw&{ETP%wi!^OXX^E$ zAQnWb*t+Nvvh`w*;l3K>P=_}dxfF%ih2PMmApwnOA}SqvSbuyO!6NIlE;Z_qf06(!kCj(bgD1O11a_T{cUD0K7%wRn%p(C-<4u{&P@XWi zsgwe5V{%rxfTKL>PgN>1sT#BdzZ%K^+V#pLRP`K|hEi^xj|CSE&IT?Dt*r7jaRB_X z)b)*A?MW*~?tc?Fp*Uvot!52s&J394b-!S;#p(eWLYL>p9-eF!Y!@}&fO|cDCom}{ zS+HX_hFiF70o~eFO0ayw>2xHGuC=UaPUO|ljdwX~%6S)*?o-wpktEMNvDC&2Kt&=k z=)IhBCYdt|#dWJ9+N=MK&l+i^rNdQB{9igLiDjubQGXLDx?WSXM(da^B)V5=Ln*x) z!)5eVEO7ibP>kNJvfpa-=TZ->$!aEHs)*UQPefwaj)Iuyit?gwb>2Bn{F~!s@VH^E z`ccn@L?5~yj=(pY>Q1qFpC!>`?bpV|+2ymAl z(dFs{@_!MIcRZPiv4m9vu+dv}D=m-^Nd{atk7CAO3)&wQT0ReIKyJ#8`OWGSUgJ>2 z+vQ^DCg)f@?5bljUUcQs7%q4BNp{P!BKvKbqdJu_MM8ZolKRw8;V~^CM3n|sGuxVz zNFuzeZIQDpI&_=Wp3^?jYXlk;%rxCPTAAX-?|(bgQyVENkBOHBDOIzPa(E#r-<1IEhO+sBkR32!|I>kE)j#1_TJ4IhBV&P{Dgd!SPQQ$$HH%A~2#}%QaKTkW0hS5s zgA&f%6Q9RQ-bzRLESHZ8C#PhD%|Am>soyXvD>r|SqSBkJE;4%9lbuz)aH>AShZmN> z#JkySg|8{-9K}`rP-#0g?uiSs45nhV0Qz6(&Dr|${fgyX@fkoYb*1BKgI%6=#h(7T z($c;SinBx=ZX5a9K9u(HHi!c*(sdOb@2u{MZM{)btj7r*=V54RSn3h4ZOQ^#>g#yem$S!XQ}2Hh zpL>EzW%Avx5QTUBiW@T6 zLk(TyrripGb}1PHMwQRDK$e8=6bQxty^2(qVoEd#y?5Vxr>7S`c_DgKMh1k6IB3Nk zUp>;{v2KNxGm@7I;b;d`jQzP>w6lNbH#d$LS|J8)rGdmCf>-P@$Yd-k=-C^b(K5k% zWO*ArA+fgO2U0Xl#V5W5q~n9Wq+yUD$Sdqj)~GF7{4`p@5N(c!u2asY#!+!~4-HMz ztfV@VO4jY{c+&Ln{G-BQ6S@2woGeuhd$>5=Z+L?XDAfej1}teM*MHo(L3w}9)~arQ zwdGEM5xJ~Jxkvu2O_6{cgWc@6F13hnomN|q+Bg(`=U1E^g(gTdU3KSa!@!EtOcjZN zDnqBL07W4<;BBxY+f2(+{`)#{ZWBy**hmPl&*eMcx#Zmam28q$YlXr%Ucb#sF1Y5+DAVlDj2!($Ft>)?nrer>%>osECR%^!*dCB#1#~nsdl4s)zyo5QwZeyd@nP>q8@2+pg5d6YpU#x`s+~Fmk-<#actpow~!p=wih@*bBA3 z47{;B{&=z8cp_0c7ptk1{ZdK&a_U+iocEvq3t}d-(53i3MKOIde{AGNwMU0X(+y1NELz9D$9M%NH97VN=DN1dD~ zX+Vn(*zip8s%9~L)JU@JZ)opili5-nX(oeokUKJ`8_4N0aS{0)OmkqqXVacDcirbmFjA{7ITy&af%D}!eEKp3W z`~_v1ckOou@6XzQ7<>WkTZ7;Io}I`_QZY9>xCpq)hc17h&h;xO>%Nk)b5)`m=4@eH zwfR+}G$5i3#3n27ZIC2s%hao-s*yw8MS=KeX=ClyJ0$O*Y9Xm5G+nF6`fR79O`=2^ zZIb1>zCF}R!#tQL=~h&hezaA{P!h{AzLk3g&swySk|d!Z+(21a5O6Rg`{^t(o`bmQ zFY6t74!wU~56CW#;pfk46SI_xI#Nqpe)Q(e%e^c+mLd7RppO|5r?H)YpIsdeDY)bD zYLWJlH1V>qj(}p0N{o^|5s(nk=yW^%KhAFYlCNzbtiqaYd-ucJ+uJ`o=WsN5xYVmT zQ`%s{+YEwjt8MNrmSyz+)r@nUN6CgvAglh!*9Aa<&-rG$kw=cwR06 z#W{boξ?iscg&OW0DW7 zc@L|UzY?JqBPn6`8F-o z&exzUD(>6+fzYZ5%%L&DwUglxu{=ro4Frqwt16*}Veo=nMX`UsAw001TrqkuskNIdmyS?joy>_S|@@W_6 z4zXeL*5cr(y8?EsoT7I^=n`dsK?r{?a5ZY!@69)WPGo~6-9wBkWN~`BPaIM=BLONG z3@u`kNZ1#+GaTDl86FPw!D&9$Zpv{B0-3Mutj%KF@^^}=o(TdgZv=N7?N*p!yJ-~! zYcn`bjJvJYv^>;pdq{Nc+dGlHn!ycu20f0o&;KIRz`h8oAYnD&m?&6tQ3QX;N1vLB z+xc=*+(c_Rdhm5jeq)ma{^KFtuJ`8tX#qqujt%i$ef^BPdSjk&L0`enMY-?HV#u-E-PF5P#>dP?>gYZVb75xEIpU zqr^#RDdzY{r_*#8$Ckl8W4V$HVcPufx3Xp9Paw%dz|v}WwfoyI^Y&e^4jK&`Tb@ZV zQW>YN#g}{^V0QIa>$2gS8_WXJ!f5C_*y7l}kH5IYzaNmz#`NvWMk9Y@7{OCO7^XnL zxaoP=zQdFO9lMP7ozRbtA&Z1QFRVGPhnM)#Wn5BQaE_zfk@0?Mj7MLuhtt9dcN2KT z#_?*Ua=zoP#0MiD{(!vz(^JH^A!gzRGZIn@U%ON;oH}=BdLf=rvUP1Ztv^~`Xp7@4 zS$iIX$vRm0E+2%9lZ}7=h^>&D4<4SFeEl+p>3v?P&>S;Kk^Y- z-GIl>WDrs_dYV~lyfNiRZfiu$6Kn(s?)yRDxmI-IB<;|sB@wF6_Kf2VeDzBPiq~pS z=V%iXRakgLKvQxqpWM@2#BVl^KF*Bsax&HD^RMtR9M4Oei?M$`8}ujo^>Q}q&pzn0 zn8FCT;k<`{wHd$~2M5zlA&A`#F07{EnJPRp9ef{!_X_hRNaWb(#gtG%9fW66uRQW_ zl;8&={t{ALnk|meVgDo@3#jXJC#GTC9(X1zstAb`l3~Gjv;D>){{BA7ls;VS05%`4 z8~-85qR)R?t?JFmhsk0*oVQ{_KGm5MM^z)ihB`FRYnKSiJ`my+EbBT*eFfX?p38;@ zZ>z0VhA47@pxIHEV=u8@EyARN1@D;;gmN{r_jK^Dm95kO9Ut#du6nDI3FHyEpg4qX zOb#k5tqjvVE2;7X= z60kVVV2q}fE1APFPSENl<`2#SRZL+e5cx_FR-l;EIs*=|$xl-!fvMUpk z>^Xmd%uHt}fE2FqPD67g_XLwBDZuy&4+?k^n_N{EbF#|B;m5M+{l3x^3T}*=el^3Rg|4oy z(4R+hjM7K(0SF=rF-hni?MxPhQxNN5chG;r7u|6#KALV4!;ynKHo&KugJg{GlS#=* zTfH1;GmWI$idF#r+=Q^B^7+ss<^mCyX9MZHimBlY?;Z53kYXpEtB`ukby-xfEZ;y5 zCZ!3WJ|SeO)FUZHLnkhKR1a~KrDucmk+0O1z_1UFLtt zv?n>8F&C(n{Jsx2H(k&Oxb@K+U&M*fwyb-W&GzBKh8olBN~)#C8WNe(eO^?Oy9Q z{l#d$6hqE^N{-Jp3@NL8`OAKIE+UJJ3dz3S=T*@2z zop?6|-BD%m$K85~q#C~k;xc#yLERJ*w{OP74=67ZyoY*ySxwjO{Zd}D$mYsZu8w?! z;uJeWh&JegdPlg(T39bt6xwXjegzfw+xMz2sl>J2OG>PZ3)Q}=Fh-JcW#)fbvgFBZ zak7t!Dmz`siyd`TqC9xSX!VEMy?8lpn9Dkx)V2zLb$UlrmFaVqO{uZlJZKY;#Drl%|OeWro)J6Ui0@bWFQmfwZLQ*cp=rPs@w$id`kFw@GVBL!g zYVJBKm#@Qz5N1pnJRN9IDn0#%)i_&A^++N3)c7BrQ%!H1KoGt2E9PLySaPc73Qesv zCobjCLob%9Wf|g)U>1L|gA=F9fA8?I2GdxL%E5Sd=e>FJ_VHy`AL<~;QJ1Pg2pu;@ z^DjQt=P=T5;-w%I`rTv4gDn)r51g*PLK+cx9zpv}kXw~h-|Ef*W zMahp-RaiQ8-D*ond@ddPPdYw`OQ>#n_)UnhDP+D6gVUBf^zeVW2LFj!WnWdp`+Mi` z{E7pWiN#7Yh~dt`H|20t5BS1Jxr1>X{0=~#x-mz^2)iVOm9cOK)RtvDoVA(Q3WXt6 zLeWxhBs?O|{0=t|!ED_F2kP!wsp&|#Ye@ld6fHU8Ghi4bii}Ihu_BFW5zbk*^KMbp z&$)&5gCepFN^5_Vx!D3A5cD|uT!bkujt4`*kqp}!$y_n6~oJfi2dDq3yZ6VmF+h=qmS0)3x~a>GhR>Rfs@=7 zAB?;CI@~ipLy}%8zA7JIP`CU)+70nSx;JkSH8PL!499<6Ns5TvY+whUh2-{qdFR+K zb$YfT-JOigS|9Iey1x?M^_1cyT}bxvl*oLS?<71MIz>>XY78E+kB;=U*^_jUfEBjE zi|jp1_NHsg-^-P!_hY{We*n!~ZFA!`lK$>rfptw*RF&jZ?xQAlN@L3&)yk4il4p`y zZ)qtKl6ZeZkvxL**n7!;-);aT0q|Ace7LDfY>DVbqtP!}WC!lYi;I*|vQGp4HKDHw z4H*2k^+VgG@LYSm_k6mguO3U7@#H{(@WuGjJ4Jtf=u+`*r4Yg1JEXB){?w6X?HuXJ zmOr#dGn7AWV#7k8Wo*$XFv}4wR`*hJdWELL2(0CUzFL`SnEX2GI z%@+e%&sbk@4>>>Z!DoF& zHb@1FPi=!AyySDbd!C0lADaeu-hRIcAJfE6>UH`^(Yx96qZfen-5#m)?cN6Z`qeDs z(4mYyuhIba5*~PoXZsrpuG>PnqAW~fhh~2)Ko7T3dK<=+-GTxW`1-|b@-3X?J_d{Y z9>(85IWIJ}4`6;Le?_A(PGIdbFd$(T)DNe4>KQF#+AD=ekTvB!nzYk9s5!xi2FSg6o;$byebHX4T zMsaumPi>^SU#xB?8sR3GK1yWV29Q6iQnk~Uv3 z8v@+#613KTn=W;>JfwW{qM^pGQL2aeVl_cUY`=o>V3^SYly?XK4xoQlhTp-Kh7fl; zg{!;Cr>6&Gz>#R<$klJ#)e{deZu~Zk(;~El2~R>rg32Ngwfba4UP901BSnJ2e;<;g z$A&kICWw=*9&+pR&v%qLvB#Ba^&nv}k{l_?)Cz6B&Gp=>{1H0_^23aX( z^)3hG5K7cE$)}owq4bX&u)7TMAW+Ao00&%H`HVp#nXsTW2#ruRM6zb|TMbp3kuHHVPI~DOPn%&z?fIUp_TN6@gg0Y5bl;S%`q1bL3mjJ(sVlX4?h#M)wd< z`~A5w2k3vTX;Ev4jYi|ytR^4kQf=puZ|bEtVEQ5#(hp=r7XY` zp@;ox0%I95li^MnI|(gw^R@Q`z~14xqN z_2vpgBH`uMfuo5ujsTvqCUM#-@^?ZB;}c0Mn;#T)d3eBC)#tgX(1EQ~ibD{hqfRsYq3Q%|rZvgLVcQUO0 zfEdrUKIYi9BgnNC!?HtUe)4}^IfCChxbs+KC(f~Qgn9%nPQ@z*J7n7|t%@%77TR33C63fRhh4qmCDd zK)@yER*pfy2pQmlxKA()5A!X4S1dU6B{ipOZ6Ee^o-%))%`wZ93bRDD*>gD>2OG6~ zRbTke=EyOOI+v%|-SU4Jy>p^^yrj;B$FR7aU@p8GJ#!MJd3v+g>a+K2tl@sqR zoXt!>8Bq8Eu+YJ_3a``o@4Vr9GU2UuCeyUUz8L|z_6}ZxDL}SGTg}64cd2g1plW{*?081$ zycc@EQspV7<4wNqvhgmPv7=?_aAWn=|K<9+OB?e~-G5%g2n!Iu%1ZJ)BQQI@jeAyU z2wX|3y4#e&Z@hn$b$H!Lhn%p&U|NWUef&xKm-@y!4GJ3hu~xC7Gkv~ZKkPHlIx7*B zS@I3q7lzvFy~BdJXZ%03-|PhEeEmv{C#xpVrgFL2>SuM11at5ixBCk=y_ltzPhulP zl_rsU4$OqIe`z^a1t6$U4bI!{{4f#b?iMrky8-<(=hJ^1WSuAFU5d`5)f*G%3Yeb( zqHsz&9vI1ZpyJ(zjjBF$7JDYh2lYU)fp7gCu~8kr&O2P{wsqEgQ$GusD9A0spDJEc zFrInfEwN<{eF5{@*{A@sG}^2=8nka*MjjcoCNI6t=*(BY?NpjY2<9y>DMYzkX;2ClC0T)zIgdf#by=lD zwayA@JOAn%Z9}8F_X3vKzOQv+ru#XiE_JPZ%|vaw6^+HJ+l!JRPd9g9!ma?(dgDj- z&ZgzD70rN+QE@jn?aGZMjioJS<`*`~2t?~jbgqBm$uFZyS#_xLmnzi^Zx~=L-~B|T zEy`ib0~<<7l+*qz zJf~JA>{s@RD|T6+4XFcdkH`q1?6JrA7L4Lf*;zt1 zf!SDB3{Nm<3@2LWUgM*^>^B-Y*#4|I8~9)sP_{UYFd=S@)vLsu=ri>rt8Wgkavm`c zh=bj6*uSp;neX^51{+c z3*E)?Q}LYTlVrtGJ=fB)&+x{TpDZjln_ok}!Iqdi3) z&dZJu*r@w^o+Yu0H_LMa0+8#Q_o9CX1P@j3N8n{2D0Ti}NC##z4T{s$;`K|53vMnZ z8_wS!;d#&oV|k&%Xg#KWRXS}mwaW8@mGdmO2}%K}7Iap`2+fkR$?G!oE+dlxDvJ{Z zJF`)wP(TjFgZS>Kibrzg&j~2pO7UAXk7{gqG{XA`+}iQoo`TJQ{C&H zbpQ@{b*xaKL=uR%C0@&yj_fnNm6ph({Wc5`3{{gV)A!YdHpZTs+}MQ9YPJ@2oxR5_ zs;}r6xw}Id^pq22l?WNH5(2`B%)cOE^hr%QvePq}gDf1M%3G|J-c@t-%vYW2 z;4V{G|pfV^veV!`J|X$VOFdhWI-LqY>k|LJk~|-pPLLDHjPhM|o=%&l2Pn z$bSxpa{NEZNnY;9lLo*RxN3@ag7=I?65%fhUXiu@gnOA?GUVlczLG*pxdQ8QrMv{ruCqwd6zGZ)ZT>Kktj6Dm&Fc60K`xQ4hv`fL&C=TM_;No16c)emECLwnb zMf~r!)utIwfR4%A%vgzLM|#$0V%aQf1Hs-{k|oAN=$Vwec6wY4?UBd2 z7=R-4g`zg-PxcR{GTJAW;?;l)%DEreyXgHei5Xsi!=-ZZjO3Lymq+O!Wp#kt4#o_o%9^8Q1zN-QgcfMNm2mP(L7`6^35cHTAH7Q;^<6C3~< zvIqhNp;tT*&b)sy7`SX(Rw@AvfPuh@i*~-LvvZgdnK$CGJa#~G3I_BD zV#y^@*+H-d#UQ)|yr^43q1YZok5h%2^7^2P7juPGS~7`JmcK(p6&?AC`&bB^)#97H za~y$}Bm9Vxq-|+Er9=xXVo5_kvV4KzV1Kqb0X`t*xkY}s_ z8JSRn^0?6O3cUu5V=T@?8;Q2jCFc}1IHOsQKZAg9%tNS$<%)kda+u<>nNuo=t@qN? z9obFPLV3Ftv{?dFDj3=-VZV{kZm1QJ*EbPip$p$qqFLF^E96C(N@(httCTKzZffry z(j+!RS0jHyBJ^5lx4jC+EIT7WLsYY<)pF*&?#$_zY_^QdYG}=~uOJF5PzRNTHtt;C zXpQDokX=dCAhL|zrj)vnaG@NAmlQ&iYd85tr-PV=q07r!==z4pTVBagt&z8XxK3S# zLWD^0r?*OUN2B%*xbS$NFcs0OqJ}qOU6g9o{t0zaj-{VW7k+R0 z=(vAx`dyzyZ#bAt-E;jkzx7}9^E`_VX?W14`{C^L>_<#J{Uh3UK0XZ2F>dcfAC+tm zzxDq#Qfq5%{RF*MU2obj6n)RH@G7PzQj4@#Xge{;CIp3w&}maak?UN*BG{4b@S%zS zJ}03JOn@TF`~tbT_vD;&uM^*WjYg4W1wem7ECAV32}+c&77@t%FHYHFcmguQ1W=s~ zfG7xh*&oVT?-7!8S+=ZL0vg0D4I?ZBUif2J_%NqZ>HEp;y!u#Srg}9{S-?|R#YfY# zA9oHUPQo3Kaj4#krZ}WQMGWH!Bsm14B&WPhaE?Y1sDQ)J46Xp; z*N~Eb5`3RE&!7evJGQPrAo7juzrk8ubqvWWEIqi%G(D+#mg$Y zujMe99g$!=AT`Yh?r|?i zqYeha4(NtaX?d{SENzTgar-a?W%SfGVCVqZpUe$to8UKldhM8^lBGt1&(bdK+g|o+ z3)$DtY|QwKp*3@qJwa~(PC)Oj)g|EppsUaF>iT9!xnoFLzH3Mgkp5BAmj{1FO8Z>d z?W3K{P3o;NI095G*ue?Vh{=pYaN2C^vIf=Tom2KMF1kJ|XzDrm&c$kIc3upPdb8=) zoO5`(LU3_mnr^4l?wrNaTQG&^|AVXdyVb4y@;`v`m`2gXC%|jepPtSg0ZH)XnYv!J zaxT*@oj}lzbG|emO0`>mbZdWp`?-4-*%nt-J_T`cXIt&AUv2+%J7>CEA2NP#yI@SV>9KR9e+Q zuiYysabr!T9ikKpBzNA7;VX9onZ!Xd!@e1Jr`F;CgdDVnBcEV^;wfKmlMXVgD#<5a z4hvV_lpqaWAU2aCzgmBUqKF37dqOdv^Ft+yhUV#Y+GDUz^j(Bf&( z=niSspu;Ie-dHo6z?mp{bkh-vTUCDy%5pyUwO_80*ThMuujih$#Vh3W_otDpR%0{j zJogfvA)xlN+vd&-aNFB}kz|^Ei+bp3Ph)HWV9G}-nU@rbf_Z=XiBDj*bXmP>vGa@m zC?viC?OjS~>NX-9sfN+Cr`Kg%5oi)>_be1T)6SmUGe65 zV80APRsKs!aW>9#VRZNfFDR<4+;c*B=XQ%Ua6|WE&0c>NXkq3CO5CD5gL>3PSPbN- z4+S%7O?n}Q1eX2R1+S@N^Hn0q!qHB;`C^!8z6kwMSjGt+9tVi3+{Rbhe>k3UdI!T!`Y0vpTgnK^yZ@>=w@<~$4S+!W`DI-TW`}a z7=6#LFj9XX5@?}&C3F)ipiQu?>bkc{k#W9s7OqqIQkYQxJF%0-PMWsqB=VBT-~F6p z$Dgj&&+8yafiNrpg;EJhRH9ziASV}59B{k>xyA(04bOlmNT13Nn)9byFzzxA0xbcN zoJ)mf*Ry1P|9JN$x&Hj)Tk<%ItufQw#vqYvp2mMcMmc7vs469zVn#H>Di^`u02R+# z&<$3At}>Qmg$66FunB%3xqushHWl(el>AhB6HlC{mNY$ND z((#EWAwJw^9R3J*Wi5s zb4}V!9+nkPaX$49qdrVG4zGUv`XQaHR#;T$VUydwBn*@lywiY-8|~tnr_s3tHoJeU zX!NU|$ztm_(B#f5){8+iQwp!&z{h_zXYhO|#~ItX&18%7(|rD?1EGY=YwmR$-6iO$ zks~*NlN-MJ-!`u}VRgUQV5Z@aII2df)Yf&_sMowj?A@*EKDNO>tx>^B12GW2=PO3A zbPGlB>M9gp%lS^kYw`m^4`nsy>Gn`H7X+m zLO~p~;uqd}q`T`$DXi>}yi^Da+n{2sSHnU(yQ;8(SEjMMx zJXzfMeE2L)#D|SS-`^=kqpdWMWDr56ZAE(4qI#Q4ZLkL1Fxr|<-WOj2Qu%+lHd+C( znk9~V8P;NJ}vfsit%HMkXUpV zy99cVIwYahaseKLLd)_Mfm#<$4QqrEjYd;gM+T`lCaaoq?+V6{#-j7VeIRUI48TZC z7vt$sW!9IzqZhP0Z*`WalA3?hcGUowxf-i~a=w2Pdd|PakOLU9I2Xe&-G@YW;v211 z!EV|>5WV{==71twB~{uZ1gg|^Dx^SE)T9?AYqK7QRn4yDT~k#R|6cFfCSGGhNb3s* zd)|BV-t2JwDP5fa$-Ct#t%Xk5zgd&Ni z=E@g2SHnHJW~}b1MKc7;LH)S#)q@di1&bP5^fgdxCNHO@0Mn1#!CkVp_`Go^$}Fxj zBm6VYIL(kqjNDF$VO!+5X;N*g?NTZ7ttR!@z+!N#Ci>!si;I6lMwm<{aOE|S^p&B? zGyY=Fu9HU=95XKSIA)X~SH>c*jiuI^_|-fHw}d4ajYis7g|{LrGc%a=L>i=%{PvXE zQd+K^sj5P@mHCI!_l(o-2rf_9WVNnLx_OqjlzAg7r2jZGe z*Xs^NIKqFQ=!2qy#c92Vw?;wgRSWxPqf~ru9LSATxIs-G&LI0^5RVNDCB zVFFttmsixslk`D(vwa@B#+24F7Vl*hf3wbv ztRba^hq8q4pZv;nWBi)+yrI#wOSU(|i`3z?oCEs@tyWua+AtJ;&#!PR)+Xvj+bbDG zjG_s(g$n4jsi4SnP9SQqBio@xQ~&$ygf_%LlWFk-5c{0-UF;M5wH+^F%kqIlm;j@RB3tUY)M zg;eW$d0&1aF_qJ6klDmoVwseNXJ5S+Ac>wHfk-0xmbAiA=y&)$S%Qus5bGGXNbtS( z7zZ#FF%PK>TuXT%1low|;)o;>mW-ot8ApGh>j~6lQKV8CxBgg24VAjW5;DoCL0CfN zw{@liwb0|tErcl?)R0W#C=(&NIza_~F2=RD&>JNG-9j{pqD^e_I|@lI%JT@LYX1@< z?E)TG7=B3S_Z&zlRH&2YX9DyH7za!i$Tl{j+3eijA}mltq|eS)jvfuU2*t%!LG*v) zCU%yK(&N?2KTYB!^VHtEujumfvH`_8MWl&VEc6W>VSwy6PPu1Ct;{uaa)Nd$rK^v# zL(29$pGzsYw_99WXH4!O`9;qakePCEH3w;IjqSLFGFtkP*>|>C{Cw}0IVLAPf96J^g7z4Jyq+q-|5GXkomHjjk)fQ~Tkis#7eC|jRMWrlGeImm?5H`90e(ES+YCRBalr+O;YFRI(=<(vNP zZSQ(k0@~x8@!BwZqtS3w2030+iC^jk9{(ClIzPQ?_)lRR*J$+krhk85?sR{DPSu;E zKG^>E!EjVzg9X8Ls_l)toeF9v;S&5|B5T8)^zVAt-tb{khCE<$0z%d(c`%%K-Qka3 z1-B>Wo2e51f%n;AlvLk8!yMpuv9)gW#`aS2{FX4(5UGVk<@D8Skm!Halw}YxT*@=Q z57|ySaj0Mkk1ksQ$8#8|+tGi2pcl(j!PG|iP`eEkY8TjT?u7+TQFMdvgFZ?2=Q1~3c1$OXF^o;gx{P3rB^51{mxYQ%z*F2W)6^DKY4=l~E-Iq*TM zCGIk54bsTe82kWR%=4#BTsA#Em=c%9eB4t242JLi6*?4}9Cp|> zSvFYLLt(H|x}6HaaphIuIl)#s%IJSz;>;z3z&?Dig(ba@UftX^hen7!DkB|2;@Oen zl1~l#;yTTRm2c=9sStlwR-iLC-EVmJ55^| zQlM(<8P?DDkE;a~Fdx3>`9#g;X}er(mk*)L)g0Kd($P^ef^Kb~Ls^C{*D6k8vbSPi zVRn>`q~$bp4%3{+JkOH5=b|P3IwX=5GVo~hsIfl|xpfvSzK4Ho(qCCNcuMnM=|?+% zM8uU$Q7-Z{9>1zI$BuvO3oWYn?{%CILQ1(Mm-~44 z?)e^{s-j|Si_!>>zyoN8R-q)^u3ASsyLv}uT6fA=9T3ie zg%Kf4N5SWBiB(&!v=s(qQw0m>G1Z?dL6?=m5-r8_Ws3bUh*o*M7lfc{+jgwi(%Hzr zmc&oV5g&iZ{AD0dP%YrGg{?P6O9&(=etK}_U70%Gq8>>lyMs)gA~`%jK%)k5jd`Tn zTd??*vb=Fdl=uK7%Ke8(&!7-t8K20~D^lUMpPGsf9rQ*UO^2RQnUW3K9h}pU?R&qW zx^d2osFFVn{u=ABUtC=l@`JB!`vPfUi`?Wzy;Mn=cgCPS=r+A-%`-bGRXA z+kYBzWWQ~WF>Av>42Adm6&eCbpi9>{r9-C<2_-|b7|Qvqiv_ZLSaKnR{P)^EQZLc; zxQ~DP-rK*YCOKDQVBaHb)Orf`W7mZG_PQ;c_!c$!fbc01gJE6fK%JB)jGSZPTqN-f zqem5v1M>ob+QitRn8L@z7vydZ#!ExR6d(?gKQvyy#yw&Ow5F@iWX(4zRm5c1d8Axm z)z0uZE_{In!|L}xZ(#>j*YRAEtETJGhF*W5jGh&X`T72I#|3TDZzfM}eQsK>AC|lO z1HDvDi`y^|z57>8!LT+YhrPy4meSK6T9!Sumq1XI(OMu&Mv}9HlK);=c5KE$Ga6&MsO zfUB2ATWJXr-@P@dH=~e}0K}E{Dv*CJf}EHa*A8iapv~3cH@EpOZup)HZcklAg*Vn{ z3+T-dAG>`W>Ru@^3Y9b0XcyyZ<%k-JSEQ9T{D|U|#5U(aFu! zza}WMo3DqEaDaFJXJeYx$8}RNepHZx$1{YkQ|t8=AjH2hN>E35yRH7E=nMHq^0B{LNuCWmS9(My#UchSCY0wp%!6Pp%iI_ zg9B>uUBQKwZA+{y526W2BA~##2yblPC9J2ucP)nQkOsFn zbjk6ix4yU>g*1Qi#zWT+$es+bI|+R;n1voTp4kC3pP6feGkbDN?)$0l1_60KiL2>Y zz#bg<_9PT;V3C+OC*FtOgdW&T>n})Zg5ItFEGr_0@s3*&^GR2 z1+?K9>%o5j%s?~0ED(l3F$rDYpG`yIO}e1q2K*Rnjt%XhA={gnn8B9k-?Cli!{oxE zn~{rspUE|>*~~=%_MGrQj19so_zVw%rHOkv7MJeCarx9^LpLIDyU3mhSU_w&-`H?F zGqH2Z0L&P?_`H}clUouOWDlJ`GhFEmKK+`(t$A z#~k+;oeMYm;e^&zm6s>|{v9q`z3jz$(^qCd;a(lA@;XiX?~Y&ofE!m!NO2cBdh_z_ zo7ZoTe|p{Gp|KlmbFovKJ7{b=m2*4K(`G)LenpnMxh%F4t2#6Ld(j|T$@!hE;s?x5 zwW7{kWs9hPD5A&Cd^(yg0(&Yf`mG(Os%=plV>eme@k(x%GHL&A(Yz{Z*`@RIbDCp1 zmRSGULf;`7uQeGXt~aJ0wVz;_hNiRBbTyUT>km!GqKKFV?%F9(TXd%@de(;W6BstM z-+|@Rt+S7+>b&Znwmxxs_MRei&{RhWT7Roka*vOH_bha}bVB!9B@JQ||4OBD0dr+l zcAoFl>6{h|T;0Wj{r7vl=CeERftYr87dihi3Lb0lnWhNuUPX9UY;uja!jq87;E9W<}02gvNI1t^hV#Jv$L}{7M|a3 z-RhcuGPxaLrL3sV&FsVI`UAV`T+nRXztfpg%^VRF_t+ON~b-` z%ykFym1>?8Pd;|Mz;2rhu-n0ZP&;h`>tF(Z7s*i`71d++e=NxDt%VAw`L0joOwU3jNxR7`Ub-LZ|(a%MlvG`xDS8Z?NI1v8MuNdj*Cg?!j`&yP(y)NC| zQ|~}@cXd)zAvc+T)!FEX7!160JYboJC(zs!O3Ie&pglnlAY@$9UN36cQmV zSSbYf$g@1bVR`B?a(<^TC9$d+yT~6!sGPx)aE=U>+vJT8uYsitHSM^fiBs@C)b9LAJC;<*0_3J7C?99Cx@%~9fi~qQzE3%cyPZ~ zC7t@%UJy6Vsyb&I1g+hno9Qio=jQV=ccO?@cmVSLD3YPv)Ca}L3!u|_k>o=g% z++{_U^-9Fn6=I&QT2eVUZGlHC?I){a!UvhrZ)cmM?1j*1@1dNd-VUd+aj04xLlv-% zu7|*mcoTS|)5hZFJ&8*$y)_U3ni>K|RNB~R8F_A@20b2T_%%(h4~Yi9*> z8qk(M_^5X%TUvb}LXaou>KQvW=eiH-Lqja+%6rN;`G)rNHc<(>#aUFk-oV-1g{-z2YFfRk!NQRHrwXgj)eWTctCEW3;1xv3h9*)_PQO#0e>aCUX!Z^K4!!A&V z`>snbrv6@7Y6ZFDlX0cJ+Pz(~tp#+`?Oz@(wX25qMQ0nl>qoWS3|qi#ZZkE?w64~* z2~hQVKZ=dIZcBW1J+#|Ek%p@dwy{ui*i&JO&JD z%kdhvCZe*64oSc$0G7a0>Ui^FMWxTTj9;6vyBDDUJyVn=rsf8JF-d4KGT> z5F;a`bZ5}GbxqrWm+;-~HXTS}pH9y8_dlnDvD`^QB4i0w2#z+2GqW}y67}%L^@*S< zYDpQwRK&=C3`SvP@JxiysLh?S8HY^0g|nTUOJqJFxh~T8G~v-iZSxd`3EmmXqR20! zaW2XhAQf)cDK%{86U(4AEKq41nNg)tkuL)FNyYcnAh1km1B>8kK7D*xKLz)}3k;#z zb;g5zRW@4oyxUbP3_GcwMlu6`T3XS0iEb}Bo7z{9_%ahi7N_L>G2M42TOnJHFoC>KDXEP^?v z_Cof5r{o*A(%EUcCxl~dDKxnfHR`hWBl<{===P$yb~(@#BR$iwZjH*EKi zY#r#CM>vJwUWbr)`wr1fX^cZEU)y2IZyBzCH>L{cwX%ji)<=gtlY27;wvn2V2yFs; zls}MgRIrzSD)ViqRj#`j9EnK}!QM5QXpg6*&}k3*CcP*CJIA z1i^ydTq$XGvK!1!!X&{K>3=u7>7o^Ln#_B7`6ju!b-iP(1!)8UFMS{_!!8^h`1RGY zW+(>mPDtR7s6Ym2n_Os%%`5ouK*{lcY3ZZc_U^@jZ0_wa2yCA;Ld{t8z*WTQ02f5! zxKr8$p!z>)0P5h60taVoo4QJ)Fg%fZ&o|V?0WkOtw$E<#`Mao13&g${Ps_!<(efu{ zKdRGw*ztw5sC2g#ptn>A6;PS1Yh{cK*Rh5%}Q+;tq z63|uxz0NLWX%Jx@gv)y$tg9?mN@x=aiuct#c3JQ->;f+R%M3&iB3(XgIYXXpCw5}r zt(41d!Y~j;_xXxhR3b=hx-G2`rA4aL2T~uaNR@GhU~p_}?3AL4f3Nc>5R@R))~k4O z=Vs=N2gHS_@TX9S(@p zNGy7UBMgJD0Q@r9R0<9@{}zW?riu!I6EcUz$x#WMxqYA8PvpL~sl*;^1*y3aw71_+ zC_9)iH}ApVh@$4Oc=bfbLSmWs6E>t5o?;anx%py&4C9lGzSUWz~M#!%Fdn zWPNzT$nJuBKg?F{uZ=XoLqcs0G`4-dIQVGqT)=6mf9jy?*TdlSf@w zj*RU}r6MET9X0wfxSWnA(v%A9gC#MgGM1VFQh8?BxyrRzxep9Yhf6BpQIJ~x6H{Lb zlKJ>HSPd+Vq-D{6Ho@)B(57cm2N&k|CWmWa9Lyv$i;WggVjv(qOy2B=GF$H)=!BN0 znJu9tBp$1^C{tg+xB!>DN#n&z@1mTi6c8fOh_N&fECV@#)EN_p&ARwUSiq{LRi3_J z1Uspd`UaI(Yj4{&6#cGWp#}*=0jjfowVej8n_vM_+dw>j6vI3Sv`pJtB~c@(wua&V zzDrRLilV&La1?`&`#9&`Lu&e%A9Kgqkto58xQGiDMAdV-Y7i!X}PWaN_QZtlZ;b#_%cp zN=_m95p%(RC&o1Agb8DCA15Tt3lT;%6C|rQSt6QkAp;zVZe(-%jWB#5Wx%gA!gB4P zjW@vvPQNgm=Y+v{loUJi0*+ZkazWYP#;b6AE=1|}51b}ys9;(gO|CHyB?;L zwJC+NJYaDV31kf+_z$;%#g$*WQu)cxtvJT~{fCZS_raR0w%qPd?z;wnW}pp7ZZeU$ zSn=3@N^(%yZ!$jUwKl;NXw1Yj^i?K?C@; z_Jbkfbid%E!n7a4`ws^qZFUwLIMMKP4FwYefm2Yh=BcfoL^3iFAN<5lw z_&>Cm@?h@|ot&z>G>QgWqBi=GQXvniyoCfnTbi@A52PE{K&=~PB^Ccjr3~wO(t3G+ z_W*TKB#Haz-Z1h{0nCRqg9F_=_g7!M$qi)Sd73A!O{*sEpNZq~>vBF@zbqG%ArXLm z)9G~f`+E7hoPBbp>gI9B<=3f)d&JgyVHgXn00bJKT5uA|xhf@OW)s-hHfXNfZlJQ- zg0`vXa6!m2U%+iaSH(&OJ5AM zE2Lpv-U6Xa^tP0^s+%1O!{?XRr!Wj$s2|M6p6@(*|XQcw%N#$@wn`NC-{YK z?)XjM%BMf^0{wD{l#ly+81~>#ZDd83K>}z4*DvDxFr^>fn0da9z1!yPV#UZl{?SoH z4faKM8R{22D9e1gSU)Y+&bgcB#W6+CAPgi=y`r4Wa4zlD-gqgnz7;q&S!|pkO>S%E zFA~GEQ4SZ0mCY2%@D^?^Fk7X6`V)oQLvXO>@|p?th5*I2n0RhUPUet+Cx$h3D{Fw(nQC)7NF*T&whv)DM1O6 z0A8~c5)J#PeW9F1AE5L~nursZhiH?Ft$-w2a+cC8daG!$2N@z%DZpvPnjDJkn5qigzlFG?#Vg4B?Vyl=Y2mh|Y(xJI)I{QU@xQ{0Nd{(Ct^d zf+oMHV#~+~SBdtV7J@&@298pGQ>yLHUL&1THCYUF@!Z*KFWgeKhV;%afsi_{7PR6{i>0tOC@u$OM;-b2zf1AEHGo(VN;>m zVbXpX_+AfHuH?bhRa!}ul>TH@**=mW7m}6W)L9GPYGR&$%YW&b)TUhk{6i=+3r|~T zfN{D&1b+i?mo{S02*KNwI|zAgNmWlZsZz1*S(Ny~s7N|&y)6Yl8Q5&NlCH4k6dmiS z(w~HR=*&T=nX#Dp<`4gAF>hORqS|IIeMxaVZZfcsc<0Gb5>g@TyT|MNu()roxoUBT zZF12Z;$HuMnaq&4p?dbNyTMBBaj7zQ@6oUwe)d~o9b42xu8Th>vPjE8?^mZ6jaM7> zz)`6|s*MCs7{^&%=`&0-+3CUCJ*5}h=L2XL&-{xVqBp(bg4r9sM?CXU@ksm#ax&JO z(#b_hXfPW{txIaPK4EiZknsY>%~mrU;IlO_3*oST@ZB9!SUf_gv`@pH>lzyqw|q_5 zF09=UzM7V;{g(G4l1Y7YC5S$*(Z3^_9I}b!*59Ro_5HcHHF*6@^rLlS9(sMN*;Xm? zzaHJGxOX(y@b*Z16xIa)0Ckd4OT#b_fZzKoP8h6(`QWRyicAGxM9>$pQnKv2hILKI zrMe-1`|l>*)}@)tQ+mC8`R*<^cdAlRG)G=DjS!R3f}6r@6jFATq*23GNQ!ZU=cYt% zaGvirLN@t3l6lfL<45Xc{#vOwg*>0irWA`bidsS_+osC}rZw9XOWYK=7Gx+L{!V8`7e*Wj?5)33H_}ccNde%epZ8*H)M7Gf%+ z+dvS$>sL&{R5qk7y-Ib8aomzi8j@0fD7G- zzzHzMb#US=D_&GItY*bfz!yRh8<=gKL>AE>72Yoo+@&<%GeX!(nZd|BaW$8F)NF@g z_1#TU$By>vi-S zBwrouD7GqgE7QcjXOvzRe16hMRtqTJ2SIFeHQ0A-E$BJEf$7!qy=`uPjLUZ~dE7}i zks4W)x`JGCc&F2*;1bX@+6{A#0yh%eh?*1ZR4!0e;<8@*IfYuhjoe)q4?Ak;P_ zgTbDXdZjH5D~u87-r^8s`5cSMvL?w*!^nT1WZ91GBpvKwdNR82?)&cUvu^K1E<7&< z!mtDsC@m?`TYV6qqEF$%+)g$j^67)7Ys!W)oEg#Iza=&^W;Z+Wd)hXjZ zm6)E~W!J&Wp~y;ph#$*BlpMH@SF$9alSY7Obx& zZ>D2Wi>}tO`x-Q3X4LmdFbMY2Z5uve)JIVib!I>}H{)`DCc56(`+<|L_iLdi6B!P- zZ8UpDrm!EP50P8re;5ooIc+c-SH0O{X3S|k7KGEWE&hpq&_=t2k&p&{9Js!7awq8T z4m|%ut_;_82E>dY;IKy*e$OBb-7tbU!%RW1r;fF&VrUxFh{ztD%W{ug)u%TC!nQS^ zi$3S~QZLI|%8-p{j%Tt>Yex0D<=&jj>fCE(`39FJJO7ffrkwG!!Oeb2>Ay>UZN_b# zOP*`ieFS+bE08YcHH2Q_kvW}ibhg^vl=eoJ@s{s6c9;RP83 zf31?iPQx$^hVOZb+`3AzGQ@2Rgr*MdGLW_dhf0-6T^3Q2$nnM|w09><#kz5T%W`ro z`?G)BxA$)8gs4z8Kqz~jNh>aS>(Gw|=};K>K<_}IoSGUHV^y?J zAPt46wSh(kp7-(*4HAT;L!=*DQ|mYJe4(ja{IBtPuQ8leTt4Y_xD8paOvKBwjE6ug#l19!v{$kdJMj&*R&8(MMiBn) zUoj_#Fq>_l`tD<%&)6QkFb1_2NK@1Wp)BcaH|P4=6L|kn9h1e;fH^D_x)} z+$NlG)&9`{pNP?&EeL|6^6)Zx9a^*D+vN4zYzTem^?Lf`_ld6cRC?3wo+tM#yOl|8 z-`{I+53>#BX$-hnlYlT};lgSUGy`ap4B&xg2&rBhH7++z`2u+F9~C08HI+Eu9{G& zC}_~ogbwUN>XxuCfx6^>fsKPy&|9D)kSKz$$+7<2q>v4XVKZj$3n21gM8qtBd9ms{ zoyq%jW{t+v*|*nM>*?(o`UB7-7CMA;y$KhL|Cl^u!JgSJyEP)De@2D^f(DVV3$e-v zRltHtOdbXp;ON~jyZLA8f$?SGQJ+}k2jv*AWj&9+Tb5}SKvJNG!QYHxKJ^|JdN`=9 z_D-*@j9_9rpZ1zS5DM_H4Y*(+{gu7)_rS5uxv`Ij#|s%Mx(#=>Z+0Qa!y}de+A41T zNu!9kExi!IF&D?*e-6j+v)U+&kkw96ibip(H#H?d5{Hdb7(}#zo%K2^^kp2 zZZm9@=<=oC2R#q&Ay1Hg3LqbBL4pP`DJSVrE~gygNj1Yhf0VXGEtqYX^W&cSa;~es zsW0L25rWwFyXVwTQIWQ^yu`9b|9Oea7zc!5E|H@Cp%{F~#xLucN5r8X#rnm%#%lQ> zl6EWS`~jb2uXq2OKy{^5MNsOcj4ixFY;@UCE|qn$lqYDIr`&9Uu3|`BuVo}l1bXcV zQ}uA>_k!Oie|SK}{?Eh&nO-`ni%%XhVbq3QJZbshO=ji`wlEnAija0NXo23YoUtvu z6zKJExDx7O(uW1dNgD{y;KcVjozh*S35%W0uzf~X`J*Y0W?~lNNP2G+3pu#ec1Bfb z&03ZhI$1etyn$gP>L&K{DyL_p2B+!_oeY^8PIyLte}S)Gt2dJdw;D&|usB`RKq^j? z!%vbP+>X)kY}gU^bim~kV4Zbdfjl!Jya9mXJhp z$8)+zj?EO`tZHLtVqQ$|4W%3CMH4^wa1D=OhcPq+D04GRE$|+P*PaP?xOvO z|GfjWXiYk&$-JF6@6GJU&9^yYAqEMT2!_%!4)jWYfL!SFot&Da7Vkk%~=er>t)CH zdrjh2*`-O3XqvZ+k?RUzo#+Uv~;?tMhRg?N=2s2m1`ag;7~Qe3{$!g{gz^F);@b}^C;oa zWD<2DMI&`F_%VH82lfqRkilxhFbsz8ehN`qnm~8he|6ouL+N0LK@YnO0>ew>#4M4G zq|lDhcb}7%bYr^MlC1yJ@B7EtL}Mx}TgwQUDEm_1^(&%0+~#XTwnK@wM0h5LrD9c_ zFFsK5ilR@PUK|2{7Tb_yFbcfS zpopz8%k%XA1Nvl6<_D!zU2EGg6n*!v&_kgPf8=Ga&PvJB1U9x($Tk=lf+AlhYON0> zxvd%b@4K?&uf$FR^FyMKd(XK#_eh`b^QgM{!o#{%lEq8Cu%G-)9bSR&n!r}q#42XTT40$^c5sr=nRBE z54j+8@HZg%>3o}UMy#U_{~Do~0qUT%f0*2n8`s5Iz5~l0-DWT)O@Po3+;ryMgoTnR z-#t;cpOX6v5j})w-%KxZl~*roqn=TzGL#xa3vy#sZW!PS_=9nn0w8f0a>9O9L?wz2{fVp^_~0;N~YJ@*-2oOPJRrvNtATI=#deLgoa@I1XKs@YR2aa-yA!aD<0bYb{zY0%wV z#pqE7wP1wNTKgUwm<;hBe`-6+So$0W7ED2MQIyPaKn^nC z9(J9Z3|+PW8;W7Tx>HjGj6x^E64?`_Zo!cMK7H7Usu^u{GRVirf5%7q`hByaf z(a&@%6@CN*USr&0CUep_gT8^;dHeFJpl{IwQfdChE9B?n;Ag5bLk?C9`DDaubd`Pm zDISiNk6_ZX%h&t5i=pJm+_3i#b$(968KtSF)d*t8`Wtdn$42FIK6=2j-pPjXH^U!$ zF|NvFR%~gsf5kFymTSI$7`oOYxRfy>|6jz#?x$bF>XK%|ZcfENy;|#2<2Vxkp1(pv zg|)M1;O1+1RVHNixMc{%W9OTbe=A7#PEC~Kg3x&xy6)y zB|!0zF)Z z`w69(Fl!ONQ9#0;Ln z@*iY3f4&XoVP4tQA>xJ+9In2TFwZf8^(ZOk_&fy`?yanyvDLk`3I2VT#^P+lkm8$+ zXy^D5Ch>eg9*Y%D+32N0hUo!1=6Tl#z&h8NgOHH4aa|st_Q!3W@qQu=oooXz0Y2xK(qI< ze@eW=Chz6o+sNW6$w>SoWFGkN~N zgn|xNA)%c7hyK;1bVL#A{^<%WovVfif9ftYsJN6A!Z^cK$d)a3SmkFiaX-sR_9sBE z@myqK)Xhlz$iX$t(nb6@l#wMAojd6%i9i%JpPiPQMPanWb7ehnYFZ?T0hbEbvzb5y zDI(@?acA&O7X};M7QEY4L5q6=w@U)c4S~b-!8^XF2eAL$qnEwHG;u9da6B z?K4hj2aiU$!IPYGYg}ofl*2ij5ngL& zObFD1pCGv#)A19S*N{H`eKMhwiGN^8KQ!6C$7~7JJ9Dz11{=A*ha}}TwOF6!vO}{& z+kf)pfB$WrMJ_1uo80?|S=kZbxx>YaBn#O#A4>^+6Iy zqL~0b2&PSL^2MG#MS1^u>hhSP-TS;nxl2e|A_Syr?jWEzS@iq7N7*9n9KtFN6P`=1 zi&U#RmF4gYwDe=q;Ls{z!yGo^>(DX7B99sfgC>n{9HZ9+O-{LANJs95KG&KbU7SX-uZ>LmyL2Cd=lxqXCSu>Uc_l6) z7(g*BD9ct50*qfzf8?^JR80N`EZC?5V5@mwS07^kuR`Flq~jn^_cgv3SfOt=ZX%}c zgaol5_Tot%R5PI7YoFJSV1vjl1mzN}R$b2Xb!O!KiURz3%pXy}fN$*~B;Hg9WiBsQ_(+PMk-BQ}x17o$VDDsAh~~i89y0Q3S*IL~ zYQ2m}36dfI?blMlM`HmeUkCOYMZ8Bse%qBC$VuXRgZ9t?y^EsJ`6e zfOq^J{F98NNckAzi&;~2JJnwMoZjm>@mIZ`xFUEFzto{(+Wpcb^P749=;&xTzPue> z-ge$hHP;=2|0-gFXIUCy{qWfeI?B?X{aX~RoF1@eq^RLW*hky-q#16dk@O5 z2d%GqP40V$JHrrNUc|J$ecK+S&RY)mMOXWHVNyC_@4l`XaDDyzsk@ITr!MfiF#)~< zk0q;wvK%1P=;op06A6*2nbw5?M1G^ye~x+*QWUb&ER{X2zuZ?8)6(Vq|40BRpexq; z=L#kBnACQ4n~lFD_BkOy`~W(@efagOxJuA07Fe$vny}tveN*!aFze2L0lidFYuhjo ze)q4qL8xs=27^7t^-5bBRv07Dz11bi$~hKOWKWWthLQh1$#NXqaXQ$;^yKL7f4=X# zyDz%FDf80v)<`*#2!Ya)QN7ap5>@;uj66ZMs7gW+9z}*!<2rF4tPsf$RC*yz#;%Y* zll#KJU}+WsGZ-(O77Ua)T~1!n0svjWT(7Yv7xU_V)misTIB< ztu#q_14;{_G%UX^S5LRg$3eczf06ULWEiMYGmwF-r~Ni7#NM>KEenA{CrepSR4Q5K zdlD_OmufACplASpi3)KOL8kWs=dsP1@<X%@>SgaEUPtJGJ&m)RpWlJb1oT{4yPiidw8g`_*g4%&2R#pcm|v+ctd4 znGbOsx0Zmbt0A0;KEK%eo}VuFYg12FG8}H(Fna|9?1%6nc5D0(gP|v<^=9MHn=Kk^ zT8{lk$R3@`Vh4lQX+AHzoZkz*C@MoXpgEk$Hm!m6U^Esn){NWc&IPx= zwt{_=woW(xnB*>;Kl>%6|E{b{(?8;jxv??Eh1z!=(S2x+FI-7<9c~?x76l&|q+xRJ zc2H+dVfHz6Q}~z??H}n5-XFL8;RP83e~pn%PXaLzhVT6qJ#bhOFJ4`ZAw(hug%I_$ zi5a@X(y-e$?NlYk|L&9z`4GjPn&~s|`%dTb+RdC0C8`=c$}EuAie6~pFkGFtb77#t z;6S15n<*;7vRGZTHAQE_JScj^Kt0dooAvWth#3Bl7hU^`9x5zSd0-VJHW%6ufBI=M z-ora3IDQZxLh^BOQfnor(JUQgh4jE+)|MACjbf_&C`T+AMi4@_qGZcPa*5;e}-#mwU$VcSbGzrVV+mj(>0EOW(N-}dJEx5b?9}a z4b(sTcIP@B_ZfZQ>&dO{e`)A}uE(f&N;Ks%&~}|_JNvHcr}zSmkUvkuFcidhe~LGB zNF*3oV+uk7BnB4#O_d_od1)<@7t4NzBGm7WlNQvJgy6}N@9uZ!^Gmz7e?ko&%~&jU7t_$&%;CgtjiNU{)Y^-S&1l zD5?#aI@FKf;J!F4E2E(df7DHbJl73HXV9FCP)??j(=K_}xMRdGCeE_M>{R|d&vBSKR<|FeCEF=8Z`se8F;Pe&pbsw0dknP7FO>)S=(Ma_P$o+7&|H3AgZN(RLjj;*> zF%U%i{fd-YTAznlDA?;&2eKw}7>v1)-P4Hp??$cd2Ijq)NhY6cvkv>vG zgO40cJrt>BypwL1O zIU0hZtYT3`GSWI}e<^wQT5=q$)cx_n81Lwtozd;Qu4=|MC^UBnnJ1?Nt>~jhKfBHg zX7~<$%>}}fkthf^W%r@1Deu>S8Rl-^iu8cBx%-K36PD6 z+rnxktZ8YDpe%Kqes`IUlk-UKwhzyQD&?>4Itq?oUOOm+eVXUJ#Ld! z_6KrtswzU~fB&GS-TugZ92VQb<8A-S9=(kt`vNVDF$=;l5Jva=6*sn{t5rkJ{LHoGtcfR1T0!dOHVOM261;J96t6*x0<42Bp_u4hv2 zn%}YBHTyR6hV;TwkCMrUm$3q{PFeazIt)x>JX>eye>B%A1TQ&pWr^8`7hqmU?PLl2 zgXx3c@fHh4=ducW|(yt5u|n;NYfPLDKZ325S&~ zdL=cz=>tuUy$-@K41{+-g$D*0nF~T4Kw^fm5=vbcB8n3^j!K1icS2dX>4xuqHoJI> z03FldlyR9%J=w*k$Z5M?RUq!cDLP_2O3!56e>FejgEVzpct>{TWCtze81!BNcrn)g z8#+y5?zvYDT90J`UVue0w}U6_v&=>4(;qmWkSi`iwwSG)c*6&UkWWv;Fbu`-`4m3v zut~jerJ!jVRN{g-z-;-w*2V?+Hy(a_kK^dua;pOl&VNuWP*7V ze>Pg4r3)0VFBZ9Sc%T?i6WqC)v{1DfAI7`Qs!V>=@<>q%PR>`)`&=pGgt+dZBV|=# zNJ5ba&z*W#kWOezYcxbbNmt#vAsRFj3Jv|Z24*tNxqTzu3YL~K_%R&9jp50E3aq`W zP4j@V&0u-Lag?xoaz+YcY2?1kf&DIxI6qjC89SIo-?FAup?)w!F@w^3n}odyYyU!w z4K3jE-)-clw$PA#+3piH?=!|e&QZTB`U8HbPq+Tq1swx_SX+~uHWYsMuTW+@U7Xo8 zn?7~cbz8?_8&AA;#+T-yWHcBKHnSKQNvt<*_P+V<+pGf zb~-j#o=E^{lo8irn0*O>4&Lowr4SZw42$;K1#0*0q{Z1#M zfSkyWUm}x#QXs4!KOFn_rsvv2vWa%!GyTDWPzd$&OI(Tx&>$if$T#!IXYLLZdB^ol z4{^4Xa#YKUY#93th!6-!=bsMZR~W55*Fsj{Q-&t9(QrAQP0;{hd^4Wt826~t*7>!6tc>zr0eMzA1qbA0We|d|bwiVFdD-m( zTU1{V`;+zx%4Bp7j53pXFh#o(ZX6(O9RywvX(iy7bkrPRK1YoY-0AB)vozxx`T~0xTjvG8l<} zpe*s&IsQ*rCd(ork@V(LNgUys4{8#YG%A;<0Gj9ah`{4Rs=b~fZdP0oPd#G@IL7X!h?<;-F6AKynq6~(Tb@pC%UFgY3+dDQ;Yk6kiG5~nJKY8PDQvb z#))&XX{A+H$az_kWAG&Tkhkf76?xu&1MD_|PeYsH6vJPqdGGqIbQ>8&o2=X2snI^W z)zdjx5uxrqR5yDg>GQWA-i_yYu8&sp#rV%}xB2EtoEXeQUulxU@a(K^uHrvTbNO2r zQUYQVBiUhx1Ut?xzGuOAYblwlYS=tMAnI&=))?%*e;Zf4vTNVME76|Sr^&Z}sbx}D z>YBwNpyIrK`7-|fJ*1|$dqtx#*?S~m}bKv(F}ppUatT-Nvq>U zblYC9ggHsG7g%>r2TX%0steX(eunSboG(QJcbMjoqHRCkQC^6z|q9-Ly4B3Vks zjrOxlCb13Bx>mrsw{Bn(D{Ej0Yy%b)K(tcF;olA7&~yvFCBDjyg|71!s4rV{lNuCm z1!eLu<*E@^hGhV?tjn5Y^G5#sbS~9zG}>JH&pwLNa{N|Ii1GA~a%LI|*|iufuD?;u zPY*W)?}}omD1<8g{Qez(UXE||*=kwOK@>(1v0MaHpPfzN(|o+t@!QqSO;xK@DeQ^M z0Iws*0aD`8(g#iSi|ROEeW}F1eOi#}W@h=@^Yr==C?|a$G4QBR5+qR93?QCrGpYQwcy>)A< z-kGYYdaL?$pYA^0eV(UL&!loYOXVf>`(U!GHV{UblUE7844OZSJo$v^xvU(MWHeOP zjvphK)f4jw(S+BFf3raUF^X6#0Zn-ppQTQA7Bld(dHsMZ zgMDGCnkJ!S`*{HvHeJo#J5A9mO=Fx-`Lz5!VBR6<6>2V>uJ?F0EcWqZNmDL%9SAk^ zPs6>q43sLlMT2sELH#UWxmZ7*BvJOKH2{CZnx}5V>f7tmn-c~mE+j!2F>LkD%if&e zz<(CWn1(lY4?U?5C9js&Us9y&%O6eCQ@;dpc{#Qg1zL_%<=kGnTk*N;At6fa2~GM^ zyp5PP=T*9tTTohNASaHYZphN&74)Hh#|WEffc5S%laU5@hUzXH)}utMWFEE}4Ir!L z9BP)tzI;DO-x|T7BrXIJ0exBGre}Bbnp76CqLAiTZxkO?b>+ zpxZxH8pIb$23aB{ESTX?Rgf<=21q6l-mIpM({`ZH`Fu#$1t;IVAJzM_U>40{Ud3Cv zStfWTxXzuLUKwo_wbM&nr|d;<(yFAH*w5c|>ad-KG||K3x`OM>;cNzua4JN{UUmf0 zT%@k$q>edQXN+`of!a>{1yMlnS?FzY8>-X7>*cbr?gqo1ScO`Dfx|U|0|%eP}VJ5jmDB5bX5otNL^t`#kw|hcSq! z`Y4>$e0kazsm{jy#Qq^Cw%ufm?NP53fp>n-|G<8C_|&xU+IWVX-t9HT8rBsL+eVi%V2^S9JNh`a7^JjsMOdC^S3N9!eEejLWS?0@ z-^rb_&p%B|%PY^*nNs>ZV?EeiXE(Ad?1C-3)yA^d4ZmavMo@P+2H3T|eWNxvI43}s zeq$Yif9rohM#sth=YDSRGk-8_W164>~O3 zoy(Vzb&*~tHv4{e0BCyHKP)QXA|Y%;XP>Z;oJbXg0qPlPX!g+*ht;DbpH?4soN%A` zUv>KMGn=~jD&_ha%{``V^u6(zooI3PP+wsBemW6m4PtXYGpBu^(>Z+xa=)=52N#Dl zGr$(GC%~1L6+1Cby*+TR=c<+LOIyzT3duxTe&figUgPjX_xeA z>lllnoCDE2O7J8A~si+@;d#RL~r`d&sauH zY}l)VywTGnB&;ND;XdoD%LxYQU^38Kh2s(Kzk>ZAc&`5nMvg!(0=ou_e}GzZ*EwXE zJDe@6BK_qxn>w^aLfri<N*_>F#6{-RK`}X4+iCvZUd4 zgTV~8Ct2!54!PN}_d1;$v@Qx~L3+|h(Ooz3MJSHDt+Y-r(3TsI&S}gBtJ>BhT+8KzLf$H3Tl zkTXY^G7(gvJ@t@6s{R_&dvT&Lm|pq-5lf9bfxrOF4I0*&utfahZ3P*1qzi6|`g-QF zOFjKxG0F#+D34sA5ZC=$wg;dy-c)oJ&m)E6TAsU&f8I+$MZrFuPoh>glZdFw)TxI&K)XF8)ZvzB zXHo7GR4mnK7ZL-YxSBtAz#LJ@+v-2W)X?Daf92SF-ljM&hb=XXYUMMogI{-tQfGaf z;a)svA+_LnX=4uI!6of(hVmXbr$w28-4U%=Aqo8GZS^^sqp&W5VTZ%5MNUmgClo0k za6i#5DN|Q*F8qi0+h46~V$NQHxNs7JPg(Sz(**!0=L|7XdKQS-3<$bfFlg4TGLIFM zxIMg0hB;!p*DvZU!C9=~11w6!l#hB?$QFmeHwnHM-|qyO1F=UF*gpD?kz`$jz(m9Jo8u|ko+ zLP#+1GQP8>1q4#(ic4w(6oh?%1P$r}CS8+Mn(RD~DJ4_Tgp;30*R{K9P^V-|3o!OjSf4rNCj2)vBjVLYW(-@yAg^A;L8%lF-oj+ z1#LNHaZyR4h99kALl=|jxY(7A!43IYwfdatJa*zFo{K)ehUXPD>N!~Umt*PGky8lK zQl08|%&EH(_$Z)Q?^*i#uLueUqlw-cZjVsI z@&5(M1}ZCpi}r5-K%ve$o}dCc;P08O5%z*sC#&25S$V|6maXeXL$YVt{uN$=l=LXPvNxZhRvp%+(*MzYDy%MpEg>{XU(O6xRt=wNb9GY1jgY|74SdCeuJhgq12L z5YNyPJaL8BlZHzDY!8QQ+TtSO;DTq6LbUWG({vRH#N%3v0Ino*GHL_6bL=?&h|&o8 z^U-^lHru=I1FXriC#NCPXO2b`^FH?N`NcCyX(L0=TN`>c^Q}0eKLor0OC-S2QbCrs+1t8i?p;%srM@lkV8y{&@#Tm-ymEP`x7$%W7)i7cI^)c zEi8Q3EPuG8>ck5A$Mna^CO0$$!~N&rNPQBD31z-sX|`0$Yt@bvlH#Zu=1s>y}~ zK@7dMak`g%TlM622alsig!8G`@1h{*%ltI=ClPA^)Izg*^WCaosHwJRSGF(%Heq16 z74o9Y5G_0$M#Va3SIp?fH~`}U0A`URC8qC)|qDeWp={Yiz)aS+GA6J=O9G zk;c#1yo#}i3TXg!sMAAu`VbUzaq)*>fqnLC*i|$%4r%TupGj=j-Z?p)zNg9uTVB+# znwR2?`SO$ntLURGj%%I=`?8_0B#dgVlD7{4DjQ(k-OM#ee+(krhX|LcpAW^ee=8J6 zbw_W`R{$N-2%T;rh5EV6F6T-YBHk#wTu1Fuc9|;o^7gOr4Q^VU4_E|4-nysZ6=hBC zsB2LT%a^o~tcoW&&@Br#(dmIx%>Qz`@J4~a3a}6fVRbxv-rnk@cs*OcvPHMl2h|49 z`)!?qf(zyF-+;0!sqR_OZFR%ckwuR@j6{6dqG2Te+zWT4VeTI$U@nJCB;qR1)!d|= z?+4vz7&aazh*qLiZ%888tSyGnfR<@7-{kTQ+a^7(MbBcPM}uvfM3<0G$$S&J_(3CP zbP(n!*n9@FuGe5F)$9B&wH_B7`7{IQYA~`rZ+7T|vCF2qes;wKccG4X+yYUPcS~TO zcicp{*tmfY#YoK1v{BvWw{%A^>%~e}sKH5uZ1AtlmsdM&qgK%_C!+bNW?<+Fay+{@ zGL@zZ&~?I~EluGl!ZK{FbN0*#d>K(8tJD8DiqKnmG#Ju^0SWU}(vXJ8{3HZWv=BQq z(?bQ^Eac5>_z7Fx{In#iv1HwI3GzAVtli>$@ehUmG$D|h)=FINa+(IR?$1;uIm(i2SHdsVpQ6~dDEqlf-GoG_(} z3-;p@yD&8SRPh$XC8oau2r3Ks52OdJZd30Zbq%^Mbijr`>am%P5jTD!dM@wB^NRW( z;xsYnX9Bw`&&&<@xU%2VhuBC|bsS%gzhQO3qTce`w`%{{Y{f0&UwcMx>68&ijn85} zMK0*B;t=x4FPFtzDj5fp3A??3WsTI25upu|$&ob|RAHL@sxo2S%zFo9Jd$<#4QFo4 zdgqnt?%((GE>AcN#x|%O1&_Nkhybka?XGSkylHh-#ieS=*?4yehm|M)(_H8}r)k*@ z1nVa>TzNrZetTJ~sU)|u@&?JU$Iiytw zM-o>$It319D-nxc#{jku_q$2XSF#mjb0VOfHlwCyrHG!m4>-^jg>il+ zxNE2E;@|Ipi=ye2no^&-lU;`J=OT*puYPuQ=xBVd$OOYm>x7&N<50FE;fJgJ>eVjE zh90(c44&9+xo6$Q?vz__dTwb;#4$Q6DH!GhnyMQ}`BEQP?8S*ZOncA(3}C!Tiind5 zo}sYh=Tw)i(I8k>^!AVT1F?d)v6d{^b%Cx`;*tg!4aFYgvd=Qka!-<>d3u^I@Ugj~ zHFByDh9-|cSIv4H?z?OK)^rKhO~%02j*3xuyoy$;b6V9ByNO?Pi|id>3u8p36@(#t z82~l=R~ohVc&46aK7T9!im0lKIvEo#IR>>Prs)K7vU@`WEj3u{HABSl9iiRixQ~m;>Ssp9-6X^&AtMzgq#LYT>YvZedeHvhDaa9-BCO0$ zna{j~jjxWW_V+})?oiaD;ByQ)AoFqJ00+o(B1%Z+ z1-tN-P}IU7l#ZL9N;OJlr--8Y^N>F8J)!`b2U-i9E{L%Yk~rnDG{!z=bIsFXr%Qq$ zRMq~Aj1%-`VcLIx;pq_XIn2dE(gS|INg4q>X@&{16%DGxz^nF3(K~lGKDM38p}U~2 zZH-{mky(iEhN?WN*V^XiD?Ew#ECVqsVm)NF26M>xWhRVzHDk~YfOyVk?+iki2^s+O zWqf8Qso{Y}l0`1?&B*N}>MX`G>~@W%VU4b0{8fw^%;G))ISbtNN_j7`AnDBHPMt}tQZlCg z?KG0Mv2tgWlvr^%2CVn%+XK+n&AklY>w3+;d&mJo2hDUjESpduYQJEOwVOSGO3DNjK?G; zK-4ILjb3Ldq`sim;VAjTriWQ6+w?d_&OaFghwcK}SpVvvhrDMjRCJ+@ya6z>?DJ-W zXt2Gy8&@1{9gbc8VGPN@YxH;6xb7N3@L}KaNyUJDRg3!xmg77m_b*oGJfGyf&5eLq zOg}8pe~MneV{o~b?P6;72U5DDb^SDrZfvTPOSOpzc)4z&S!@S4zhhpzRLRUj+aaZx z&1(d&+nd+*5p?!uN^l80TsPv1;s4DYg@c)S!#qa107&fM7kfaSWZlsWXvAWb#lO0= zP{z5gH<>uL#W6ys=cMV{D-r=%E-1OoSq)!iv?QU35CcAFgQKa*+*6vY+~2N3g4gHv z#}u<%^mb$4+Ze=Bx4R*K0${PvkZp+*Cu>xV8s(KpjPZ=HCZPh{PfzW%%I*# zAv`iR^g@B!Kx0)?tKC??1y2`jyx@d>$Ni=WIkqw)) z#0>Y$_O{A;*1)Ez&vk7ZQXqF6Uo1C(;_U3?7}L_HLAk-*I?@(iDr;aBV6ZN|Wqude z$H(<=J2A1;e=O+0LAwAoi5Q$$ti%yFly!JjfCZgfz+uT5PhGLtaGb2gtglhLN6n!d z#)Ar$Hr^T{SsV^rw@_9N>E9$s}D`=x-NW}<(uGe2wENu`vKzdLP% z-%{Xr-Vv)F0ZIz zHX~CGX|~4e^A<*+i&|m`VRx6#f=x@&k}*pK;j^Q`l7@_ZCJIL%-$NemuupN+sokWL{dS)|k^NarfawVoWtY(TeF%!sSVX zX=^W9Nora|fg@y`im74}SYpja0Hf^a!skKDW{|Oy$~{1ebg)J6jK!A;A2UIE0T2sj zyme3Zg=meTbk$@=++tA1Lr#x^3=u79Ctm`Sw9lst1XN|y6-7>V1l zpN$h;8+JQ|bJ%sWg`Jt7`C<$61f2{4RnA$7>snTy3X=YtyrPiwk}}S7^OuZ-xqQMG z|H{Y=8#RD=RY{QV>^=F;HdXK0oj~M{kthblJ9-Wz8eCmatcsz1Z#<<*K6m`hHgVfA z$6?eDU};r$z#KhcRV8gt=_5o}CrdFd(qczFEL0|WmT)S$)*~*H7J^fJE3i^vhy%Nd z1a|PpX9(|avLwl`MiR;{8fy0uvKtDVY)Wx~VI9Cva{0OI-=i~tcljy*Ib5P|n$2yN zcrQkG5^%{&KNA74qck8@pi^SE%`Ao)^sO*P1|R>T@H*(n1gS6ve^#xEz*RAIvJcv& zTtUNBDEtoSi^LCCdVcC#ew|16gj(qCKRwxTE98Jvf2yHIT#6yF7=cO_u-2&Lv3IT8sbGGw&rX(~B#)};XLJ^;D!y2UU zHEdt}mnM{3YkuWJy*+P3g2i{J(s*`lYhT>WSv4JWAN90^K0MkSW^%q%n_wXyVpNBJzsUZ&3u~F(*_7O;K}u)2BjaSA(!0Z z9&o~fS|jIR?a88^VW1U4dd%Lz9@ShUf2lTzBcAM!llKQO|B}0q8Bb=Pqm%>(u$1im z*hHRK6zq}+xc;$8^{2%N8p}B8S6{WPw*VOqKJOAWU^o~PsZMJheu_JCmNQO9w`*bkRC7ksUIJKsph$op9js@b-Qu#*;9?PTt{h!) zqA?C9;7XK~(OsMgMw{$EpX1J?{w0hhFLWb#Ep0t2%1;qA>(vVd9{vmJ2GB8IrXCF)nB1sWf~sha>k z5-3FMX1ezWO$azlYWhM9C?;xE7FvcLbrmbhrDipd1q`>c@aoZ;N8T=!*ePRQVsVx6 z{A1pFP}9FVVWC{p_)P6`!_sa(seD&*TGnt&0ZUAHGABiy%Zy^3q_SaNaaXPz)6G}l z7RM7AGPx;6rP3ju9RvL{$|Xh+pCDloFc72&10tO+tY0-<)qL{~n7pQjVeqkBv*3LB z?e{Pm8BSted|uF?mw`YnBh={2*&?$5{<=4MbkR~pq9@;~@?fRBQ6NeUFYK^~6k7IR z&TmEcg1Kn)c_xh}hVG5bn^}8r*%6@SlIzu2i zX59d&Q-x0I^^qtQa!Cob5~S=J<2C>3r{WTYT;t+ydmAl8ZFd;vl%%H6DN_*MY4<}F zpjx1{r<%Am$u`(+ox;=ILQkPWlaOiS6k^s`y*BDV^(E&EFkn4k49f$*_J>Eo;4*xI z*gCeK`zLsZY>xgChmHP|JUlJxhAx}Wl+EdnB{%Fcw%83Xo$1c$N+00x{Ci`g_|3YC z=@N!V&`|Qw`aEnJsLtB9`zvsUTP@>TO}~Wz9&aiF9<4s1184i}%hPXJuMgudq;azf zjjlh)Lf{h`pbGNmAH#HLT~O}wMzMpW+x(yPUXc8iDaH68H<d(m?|=&qX_b~J#Ij|Chd+j-kYKFUpe?;HsuK2AfQ{@?+o z*^isgi(_@dqcM}WPBZ4eLy|V;(ke1XQ@8)7uT`vc00l9Fysdq1x%l(m&*G{O`=Snh zO`n(dx9$(ZMN0C++L+TaM|lt@ zM9xGm8N)e(U=&>@=N|w$ZK*4N=fe#JEr{By>mAd97SvinY|ca9Biw*6WK%DADjxEf z!37T&fX_CkwZ4rU*(-Ilj}CkLu6fRgrT2pny6bd%NetMk&kjGtUgrIM|LiMwYD8UR z7IeZZGf7fdsDmX<+@_Lyo!o0}ubeYD&Sd{71=nU+r-aFB=EwS?JuY=hih~2HedrIyUbYAEQ!#e_+7yXm z+QaKhh`YGw3!*w(C-$h#adhXO%9Mzo9vDm=&nD+D3TEd)JjM2sg9Dy%L%pj}>HqqjzH}s^_P!-czxsTy?R=J~gg-uNWV=xIylun+0IxDy zx1)gf)MK~r+t8h_*Jr?o$o)S7cEHQZ_d_q>!?z_yFS$7Y9D#>T;ry-*4y~| zrqmT#-~*Wy@Qz}cp;3Q%=E;`-FTgY5?npP&8CQ#GAixz(Alq0VBh>G?s}WK8r`MVq z!TPWm2MpfF#beWk(z?s_^?Z?@8(1jljU(wH98pi^i)C{mC4^I zZ_3^5Qt)*1$olPd6T~TgD!bvbqrD(;UtZk3hml4ynVI`J9CKjnp2dC zKJ%@jii4+Ptk`gOdoxwQyJEUUf}6B?wcteisVX^_>XviNBCZTkC0gwnOs0>nz6G{% zm6b9`C}MEQt@t^~1oeuot}MD3W(tISWva%@?rh?FAB!~23WXRA95T6)E~jW840y+V zOSBId1bDuX;4TkW_Wj=z=!7LP!;+Qy6O3*U(r(Y}+;TEmqN+^5zxcN}QgG`OF@KDB zBWAUGb^;^}csY$j5OLob1pYnogj}&12p54X4Ld?3$xf*XZ!y8$P`Q(`^Q@OhBl346NXO&SpB0C9oEhPq zN7eAtRWw%hA=gVlJ0osaR3xH0bvvUXa0YLq)Dr})OmuvRiYvup_??=A|A;ZQOfB0> z%C=p!JFK+>Jx^3(6i9(X=|)_}%~%XOVes*hq3&4Tp^gkyk=OM{Z}8Wdh^%)#PFcX+ zgbQ72SvnT`D9L5>lZ=GYs}@m`UB4#d^-{d5o0mKVpWV zIvAYyHatMKsl$G0&ay<#vH|MSVbfES90IFXhD7IsX(4NImhy#OrxOXB`&af^8l3rP z1#?nl9r7OffpD+XZ`X?|*f^z7GaD%_A{C?yHWc*p#f>;?Jxiw2>I!B3;im$WjTVQ~ zuyReUUV@RVC*6wI0aEFOR#lfmx)eW#(2C1=z5;;Sx#Y|=QEU4zf&jzp)KA@(`0fhQ zxB#0!Mn7(4MM%U23x)Hw>ysJPA*w-C-sY%>G}W46Qib&;Ld^N>3{DKFXHf;9l29np zjgSprtwgwk>+A%MGo(q?!4UWtK;$BkP1LM^)h|;vzYr0TR28i2$`RLA3QQ9SL}QH+ z!&n1Y7QtULs+ySm+&jvmp%tUvBYk*ixVGbk<=w^#vnzyU{S(6Qyzoh%CTn)y$+_E= zknmZge~GVc&SaldKB&tuci;D4Xf>qrr{T-|o-uU2XeUgdG>F^!``PYWpk>=!bn2Kx zhC%WxN)6$%2#4DA2$fV`MQVgtdNe;FP9zDC5J)|}@hOEsJQB9hH^w_?&0=lY%&-3Ht@)3C zcs|pz49bjPowiQaWB${IkSR9&9VrKMR}yZ7YU{KIUk;516F31746TmmnVDC7HmUN+ z$zC!3Ddmh%20H3z0c8YOX;NT;xh#x;vfccRa1YKIXuQ|yc6)>`+fxqwsgz6imcfg* zIFaUlo3-?39+TdRjN&(gfVGCoRrCEsc=O4>TeaI(QY;a_QUi0u;!NZ_b5fg7%$q_H z*ZcD*X5;pg;LcWDJM$2d)P?P#Q|D23J=$SO)P-I1^1af3G{azxq(2wtqd&PSnTa}!c`ytYs#>@cas<$) za()f|Gjyd*1OWfm{pN?H-HDV^TtaHl@gy4k)3p?D`rXv3o!}DATTv06VexY+#jIcr zXdO)~48l5e?VBh1Zl-PztO)>&3Jx7t+ws|1E&TDVA02ORBfRKXbgj)p?)5C(G2ub+ zTl0U&@TO9>#&1S-@Y@w0Kcb0Cy{;G&L+3RG?`eJPG65&E z9zm<86_MHrA0qqx_D0*gSzKI1v4)ER1RBbOT}5VRdDt`tb@0c7IL822C&`bUB)x~K z{Pt{QYesdJ-I|oGA58= zid^375jNSn@K26(ujc@t>ydU|HKUP40fVSvkH+m~5=6__2R`MI_(#dvR{1u2DP@>y zKu^9ma;DFS>s9Zj>9!|SyQ8MQZf+$nHeiU+mT_7@IVdA)7yUe1^d->76P+#z0SAv+ph8gaKesG#^+8FOZeOstrKTTaQ9PL2o8#!joz8jPcR4uG5rZ??WA_Olv>_ z^Zz|kO-iCv=ItU>OjTsM4#l+3RuZk_GmizgE>|JWjM6d`wsKOh$^!qp1g1WfZmyn! zPow;-U$H&`_i~o0Hh4+5PP6%L6AMmzEq1UmV;SpSI}A|Eu*ovgm6H3C#;9N1g_n>~ zg+(efIKv~ECaX4ikMeKHRn1|6KthHtnl>RlRA2YeQ0nGKWGHkvJD2$L>6v>VZ9QC; z#x>@WS49bhe6-zhlHHT9XXmtPJN`wC9h4_36r{1QotoT3%~fOJ8$VUsVJLm4OwluA zb?g&+crZX}JnR1K2rK<41m-{ucb@OOI>#G79E&0if3lb1qs8zMG0=*|d>j@JBqud- zb9Lo3OmZI1cV8?%inmNd#MHum*{P#5p7%T~8q07k zS%{i4eVvNJNJBV%dh+e=G*^L|02+EU#+6zdOI+vnw>C5xG+5o58dX~u&AG@8F+RWc zuTSwQHyQ_sM^B~hk~0$?Ie+yfC}#IOa|Q?&b0cQQ;FYk2hYApS!vPcxRHCtS)v0!= z8bFhCkV=>(jz+_L2u!IWf^7xe*>sxP^Z4?Of4JHsPh`7hH&vJ3m1?h0{15@6N8oz$ zBpymg(;@dycz69RUWvf9#?edi9j^5s{-JX0n)+Zdy{-3~u1*^#$BH2ybQ)iU%DD{Z zjxe*SV{Lfq7|*sExztM#X~LRNTh0ksrvO>v(#oVKC2WCah5B%#-9&WY$^bs+-H>oa z;GK*Z_K-{W&hc~?bYD~MY9+{!n ztBe_gTXKILxPmK3MN;Fbb2TUbnN&P9!QUAN&cX?0e7fI_?;#g)5tuwT#BHr{0YaKh zW9@)JY9Tq&Kkc`U6~Qe|jp>$1xilSxgZSuc*`8wZdl5mH*DmPAC!R?0svEenDy**r zr`RvZD3V_3E=(~GZ<|n3?(Sk~=P~iE6wMR5J<8P=txSXMF+?+aS6YrOIItKFFFmF% z2wnktx;2o$bBNc&je`X^dHqSfHK};QC!VzuvAX|MG*9Aear-AIk`?^EC74t&TH%S`8WmS+H!Zs9W& z=udDB7F9EDsUL4wG5fEKCHuE$J>b88V8pyVr)EWlIiDS6;U)(}&7jB&Dg1^uAN?wF zb2YJmnWx>YUD=B4}YrBU~@+cmA3|m>0PT`~1TCCMLtA!R> zKQ2{iW_Qmw>x#&7!JNubqf1Ye5rA{w#xTqpVv%>@Jt?Qfy5Vib6c^3B2gMH=kBt)-?HXYYySG!GZP)fJq%20?TA_LM%UJ z+eXR9AY~aI#G#Xjh0`iLJ_Iqj-^3>ZrD|#SFoCR6hD|!34^OYT>0WD?TE^_J(md%j zg7gZ+Ue%+wsSW_LJgZzW=DmckDZAczO~_Bdo{iV$!lQd<@XSPH7FOd2iIVw1SVNVVVQ*iR;6B$*IOYP+! zbq0%kT?vhtUvsCIo3*%lYKK^V)uovv48;^&ip0Uy>u`sDC#jtAz1EmMfdBDq{8lc; z6I86KG{1*-*0$Tjgv9G@eOIj{06kFCxI4-DH}71oI|14k+xo0^9lYF^Q7q1oMv)}O z`Z9+$wT)B{pt}Um-Eil9EZI_hR@5u;QF(`J%Z4Ct-xN?1K>%iD-8IYCuS`A!IKDZa zqM8t*Tx(}@wEkwFN25Z24lM;# zX^hNCC14>1T1&i;*Jjsg%{V;&Q7ESf7GA4C7wSU-Sgdk{#s6)l1wxl`7lUi_(K7E& zZbiXP$OwyTXh8}69a}(5#3NKJE89sMWvFY%?6_3}b^bikA*w+NjJ(T$io_u_FDF{U z3|zL z=8Xl-+qz039x#H3CR|M=MO+(*@0WJjq)d4Nu$wAJU{$tIgf)tFQ7-rn^WjTEUub1c#Hcc-7+DD^KDzqlGF3;7t2 zYF~k75)wh7($Si+Ktp9uF4)rbq0QoGa!gI2DN(HQdp--U{GnqJ;ag?>J^6^cr( zJRcn$G_LyaQv+hAoLKh+0$#EfYDq>Dw4MOe(#PFcjDWLJe+V~=q|`0wP+wsHAa*8Q zGmN~dj-Fe9Pq_hY<4 zJ9M4O#Qzg_DFu3pzZ=R>Eas<*&}i~TP8G0yOq!W4LVbOsh zYWhRza?Nq?3YbF|C$tN58|UeMu_n6>reDI9FsHVbBqd zcCEjE$uVLiHK2XM{7zYf^@E@G)>VeW#|k=Cdy} z^;xoAybCYEEn9Hise=A)%G%Cy(f3@PNwls<#$vN(>$5mF(B4V81sHQykgd+F! zoNy8UCB3T9P_w97pql@|iOi=3fmrz*&G)yt4`YeZF=;ZEEZ2Pj@VWob7N;|0vpZ=I zZu{x}iBt~>*x&2FDCfdB%^s@)|L3r_dnM1W(8{y z#lNtpdZ~nu7C)?nE$({~%!1;Netua@7{&*K3R$V&@kvsPtD@9%7_n2T+J zXE0ukA=z;vh1slukInh0LMO`?oP1nD@9P1hd*gh0E@OBxy2!O+M`7;FuwqAU4!n+H z^x6^Gm^ytaHN*c8d~Anan|f{(TwPTrp$UF%CH3}iD%e|X^gU#mt+4P(cG}} zXpT756TqX)hZ)c3JZ1fCz204>b_AgYD<)c?n19;y_gr*>@(EItNVzKwjsV6Ob-tuzC694;?3!5R$hu8lm#oS=$V&Y3zv-{qbbkIOxeE<9t@4 zWoO|^DStrL9=<=iYAIs_Zidb<=2XbiJ<}K+B7o7*qecOD4Z)VjEMFu{)o`TZ1e;*n zYJ7dMJ&1`q4N78v-J;ELtv%IhI%Fx*hK#Kh3M}RK?Bbx`zxD_gk}l&cYgid~hj{z)+Vl)XDW$Ik74>D%RZ_E*u-BUp4!|;T`$sRu9e1IjHk%s~TDSJM@g+C)+gX&b zw~7z4d3DB2jTuGxneVaF+^7>B@%M1pt^nd`9!LggR0Z93#u7JB$<@mFx&wqP;G-X;ou6Grg%MS^Yoxr%~nuA6?EMNZ{}gH@$vP-lcw`A z`J*3FU1QyJ!Jdfzg5x6ltEwL(Qdi=e{y=T5*HDt-iMV=?m-nR#$UE`K^XTjG27tML znMxyq|3Ip|xvHQiu>fZ5&RIViBv|=mvl!)v>4$U^)zaSF%rS5qthHUIng7mYW3T#P zEEK(iBd%2$Z~WQS~k_!Wf?l%;^w8{6w|6 zG7B;T!|di{zb{z7It1YrW4;%h1>8|Pq`xW8NUlx6nV!-Ru%=ed9>qDN(6Ff_jIbEg zEvz4Hz&PB9Jf)F%iR%1jiyt(;EIy3w%Uf~#CU4E*4{MhsL2_tFq=`LA-z2N%J5}(t zQZqU4XRT$1xBMmRStZSfkrY`37w`kz_cHX%1rJTteqUXUYowwq5wvPr1z;*<5f#!| zo@PAH!xPUcY&;Dz*;~mhVsu1&oXp?MJQ~%4+ZuB*bqnP5$&BDBJUEGo!+#7|%{^7| z1{MPZOB=k)bs+;KcTT#qJj%_gr0GZ7vI_FuT4yLLgVsPz6%6WdGcHdz92ItIcM*)TXt7Huazdz@NctTdxFK(`monO26=#@dPE|>?85dDgbP}_wPwFxefm}JjOeqx2kyCer524e@si_4jgI6B_2HY{ZTp<@ZA-b#0 zf68OxB<~B!y!edCmAj+)R2C)TR?17N3^Ti_j*{y_+Xz;V1}^a)-qhr0*S#L2G}w+c zb4oG-jTskKYVaJ>Gq}_W!6Eq;Ov3#7R%G_N6=4T=@)B&u@V$Vk*29x`)flq+t;MOW zZ5&@g<)i5Y7aKt5T&vNfyb+MaLMWRGBaKjZzrOfcVNji8xRTTr;}0hr+!FA8MB zeOg^N`yCi5=(o=c?owCTOa(hqe$p|kLpPqy6nl{pLL%KtNI<%%De8$SbwOP zya}g<`~ZgPRRjqv5<}%FMcc|5l(>RG}Afo82rjp8O;4#{{Tz{5G(uCT*q_ZB}>Qkte z-&K6@H3$Ey9(97+D6Yv!y9NfVLgJln!4hpMBN)-w^Od{7+B4?! zB4AtDqpQylhjG&x9^@MzHmL(?&`{k%OM3ds z!y@fG3ATryPkZ~O(hp}o4x`SffLJL-(x(ydsGRqr(pyD1DPR@kO`p(l`ZehDGXC7=K@?u3zSnDWS91Y2mfo2|(--RfN+`N6g01Bxz2toC5FdL|=CK7oky& zvodyk7ld3KW|c6#3eA~bc~C)PF(-2IBK!x}&!(rso|{7^Y+hY=%e4*T2zzkwob5AA zFeZf@hE&G-2%O6>lq#j%X|nQ1T5Jp&%ywNgFUDm9_j9k)>dK7WlW~y*;Fd^}0!#tZ zm5OT6&UV+oHnkHo^tBdPwVUt{5h1q|t;Wa8(;u+o zG81k2!4$bGGV?`by!Z{olG!{_yp?7c(4@92H3uWKZ1kJkj6?_5HTJLR6c z_wQK|jZN?Q=H7>T8oN8|+|fXQ-j~!tdTplnZ}lu>n|ZjZ>rWC5p}5xtgiWR5@h`*o zy^4yd`x^Z+&Yr_^G_fnkE{2tCkG6}^F7l0p0z}%byoGIwMgf@4Rugf5r|buPw+^X2 z?mid~6gi)ut!H|7A;yCiN-X z#_YiXF?t8dj6%azTM=P-yKZta#B-P3$kr@bxdH-@ltezMznC9yh)VenHKi)w`P0}5 zrmgK`6-rX9uOEJhgNktjG#x!v;;A;YMCRiud=SY!t`z(um;NC;D!0vOJwkHH+{!&>>2-F zA~4p|E5%bN=*GQ0s9jfLB!6gBkR_*Aab?Jj5d?p}H;^9jD1fn^-BrH8A@zj;krJ7C zFb#n#9xR!8fcL|cTV*!$!u0v)T&9Nlgx({CU^6dl*Kvs~c!0A9u6fX8?t$;rEwjjr znL)BQOow!d3?AM#D6%dVE*V_%!%TZ3*xXCCT~6Z0*Fc}M=&goaS$}dxnOhoH(UV^b8Ydm=ZSa7N%%PWvnuGrdRe1=X~-8aVuG3PSAAM!^cr1Dlx(l0W^tLH-R zaA$2m$@Q~73=pZE!CSvu(20?M_1iM zaO`Jmuce;jyxPpFxsZY}nCh>}8TEx!DB<91p0>3!aW6TKE`^NF9EY`;WA7 zPD2ln1+!zh-f9e39!iiKIZ-7dtU_=>1O_a>!klW3cYlE8chPQCJ%H?%rgw(*Rz-du zSI98ilS|7Kigj{^`&2oPK3S8bi=NcSH;dyz_4RUs$RFg%EBEBNNKN;lBuu2Dhw~FA zQqfcQ5(ZS$cw-k%VBoKR{p-)Z|M1`6fA}A@P)%#YFbuu>SNO0)@)weooiZ47P}pUM zfKeS~34bWIk(Dl`@XdSdGG1zN%s$-3raZ{Fb1%wpInPpu&H05#Zsv; z-e7e#Sq##97wc`mp9Z=DrD{iK*Po`um^Tzd5XB&~=PcKSUYlN@x77-$lhRAoi8YoG zILWiTOvD{y97*&>*FPAZb$zR|t9G-fTcC)!K7ZSBeUrB+EF%a$vLAL`s6JcH z>1C9W-6cn<<}Vw@B@j-6?0^h9>E&q1LxY@IAc8$%YWH+NHka=85C`8ke?P!4^S&AL zkLQ`y2hCW|Z`v>zz2~p+0Zkxr=yn^dsyeAiy-d}%%cMw=NxpzJ$F^*zj7|ODXNQnD zfqxbfiXjJ-*!X?#eSZG=(C=%wT< zB;F-WTCzLS(CBO^F!{T(0|yaDOlz zFmH-Xhr7d4fXs+eb~x7>xBjpa&A&P;tYb9sYv6OqwZ9T{F4>mVbSDLrD>%u9HGr>P z{je_X*{vhNb0prJJ)UAOk= z&IacB9okZqE)_;n!f~TnhE9<6bCiZdJvxZm#<83%^c@nukw8U1V z&z+~5%Nryvlc%~1U)yk8%3Y4Rc6K3GVlv7XgtgLVHo&r(IDwT~ahdeYgB!#_uVFoj z&3+%)+-wRvs&i32Y;TTOGcu~$oAZWDEG1rdRas+Rhe$S$j+h`jo`|hV4v@MXQ8O_rO=#!Hx^nW{f ztE4&<^_uxBfD1ZV;#JE5G0!s0lD>nr2CR_w%iG*xomX7pkM`lmpw(ZR_cUk&y9Bjp zp3En+_rGXyG5ue(D6(@-b$_hbLyiM@z>4p$MNywu5N^2ZyoOL~rPl&Zn=cz6e#QI; zy_Mf;gD@1v@ADKHl%dcks4KndV0VLE4Foxh$0?*SJBjP;=({ggBPuJS$jpUkG{5ir z^5^)l)466$!2yj1f&58jC@iM&3uG8ER+&j(y#ErYZBZ%{zrv}1iho#EDbd{V8cvB2 zGSNT=gH@5Pxv^BJcfR_lkm@zx0TI;venn_1X+yr@pJkD}-L@MwaCtRvCqL2k zZaKQNw_^IJ|1*KjmC#nCyq#z|sVP`^gXsbAy=Lwv8RG}sh4u_eJfO1UbX}*x*++VW zA95Fpryac0pBrU}TFAX|-b6lL8(V9f6ymwbhB6($122^G2!DkQ{J-SJa&;}#g*mA~ zOBIkGWbZ>EAQXAL5tU_ElJ}+M{(B|c zar_>~PVCSIHpH_1%=64hGb4L{{w3H3lL^Nj$N&?t9=HocfwNv=7j7q$P!`74i#Gy+ zqCS`FC80m1hkv&dH{`_pvV20(hH?jCA@Doeydz^^YD3l=kra%I^beoJm=z@ODNGfXu|GHTsfAAU?usrLZ%@p|?9;}iOLKfktatQVg; zlYb_b{;WX=Um(H&3&gNg)9c&lge^dZOqp9-5Z^J5see|`EK;1s%o1bNwWg`TJ8ja% zOv1Glb2J~d75=N0bM4Iy5uh2|3*Y;)4Hiboj{UdEw+hF%aCy<$wGREEk0V>Ua2!_= z%n7gzw~k87ID;whJ&&rXO?=KF8ty8g3^bgE$mDc4KXu9xX3k`1tdy_5aP}j6nkX5% zvv|nZ{(lPK#CPHoS69h|mLR3M#q*sgQ!M8X=-0*l$FGl1*N6NS`5_1J-CY49C7@Uwn&TKc>bk?0|GMjG! zDinOj>b5w+9dId!#+*!i7J59NlzXP%2CJ#LB!2@Bnsng}NT~9J;v$q;mGkB2&ks*% z`5Rh&ozEAmRYxaO8M8C%==^eB3e2eufsqx@fg^<-fIXYK7SlbZ76>5Jq^&yHI_8}; zHv^9^ToTM`W8GDBJ?I4prhlJaZyo0Na!s;C0>7SGawG0#$gZT;S?uKr6#%+yN+M{W z^nbmk5jJ>F1?IK1j+kFmH(%r>F>Rw`OY`Tc_= zTkvqQMQGXS$G5cTX`47@$s~|1TiSN07tq|sME~#Q_wMvHUuEFK6w zq)}y|Tpr)mRRN6|+5ig))g@E@b+{@P)K#EGFrzB`AJn1XGKx?i8YikiM^k87ej0Hv zp!NuOrc!}G3cHA4#x|JznO})!6mJ-4CnV=PcKj`D?M)1|35dZ@`ZTQpa?FG#{C~2? zyGF7KYN&|mb@ZYqk^Yl~%}nQrH9(FTF$oIchRrGN6T>?29qMr5R8cZOihAIOs;W(l z&-4&lZy*I9R4=1CEg!ZBcRK~^_4&bieEL~r40`Vm?Is74oI~(K& zAn+L%b-jr(mNqyvB9ivM@o^7*JAcF!YDhV{)eRXWuga>z7d=SpF0K~e&OD(TMrt6y z1x2=q`J3|l)$G~m1xp9f>A!*@Ygmt+1;hsE)jNxPO+B?QJmn z?z6Kcj7=x$|M~SvclU9QN(H=9if9O)f+dq_($8pVP^zRqnm&CPirH~U`oUvLe0klZ zLD>>a>%cT`MDH+lDT@m)uv@ePtm9%H;KJZ8q2h2s!6pv$I>BjBL4c*8$Eg+znK_B2A(D0`S8U2|x>#`ZA!xeYt3JBMiL#v0^C zsqOhlV1stqs~0r3r!gT{nv^@3eY(1-Ib2RHR@#^kC4Yup9?n7c9!2#mKKo~tv&bUS zUZW0N&_1CM=ehKl25ZU1Y{*`Dq8b!e#A}`^tkg%1i3V!W7}w#<#`F$xYZA+@$|_a) z#~#dIH~fbp*N=rU%3-`92+sPVJ==S)z4ur%8U`#}?bc=i2DMH0s58G-9%qxRR2;8? z+%zRyW`9K2mqjofD}Le@h`r796uppN7u>fYJ!xmBS}MXJV^n4H{wp-qrp>O!EYkxhgmRgy~9DDvM+Qh${7?O2j+sXinYWxh9WI3#B%{rn}_ zC5r{eF{lI+K;L)-L_@fK!V%mp7OASWtslMA&2X`MU--4zaiTm;8Y7D z;+X2y(l&fX8zC540>>K$=pL;j%oN-#{#_vRS%Z{92802Y0mDkKZtmQTr395SZ98<} zdVfg&dm5qDq0jw+24yt%qjyrgp{n(_w?qQg@T(N@@4Mu|8k1Y_?*2;9spPpicZ>I$ z-VNok2w_FJMoXm)Rt#K!M(*0)xk0z+RnV}n;2gLNngL!;a9tb`ERA_0=__Th1(myA zX-WAOEeY0`iEYuK$PQv$Tx&Z*rQbWe-hX4?Wk$h&AkGc%_*O?H9aCvK<4QsRAIsV&fD*lBgccOdl*=${nizIP;-kvzoo(o$Vbk=y{< z`6Y3zjOl;T+FgKGJlaODu#T?bpE(>|9vQ1u6y*86>P5i>g{0487%t5 z;~i08VZeZ|8kx4cHB@*jtcRR~Vq2&kkvwdD?tq??>@=>Jmaksp$GVO@BhiXrc5JW* zYi!NLzmXsJ8o0$>#Y{l0&!x+Oz^FN2wS&O)40{U zp;=QGbPjvH%qf{y9hm&D3c*BzNp;~og+mQ&7PUhnX^iE*Z2>;*RC9nA8jK&EbWP_R zK_E;eoaX@Z0C(j>%q|&iZht@g_Q;85q2prgqmDRFW*m3c`4P>jho0>?vpD@cn0D^a zKP|=w2HG`4?Bc;SKCI>xP+5C`8EY?Tg^aP4@afaQBCmtMBTu}aWbJKL*f5#%tLLO( zY=g?5|Gv0s11-DkFdc-R^muyj`6Z88sc0tTY%IcCbZ7+!eJ~C?rDlHE>HX1S z7M~*P!#Jh9;ZC_Z+A;x`LqA|Z!MeJj23q(`eo)^EmeNR+sDHNs4fVmW)J=CeRD?VS zfgR}IR92FAP;bQDLUkrEHn3`!l9AFE+#76LOK1dNDNXNV-WLbAw`X;Jw7+nN>)R*r zQJ_lBG0GLNKVb>QLOy={Io6%}ro5{DU&zu4Wu|y@)Gfh(0L@lSi`y^|z57?F;DZDC z1xdrw!xr{d*nb`kMp4Fzs628;Qkqcqzt`W6?Jb*)8z(v#Gvj&lo<}_C>r=W*Jr8*T zCglRy3&tQUY{FL_!_xDd>BYk5qkz;(jV65ED?^7Su=HYwB7bA1$V6+{N{lRVG`vUz zzR-v>wqOS>H{KtQWh(?CO_5N*DN@|nV74q0K7nz{vVRo|KL9MhmoW>PnpIX6b7f%0 z$~O73JJP>dkN09B2)Kpsq>~@J^f_l!Q+V^<2C4){0V?o~P3-kjIw;ffR}#=h5@X%Y zgA?)76)FZ;H>tqfE>nW4Uz%fw3fU%X|aY zW-oK*AAh)VFh*1jJ;0n)A{;?D3u6tS3p1&Lm;j=@?N|+cph;D1!A7wJwJDp=nMBL{ zBJzS8I97q|vv20-DTRzTI;CbG$t>u%RbN(B-5LMkpBRwo5NY9RJq)s6ay4Sd67T4> z2uB;0>2@nUt+iI4-%CTRyB{U!l5zy5RhR9lD}S{0fgVCy2K_&Tox$8)R!Wd^s!r}X zYtEp(nwM7`=4W}Hn92;As4nlcpYn*h<}!!qQ7buBY~~Gtjz1J#D!${JTy8z@pgfA> z>>beQ5y#shcAMe;yT#?B9bi1lU`Z>r=Hl1bt8WkIrZIB%b7HmTqk%bAjH4pB`&Thv|$T5w9aH^-n=(sCuiqf(`6aQE07%~ zfNppVL_t+7a1FC8(=xFYmyZNGMO!Y53oY2@c9zwe6T3ph*h|uOPi2F7#bDw*uiYBu z-gbhfC^Bcy88TM^LbReJ46rB}mTGb`bAJzV0a7!C=BRj=J!JHrv__MS_uTl`m`MZY z0qmt3(LSK9;-^z004ul>?dq=SE^QS7`o;YUP+IU%$1HnE=z=7;+sX74NhK&>qTK&m z=6*GlbdRyg8xoF7{1M2`1`lRu6a9-`EV6OsTi>gpB&5I zN>euP-$e^+2+aM{x34Lqz+k2kz;?b-hu&8bcl$%)Kil{iH-Q;#2sHnT zPsQ65(5;ZwAcS&?1+paWWZI_Wzkk=ViAd6R zYAL-zNblf%>HZ=1Q3$UFt z-Ih;l+b|f$@A?!vgpt4wT}O9FR(9%Ow?VH4@m6|mi#d{zwj_Gj5cfS znqVRc{5<;cJhH!jGpQj&!4{nXj`W9$k$V);EyTDXBzH%1(anyd@lq=n-D)B8Z8NbU zajtmrkGgV&al1EOGe8jG<}R-`pSv(0cCcs0x zptR!H4u9c(Mb{5Q@_&cWa7AdXwv1;8mSy1la^W%p=hyl*)JZ`lo?Kft`#Qam4JN41jcfcwvQ zMp4}99n%KYldT^niy4si4Do8@`!()_rc#Y)3+_D`n+CpS|JKKlBhHPh;ATQWhQ+WgUoA8ZwW_bab{5!Ge z&jUm#M1Qv9Lx5}_U^07i&TmW+#IaAT3+th@b)#AFnzy!Q$*ULiyuc%)%w{!lsade(~r>M6e?LH1v zCxl^TlpG6~fu=W`hTQrQa*1du>jx3-76KO{ES0+U!3I-qP8us$KBx_A{n_i=`%jC% z?0>7p(ms9rt9||ZbyKC6^pkSCy*3g@g_D|a=ho4pQb}jhH{8;m1PFl_>$UC<-jhXc zFHfOiVE`Jiw+Rjzg%2X{X&ev~V>-RsIzI^jOU1Po5xlO+7QvEpwr>cp92+%YTL#*m z@eUV|cMy5&ms0s=^=AyWBwY|=ed++)3xC!ul79Q%Sb?m~Fd#4>>4oU=efoh?&tCaI zqN{G!s@w7NfPX&v{Ys?in^t9UKW1$E$y!Lu$F8Qs7zE9-Nq_#z;s2f6Qbq>3W#ZArgCdOXmxY za!$vKkxO z>=8$s>8Nq@N0^pc2uv*Fg#PK=U$I!@s|**s;8L0KCor9pfzQ@P&2%N7XT5mRpbMMh zl~^@R2~!7AQfC+~CDqc-c(j$>i+2G5X%3`q)1?<9fN``%0IOAYs;`suDSvNAKfijF zULatTC{SGkz~xV|NkUv}q($}`69Id%vTKrEX5p6UkKu?WKW{hZXy+VXUWUw(h7#P% zehUe9v@;?ZZfz%gqG=uY;=m7vX?~yw(>%1G%1Z*A3!ukK$n<$1O83*#=Y*3nu=^Znx#&Nc|Mp-R7$1Wms zf8NCLwlbXEs@5zGK+pRg%Z*x1l^u$6O#H_x&)LiBKocj2e4r8?8Ct3<8IDnZV|sOn z3Y-DUZiF*Nq>{<(fq(05G(*X9c)&Uv0q5|QHkB%Uxc~Ed`QE-+{C#!(X>pU97;kNj z#?#@eRSs8D(;v*CA}7t;DGYB1%XdO@OAfwmyw^ISnOV)`IF=3+PBs@eQq-IRF7x?T z_PEE~o^LhwTJDIK<1bo6l;^j4!At5^zaUzT(WVv#9CK=|!GCe(S3qOcjY;HjWKvzHL*`i>U!k^mrS2wJXcc1l8 z24!-dQ;A9;I)D0dNrK3(<+GfoJNZL$nyk$wh-y@WaVp|Ydzor^dGCyx7|TU!tQ7|3 zv%N%*&u6_rN5Cfnfg3*A5r(lF+N&43G@o&P)Ope+KiqyjrPPMO#!kFdd2i=sXp!Z_ zs%dTvQ#OXcFO?g+ne=P2sb-vbrX^u|w-+7@r|lXC!++hrmCSJ~2^u(a_)I~T8~_j7 z3HnxEt`q1@K%2<#_AnoiN48J;XutaW@y=d;x;ousq>H^MMQ*+QV~=heJ$h<2?ree2 zhF7}UVRxDHmz~FOar>g-F~}u_*N@X9bCsv}#bqa|b5xD0QJi3oi7z+r4nR;Iiw)_#b6X%L>9k47}$na`4dpLaTUE@FsX&D1XbEwS{$eNm3QWf42`TsB;L(WSE)t zHn$ld+AB%6j_?pYIi<5XSx+@UFF%~wJsf52QWSGaftRxe-$yrYC4V}1&A-bm={y#TY%>VG4MHW(&LgztbjPoD zRe$A}tkRy-_1Na!82>SRO_ND`j-LWGyx7;HF=(kvc5JJglTXLE0B-cljx*&8@2|Dd0~}TjB*J}xOt4h9fcG8xxT72p<>)p z=)bzS84sDEY29mNCOCbe0Q* z7o$*kl-V0sIAg4Fzhc?qOQ7|-HZFTMjm`J_8B>iB?HlCn!IDcUQP9fzcU(;pEzx+b zG}1jdPuk>=sPIIxVdMLt<<8lHxPQYbr0`K|$-Wtcl_610OHm@HWyzhNOlRFeLg<>( z!yK}csfRfalWnxLg2`TQ9uyTX+e$Viw96M%f5H$xO$8zM_(XN}TG&Nf=&rgoTSu%x zbG9|t*l;Y(K!03vr*m^@M+7$0l;ydObVvuc@8-MvJyguKXo;sfXAKzqx_?%AZ{29W zq_eFb7k60O#jW?J=!pH+)zJ^Z4dIT7jt#f%s2h?+6-UH!=s8v4lfjUL*?^>rUrZMl z-inS3*m_*m5+jVeqiZnZ^1bwb!u|loPr(YpFbuu-D{}C#{lcbrQV=`{UJE01sT*`{ zNi&p*|L*2c)U#j?AuoA($$wj}V-uC~*injT2zK6*5vuhOEtN|3>8qzV7ei6n;FI1D z_JvAidvB%+++Zscy2zALmV{e>f<=vjITSEsbyYBiCg#AEafDnsOp@j0W3U)^dnd30 z{h>C?%$(Lj_TsHZrbU-1hgo_GX*itW{mY^-OenPF&>fn%na)3N-hUpMNqY9r2TFDO z^i|VuoxSP(!`mIrRKZTeFbuutD{|POllX#_32_(_Hzcl=BCm7Tuq+8q(t*(aowQ?J z)eWIBphQ&_InJ}6pPlO)TUy36tkGG>k>BeAbB~Mc5eiHh3$AC&W-mEfFO7EDZM;%q zYe-oUbYAZ`G$&$-UVl_bE}D`tpK#|%>Lq()Jgy9h42fJJkWk=!GESR=5uppp^C{0x z;q07b!IRc;8eI!e4##|lT`ymf+3;SDlSxhp9`DGkA4)r`Q`kdpn?Iosr1wdrYMGfh;iC#j!d&4MpBtn2Xai~`yosOXhrBK#Ux(|&>4q4-9DmA~Rj?wEY)eu|g>_HW zw9Wh}cF*~=JFo}5!O0Rn2XtPP2#eT|O;-aEyq-_+2P z3;B4|O)VhWCF0XyZ$_A2!FW*(R)4oiu(n){`XF|*PZ>c zhC&B2!eN%=Eo@?s+^04lREu$cSJEPAcfoKl!9)2w4sb>*pkn} zRk2Vx8wDbG|AW(S99#H*wOccx6p9yB{c?g&)tOsw+AtJ=-}5UniH9IDY3pNIHBB0o zDot9o%YPeEWD*A=96PcdD4P1;XD4=U1WFmqr##S@68rN=g%I#hmSuV!mqRYFTcP2n)neS1T6^mM}PWifugng7A**wsN0c5rZo2cc)ohg zG3Shj5y6Ou1PK|8r{zCJ9E*ZT_4RqpT*Fup4KZn2GEJBo(!>wyTJBUm2_gcI{i^&5#x8jm_0EjaBE~e{`)=gIb*>ohAe6lrVvVQ4%{g)?fg1R0zqk zpmBhoa8$_Fm>m*yDKk~$O`Gui#6^B%e!C>Tar+?kS>V~i8%$+L7|VmPf9r2p8lT(Q zc2(EvQIB5LM_8o3-I_C6>laHBfu$)BOn;a49PQ|N=<(XM&2rX^@Sc;zEXqTgUCC@A zfsGOpv-;NFphX95K-j@Sq5;H?M(zWI9tuELLL%Aqbb+X#>`HmVyE}7Bs~ZPpH7rL( zJ^NUR`KJmyirk6cBm$EA8s~!g57i0b7l1KEfSw*CSH*7JR0ScbA0Hfx>#{Y$5q~_3 zg-kPpnGlAQGo(MMOIcNNYO}>?=`0sKqf4F#Lo=n#vRuN5ZUa)ENx7O00&gv=)>)m09wgs8jopFs8rwB~Cz{@T3V>3{XRPvW`R z6T{vT+qCP|w46D3Z8rD>Z>K-2M=J&JeD1P=KoeFRWf|W>Af=P#p`M&Vj_7hfEo};P zv6EN~?}OYZ9>8v9Q;Q3C$5b9txHbqdt)a2{hj^~^oOF8U#8Q1yGq5BJju5g}`p!B&4<%X;NF#7Ij(t?`xreIFlhn1`mXO z+;h)4y={4Y%hD_e1U`VyFah)-5+DX>w8aU8L6Ga4zG!nMkQpY0j(@hGwf(4j!XU{7 zabHN6Lowb-Wfn`cLPyDH@EsugM4*&ZG2wt!%(1o;!eU^qKtgRzv|d@UGt)On>Ue;A)L;8+xx1AWRC?c>j{|sme`d6zClI9#@ zcM8{@m3{qu^RXShyUy-IA29MddOD7_taOcjMi!ABZ7ltB?|%o}o0x41_8>s{3u-4N zx0eBMux-g{?5ClIRqsQ#o#{@Ju}@!{0|x!5cz}^wG=)xzG8B7c)OU^THL+fmC_``_z0PGS>SvV@OR<$%b9nfK<+M?(1gCEccuLtuh< z3IhZlNrVD{!qoysXzVx{-?OczzXOyCObK5-K!F5KP-PlBQAUFN6A0xwKZT4VKVmfT zBgzseTrL&wQGbA!b zN^)c8^^hR$Ws`P$lpoKCk4Z#bOavI@!MT7*>VYVxP+DRru*gDG8z|W*%h?)KkS3e~ zWI*&m9)E^q#rD-v$A$AuHEo{V;(0!Mo_}5VPt&EpSUx?@zcqA}-y>NZH|5+v@q!2z z+kI;$g6~npkN}?G&5%7A zw#MC^J#}Tv%PW2H#a6vvySEVExaq6>T8dn{_CU)`lKjl06AcA^p$f6ZO<_DZszW~gq>cV5AzIdwVZiy}24 z3V)$41kwzzYtu3Q0op|$oENvnJlLMSm<&j<}L4N*+K=Cjg zuGg&6JwMQzn-4NRe$qzF9~MhxXg}13D97M6ZjI?_sC%^KU(HzGZ`v>re$QXwNqGQ? zN!u%|nz|M`B*dz9(=^6pxyc1089TC_(skm0uM-mTgA9=Xb9g``=)Sw}^ZD-V4}Twn zWnfv1tUw0D0W@YFI11eP1My&BS)nYwn-8BI2$av6oX@ELxO*H}UdWv27jnU)L;)tQ z+p!(a6g;aQl1lh&fozv3(nCH|$o6O`mw3fpKv!r!n~Xodyh!!lW%6)(^W}Cty~DS|(d7Euuu(qef=H7%_T0-H8eCQvbO=x-&x$-_3T&a4 zn#H?@)D!rWc!p_|a=gh-Oo^}8KN@SY_20s5h(kD4nY-EezM(XU{}w9a`83lddWafs zB8Bd-x?(#tbO8q>+b?l5sDH&j_L76&gEpwZ0+dXv_bw@t^1wn$k6-dQ`o#9lRcf8Z zUXY~d)-F_!4FXO37|Q}pQ|jqxUV?&j*+@kwh93^cM(=MJ8$k9R< zag59Dvwzn3v-GtTzg3Nm2f!+7RQe_wnh#a1S^~tr@|9|f-ll>T5PvB(YM38dHTzmL z_b|-S(Y9`7{cV`SMLgSh_6k`0%suIZQG)nCM-2Vzz#-!-)h6enRRw1)d<9t!RgR6N z3E_whSZh2eg^*2-M~?|r2!{Jt(p|7_tT@`H(Ms>`Lh6^X!*Hh3Cm)qmM1}H96w6?y z2^zRVt9IR@JG3;w3xC|96`#MMX7ZL;Nx0hYvwMX=fupgy4c2tXO6>8-LsJ1T=!Jaa|Ep(6)nJ z)`-|q3EHNmYtyGEXyCqtc~4SI+Tz60fE|okF_cn|0GhTZloaA+We*j+IW5^2gIxS9 zFAQNefiV^PdIGe9;ugzYGxMAY#@YpngGpI|uW8m8n+WB`cX`X{#lZ>4M4EhDC;eXo z8?8Sw&K&Ez&3~7(Rjx2IUz<&RaPRQ@PgIo%go&PlJHGUOS|}Fo6Z;0mls{|3Fc8Ie zeTpM^a3DilI@t}KQs`FbRt!e9&b2_6#7XX-lzjI}Ns|UQ$xx?>24kPk@4X*q>E_lp zmNCs+be2~L_qxW)qbMGEjX7hT>(z?cdxh3Zqh0YN?SJMeXLYBmcn5Q7OVpk|%1RlB zX|gGdA%j;V1^Z+WR)Iu@LKku>6?Z-z=gSufq3e`~DHI39R=u)@bkjc#U({SV9K*^Y zF5i%OgYB?cRuOWKcVya!#?E4lwfBN8cA}Wp1{a6I$$6hiYX3K+y`ulc7O#Z9BfU

z42AFh6*}aQKo8qsm!xH<4z|-^S3?kv++?`2k$>%NQ2O8Nv}vJZIv72PPw#pC62_nu zAUpihvj?9@STgbGpc@MH5xGXI zT+`WO7MP-gHNSa;Ev%$5t6aPbh*lwyqgol1R2vyM%geE_CJepdsIP9c9D98#I}O>a z-bTHaCSVTJfWf#W_X5`|7lk5}j8EiFht}_gHPYi+)W*RP;b6<{ksQP!p?j;%IA%~K-t~6oczE(MfcKY%W2nRQvd({1|Q8@OK;pZ z5WerPPy-*_4SAZ!hmQ zQIQe-Eud-~-5jXg3dw1946dsG*THR2ecSxE3Djo~oHLF{0+^!&3%R|%D}T7+Ac{l= z_rbms)<~&tp;54HZ@X7FMmQ009aNI_N5-5z1(uSxw}bBea$foC{Dq0*}U zRnzpyX!t#nN(O8JKioGWIvQLqZ3|k}JDnS4caC}uPXQ>ROYp|3i^5tk;{{r8bpmH` z9piun{POd~JiZpU3ZFmF41e?I%b8Y*TZd^Zd~RGwIeY6pC@a!>Buem6Pu#a>SZtu! z2$l5ZIZ$>LM4o1%efLm4sHxZs8UCiM7Gv13@f=PXkVRP`F_3>M1<$h9l(VcsT2<|C zC{jzc8^Hv8DIg<8$kMmguFyrVw?l)IM?){V0bAoaQDBCJnyzCIoz27$5}3-wUfJ`T7=a`)VvoQdDLkE?t-ixz&hhhW zt?q|&r{}_fs#Nmji0#Cw%Y|?cyFX^Fh^QE_N{FXVZhFAhm*bR5rZk16T*t&-z3Wuj zS;1dm%O_`ahSU$aK7SuN5H;cXKTDX2&@ccyK083$QdPqBsb`=>fcLtZ7*B@zzI66~AZ}vF|N;3IZjN9c8Q+ zzIs%d__tccjUUch5q)jk)v(iI=c2EHNYNF}qrAqJvZz4`6@O9?oDH8V-2h>kgiMa6 z!Nu;IH@gmIS)P;^&aj@CFzZ`JbO1nvrMa&EOZ$Q=$Q~hKxze#7P*ns4F+QKPKn(GX z;59IiKYJNQw}1&R@3_>)i-+#Oc6f8AU8QEJDzKO1#YA5fFKuT*GNTNug4zo`H5`Ui z3&KegFTC~|A%EV`p=YdeYNVEscuWt@e0)eNthBi_wzJacgZXypHJZG7PT+f@I1b%2M@+HA@_aW<3PV*mLdw%Rw^i})wSQ*WG8Q#QB(A*6oE6=9b< zTU3i%h5M^w2B)VQTe|4)t|S|q4EBQ5(zV#xaz7rCn|JTf6Q>f8ioOa>Y(IF@r5%Zx zkXm(PD1TQ`T1V{hufJCbV_I~e9oV8iBJd+vji`twFrcBKEPnImQU%2cC6?-JcpQO5 zUkWC%JBP|a#2J$fW7UgBg8mDm$#Bsu7#m_v3Qq6y+c5~y(5QvzF_xqI8ltxkurqKP zfH{d+?9@vi_8QK-2*&NhUPLc{oZ>dwcvNehcYnOVBo1>DqvkQc@Q$&1UK-W(pnSY4 zChKR1lys&ch7p|sZ4%>XylZvz%S+d|NfjAdV-5tEy4)NTp(K`t*K+IG(mJaywNd8V z!5YLs)AG9T;UrJ){0Ebi097CNo|oHyen21pcz76He%rFw@FFEmffaIF+F4&9`J6XP zV}CuQEco%KS65(-a7S=+xvb?yR-J@9)ejYyN+n$&cWZj))Un8>n!G)d=byfMt4DA7 zlzTrHtD$YF3zgFU1I=1pZ{sKweb2A(M$xL3{4j5o+O0;TQAet@+ZoNgMzW}l6I2Wq z;HKHt{PzXp4{V$kJC5x>RILr?o&%T5y?@}pKBxP1wIU#aJOv^29!U&C0i*3N5W~CG zD&wtZ+lRLhrUFsIx8D$k{Ky4Ns)u*0I3uC@%M15AmR@ne5ZQT~ShiJWd~dU3G)u3& zTkn;kX!YO9lRsO?7-d0-Az%RpTwGn> z_B6iw5qm}tUI*#h+mJyZ;5SB-AN%w{Q7P^JUi~&DB{b@ggoyAqDP#%aT#d{iaSGZL zXW~sMkse6btVvH`gLEl83urrd|#;yu;=4IDE?#s?K zadQY1gTi#fW=YqBQngdxO5jwZ7k?rC62uI`Ade5#Kt_nkm_XT44OomR5IuaN4QilW z*e}#?21Uk5$>+{eE2sc?bh#$#V)Vu#rd;xoG9gF?tnL=TbgMd!fB^hR!gI)57!&f3 zamM%OkZ%G^$b1Jy$X`p##pWlY`%dhOAX-OQ4pYE@^mO@V?XT+>kSNc|7=KhRwrleZ z4?(IQZ`apOak%KB!f@WHJCs_)3(~$p(>Iv;C6`8+)&?u~+U9yJo3^QX1anjVguP{0 zRbAIMtVn}^G}2vybc52NfJiAw2uMgvNp2;jK}xzyTDqk{x=UKROB4j(xi;#3)$@IS z_rH0pImS3^>?s&+abz$hHt|vEsqmIwLE-S09;LLXKarfSc*AwPCgGt(69wC(_lRmWKkf!s2OB*~_2$DuT&V&aW72eE*v2*ydY_@z+-0>B9F*VD(EH?`n-{1*N%T z1~U5YFY2hogqL;}s;s64xQ?0zSU2;s)=l!ffL--=URjPDk9&Xfid~@K;gM}&glyB7 zS|^@l}UC(vifExt^thCBjz;> z$`R?-dmB;yH7!aWjmZenCM`??wnDk9w9k0F6Hv%jW~w;Zgq%^YhL^jfa9JGh?5}fv zJ3j6n9&YKMUq9=IHT)25jnV#cld_`>^}8Yri@Vlc@d>smZ{cxzW{`z=ag)VDdY(eO zQ+>HCiSUJvY@1ctG!tX1G+khTnW0@@?Dbqd){J0kE1AcS28pGkWwd;6E#EuzAl0-X z{^pP{>UwY<(R7Vwkfh@Z+pG15O3?{&y;<*$TNU28+;_=4{9@M^+C|S2hU-{CBju>D z40G8y@MqcMBu=jsPc4$N&T6`8JuATUmS;})j>s_IXr#MwmQtw=Y$M+D$BW|c?zkKj zz-+BqLh05jHA|?R>Gn@xcUNPBXt}!Z7M~7`C+oDfXJxCj`fC;rd_>`bh0`pCCo<`11 zD{+?a5s*R&8;nOl3QSPIZ)kS**-}NT>-6E+H}z{M9N&Dl$A9;9>e_0MEa%l8T2GkI zlUtP)v|p(3!%q+Ev2~gpsdc21(xmaqhi#b|5TbJwjM!sszmhs2S@3b9+*&{}X)DTi z<1%`VOmx;Q&Z1;4G(Ep~uOfj)U|AwS<`~yrk?)7A=-QcpdKckUF43V#;$x|OCD0@M3RG%p}cb{+z^;n^#va5wx zDo)<}O58WyEoGnGELPq3Lb|AddUh_R(|0CRDTY;|pN^CAX4g(gmeuCa1`BqW)WZmi zTO&GBLLaC0(#snN?$xS06 zEw$d}8xiuyGdLsH66B-vIQ%{_u-u&QJtlgucyXtFgT{?w9oGBnh06Y-PFM;y!4D+I z4~!_T#F$^TP{)sCT87F#XT)>-*u6LPOhXzm(ZXHmbH?gY(&sy6o6(#YyfuV$2aI_S zT=G9@K6u12R_*n;dP2^k-YTCpSv;PwbD=+9|9vSJjc&H2N^R7~V8$?AZ+{{M(w*LaeLwHsAnTruLy7FxwQWj#G6U)ngaV8A^PRlp@@kg$-hHxR zo+p|JH7q}zs}uVQD)*6kBSfuRsBnCpJld{nEX$Eh@mk?K$YokZ)o6WS5*yDU#z9d` zXZcyLFPyvK*o7mA=|`zBc5f%n2w&GYEeb=|<_1PxkfexG4W>D)7R=9Ret z>Bp(NV7by>wX64V3Cxv%nsLK6%a$FM3KGRQN({3I*?&%V0agZglaw-dBcnDn#726fA{cv)Mf2D#b6h?(8o=P&7s8-9(OfRwT0Pbx(A< zo^CU*o@nEnw8sy5r^25XuTIa=^!e?hB%FLKuFGh&2WvmZrOm|- z0Q%k!DtXJeh9Q@yM*h_&eS_Z)6n1&2-;V0@EZwy>Li^mzH(iYTP$EHas(Y-TtgIlC zXHq6`pOro{qE1JJ{T-*Xy7^UJIrBw1f)ib8&3AsK^lXv1JO+I*meh&pLQ~_xCQpV) z>JLN*3OO*YyO_KmIZk}|bTbyHBsi2NDs~V{2eXR`6>f&2vlgjvJ*{&#nG$pK+wkA1 zjG-fY{kTd-eQxKd<~m=7Su<&qP^4s8Bu~d(o)+%GcTT5_Oh42Ty;_2LlO;K{zDW9# zEfjJQa;)4()j&;Afz`4Q!}b#87+bGo-5XRT;p6p0Cec4G!8^@)zb#uVF)X>?W;E_9 zl8qNC9^+oM{LbXAcvB#95xcw1hSjmK%NgLNw;wl!OjCjNC)Ouje)(S{`{N5;rW9QBMquW27}HDFS*{Y`gOx_Z<%X`whzMT3pm|cosqBJJBau4FaY{R$Q17EN6&gx{ zLbpI_62H57@HnCbQ_M3|hB@Dlo~a-28Ggf?k#Rzk;w2nEi5K_vTI5a`rqUEu{k>lr zidbu*_xSKwGas8u%MF(|Rlnu`oZUOTv(KB!smT3pID&k30{GwCs&N(S7VBdVS$1-6 zRKC&f_Dxx7A9%hg%v~ZDJ6883@g9o11kP$*DUx)+hh%kU0XoFIs^@*fSd zk@rUuJJa5#pa-zWXv4{9eXkXs=+E<&e1BF}U!qIxia8@pH!V>}VSSNwfc}9yuXdj1 zZh6Z{iBoL%5j|-xKUQc^4zZ3DNjm=h+PLm}(d~s-Zu8&t{OXwOviHMZ$T0qTG}?HC z*%Q53sTWdhcM+4+waDHsn0v_gQ03yeYz^2A?(stQs{%6 zXRJ+pEcAhQ5h25zzl*CN0HJD)Z-w}VbQ?^^bEz;onKJm1KuLKOdnY%-2Z^9$GJ+ zAR+inrB0fA2T#E7L!?+RCp|uw02+IRo8d&91^)O$&rlJe^0zgLyd& zOzU?%!|!*tx>jOffd3CIsFR1;M(>?3vmj0e7tW^b8HV zL%dpCC(pVK>GnOBAS9ilwIp0*Jp)+G-V^?J>Mj`-m}l4QlYhQHeqQ<#Q3wrhDGz7k z-b(!^Cq~!1$Kr~TqpA&A#WJf5;+h5Pj*2kd^AOFYnJ70tlS2&YzbN>aZzZs&%XQF% z?b9opLVB5!4ik`Z+a|ayNzQleKC_QXOStSt9BEajs|FmunlHNw+XfGs$DQ8O9+@tE z9bxsQSmV=?5aQ|l+Elf&07ey>nsq(pdHUS-!j3D^ck#?9wjRw}PGxuyWZLX!?_wei zzI_{P@nHr;Uu!A-`qR7DUWl`zuUS^i^r(tFjT`dactWPtNlnhOY#?ebLg&KJ&W!gd z-b61W+sjJDO;ufG9~Rxvl|T4yZ4e)N&%9BCeTN;qXI`}N{^ANamNML!_)Z{3RUYB^ ziuIa0nQs{>?xNHn{!mQ8!#J4=R^NdOVKcsf+Z9_UV$;})LJWp!g8i0MB|ZfMchcwFL#ChA$jR-V)75LZ8D%Ey+;~hn(EgZM zT-CZQd%Kc5cfYPHF`IPD z<55Z4e6jiDeXui0u)dmu&D4DiQX9;>^fxMW~qY zVc;B4Eh&Rq3IW;i%UUAJ3iO_HP0r6|Nbuw|K*`W2DI-GBu-}e%Fs(F^8SscKEQf|nn(xHi`y)r5TUp_<+lCYe z=#cr1gMW#1kq(WV*YVeBu@j$ps<9qB#YGk}AbF8Hme;%JKfsKR)_|VcU_6`W=I}vQ zjdFxXt^SKSy17vjP0e$~6Z6x<4W}v+N~@Qf z>Il^JC-N?NKPFk1%cPIu#LKz$#izH*#Y^is>g>G&Ni(a)Il+2*^0as0$MWzvOH|2k zyG~;##WuKR2)$lYXrA(cBZ?~McRWtWRq@%FV+U<3>|POWHS6E$7fbI(Dqv3IpZv<9 zyzdD!Q`jB(viQ=IY&h{DJ6|co-S+v;1xCD2eye$McVyiqY*XH+Ez-J2Jic~FJV1EQ zMQ12kqws?HiD;LTgJvVB8*7j)_Spq>bN_j`K+xud+V)2}D><@tZ;4Zcs41QRohF|B zITHl?hKU2$-FrWD+f;cNCMd`Xt`&Is;qkzZ$6QA80wp6IQR{fx9in3^^vBvVaM(Qu zI7ag#eUBQg&n8l3aeA4|amU2N>KdMTTsLdmA1Dubly7=yXd}3Tn?KKb{d@(VyCz|f zlv60#@MNz**G6^SYeQr!G_2l3{nO-&1G>(42uKOssdXlfK1sb_-z>(z4+v1MXDCI6 zt+sn-y&K+4NYef8kG-@g-Vm4f{o4Q04)Em2nBzP*EutPWz98fD{yHaLs^V4>buzp9 zEj18o-u@5E~&oi>hZu{^(*WHNYfmTBvhDV|J zY+jD3D6BPKN57g@GRllR#WXX-6pqKOcV-MHdTsO2n_Z=rfMofn``%y^t!WxbIcjZ6 zm{<|l9p4vi>%-UY%NMMSDZjp#fTXd1D;*}-?pdg5uZ&iByX4->LKtZei|9jb-}9?A z{dY!P${&j$B+@>;br0QG~EQsWaQ1Y+vATEtZYJU7tGR=cLJ@n^pItCuu zBZZ6<o&`<1n>oeg;|0-nSGnN2^i0 zHvD2UT|^ElP%-^+$Dw`=Z`bw%+E23wgBF?lEk8O26%z=(j}M}%xNL&4gLWl$-h_2+P1{P~H4h|F6;IwaM{ec)S7r*gN1_*P zyvYs{AKo4-WsqoJ>sqSC*#NV3IXOZs?KC4Rb%PhC`UrH0LG^nsPe6xYUtoVS)1~R4 z4i3es+;SJw=j4olBJ8aKxqhY^?1p6c2Wn1SHS)fDq|Ez?J7i1}=eth|>5mP%J$6ga z)xM|m%WS<_WAl2x{xP7!xs*I^#($yQ375ZpPv0;jF42w6y;+{xGQ*h26Qk1O&goTJ zDcatQXAc5t?9C#+^F}r+CrkF@k3LtJp-b2%(m_S%G%;~#*d0dDPaU+ zPr6L(_+bA>gCHFW!B=c@pJd52vw1=+akgtT$<#3M$#vK6$3Uwj=zCY0wU8}gp4V7w z9L>q6j>B)1Q%Y))w9IBnO=Bm2u_Hv4m0rUwHxF02m^-6(!9-0Pr-@NjHQ&U zUOd`y%>wYwPIVsFhb8I?s9g7 zXxeECxN!8~!qFb$52~Bj=nW@pG`1*yv!T`NY5Reo2>xIVffM{G7ub`+cSOS8F4u^r zxb>3trM>jf7Nt%n*pvz++@B#$*Gah7-1F1D%Z+EBIO@RVZot&5G4Li_jUz0bZEAFq zN`cZ%i|JW{l0RS5K7@K2?u`__Yf){aOl!Gvo1`<%toSQJ#dm54l}Of*JB9p_QuoBR z))bqrOJXz#V9s?s8aWP{Wp0}EoLSJWpXbY@FJJxuFwghohy8@AzSOj?2Lc3=?j{xL zvx4i_-jnlQS5J11Uqo*Y3W62Jfr)fcdO%9qRO$Eqec=W+)bc>+$j9kCfE3-4O0t%L zElU!8QbBl(KIcHypjb&lC?YcKC&gp=8SR|`*InTmJ3K6L<}oa0(`!>7d~VopXIGf= zGkQ_gua;?i!W5!EMJ+VhH1V;)h3G`<+R{(g-R3JO(NcKkgcZ+kz2Vz^Xd+$R{Ehp_ z_pNDHZ-|A$XDQPr?W3J@9P}F9fdE`&ZG*}^HSBk4E~yomwW3BbjV#9oqOLSXLHC0U zsYfb%G^6^JTtYYE!G#+Ko!r^5{Y|0P(9+wBx&zXk_H5zrY3v*5@cRZ~xfcE6C9Z%? zk?hw}oYDUnNoqc-9KPFE(8gYW-CDp`Jhu|v*q)>|<^Nz2WLr;=I-YL2Ri#7M{J1Ij zL4B}o(9hi&92ZP|g1D!F#U|26X0hKnBU$cuG}zHS=jFXq(rruhl%Q4s%Q`y@>Im`! zXJk^fzN+kAuGJd(u=uc|+vY2yd%uZ{{yHuh^ zZkyek`NzrGAT}}eO*3RRuX-lW?!cbVR5CGlEKyapJi%(ZCtFZsdwNq(xglkfK=fhj zJXAd}sImR79$|R(yvhQN4UmQnKpOf7DOB7a3_mFE1*D-h0pSvr4sTR8qWwmt{~v(P z^9%sG5rroZpd*3+9lWvWcF70rSIFXbr<6PC!=zQM3nc4nIHabVIx;ywPZFDvlHO%_ zZKLuHyq|&o6!qt>4xT}inS6}{x;6y6!G{Z@%s1LVaPQk-c}SX;VpnL>vs%1IZGo8QJDnst>}yFhLdljy zhxq*OvX0~&*uSEziIKmDcq^iiLdvWD`%Jf!DrrQ?x39JdgG;Bp9^Z2_ffPxxBx9QX z-0V28sCo1k8~=^xeu)bHmUKSle-jmQ>98v5N$$!4Cgg!$*h=2Q zqAM6;-Jv#c3`&RN8!l8iFsO9OpG{Dvoc&NQ(2Q?u8SuY`}XM(W#589se+=lnIONek2-rJ(G+Kl9=RWZmnaoG=QTlJGeBkrpzT)6hf zj0|3mp~7ZP;w4LLv}ked-H)(?_PW z9E$5c8&9^d26SpvyW5_RNv#o!I=h)jIPbd=uA7vg;OnWWtK|>#$HI6yLT`YNb4Gt| ze$4p92V3)CGNG69U&mr#&XPo!L}GnC>E|oZ`ijv8+{*o@7J2g zN)=>%k?Ei8yP;7MDEZR^9b7n5Y0tiA(=#G%cv;N#4-*4hZn(&qJg4J(tc$)u zMa}KuG>CQrw9Wq?X#0lbjhQfFwD(x6I(W?034I~|0NXx%#7khff|0cQF(AvM66<&e z6jHD*U%QR9^xCLGZ5bLPbm?@04C{_-sgH=~)lIFSnWQNdLkPMzbMw)t)BQ9J)fW+~ z7OSXvFa4MH#(aa=HIL*xXP-^CiFA;!Fk9yKL4Ynpxcmtm&<#d(I59*L^~;8P5V}h3 z%d1Pb*_|?!%B(P_F+-mUR&e2+x3>VNd)I!k)=P-6DpGm1gY)e_Ai_X~As55c)wlWA zw$uDnf!=crSgT*gIq@^YAPfy}T?@*$&zjP1C{p))fcLp1XENQ;TrgW_BB(&0^M3;% zL5h#)GEjW%tqkl(L=!nb`fS6GD5X@-oqX=>t{K{oV<-yQ3l@D}gMsF)Zr}}I6zC@HUtv;O zcdgi3?}%pp@QvWky`szB9nJvj6Pa-FsVeJ8xSol+q&&_gT^{$ARMbQmBY#oR_u?Ff ztLDi-0F6+LCI2BlHW;iD4(yJuYwU@+mxDEcG1QPDk{=vOH^ea%t^ke0`&@bobM#SF z#+`x--`c%(rG|Hb)d>IY-E6Smc>Bq+lYf&KrBG~!_m7i=+qrrFeW>Ao97>Mc2`VI- zQPObni!)0~p`*Qh~XmiI?rh!N)w$Od&a%~{c`^;-=Jn?0iwP;zt@#~9^H<)`l z+8HCRqa=?hl#DVD`jy(n*bsgLVvxV>o1f>iNEj%${TZMyCC=jClZqL4<< z$nC=J7&72lDNr@TjBj6`!l+Q3HDR^FOaYDAsfT1CVPIovqs?VZsuLQs06ZLS<^6au zBzp-SR;*#@=K2)0HP7Lv`b7WPCr=n+Mnuwo`9E!B`BXoL4hPz!0g%9_h*1$)b^@B6 zA#=Xr(adU%PF7&>5iGeNhNY~D*cwHy7<0-QMT6(KNoZu6o7R-yB-HbU7a00Upq>}FRBSD&5rg5v zAim4x=v8$5YBN$dw=ZT1&E@{jkryRN+&6@zl_~TlAI!cxq1nFm)qBwk3|hr0hFW;f zgDzlWzK5TyjRQZN#QuedLvB$B?X7>fMY#)jqN$UJ3pZ&KxfC*oonvMJ(VE*gL+I4RFc{@iU$zSJB}=3 zhUE`dGpGKSi28Q`vvU_v>Xguk|w$X?A179W8 zSiIOQ3iN|d%G(2^z#ifiF6pwxOF^=JYJV2dzxF~p6rXc~>^BeRbrv9__B&E#)|_s` zqf*s3aC;`<-0OzFzL68kBnCA(`EjE$(;oZ*0=WF6*>K)lRULkNBhBNg;y-|0jLkeU zBFykFy!`KW(X4B7fgb~z*Dt#W@3&pV_&>WSsld;kj~#a*!#N^nrd{A-`b2V%m?{qX zU`qId%N>B3KY4n3B&zx_uew^ks#UO=MR!r4jzSW0^WfSX?7zO)Z(R%i#Ueyg;JOyG z-XC2{XE<52v1Rn76Mb^;b;HU;qdmY`I}I{ zQVM=E3edj)FbZ>@RlbG%J)oPw+jj*vpymW|cMtV92?jHzfk_#_;o-m*kuw_kc};K{ z9BX!QpfOoO1~fVv@zoF8#z~7;ha+`!{(!rD6GiWkOK`{E-ynAbdMAIM!<7ani>yJqJ@uU&y-F^TJ6+W zOhfSjzwm;Tt=bCH$_VjD4^*@CNLwL#m+jC9r@*`K5L54sSjD1Tz;@m3VSA`=O=Z}c z#ZV_!)Hh^R3I!;1tbv&Sd5ieIKdCR_*2_KX)khGi1%e%%)LwF0fdneQAF8Vy6%f%s^-+seq`4ATH(0iey-1kvgh7pSOhZ!K)$!^v5QXAO|!qSmA6M8{E z3}OsYbx9W@f)qQfC?KWq+~AT@rf7_Ppew2;?GkrP(Z&xXhg~2!Yy^`4olB|TuEu30O+wz*6d0q5;x32I#`xU&_4|DS|L{I7&YCb}gMB3}^$mND7F3~;LpNHRzcSbeGDY(M6c znNr-+>h7hv(T8qDGpY?~_z+$Cc+(8@i6nx>VXi}SCiQnA?yF4iM@QTiSF3;|q}0Ap zf1O09a4nX`CE0Ksw)X@ZBs4OGu>J6k!YY2CyZN z&``}^w^ej1y6}$QUx&{t;9dR~9=|N8@k2;W!IuAp$N#j6eVkyl3O}jMyRhkbNMSV- z-RK1aOBnGn>5>qu#BOjfKtvC{0V3kS{xJu)WFMrWK}uJX7#o*~B=h38;qnkjc<7k_ zFvFR@80>ekgu@L1a>T^`ig@P$l>4eKsnE5vkJ*9n5HBXV;De8xAfW;I%z-oM-?BiP z;Dv!U;bljg{u`0E{{@l%V_f|&%MiK90%aM33kE_4f9n1*$9ALcxMt?>+^9DmXunyU zl3O{IqN_uqt7WqEka@>G=x95RR@uE-T|Zv#m<5ptK=NJTBUmx68J(h6Facr&U#^}s z^ADRXtt=+3hg@FE7OPj-9-)lG65VBDxLwlU^chXJh_qw0GXrHZum$afoS%ZAwo=>` z5>NWTdk}jnlv4)&c}X@n7dJRoh%=OBsP6+=hC9GN7wO`6P<8qzC4|A7`ppjnLhbZ9 ztJ&aV`PjpI`iHkQm2x#Fv)Q$)pOWi14P2$HNy@;i;yLzn$l*8f9d``7Bu|#90i}KD znJ5|lYSt3O&9KI8cRz}>aE7s4TT(ZkoOb^pR#@&RDts33oR{1Rzt0w{IG~c_XqOS# zW1dM&urxbCM-1iTSMr%e?+=%4yeWoqAf~~1x8u?ti=HGh+cy0*gcYaZoDj$mkdrwY z*hs4BbTIm)_fpaOi(63xZ|akP>Efz=XXcdqFpwxO(e;bzuGOC;?v(py=co-(z#!4c z6Kd+Z+GX*9P*bnd_$1JKe|q+H(XG8wxhhnNjuESeH-~^a1^fBmuUyM8S6+Y9MHt}7*Si;8ub_E7!0$Yje%lC};S?X1^eOqq4=xmH~DM=DV z0bZ?v6GGmEJh7f~30&iEo)3gOWUzl|{K0n_pBg~3=@{VhRin_$U{Kc_zJ`qz zF3=%>d6_-B`x5UrF8>EYns(TRVnIOqf}&|k*Fu&aqeB@khtKT8aBf=${L>FB)(KU%xbUhA@p_5qG6vuGXjU~>3e=oto_EhmW{qn72RtpwPS4?btEPcKyrt72zA~WfG7jumY+u5_U@D2@y}>1;Op$#l zO^Wu`NW=S{D^Q7$VZckudNg$S_M+?s8umiBmz%n#!@nBeB|e%(_zxBNQg3xBY!>{b zeF5u2db&>A&)DfH;M8a()WkH#(4zZH)=8l>qHKT% zMgSfN2@%0Ps#4leH-~ARV>vCXC_zb-OG6eUHd25r2}PYC2IUB3$!aJz2xm}ci=4k0 zR6N9>X0-eq-HoNTJHjrfE8CCH^a%t23KdGreBV70!`efQJC5bX<`bu8-{k~xjn;MZ zwb-{>yf*RQ&gw*i}lf^{AZm4#c2dZA5^gsr=2LF2xj&j$f@C&Y=EgzQCo{U-2z?3H=(haH$oFLYnJ9j-O@d zpFs=zHEA8^tGL=7z@!bpT$FVzl>v3+uV%8nKMU#mV{&+wgkSSP~dyB(j5tQ2wfWf$PQq$@`$kUCR5|iT5FSAD9-uu3G_g-N31C zd3~LIO`zxwJd3Z*z_So53|{DKmm|I5nt0|N2S?^r7$kPBGx1AQrF4$@Dh+5-c9VlXVFVzOyO-%YFCP@vp6u-e))b_UFRg zF46v`g$=8Ef23eZ0@-3fcxZe671bV>p*4wwhgI%Sdl$o_> zhL|TnK)$AJRl)>`k`l-4?VPi-zl3mOw&q!&3Dx!#rK&wW-4JF_0WM}2a4|u$q1E=K zxui@Cs|%g@?hA;r1It4D{h^J31onC!lsRFP$OcIofb8zAq|2H7rb>c35wOQlvH>5W zwvC#w=Fx99a0Uq67jbitY=F{sb~qr};8MUA_{NhzwZkg>o%^8AjK#bAIho();)5N9 ze_1hF-}5v-ty46aUlS6*pasXWRN1vc)}3ndDF=B@>H)r_YD?hG;#Dy`s5hke_Ol*B z3raAA;2e1YfveMH3Lw$Byi{#|9i(sLg8RNyJvD7g^1FC>Orq1b?t>r{Zy37wh&u>O z)kMExq!$WzqFyv4iD3F~buO^teUb&|(nN6=hwJ+cIsn>nh7aOnXtA&Lv(8ptR8(eC32ix0Aw3pLdPno$kEjF zqO#m|&W*H=|EWOD7*1ex zFF-|o*DX;}B*4C33lB!U=`Odh>Ls%oJMCer|8pQ4IaN|RMl0CyTh@Dhy`Ssg%f?TwD0LVp)_Ndmu^y7wvd8-AIs5!A~g+*+LKXy5ogv7EWV;mUF%QusnM z{W_o{1dLgiF~l`uZ^RC0q!!WClWkuz*doX@e@D>q3IGKVIw?Ed+-(M-69e`YD0K1x zc$k@w_85-V2>mCCWaHALX!wO=(cEZve*5en$Xi} zNl%zV3Y)8dv}&VvsEeH=7(=(r4W9t(Jl(85`OLf2lQh)@Zwcoo+^GOz8o5LL?tryn z2H=!Q6F1h3f#iDRk52Y!9nk68Qs)wXi$bOU5QQYmpTI?-aR2>8wB_DXkghX;(+Ak4 zQ!)RU`2P@v{^ltG>l}R&f^z@A)_LM@q3f^Kc}%su04tORFeF<9ln6Mpx-cJx9+3%W zX?wF^5E-Nin$zi~d(KPG@6zW8^4=!`M`x-~DX~IvfSncQB;Zp-ffWM~_pW&e-8y(2 z;D?cf^9hIp7?#Mw;{bJ;)?AQH0n8WpWThAJzKso0qU-;nAZsT>=>)7!_c;Y^T4Rv&P)ZgxSrvbJkRMXh}s_zM~8pP!21O^?RIp~@>19&!iHGOGokc}Th>_M zX#R~gx^NmLp9gaywJePZTUSRJLA1{LdweqpZXp6n*8yc{;(vDo;2-^6FS(=*lL#|6 zV{D@4=#kHE?HI*9IGA&7$S5R4Td!9hvZH6@1ooxMEw2g)$DPBhK#Pl|{sZJF3wm^# zA1?r1fdQDZC)2wBv-%KYzP_WBWH$P-p_P>bEc0|=nP16!i6Pl2EDx!wX>UMIqgSNu z8pvrtvcjL7#uaie#?W1;$GHRl667>~(*}^!z`qO7sVx-L=+vpIi2#8ou=@eYS$Hrg zj+Sy6=0x!SMIHXPaRljE?bBC*54#QbVfD#3X22XGb^lD%(KTjp1CQ`h}}xi7(g zbzeTromt!gVb0*Eq*Q}K10kZYgf#QHeA!x2L8)!o=wME(Vwxk|MQAbSGg|p{Wc$(F zt|S@GNBCY2WWB)mav=UqtCA-O@M%dcV%|$7!{3F+^({&0u z_{#xHv&Wa=&Dlr@w*|E9xr1e}{Hg()Z^$EvKi}{&MBCe$? z(IOBM5TU4T?6sdKC`7UXFT14pdcA^)ihFP8mZm+i6$`Pu&|1S( zpESMmhZ5_$L$s`o`xI`~@xVd)cUTYtJ-_`UI4QFD4SIfaa4R6(w*i~n@~(CThiBpW z2;ugM5l+TQ!k9v=c(#=FY_CqU{72wo;(^_Q^I4y(ShxJ)frbxMQ+2Y51k0#P{R5ZUD$(fG)R9UF()L5_p{NAI8bW83J`VJ#`Pk zb>TRK<%HX$pPN~zq%XT>Xiz!D@yZrX8Tq5J_Nu;sf$mBGPydAz1P=8(08XHQaNfUaKRgc?0y9yK;A zR@H>xUNQL9=HT*3CjK~(uHc$Iz@ybxzcu>;^bUPYsK=p975l03KM($srTbF=|38sB-c1!@jk;fC*%WCf@5qcXmUbFiRqxpfvrk1Ajo}-wEZRo z0!~Cn3ODNeA;Jn%2830~f#NHheR2cHaYAAO*s6q!3AJ)2veRi3Do}=|5Ud|o%MSn# zOn0ayuW`W&tRI47KsWARUk7}gN%U9+o#x{o?3@z^sS##VZ-34n(mRxcMLqYo6nQr2 z?Zw+Syc|-dh8db?q984Z1P{^t5)+DL;-IgCzHb%^{C}Dt zN}WyMM8Hv8;zyPWuA|#fB-)dLDGhv`|M)l{Zod=LXMl3?OzUUQ`86wz-k(K(j{^biRniZ+<)v_(QdL#1W*oaAP!EF)%ta~H0KPFjyg|J zQh_HXzye}dOW132!2}TXHmQ&n65hBLKn}OS;(89+F@wN%*kJ+?fzjaGVY%_ANR}bp z;6V)>>61f((zUd6pE20t`vBo4%M@>W1B_lT`S+ejbC$OVZ|oYp>saWU*>>N(n$Lq@ zr{>L=CojFxD*gQZm8`u|yk5!hP_I&Pvf#Na^dlqnjlJh?-9wIjWv_F(OVu!L?XUP^ zCA|tnB$xWoO7no}Eu#F^qS4XEGA&;U1 z)m`W`>_OGfa@ zMEExTK*din;SxJ@gms^=fHVOBwcA*~afhIrnB9m<_u z?aBirTBQS&=M>b(kFTr-)lyvT(ed;lOHRnXO@>87jjNL)O@wJK8c&97nm}6hfC1q? zVnPb0D(p)@DT>;#gX2oB37Vc@phx~;oo5G_>4xB&kNl9Dv7nw(o88gvixSPq>GzXfg)isp zJLbfaN~NgPTiCZW1#U^EHU#AfE*dKpdnKWNrRXgUQAgq&bG1woOn+0*)ZP_Dan~eb zRQH%|l#hNU=>c;9kDIgJ-i4P&vXA?8{p+N&C$>CxLVFGKkHdCgKA(+@nWFNl!^0#D zp9IFKV}xC}zYYnh=_s4TQ!k@2AZax>cH|HBM!5Gqvcqikv|w_*+<*Xq*4##NBfJ&G zp))M+APv*(aDp~0_=?XmKX#hf;~Bh_^M@M&MztnEYf>#Ih>qA6rIzLu;{xU^TtTns zKWKbJ7ztRyIK=m%fSDL~QcO4!HNJk7q8{e*)hFN$ji0Efp6xwKMkXpuR&3%v=jd(OiX+5W84nNH1;S8uv_H;N4uT_XiG#bvHSXe# z!86YKFZg*HL9k~`(%rbxvVa~^?VoI$po9cH#?x0DBb^ZiV5q`*Cr=kXj$qH8*K*#&^?LMHz}e;}l^l%FROELa2fvTXHdnU^=pKr+Dor zJuo5ZLT|4S{{CoDadp&1)1!04CVh6JT_i*m`%WzuWgNzlkDqLMuvNY0y;Y)+(NAHzU53Yu1anO=o3b!*JQHoBv+b$E zFBH??fuRjr6lzLiKlxdjzVKp#uYRi6#{KnYogc_A(1r}uKh!yeqIL;b2z77l#h-9y&Clul&BJ1Guti16z0>dLr2Y_&#bnss%o zgq=IZ7sj6BXd1yjy%=;$ia2psTHDqM$M=?tOJ!%0d>Kg=+vM=$zMzcvqnXEnM7x+6 z5i1WnP80^u%_weI(c96cSQ&O5fG2VXqWaTjJLiBjs{^P;$nQ{i5m~TEdb%2xJxI+48VwMC>sZzLtm%Y#0ue+iwtAB`>?)w_cGLgkjP2RyR zvZFfQY2-62h()P0b$cf!cKDR5t8-y-E@%Ba0!7axy5lojZMMMca<@VL^ii%EGwm6S zE}S)I0pI=1FCBL1^7VUvf9weM%p*nXX#w~H-#*xA;4#QD#c+!U_|gGi2Mkn9tdSA5 z(r(es*80e#=b4oKb@25Ck@2!qB|o?thrNjVj_W8 zadBEU+h|r3OM15@QMq3;EyVLGYruNvHl-6H9-JRkkzwCue|u$%>W0ZZEWsFTw@?h< z&OU90()+KITs3Et(oFY%Hb?wF0F^*$zn=|cjItoa5U>CPF3!%ciw8>vd5(p5<86kG zYpdlX6nkgQ#2Yy^2AE685=(tV!sx+k$+)@-83Y1;Vl@3X$!-;)n#GUB51Yt@a?$24mh;Uk1f}$&X*)C#~QyD}TZ+rRC!%UjySY=g#_&5+e7%GqZO49wI`r zqD;wJt$YtK29Dk`g(9I5Z%T7DEUOsag7Ch6aPAaKJL4{(sFF^vYDE#M!^RdTIy0r(-e@%s5au*O@CHM z_RUa{<_8psL=L^Xs0I>Z_HPMay$^nOx3Q%WWQV&U5$f=ep`t-MPA9q zh(WVowhuw=LX(1rdSg%rO!@HDTepJIovBhy&V3|D2AS3yTD38CEL%!}lHrotPKd54 z{;c}(v5`KoAhw}Qj9LA_A+gA$%axlmj`n(Q zp5%}g35{ML`v%&~zF|dNdf6Zi=zoGvQr?EBY%8NPD@}*9V4A+v5`Wp5#qnc`5xMWm z6M*fYaS~DQOw!uHX#h&g^J>nCO>$joCdq7@);4DqIKKaE&wkdflP3^kORFIuOY8fy zmwP}E#^B{&cr(}4uZ7QZEq5~h_&YgQsPPwazd~?5hz{F%p8JHK#Z*B~!!QuM`xT3n zLn`rtmWWf4xFNVkvVUA>LoBwAWjhpv`giOWr%D?npeXgp+V#xN%qqFLHH~3Ri#0kU zB*ML}QF^S(CsE^qvCbXU%H^9x<5jC&`G}$-rLiw9SlwwEZ(zTATvQcrl=H29&z-kQ zKSO40yEc9Xb9il4#XcB>Q=+x4<&scXPQv+ow%9c?i>@ON1%H&Itch;_TGf#Eh$3KW zK@MlI9}{wOw&6FSrWz?PtE+F7dbNFf~$*{lTWo)gz@(f zgzJvzr*?O;dw=Xzk&82m0`Sb6j z?(Ll`9AgG5^bREQ2cu91%(Ev@m@-!Tv%PGyljuTejepOcE8SZuQ?-%J8{bu0I3SNC z6d^8>)>!ftf3s!IJ{gZILn2E;Y6KD*d{`{ggCimIwGMpEvrC!Uz*6x=AH0s?3be;1 zZ}T@R6lCA|aha=?B!qzXWUI%*ZJHW7@Sg2YMR*KC7C;cylgJ@}D8S?zsjK9MOVAp& z8hP^V`hTa)A*>!Tq5d2dM8LShFGA)}j2bI6zbf_ts1G=HpvlGc?YLOMIrxM(Ws4%V zpBeG=q#pNv4B^dkRd(@XHK1dGp$s2_P>tM(A;390VQheAV}i@@2Wk%WcKaItkUurF zHc#5;6!kp-IU2*o1z zP=EUbk_jE9;~ZGW%4}hRytQ)}Cs}1Qg=m02iBpT zTYGJ{7hRm9AIVauoP)eCjv zdMybLn)N3TF~)U6k=g~#PpYHng=vsprpDnEoW zD5fC!CJ<57wOCM7Qsq&2}!sZqWy;XKy9BteAzaiS;#?3e$n^v(X;U z5fmE_3z9yk|F#@<_n9#P>8YLy;`}-&)pPqWviXhLF!xH~VLNLq)352?8h>BB-k4m8 z&Qt&+*1zlC!TpCnyO1A!kilxhFbsz8ehLkGNM9jY*q&kn5j1e;7Nuv~fJ`gdE9U1WR$8KgN?&wbcsq(R1cWJJLLiMqiz7eqeKE znptkV7Nyorb3fBWCR^uU=-cQ?`OkH7rKZwlxh#)rl3 z3SF&zKU{bCMSp?b{5VXA-E8_1zNk3C**%yGR!|)dM>i0-?2}bckn(5-DNiO2vrx-k zIAQB`6RM{7{i_@7c3XB+0B_t1>v96%|KWhCKNRcPukQ^Wg7LAlF2WkoP;Y%OzyB2n zYe%XA-Hp+F#L;g3LhE?@99A2c`8lmen7Qa-fw=VaOMfK(FprDp!rePAY=eePWF z)wOIz!6a(IUFn>+g8@7)api&Fh*x{3vfa7?1{*;_ zj%Cb{c|e<8SoZgfthOJ!_;O}lZW(iafm#UWT^j8Ez(qWcvS@>KFZ!RmnT~ykNeYMK z=9jUGP8?UdL4s))@;vI{{k#r(AyH=df$2tm>=zNK!`=G0qfTBj_Sv;MUH4s=Q#ZQ1Q4t3 z|9|pO__f0;shj(KOcx?zCJen(a4; z60Qo<8Si)7U`@qiFGC*tDF5T~goc8v3GVC3`mK+`3CHdiRTJoRM`cnjj1i7Ty(43~ zCU`S4(p+4lzBh=dzQ;8_qA;85Q=kwx0e|o^V-1}VS9PF8b)=i4y7(BXnlMwcA)vJ4 zypt?uGH)O#fcG>Wmy8U8qK*BkFgjS{9%!gwU|3JhnZ~2&g)ls$M48<37CD+9DuCmJJ~uQz*2q89nH5-G9%4 z2P{*`xWVG8+uYuh{lmmwMz)tZ;0fyIbc`~fzC&_NW(m_-eG;{)s#%e6c^{``m5O>? z%~Zo{(;euEV_8?+!6b!7JKyhjX}VpUW7o}9D#Ba zXZ#j2k+mDG3z;%@kJ&yY5H9}~jC4YgLAJR;x4YN9ZwWPdPFIVnXf zD;Q*g9StPp1QD?Y>2kky>T?jdAcX7F5@5O1aZmZ!_fILxX(DP<-G!x$JA}2JSa=0A z%$ZatU=kUJNx{-8#}UPmM**eThM4yMdf!bd8rIbZXiE@f_NIB_E zD1kQ=?d_%d%E+M}O$=xdQ5t+bi39DAe^V&}Uu2;eoY|bH>0v>ATq9xe^>z z`hVNr^EtY2xb!=?l6X_`K(`S6Bo+3<-BBBXE9GAN<}#F z<-2^0@1G#!A#Txu74TeE2|kKTH0WV7k~^SHc8m7_6?5=@dhil9)lQEiSVy#8ANND zUQPdad{3Xd)7YU#v|g=%HV!u&fZcwD#(RH(KCcJ;G`B1G z$k!SN9go84H5fGsO%)>EZuUcw81)tM-fvqEj-Ah!4S}O7mfhDo3vzl3u!3f< zAXHNJDNwcRYyUFdOq1@ZT1Sk_PGC+8przxy5^x6EQ-22Lk3I&WfA9@b5YTvvZ{p1- zmm&j$Ub}$75?EPhL09XJfZ>)8vuXgW#=7k|FT?wu)U<$$t|ZD-k?K|oW#2-PFA-U= z1z|c-%{a!X+HIh#?XJ#Hb#nB1p}=$(!7={;-zJoayY7$M5``!(1(E#5P{?KP{i~36 ztO=OyF@KcChS?-#Mig3YU?JVXBbU>o91^DJ1cRzw%bc@g(xUX>QjLKSwuowM%Vv!r zJk-NCaAzN=M9ov+`%sFgS65A@A(^1TaNs#wZl`x@$n2l6aO98ZPYq9E3nVW2mCs4nsz2?8d1 zGR>JRL0O`Yy?Dn7IJbd|go{P1M(7Ts+GEl_dlkaVBuC=z-oaxHyx(0!@n#5r3_45Q0N>$2gAZRj}HnAPjd{z77?vdSRoz zo?jhk7Uo()Y02MAc`EqLDpVUUX%w`71 zvsmW=ImZaf=ZGnE2ngAByyMj}q{8)>5mBWgG8g#`gsFf7@PDzG@C3QF$;1<6-MjpUaOLQ$qigVv>stknd@Lrz&%8Qskj(~RhO ztc-`zYQh9bibh7x-DvScTGSK~O`{Tcj{Q`r17>DfB+Ay@bmCOrAAh4@Q&dwSafOz( zO)hwP(jQU7!(#d?W;(phm~m+#uzHTwRQu0KYeusDTC7X2DTL>}s`mWY zf4*qrZD>*%2m(>hj~GOAwi!5D570&Tbl?g@(^Wfq^N23ufF$4i_V7dLDnIxNkxvKG zJYzWcwm|wSSBR{kf`5*!LCX0lm@FMZ)*JQkLm0+HRF)rMXxGteyc&mVXRk7g5)EFQ ze^rgsJw6_oDp9YjFbbr^y^#21TOix)HD}FasUyU}&C;)JcPL6AGs{pQy0I^0pr{z@ zIMWqvSA5;hmP^KK7ZbhsWV~Q8J@{jho>Uh%qkeoOm0t0-(0`>jycSLmcrBcLZH?hm zU5mlx0KQ6v2Cwql&L}#cWuApgy8pPX%h06<$d(KK{GVAo6f0#0YN#FQ#oWi4RvivY z+ugX_Q>H{lF4l;W6Ari^OQLCJ?yC$v^{vm?R1FBdDNU^MquJh$dlp_w#c=Tmn^KE8kb`$eY; zzS2hT+4; z)D3&2g9ih%(CDjx;Sz*h=+~CURBV?cE5bl!vGw7-0@0iqpFOK*K@rHR%vBjdnE62F zZ85zODoU+Tpip>$3j9c!u0**Pl-RX9*3b_N8Q?J0VUWYPaXCH;)*CL`I3clXvY z0|Y&?RDUd)w?I(*CMC2ZsnV#JEMmrVN#SN%tw zXcQ${QhSxwM7Z7qm!<2jEexbUZ1eM&yH~r&nZVS3ZZ(+?oP9@2T{G0g*vHERh>UDJ zMy7IqoH;_o?7;5_b2lVP1a8JSoLj_Nb9;#hJAWIN53tRL6a`}%4$R%Bj37^*$Fn^ zReu#Hz*Z*XGco9u?h3d2wA@uzPmPo3kc`KMvtab$iUap$N`I;G?CI3##Uv63m*fIH zz$?MrJ#*1DzA&}lB}G`MRJj2!#zCz;tsir0W5zMPC+}Ex*lQ{icD8sRhqE~O3ZZXn`2J%6M$K*VTig@M27R@q{(`u(s9ksi{im@nv5 z&e?^UMonwqt7;v+MrXu=)4m_3%MaR!q0yUkQP8?5kS-wG9FcSYrVB&KjOL+@(fPrK|j@?6HK+K0=|s5_4^d^snZuAE;E z-mkBEa2=<*bj=Jhd|g>mF%m2qi^+By5ksl!(%V6T=rt_UbDtyrg=!=!%u0a5Y@e$5 zrpn#NtEPmhVJ`cpNhsymK!XWtkd-40?x{u7ZjOSh37z0&T&K| zD<<7hD$)IZ`MJfUG%_9auONj_vEZu@*#bXv-cxzacS8w#EilTuldKU-R;(m=d$+-q zV^3S<{iu`>QuNxI2@q~KXCli8meIy61`s0Z)FByh?gB;OWEwKqZ){xMBy1oU%jeCcLys2kazD>(fqS_WLh#Rm?nVe^yy z2D0xtI+1~Kq|7CGn{RRD{j@Cp1;64nZJa+XXS)LE@r<3k8h3pXe}6_(4h{t}~e*Y!#U@rxd~lga8qf)xI-T~ZIM_d{QC#ky)zDXr9hU=ty8m+EWb~*wdK2Eh|9&4f9T~f* zH_UJ{`nRuWHhlZfuYceF)#@s`_Rmybz&iR@yP$7=-OtCr)6q{p`guWQU(X(kXIhhWU*p z5nP*O(+GqCKTIK3YDjpLa+lI_6nfk+5?@u`ezSzo6=+&RyQ`n z9F@mTQ~Fzj=6`IZ23A@c8DT(uKRhZx?tTK$J2iGHz!Y6YlpksqNYaT4&NvQJ_N?NF^-`fINI5)T zbCj{r;FwBrfooeJaoBqZo!AnLKRs^X<*pQ#cuWnaxr5d3M4{|dIa(o})`Ay6KLzjb zFA^wQQM0r|TrrAKb3&W?{L8=5Olf#Ex}LDovN}VrkRHVG$Ha#A24hVr&W*GBw0rvP zAN@Ux{(pA!nFa7}#nL8(C|J12NrrKAdDPJ!>>M2X@)7NyBbW0?jy*qe9oBvF4?0F6 z<&Q8S0$#(?<0R2i#-wZvL&u)O`I+hM!QVd?9}f;}evHdB@t+U4VX?*Jg-d}K^{7;S zG@>}vz%|SFO_%JeoH|YLFHqh7wt6@4u})qe`hP<70O%z>H|GswavYcq6pV_!cE@uK z5T+g*0ML#Rka=CgvlwtY{yDELq<|kA}$cdhVU0K z*ucfNl!Et9j1`5^qk>OkZR@@Iyvj8t8eT!^9ro3KcEeD8^;wKDB8v7$68GrV7q%$} z0Dno$+Eyf|6=y0xzkV)`6ZT6_3QDQpX3WWaXCAEMhJPqvtl9dnP82jNgMwsZxggn( z{9Kn?j=TKdKfe4w)ss(4#4r%W@A(vSD6$I`^tyHNw1T$x7ZkIO>(FCxxC(=R&zw zg!{4(x_4^WfhVl1n$XVzlW{drlHt*iqq;bIPpX)ay_#8o0u zN0qWDsj@QgY+j6mj4j}wuiN#nxA;9iqKKw-1v-B#e1-`~y5sVQJz(ZY=&R&i{lmcx(71lmj1YS~Fbs z{PNqL?G)fsVx!w{z2H~PSWR!^Ab$|O`&UpYheXPu=Vq%tb)`M5w9;N9A#4w^RRS*H zcB@tY`{K{|13Rtb#N^O6P~MyO7-np~eNUpq^Ef$zN=N|cC#Mi-2={*og`MZ6sx!8K z`Wrx^W5Lz_*SmUQ_4l1eQyyf0p<_0I111!#S1jhwI1Yj9n8qN{BjPDz8-MhGUPT;w z|2$+qdyrB{vjm95j3~X{?DC0~1eG#vR_(`7%m0okTGuNc%^FIWf(T zA07e;M8gj$j=!ViDGR0I|L{I~x&-IOkhRh><_EM=AYW@;TT~4j>ttqZZz3T|y$KoC z6TT1(tvI~lOckoa-lCXmw0{a%Y*b>($U&L8`^`DaauZss?jEys4Hx>ZmYPa2+f(@4 zQ^4C(klS`#m01W(+&O=(=FYke7YER1tZmI0ixj(*uTN5M>V+hI7Zd|4L4OiJ=;v_e-D)8l(ldc*44g; znfunIymE2$p2e(Z7*s$Kz=Z>~5h*Xm!*XKu)@5R|x6prrcX`vAFC5mZ%lnH=X~Vm8 zZK;4kpl@WN{6_iQwrS* zrJKQALC2=~pDJB2CmK{Hm4t)%b23xXq_dV{ryMOnk7s5h?!Gl8iXbV(~dHM_m zCPLKV~gnm3|$m^!WSsNys(Xo=hV4qxvm!RwCp`VbETa>4ifGPHABMii7%w zvvQVk7iHPnm}mzO!TWb^wCeiWi&bAeiksLqCDt*Tk{LPlLM1lT{?h8msk8WBAw$Nn z9Vbv|gE8g(7@AyX+A34$n0esxD2YF^{=|+Ea({yL1?F6#^gs=hW>UwI)RyDeEAK4Y zDCO#U@eAE!*Fy+~R{yN?6UCHGYr;SfhVT0;wva=F96W2K2x=`z4OMS}W!+3naNUIc z(9+_6Z$34OMNyjWDVfQ<^SqNxo?ntMK}gUIsDv`WZz2Gu!S`k~fG$EtoyEN2Cxb*s zv42qB)Myq9En|KNc2Qsi%dT*|B#Z+Ub_;j#HjaGsjc|HAkTRBeP7+R)wp-miVM$Pi zYuv-$v9?G>0k#k6Uiv^lxq=oh6tkm48Sn4~qE3fNpc+Op-nd~h%$irSd$d2{1>rx$ zT&r)KJK#oz4{(?DjdDN2{2#nZQ>kr>QGd>tl&w<|VK{eiBs8{IXvCVR=nK+#y9@@L zu2e?sj$JZc%-zMDjQj6{$?${B=7Z6s|2n(Xe{Ql6eCl13JUTxe+nEKY&h3=Em3s{7 z5c94zZ&~a1efk%4t4U_6*(`4sKGC{TbarkIyDjAg?%9FMO-l7rw!!r%aMCWI>p<$R{r+9-&mH{$#aB&l+b|5h`&Vc{4hi4_ zZI8)41ZF?mDIsglsrWDABK$=XOb0fWEb6sG&72+B;jVc zU`k3ThkU}NA&UbQ8IUcJnGh@Qk4N$+07Qi$6F@N(RGZ~$Qx5Q$EUm|vt@R<5Pw^}e zbS6xW7JL@BLa>nU1Vk?FL=fj(vvOWJtstg3WRsZLqxwxctF&G-1ZvBQHiX)ibURilEuEt0fk*@9a(-u zi{H@TTk5U7P;#qf7W{7Ru75Zqgn7~bZpeToUCp{s99m*}bM;#^QyS3~~@m?+}dSu%$Tcm06^Lv^$4S>EaFV5e=Zjpy55TtXlxH7i^3GVHLwNn6?Z0IDhkPf--gy^Zykz zQ0C+R3?@{iTNz4a$e_OCR3n9`%5tKtVQ`0f-9DPy2IzQA$lS*beh_cI9HJ5;qU_}i z4RsJ|J|!CPkY6ayc7z|pyYAN0gJogQk7_{Me}VFfHZ7IIQEL1}OdZb9dt=PBKlChtV|7Ip;f9A78$EAMfME zA|wakF>wL?9Dn-Y3h=fY;=}D?k?^B;+x3eJu?V7&Z|`^f6D@z=F8m~P)qg17VV8t1 zQ2Z$Y_IkB)qcDVY>>Aymrzr3i|1FSww!m1#uuFk3ObHiP*SG1wiUCikKzC@{#x46e z@X=LCa3@K8LOEQcOon>Io<+|{2YhqmG9UteWYOV%AAheEl0y9F#b;feOym_8EC_d~ z1_5WU92A5Ct$a#$T!Q}cx~GCUe-q=3=^0g3e;J5`g$1fxv-%2^`~buoc(jeeBVj@*COmyFpWl{41Ih?cH)w{b0^^k8CyY6XQ$*cn9B8>gk!XOV z8*W;Qb%&z|6a-kuqWsJY(n;$mdAIjJZT|R(fB5wyUjM!R(6efrQ0R863!Xt1L+GX6 zu0xi(D397^T?)KL{l#5DUqRQcWD;6nMj*BBrhn8_Jb#YD3%H5y*xX9Bv=j%SoLmm% zp{DZWzzd^VSu-cGuw)aLQz3B*;hJ$%2_@LEGMcRWg+i0LWhCT;XAgw#9P$I89!|5o zkX{rOHR7O$D57X3Qwc{QeMKd%eznCYrVvqbzi2h_X~OrKFMFt1t}2X-E~*v-z}ZkC zeScU>Vq!E^o3W3$I8o)Z3ikGO{#c}4W~WrGY5nfqxji0)eDpG4Tqj{dFx$0&QUl9u zsAq>=Q0YoH_*_(}NaBsSEVeXy7?$rki>WeQN`;p=Vy1M@V^nI==wD(Y_OAWwdk9@s2!FPl z_4*h5;jcdjPkc2wrHq{alry1V@;4DsSD6R@!T`PM3zR13jO&D&B_R#MM{}+Y_L_-l zZStH%v1b;PRxL`7M+7-e&Au~JPH0um>lkw3dj58o^#+R>6!-%Of)$qTrA@YJ0WShV z54>vAV%U!I3Bme`rVw_~5}EFpfqwvoxga9p9j%l67$0@bJ(klo`tGo7L*~@6jO=FG zxn&IGgmWkxiNLZYYL5*yu?LOIQtlzkk{M-uFn&gsv~I=-*D$~i-42s0xy2`9$78C17Ma>7I0Pf?hvVfdo!byF55RggVXF%Brvp+L5N3!AVQ?fF(_rO^ zit|f(X_x-%S0gp-eVO{*d#N`abpnp;^psn==ML{M)Q&dbt$(5?K_B6D(mEVyKS{ZD zU%dXS$!LSbI9cktG`cG(ZkIi)(ftQ?e(l0xd5*)D*m+Dk$ml=tAB)R1fIcDvn;JOH zfPsoT`Kw&$+ta)0De%}OIeT0Uk8PVCRJdoR)v>?E88PHhRsIF5+q!;FmG=w1kjrYr zFc3xe`id!dVShsxZRpCbDHKxZuF$O^DDpTKD3Z~mDK7r^O0gZ=+4KR47DA7?bMKkQ zr>1TQk#vuyp$y?wR>&-t#XGGqBgC1rw_^Rtu(4c8Q#`l4S)J|~shnit1lyJgWiXDm zZ2~ELC|;5;0)7>!wbC0Vkm`+~#>Po@{D?FfCoJSp%zxGWC$Atr73998qQYPTeb2CL zt~KT>ttL>k(rR-sGcn zf>_LAW`95UE@#pK`WgIIy}-WSIKKhaTiL?<1+7wn&MVELjcECXu7>`|fzWJ5to|e@s(kB=n z$SlT53`X^f$2oOnG|6!ih&O`o(dW>htfoAF#B|EIuHiVKZ5diSI;R$|!kKuQmI zlzMNyd|-y1i_tRFM=)9sI|HNR81Y6>+JB}aow<6z5iQkOg|SHO?jG@-o6=}i%wwfW zT&QNYCeHJa zL)b-IiwOG=tASjirw%Ad+WYDLU4;Q#flk_4gcQKdXmm5ApLK1ZlUnx(-1T=JWuR{f z`zC-^+>2)brA`>Y)XJngga>({jelqCa6ZKyNG5EAL$Vrfat&)1)&*NP@u(OB4pbZG zJ(qgj*t0PIIR*OWaufqewOOp!21hsYEQ}Xz+Y8Vv8qb~LTCp!~J;Fktn1?}IpJQkK zfKJD(!oJa|Fy_)YM`SD9L>R18>Ts6wLS>q(uJ&&bDtJBcq)mcU0IzcWqJJx4hx+Pk zR z2{EGv`^pt4K{K#at%(2+EV3qe1+9{WEZS>s6Era`p>MaVhM#U(NY#Vjt^yAVQ^Xq+uC}I1!yehIJPK*Sq$noNT>evD zoyU2+*hVn@Ge)H*cm9a>ni!@xI3_P34+${wXZo##Q;T=6Y}YDd%Gzz04KTd&+EZis zy?;dLz$T4>W_{`ry>}g!B=5Y3@ zdeBmZZ*_XAk?za4XKL|m^@O#IwCrxXa5HK@)Lj#-dBLZ?(OVfdmH_(+V1+%G0>MO| z-hJ{^6DN6`sYh@9=TZy(@oQb{f^6DZCf70Qyv!gE)lM%6K!_j~D8t-lRAqA9`jC8b zH=bB$r|@BC*?*gn1G(!39XmK$2Ubqw=Wv=yhQ?`i#_64va$Mkhg7u#O^UCS%EFpF(Z9k|x0i zYPelTxs$2?MVK+5EmiGnF_)Gso=awzWU*ty0l6j832_tsjR;-|Xst9&1u#toGd8|i zHxGDD;(spU!)+Hs+8BQ=G#Do=swI<*N7*{DR{{cI{yV%6J2>gzM=MFrP;6|*mRdcN zql&CnsRm}@L96OVS#LaLd?c&EIxTxA>*)1R!&Go;z|vZ)6pW#kTLH1Ln#+PLn!6ja zB0I&i_sTc|eOtAYTVD!wgq4Yb0rnQ8!9kjH0e^l91^}VnTSC`BDX@-Qrov@FYi7&X z+i&5{060~-nD=*P96IqHE0r}QxN6VC7=mX6s9p*lXuk`c)jXFfgHZcj@T>rJc=hYq ztM9_iyP3`7$u;b&rc{TsY)P2b?1e0Zl0`p=wtxRwk~@DefAore3(8>MpUYT-ChEK@ zcz+MmpYH4R!0c~G`JC^T9J_SN|QjN@PNL+G?UWOUa);s7p>ZN*(Ig!i> z(vtM|ZD$usXbyyvF7f)L*nm^RYEFIQ64paZBxWSR=#1O0<{KR%DN>Ydy_wQpK7VW^ zTAb&ZAvqk8Lw)mYw$E;EQgDEI1_J2arx6SY3?F_15qxuVQ{=U>hr43{GZLdTf4Dz@ z9aQ&kZlWR$*p;_~Bxb+m@o#XI6C9^I?>34P$bi<~w*X^s^1iy|5BYH#A@8l17D@8L zd+qTbZ+^e==)VVuF~WY3K!E)OChTF8Hdq5vN1NF~n}4V6AuHL@ z{!#BTW$##f+-woTaEDQmhFY(AL~(e@KwLYm_Fvx0`jvilBbvT?0=QAvAEw1aiDET6^4>Nub0p{Qm-$ZXz9z4n3E>apUJMv zomulF+k-9j3nBH3s;7!MgE|ZPOIIIg>D?$<3ca4zmWC;bK@x*}TJ0>UGiZhbh0c3y z08;|7e>87T~`92)sCj#dvJLoUNJ=2A0w_+LT$13A&czrK=&%^(bUL9akURAaLgtJpZbsK~kE zXi!@#KI@W(9ZE>T69F~HDwihPOY%ERwXGtY$1GN~rFw{PIRQFkltRusg^IyD_Y18$ zvuY`zJ^ZlftaS>*+JCEAaMyrn#&|N=18jQB2&K{kN{>lLi+n?1&rjj~4BQfv;W4Zd z#JNvnuthePHHvI;_F#A{F4Ya9tiW`oSG`rO2^C7t9PV*aA&t!vL<4bH3m-VW1 z8k2_G!M^11O0L*!M(Nff(y?MWBn^#LUSk-RS33-0T3&CHLVrHYV{)q2*P|?RJV9y=3YrR~5lVJBEY#(mCGaMy9$xZT-oOC`q7q=!pK)i#l z>|7RP!6=KLr++-q>}x@52IKGOAb*ApaF+ISY6J=a4p{=jX&Zq(qc;M(H`gw%;*KtB zbFpnS<_7C!I4sOJwf=7!>#Q!%xvBWGtCr=vi(4L+wS>6Za@*XmB)on^>+_|X`VL(m zCC!zfn&A5O*Zlgj)sQjjHi%oElDlw99jUY>s<@d}$A8T-mCOJp4M`XEHKS?0m5!}% zlFKEdh5EAHNLSV%Zh3v;zZu+3sU?@UJTg&^Ot0wr(r7&5CW?wrx9q?EJB9+qP9v#kTE= zRpF_JepUahLntfF$~84SMaIxk*WBpD)x?MiKQ32o_37 zaa`@zJ{RYUw|0`*uVRtDw$f8>q;wVm9E;lbOreFatoVu=_Gi%FP9X(=s>rj0RGI3uXgI2jH5dLTU0UnWA#Fg(i+fd2gHk)$C5;Wk}Yy;LW`&3;uzkmHYn9WP~>51VaG%;@iBI5n?~ zK{S4oJ?YpaHEBuIN>-&gIPPC4D4_A`A}ct_ZQ<%z)6+y{9Bsng4z8qPwpQT6R>blR zVBuiU$QG=sy~GD>v=OuU6-m>uMX=$Bz+DMBwCQ0d&W?48+!GpeOyB;Y6n&TZOCx>1 zuBy|m*oV(v$oDajPR0dB0X)Q(kL8maglNj2yN(~TH($$>1w8_S97a-HmIb)etuxa( zEG?qoxPD<07}$s=vN!Ye9HQ?d7Hx6Lf*;P?fvkHK^0h@iaK;VOU}>g37rmGjz|~x@ zt^&Ed12!>5lW`xU1t#TF)L^nQMqhyfB7>3hR?67|g!yhURVkjasZnH~zCYJWf*Px~ zM6NtLDyeosF#waar8RCm^YcGl|ZkgZ+?su zhSK+Xcf3tUkZ0*0H@`yH12bieg{RUKgfnlC0=+r5E7YK5D;~fhCIYSw_hexow(KO; z`9!#NTPRj)lNue&-8m)bbu&cGU!z^~Zz{+5hhf5sBlW+FqBd$=1-Q5Y{q<9F_NlCf zS(&p8lJwBt_oN zz8R;{#&+_itA_oQGJk}**#YiFa|5=8TCOR|A^Oi2p}PF(pI=DB=OwKVJIx5Wm@21| ziiTba^0|pW2-_OofC`|rccMZ8C*Sgyr#Nu(YaUx~uO1L3q-PvQCYF!uDe8~_M0r^| zG<07awnFNEdv$%uwEGS35S)dUnbP&Sd1dD6Bk3;;fk6@DW>vBs80bP&qJ;RN(E;8X zZe21oyR28>OjlY{B{nkq zyN;<$Mm#>A)%4w)WU8&;E*g10S|~skCm_M_K7hD+ReD>1W98c7v78EiF-vJ$XFecuu7)jp=V136~EX&rTFWAW)(x#pgYXz z$JnaEh$C>gLRDrb*(mWUZN#0jn+`R4DQp*IxJ`xvnKO~6MnP_r=Q@P`48s+9kXRHH zsT=jrEV|{^zfS8a++2jds~Oph^d=q8<%_^Ip`gBU+m(ixQjQD1vgqcoK%YB!=#J9etzZmNdv$_nj^!dwbkpA4-Aa9)D`Uk7P%7+2Y2h{X`BO}27 zWJVlrjYQKio7NC=Rn9cVXqcjWt00=l6jZWQ?sqRG?bBUp>8BAE&L8ji6Rv;yUg9(t z4ef=Bc{ahC4~N}^4n{SiGg$a~B%KwzbKLro*&7bBRA$I%AQDJf#!EFSR0^NtP7Otb z+HJs58DFgN2KRBHa#xiK3%8;Wp8&<#4a`D_Gof|&cDXE@U@9?=;Jh~vQ<*^EGQh*4 z=sPt#T=mnEl*D|=R{7igIk7XBXAfnt(bm^xMrLehFcm$Z?17{^a&8cnT^6de_A8or zh(nZ}fx#}2O*`cUoLYZAh;B&kLqC&W1)IY)w!Zvc)sJZwfIsx({{$yBX0?WPb(^UIk$1OOR8US+NRt6z!nq^l~JWbrf99huGCq?f*3C&aFoj@yYhwoc@4;VcCt~4a{!fXfA5C=4iqhSHH`R?#R0#} z)WgFJE=0ubp{|M&AcI5rSUit=Y{gOzKF&ia?k~gWMB0~^(gCS`L2yA|+l~4#N5%X1 zllLW71ClH=9OJhtai6R0>IOCLoNRzD+sr<%5z`H}CRb;9Y7X^O$|HRg6%R}DSwC0z zlXubu_*LLbvt!Bz;>}Lsx&`?lgzT zqG(WNq6XrhhQk(R#W*)C-sWs=C`gI3Y$6K+kZ6n!bU%Qg6_7scf91PojQ8kUHYDtS zU16;B7jvaUk^L2tI&Ap0bHpqor-&prE#D0CW!8RB*Q$5K9ASa>mIf^*7j-*|Cp4Bf5+zY{ykCqAO59Xk&&ul}CfeJ0 zced)2$Ym6aT)_EW8+?ungdoG`wsx9z+XqKIfACxNkFIpY)pU%hHB0<50tc`+zt`xh zwuU&_iy;f6_L_O)A4)MTP4DSDk{}F;&J?SxuJba`)T}#CjFfa6=L@}nnx5@j=Bt*QwJ_obK_fG zZ_k*@b&_}@`lpRy52FnzE;e_szWHB3Jf8)(hJr^&9+_|N;>UW<3ByH%s1r6x8Y5FL zElAAG0udZe&R!?M?uRY~PNJOotzY5aYiYZ&0jP3u%AwtQ^oW$S3OIU&)7-aI?4z3k<2$9D3 zJH(e;zbw#hvt!PqY~et;;{2i7qL*qzN{@3Fi6=iD#520S&j4^b{Th4@u%u#AT;amN z8HV74w+1ls@4+uvZ5P1pB)fkdotg)9Rz!QtXO`L(({nGd5Gt|Qy z(hq|A3jd|!_S|S*6-q($7qoh++){YnAyW}M*b&PQT3mvi_iySv&T-ST^2YyR;6NF; zj8j<(yFH`FDXiwP{TENl$IRIfL=d+QR=il?jyq9IG4gRNgUdH8RUm8aAvvzTs?%4* zlN+qfuRd*_J0CUEb50$yIs;VN{u4GrG@Y@9IYX-BpRD zsMg1wJV}FD0C?`1_$gyk(7W!<H2zdY|i=HZ$iqN_>|);_GbH zB>QLR!9{4JFVj@m)iH8eT1{WFviHlY!gpN$OcGX~&V%GW?M@(l81zO<+~#*trG^ez zHC>Y|rjWKmCf!**Gv!*2KYXy`ksn5GPUrQ#Y<*HG0Eao#uX@Az&ptu+wH=*!w)=ag zp?cNjZ4a6LlZ>|_rek=WbLlA!Cx_!_XZ!tR(z3vXNh@o?=71;j{jPH-dBs)gAbXI^ zc0c9wkSE~3mF9&59)`6i!w|5Y2@f79$H5oO1x@3DE~_yMDxHFX7L^EVuAVI0|Ic=x;OC*a$qbzQHq)DYeP zR09Y@q$3v!8CQ7{H(2f2U%-ON@pspO0wYWBn;u!ObUawD6Twp)A+zn37VM7^5_7?I zAm88FrJopi*}LQfxYu9L^p-sg>_;Np8#oK(f>{^rPk|-7S;aJ-?!T(V%PW9f8TDOgvU@?agxmUmT3Nov3Nh0Edi;Dck=1q<+I!o)yh&jy(a}p+9SlphXyx|{CNH3-` zZKO&+oZ=LNwd`6FYhnV^cT|Z0H75pM=aY!uiZcYhLoVB^h%|vxsG>3gBUxmk0BpgD z746=mU4r0b3O&O+C0r+r4)*BA3000}qGzVs$Njx0Rc)*xQ&(8+!Xk~18muT|!C38U zP`Yx|{L~h%KNcyiQH!Ae%l%Ky8-cF;;@+-AXD)pP(Z%6}dc!PVi4IpKF{sgCK)#eQ zK$Y4L+K8AOO3*aOJY9+Je_cR-=C7>ZQO=VSd`2hk;MC4h19nbD zSp)1(yD^|vE7ISaZR$ox?1t>knY*Z*LziKL2^EYITtiH6DA)u8V?T%hdm@+N*1k~5 zq2fX^()f11(dE5(y_s$*+Ft3lZuTmFtw<+83+8FQx8KKw`yq=)A1(XA2c#o-OitjD zbnPwv23^*YkI(*h?jC5*XsWcVea_q#m-E_GkWy)$*3`xVi9K!YCOJ0s)!%n{kq1sl zVM?UaPQ(Jd9xP70uJ#vuM>iCB>9`;x)a^3pG7dY6Y>z!#K$JzZSt z;EDe&>uh~Y%8?vN&95Dz0;+=?j~a@RKvLh{kM82W!tHrBcXT~?&8)Qob@}hVJO#cq z3R0AehXX1SQ0#*)&Hn~a_#4&kZZALUHXpPr6}VU+d#NV^VA$F)cB+x!P4O)aHnk|8 zCdW)uk;R-dGt?q?{TXH3+Y>=e_L@=G+tmcn6CvrXASg6@%9DAS_<(0hW$ocqQ1TW$D>SGiNq%DCE*%4-i5O7M`Ha#U*YG-uYIOQ=7eIT)(x zH@(Q}5sAoRP!V{}o@0u%kxR!W3&q+*|LnV~KDndNu7$vo4I$!7gfy~8`m-C$n!r=} zA7UwvWr1)kT@Z910J{l<>~tTU{_$aloORO?veFX>g0WXMZTzP z0^wx(X&U|-qM{;npG!-M`<6jdPyhzv^X(^k2+rQT;*>8WAOyX2Zhaj6>-n*Z=6Q@x zA|z?(PMkW4^zF@BX*=%{Z1X6ut>uNJ#CN}bQl3jTK7s&}(?M8REdz@D(^ND#{3&d_ zxh9lkuKO#32F(46u9-~?ytspzgE#3|rv&%v>9F(+du}*egLI)cOf%_w>B8CzA9JQ( zfL96n>0>S>ur*N8279zpRhOw@+g?Y5VAHEa6}6ODY|cRCW^yt9yN`v>A-VOI!xUo& zf>V1-b?@)JZNs5^ks8m+LqaqpVK`3Vl!N;qcf!%7WJC^{45Usng3-J*{vs$io(wD* zq&mK;|3^zb4`YFql>3t2G8DHSIi3nmG=d4^dp5`@@bJPrr+;!*QHRBn>N;2I@>nl# z2xr;~Wj8!t(w}IJ$0g23zMZOY_kidTt5s$EKODKQB~Dl}U%hGi*?S=j;Zwp=&3!LyFG$yC*sMJxdmTb+*pWd1LqV5FZc}}&*Nc1o z0#b9Jd9!5_&FwZlVWRpekfb!=&lIcYoL9ITcG>|~9m{?v0#7=bo2Z)u zRt~Hz_yGx}>f_r;M5FrgpV?EWTT0uW-X$~HFf#sip4B>bA?zVxxNm@=blaG298F8~ zx1W;_s{Ppx^KN;Dy=wpa4VNQ^g1U!G3L}((>!rV1CPMexsz@a#jcwAE`St;l^TwHW zZp*(N2REACo%C`#x_T|!Wz#M8NUQ<^0p+ylA?A14njI4?H%Yw*C-nniCG&M198bor z6EyYWAE3rI6m-ra?lt&;LQ__4kQDrmGO15r?0>;)vqL8KU{q8wAf3eF_}tf$hq(q>!{V zf{1R$pSKY-9H=~AxKc9J9?I5O08>;+PUdD_R(PdPZJuF+x+#tBlYam*lD}~>DD)VU z6Nk*OgPxs{nIIUolyYq%=Y+l{`d4fprq~%V6fOLSU@RXm)=yYtlr|Zj6zAIYz%6-{ zw2c$MZwkH>u3%OMy2t_az1!Y;Xd1m_aaI-}qp*VW6C=LdyZ!)U`3(SDQnc}f7}2u- zPaf~<+VB@9$O&fNrh}*;8EsmfY&N2PV(liA9S*n-&$^zK3Mn=3&fIq&Z<2R&u9ku( zr;wQpS-wx+;oa-~6X!?`HavQMFuf=2RqF(?TY`SyA$JZuWGPVp-QCMQS7bj#ChO@04O*@a7gT7#$yiR{H72GXfxYOW;-i{Qe zpeusJK?4G0g-|r)Fw6{uD-WV)CDN?PHNgj6ChAs1mmH`tEDoztbRn+|Z1lC&hK%rz znPC&i*tad(Ms_to72q6RbC$WO*$Vd~N3=v?FqVnWdxFuzG-O=eMk#37##)eA7!s9* zjV&&eaD4V+XX%ck02Bj4b6O~{kQj1}XMQ70GC*JGkr{cdL|>sqspu#Xj8an^58o*R z6BhxKSxGw%lhZz)M~M@1omPkv5-i~%c*^mdY7AM+Gi1HXnDiRBZH2=rjHwfFNY%gMvLCCioxdg|s;!70`eS4WZ3U4mRGB8cT7} z5MaIW9JL4$DVZQ|uqP}s%Ti{gI#~}@tT0`tiHU&}(H4(IPvGI&9F!pjSZlk8d1z>% zaQ|+geC+MrT-{6F{o-jlXFe9+HQazo|Jv#rT1eXwX9Oa%X z0KF5(;!KY14;$!>SbV8GmsIt-h1HcK1%T_lYu&N zTN>^P@{IhX25E+YebtHjwsrb+_w0_Ip2K_}>%igZh8Htov5F8$GzoJrw$;l|I?AW8 zvqPc-VD>ov#pV!xsBuR5ZNcf@1MK+XVL-?DgdFyG+H~C9212>SL+1Y3YUqZ*YrONs z=bq!{s@ilix&0m3(cKgNJ5cb;?k9xKDU732cBLmQv`=ELK5ux~(9Z@sMzJPz8c{4t z>%={1x-dx*@)mab*OZz5F4x-Cw?}P-uR(qf;A|UyL;v!|*0X3fO(|bVHju7^xUSii z9u0eEzsMZVBG@BBHx)6Mnu=+SRysEk=DJcnT!A={!Bl;;_aNsl*pp=tVW)t_6 zd_Dd<@1<>OHe1gHEE#&46xez#@xBJr{>KbPDMZ=~#6|C9mDqQe(wR?U`&(6icz#>E zsAC~J%f#k3HSw76Z6yG24snk%^-m^wsj~>;P~AgBpYHF|5d!C5kQQ)%kW~fsqV4U{ zRvc453oiJ6+o_lOI=~zLDP+^Bl4o0;0C|}kdiyz@F7H^(^lzB+0~T04L7eEk=CV*x zUf0qt<0CG@KsZ2aO1jC`t@G5s`V#_gLrNK%7{7>V^kIgTW9ap+vNDTozXNi44}Xr) zK&URTq~8hToy>Z9EKT5hx^P|%klI%PiG7LiUSj3t@Lf0>YnG897hMBV3I5wozEgr$ zWSdp%Ym=mu{Fq#aAQVW3*COf|lyn3Pno12y5wYL~qhk$AHE?`(Fd`Rjl`965Q5=IO z>v0rJ#kAU16vT#tuz=+lqur3zRKcHzwrigxH$o6BtuU-QS%+K^f5_{}AN+S=Xq=JT zuB1cwBP#IAm-~3m{_4KXH3+L^>Z8Q1JplfpX@oq4+)Z&42nBq+MVP*ZX?%iwCi$-;YD4uwt0T-p6%HUFf ziW38Ef9VBp8Fajz7V$CT<;vuu0yj8)E$hIK%Lf@L_?N9o?4DUZun&)|WF$W1Wbf(L zyt*pV`6s!No3NnrCq8n~?ZflMn=uID<~gH1`Fq9j<^XiQxCrNeWVTtWbAQ9_(!Y8v zm21A3B%LXQ{0e2Vi_D_ogpz7F7TE~%5W(#`LsHyqw5sQ@4HNh=o%sJ5(SuUN;kntV zc|2?O4U0s`Y?|641i!~PbaDJ%*6ou^$=fk731Y|#4S&Ah_q3cOvf?EJsbJlO1L$Y#t!!vX^vL^rYQEy(=*yG?g~lpqH*V6$=tYO6#Qx7ZZ?` zH8%u>!>=&+Dn7O)Hx~7(;1IE16DL+I@lNRPYDGAL5W|{Wccerm$cFwyqkXJd(MU2DM~oLJW^Dk}AE(wzA$;@OqgmFy>lrNA3s#5Q zboA0bZQ0l?mCu6iA3xmwkM9dG|0QDUv>fzL_eJzi_XTE;N?8dDTmY`NX^Gv|oj7rA zeGM(oaQw}fklX;#! zKI*j5v!uyw){x493`;KI@s2?-2LGq{`b+d3uJ%CsSN0jZQkt3Rzc=Nmggxlrgwg;g z3{5eyZu;4g29)Qil1+Qwr@2`a*O_%fVlU*EAu3KYckd;44exm2X_P|pdh#=;tR*vN zI)pypaFS9t4*CEf4FX8fqrt6Rf0M~eQe&9|`SI}f*<5ivDpvLlH@8~Ab4N@NZbmyw z8Jr?zzeBcUJommQs}=@R{!$eRw%;**zQ*$+9ntK^cJy3 z5UxREg{({P**+RHhBB~^;Myi`=YpZIa0NuhZ{&6R94?O%?u63Lal$E@412n*~=4z)}l8m?F8y z_1>v_X(#{0jq-iCw~}}a4htF2UrcUQ8@vNdn?;6d_iB=@=4E$1d5?+(%I86w_p5hr zocFM>FGAu~#IGR@5n(Mznk>hUBO7-^C_0aSS=qnJp99%Bn2NyYUXW;nglj^_tkmA3H11$U{^g0uTI7;n(S;z@MHG( ze?WNiZ~TpAZ>I~1sQA@0brT*CJ083Q82}*HPG4DkB$?L=362Is)GU@MFlF4jW)z?m zX`KSDswd_Rubq~WgOeD2^olb2Y=;;TaAzxAU8e?5#A?nhA{tLVZcUMR!)TrxOdqFZ zWURsAS|Pyeh{_>tH!`bQbDUSUKdnQ-6A=4<9r?|WL<%TxA{rUYT*j91#u)VptDW*k zK2W-KFulS$@?bk~RETp+VRv!~5Z^eY41J#z;XK=gaq2Nm{dBAqeNgrHPi1qoT4Ngu z=YKiuBNW6TjwZWJ6J$c5mbfh!obrq$ZlcToCR_mO&s7K|_{~MhbjqUPPs|bQzVX1$ zL`lyWLm}S91cW?e#I5OIYjTXlVmJl!)+L0sx>>I4DZLSwXok;u)D-yb-OGr|k3uk( zQ>igs@XRr$$n~KuQF>TOUBu+_&*dz0}VQq=4TyJXy2B6`B%UPE!3@)CyDnGaFe+ha;_^EAjpAdPm-8=9aVKL=?$* z&%Mk2_9%UyZr&t~AAW!>7UU(P~>=P5BcQhnYshV+#0#I*QhX zQm(Q-K7py7@9I()Z8c9Jw;xd@9|JJcaf${U*do;$8+UbZ=)f0~A=4>P=MAvO47E~W z)2|pMrT{G)E4qx|0z5}t-0ADR;x~lc7z4F^;2I!qz3hsxm3EbPf{7Rw<%CUZs`Z7qoJQf;S$MO1vEk%e(A*k#|& zj*6aNk#3Psap;N#eb8%1w-sA(kP8RmZ$`5T<+XCz>G+VLqMnriSXrM5-;qLU)gSX` z1YfAK)gR%xB?*Mjrw(KR!?n)=BV0w9-hXq1@{Dt&PgvCj(!DChEbIL1zJ)f)86#L1 z2t+1XZaY|OyR{d1>7Szsg)Ih>6*Lr=@doZtF8kbb7B6+H8Ck8&iCMN~jNpJ|yln{H z6%L}ai7rdZo(Vqyz1CDidKRiv+S+^R8!^oS&2rVO@-vGHO*CYFY%K`?9ygFjmJ@Bh ze2)BiXU?1X^FwHhdvo^UwU}2Dp)&WfLDdfnl&8*g9Ga3dAiS|!y8b#H`t^Q!dA(0| z_jY}hxow&W>UpI$6|kz2o&lXf?D4{W$Znk|O5N&YOcSMs>na~lNXbajy>ih-j&#Ma zZ6f}zy53{I(n&;$+HqI&lnGPzB3=)KS#UyH`PCxYZuA7$bh(PiT`vSL_F^V_Y|E`U zGznbqPU9>Lqd&;XXL$>=!L=HKyXctH$ZQ=U3q5@7Yr1BTf^0KRo&W~$ugH&`96gYd zaR%%HpY11n(7ASdyiXvCwqKT)swn!Z@C?xLo6kH`ZPQO5o8?ILx`h}FR5xvf<5Qmn zjzFD54!Eg|L2)m9PQMMpg!Md~zCfl^{-5}T)(k)-diq}&kW4pjOoL*hP~xz*gTBm{ zk9oB_emO9d?5G$w#_hS+`=_)AQhZxOjCJ4W!ae-HHry2c$v7SsHmgQzu~t(JYl{M| zK1F@XOLIn~jO8>Q^0BqV7=c77X{9C;ii&ab7(5rscSs}*s%pkicOv(@$)048SlEIb zak<*vg7{*`ClfIp?XeNaxR4*wCS2HeX+XuS_A8L?mwKcs^d#F5hM9no6jMIbIwi|x z`XB=y?e-g9+xjtDQcpMW4t$CG4%Mm3sg_Um3qmduAq-XtkjA=YNx<|x|#2XwvF*~gd(}!NE;33u#KDs$9FB8Vkn-}7o6Bn_pmnKC!Ny5 zv@UrmDwbA{K>ozK6rL8!R#*Lt?IPKo!B~zeRt^AL154K0GfdE}p~l@Z>;>c^2c z-)g@hhHuHroJa>f_SMtsT4Jo+@>r-^yr*l&_CgIPcTiw#BEKUjGrZ8t2P_hiP>~82 zW?c)IIaQUBk+=x)=^@E+4wVzK`UvpG?*~6D>Ql<_%tQ3U{fRRr_&8{AGVFdZi(1UN zw@qx>F)wa&9+YgcScF_MTR{vwh=$?tJ=4RE_W&4aDagg(x^SVXy|gbJ)sR(&I77j^s8s?9Td}MfPuOAamPo#hp7YN0}y3wXIn)QU^m`7}GRr z={DlnO^qF?;UVdPZ1IO@fEidxQ{K{rq*E3I58>@0{7i4-uL!H2zK1+*m=Z)WxtBn{ zQN0zbP=EZjlFEfoj9h#bpS0AgDfXd{+r{wnU8r=;q3C(nR~=q~g|Dq}MO|!3LFHQ| z??E#-DeUegZ8@4JH3(+$G*i?RwSZwM;R*>=RB(Tzmeyj@z1wG4B18s8Muzg@==p*e zrcZFPC@{uQ4f957zICfMjCHs@?_MDEhtK6`s3(#6#^0Qe`n0WYE`tcXeupD< z)%?J`%@Z$@t&!^X;O5Ko^X13K`};@3Af)|k?YwWBR|_tahx$6k@PD%}APzWL{(R2$ zp~Ja&5@XPHjIHMIRu&lnU)hAR?A= zmv>ALjlXhhm<)>OH$ZWQiaY>nvos#?MT#`Jbu4;CA`EB_>b2*({-L{|!y`(f*U`@W zZvOj3(*r$2|C?Qhqe>>*x?n=3C|-svlbGqLsIw4hg;qn}8VJh{mF8nI%?3p5e`JvT z86GZ#H<-vxR`4qi(+Dsds^}*M&{VDp+Uza~B1w&Mu6$ZjOLwJbB9aDfCApQ71ya3& z(-_P4(hyCI+aHHZd;I|7P-il{EJhh4Gpxfyv&bMU6PZ6v>47{}Qi*F$mbb6Lp}Mm_ z3?1)HKOTI1*Z}zXc|QT4cg{+ID#?`Kt%T+!zdy%cjXcPJwj` z6*KVITrT1N#&FA%SWkdii!a~yIrwq%&Ft*c%ZJ?vpB_gJ6ozuI!-xO4MdiIN)tvc! z{{7a)qUWnV@&6DY`!Rlg4V?X-_q)6Pe=#VZO$1jazmkpQV8hE2Yx;u%ro~rll%jj{ zP4mMZ3A_e0$2G1J=h`%wAV1={RfRMduIkF#j=MP1{Gc{KBAJ0#xqeaznJXae!-cS= zMSaz_K1NVXB)&t8D4G{d5r0_=E<(ng{g$r`y0B<@JZN1V&izGKM=Y&7)jhpULzj$^ z-pEb&qf>VlF=R7$=Bup(NGoTA(&?FvG3l#7*=w4PNpC)lEK;f-)b8-LNERbkSi_55 z{wNh2Zr=Y?|7!^hvknM}-%hjsInUmHyQ5j%9e1i@{Rz}SwvViW#PP{}yNn<4z>6Iy zOZ?N71AxUP4>TopR>On}v}AwMTT48)VNiPuJiZ|3S~H;O@mQmX`9;^k?GVcT~5lD6!JspDXskTD7cQ zM0b@$!<+-Ai9+?dTuW*AnMvFzBVD&xMJ5K8!J@R8nn2dI$)0I2mm~FObfCv6|DdD| z#;}o>j4(?vhw-Sk(GE(-Wj)}T%+e7``nti2lbv&u#$=5$j{#Gr18*9kq$NmLYOtQr z=ahHNMK2@c|G~kt;$;%UAHI?qTvH`Z<7Y5+qD>B@w%9x?k`(l0Wm}XOd??nEC1rPn z!L9c1*2a4&$Yy)019tVi{${iHlW|rqi==TZ+_!3xLN>FyN4#{!*}-*oVr{fuYyKkU z)x@c>AH+?FsR7kuC$*?TWpTmbR$#nY#Uvu)-vs?By<>yYw(hGqIM+okp-TeJ5b$Sc zXCfMyXd>4IK1L$84hcuIO=p(1_pbGA3rE-S!>bTl#uTzhI;-7RD0nLp#(>+QS%9(y zC70y~Dr{`pfgZT{Zg{prRf8FIO^5{oO z!^K-QJEKtL+pQ$hbCm4wW-Fg49Iyr2W{FtEP1NjVnBH8PZJ-vM7TS(B}l^Ty5;nhSf$D{-hVa*~=Oj5e(;IM}vjIGGkkS$Wn# ze~#%+>pI1Ev^H)boga4j4dx3do{N|%F?K+E;BOAJL83nN@|)TTWp9L2i2>v!c50RL zA2pL2O~94pN`5($cTfI>YCJD8SW>ztqQjuD!-KFxXby%yQj5jjC7gw`+2d@E5x;D> z>K0g&W8m^d-1m!=ls)S+Z+Fn}sw!`RXIzg{G+5SaawW#1(DLGr7e8mv9_(f6t>pwN zJ}Lk|gaq}Di!Eq=@;gBnKB`m{FV1UVa9l|*E&{q-96jf1YjkUVaHln`UHkG;r%~rB zh~yhy@h}+L*lv~hIM(Kx_mp5w7W5q~L0=V&$4rsgcUPJGJ{WsUDf6v7wYCihN-q|9 z6#)<_9O@}=6aw%2+t`=YLBy{1LWs9XK_xFi(p*&PR;sqByY9#w4b>gADr*V@zH2bQ z+7}oH>vSzB(HexIk@%G|Sr2*Y*HvFR^Q#)q%U4+zWMKwN`_Lk^|0H;f4qCZO)Z?Vz zbbJEE?+)AJ59C!DH$NB+MyDVDWlDOgdF(fr?`B2_yvDXk?Ei4uV_{H4bE@MG!{VMr zh#*bEV%)%;IK;sIe&R0Ux?G6YlTs-0_>da6yBPD`%z1|L+2oY5#g~#dkX_QBu|vJy zy#6Lk6sh+ljz3nfk-%S7Fh54+aBF8v>4g4>9 z%J0~ma2O7zub@%xm2GKuiy7rqWBx?DsBi@sHC0eo*cF+{GO_MWbJVM^YYWTf2VOs= z|JM6^-)Y&X$N~vhgc$8d5p9hxjRWl(qKUC}%Lp^=O)SABzWspi8)O7A7e;jF=e?8| z@y}K;^H*@W=J@;KvPXm?X~^Wny~Rz7TeQWtSE&yS@)F>s`7>v3^a*%@(rLet0+A1Y z=(R6~vg%Jd!N8s5>_>S$#oqoTP?z&=BqKPGuM|3>4{ru8P{pt34Rb5qc zQp(uytt_i0tSpoVb)T5V`D@g5@yv7A1)p!K1`PU(4a6s2hpRyK{6b*WT+wnjG z8TewzES+el5a3dE9qP-bE`qCIEkvwN7>A~F#lACo_2v#-MNT;Z-b`%-c;Ke~s zVO=Sk8qC6p2yN7vf_sEn87!j`mW-is6%!bq*_m7X&?RR3Zf&4Zr90uV`st%eJTe8q zdyPo4v|~Ngp|$@&d>t)HdRG3|FQAhlwqowp0?7leqXN7kA2-4*k#137qMV){(c{`| zAH`&Jh~fONGz{FkR8^m51I=AVz=x`NAIU$>WT`rEhUz0&$o z=ZA{beg$pXqVGOX${KqXKakl0)X-Ag`+v+L`#6eEo`UxM&t zs9XRopdD+hqt2xp%s{`RnrKr)#V}Z|gOT_>l)4EAG1bWk^+AhxSz+1Ib=OSmjqTu) zsb&09U2tC4&_9`6t5a;#PyB4?PJE=@n6oWuywROeQlJUIji5J~d@N;KZ&KM?>W$yo zB3aBmRmGql%pEubgMIMQB_=lB0lK~GJUBoXnwJc@b@#tZ>}L@hE^nDx9UpzJSzWt~ z?P`{31$9DYElh_^DH;O|RVXeHe}mB|@T}Jt18`wqT<+EV=f^kshrv5NoNMmASd{S2i%%dYa=GgS#;_CymLv`!j8{2W8$gL%2sXj?P|quR#Pk z9xZ_bvybQGTQ1K^he%D`r-92l~0OcvJXGm6oG_sic`MghZ3>H_mlZ3 zhkL|Im?H2g&rr(I=F4YXB7$=?AB`%8Kvv}`$3+exrSP!IFyV;KLrZ&D2H#V(sZtbN zVmqAi@Cw0^J+F{di0P$|fAY;IArRz+Clq6d8sc zG+}zi!0#O98%Q?*?@NOADCf-IJv}Kt`g;V#Q&RjY7Qncyy+XaNf7Zf2C-GLRw8(`T zRmu~qCm7?rtTk;_Q-7%~t=IJ#G=Vo07@A zrajib#(am_?9r-FZ`HJ#?%nOJ`um||knCryDoctOQ}1ry1(mLH5jZc&Q!1QGD=e3+ zzTg2cM6#CJmPG%3e|iE!Z|*Wp?(Xi!kZxI9?E^++12S6dfm(MIJ^iGJS2VW@i-1f# z{wMQDE<%*$^8^T|Nt8(KQ!PWeb`s4wd*XuFMo0=U2p*h)L@tBH!eA5=NNO0ewdCLg zThg-qq|MLT-98`69n5R<&vNu9pDCv?P7wDgsm{X#EK71|f1f%vy37Zu5^!5(28WH* zwoT^5Qk|rRqUayJY`uC8J6*#YOzvpApoZw=hXUzWTvTidnyw;!#8S2VBr7O_=}stb zH;Z%+#xLjq7LQ=8N`#j;gh4C9YZwhx(f&Z&;mwzkxmnQnJjXWje ze;$2p=XOJ|r;F>>^O}Ova)}H4efj(roUGv5bA-PYK&rHzHhomB(J!; zrXZ4EB8_|_gnv`I(CY%&sN~+ABT;)oCwT2SrD?farRZ>Dbb{CzxyHgXw{KrVJ0Q|5 zN*Bc0f6cjG<>YNaY5fRD1Wi0Gzjhm`a*SV($H125Z zosC_!CzO_t5mb9sG?|ebGZ)XBJHVHl82+i<7|3|zOuT}v?~?IY}-8Af7#(q&W4!G8$0RE)7l=L7E}W@<>)x) z*W2m-P0SSKa&twC6~)OoYX`&{q_9oGu&U8$A|M6hBFh-!qGqZ82+Fs77b#e8-3i}o zM*7V22+5-_y3k$M^=hpA@@auH@(V+8>h(2!Bs84BdvJeVCfzJ>h>0)K%y0_&ihI(d ze}9r5b$1mEn{rzk#zbTo!H0E;;4FCj5AA$i zlnuN|B7JHIICmg+ZqVKvJ!QYvw*`Zqe_R@f-k@1UY*47tp3RH^7opwVF{@M&R@x@s zsM_Oom1T&k3IF_ZFr=cUMrno<5#N!t?;I;@GFVF1_7?Fx_h|b}MV$|YwFIps*5ky` zt;pab5FnTd=FU#f+0VH|A7iRq_ic^Y*Ej*AKXw_t$?H^oJFM0R)u!dTW`lo;f7Dt- zE5B1IK-e`+P_(7cN|^)B^`wUEvhOd!4|wLPYOX(#yNDuk{eKeh8dDexTa#GgAg7$k z_O%ggg7Rsx#%V<<%DEXX#TZ$*Zfc5Xy{XSOoRt&%ZDku`L+ukCy*CZcjzH#h67XP$ zN)9zcB%OjB2X!9NGU1po6a|sHe{$n;c;;iV;v^Z>4NTKImw(UKF!uYV@7qmvgV95~ zF40bB5@sErd1x>k%S}Nu9~?)=(La?`O>f&U488kT@L-^J>ugTaVuvgpb}X<%u^pQr zP-Ujms>p^cWyps9_fh_er3Bj&AaTTx$4B~6A3s&!t0*dvOQsQ$+GxSef5sdtte4Yt z5h=FAx?&vRL2Z#6EEZ8D6qmL@xZ0yCO8uT$Q_7MR?+EN_5!o7HYZW)5R72Y8QB){} z!qtvd|BNy06&Fz~3~Kf)5tgvhOub-om%#_36<1v(d0cEVgpQq)`(L6;y3AJ(Cv0!8ArfpXPZ-f2p-BVT7fzupGx& zoN0Z?x^#oP5VrBd%`t$$Gsp>lwP$)$*j?2VqLQ`U^$LF?0nbRo>vSmVCsC|Rk;q;w zJ|6cYQTP*9!;XDv{Kr-6|0F2^yUxblRP5juJ8YseQyYzRF3uzU2CtcT`ZNcA-waa) z(?#3HXRX=c!R@*!Q#H*br=ieyp0CqW)daI}0UB#7jk`}o2eL8chB?$^$oA*jrUYa! zy+;17X-|N?fLpoUglL2P3~Vh0Z*IDYONyJezV;oD;!N4hF%ZxwoE(1ux2kmqY!82J z&ar9(F$@OaT~DFmhRZ<-oiAxSWC`>U0*B+18^Kv;Y`IWM-n~jphL&pl_3J~s*K|n$ zGx^13!oFx`uakZyD*NZn2;w4@giG1QxfTNu}U1 zMw;0c$X1|8q85r>2E)qfK!I|m8NPo3ZBpjXTe(}SrmABL>v>_1p^8^t1*gfcVjoto zeaB+G&Ar!%+jM&2^7PUW++%As?fS3zLE8USGHK278+#a6_yKj0F>eAf425_93J(m& zN$AuW4j8&r>evwph2WH^xm*-GNL9suZ$df2o#lU0sh{Oza1IBvgFq4__ zl?=s5N3_{b9eLqQ%pjB5yc@>w1DI9NrDBcSvx>N}*{KeWRv+uzpt;r%?KyA9ne`#b za@^~a+?(m(tVWZ(7TbH=?{$CgbK0b(8sIm|{QBVUkfNEKEHBpA8MdQUm#6Gcl4=UE z1}mSO!?tZl#QB4%D3YY;2g_rG`@$mAM^gHP)#yCML+mMc1S~P8=%Pbrem&bZ`Gb<= zZu|e_3tZqAHO(;&!Y~j-(SA>{WpEQw2LuI8B#saXne`YfIc8;V3WR^SJ8qcbH?Nq( zNuNp-AlX;&(5xo0o4pn7xZh1w{EDVtz;lTZLs+ifP?x#%#tv;F8l9uFVb$D?+(_xK zd_hF52=pQD)9s#hJID9FmLF zXXgo*sUa^^Z(f}c&jF@Y1z6#eP|QJRxYqVO$&Ot_??Q09K*r8YtCF!^tRE~+-Y97+ z9Tx$U44f39YmLJC%`-K`OtlJhV+zfXytG}yk;JBWfAg|9yJa{4AAtHUghYERKjuqo ztVaDjC%VRgpVZ^w8UiP!TJg(2@V8ukKO=Q}m8Cq$pK;3=sczM%2uH%VsdWc!4}Yy$ zZByem5dNNDA<~p2G;nZb+8J`tflIh%%G&_fn>NXK97hf=wv^g3ceHo^y}Od_*s|>8 z=;Z^D)oS(Zi}ppl`DOXAY&7Q7@$Hb3P9#Fl5tevf(&+f0+ix&CpwZHHC>b%AI)ct8 zcXVb)!n4^K4HtpU*ks_jZokopBY#R9<l>e!a0qSNGQ4=+9w4Prn_$v+iy#M)%fW zcrm)P-k#pvzrU^Gxw^K7mpAu+sAV^1j_^1mb{N{vR`lSx!nhK%>a{1^k7=YWIXq@M zyAy{YEm0|(Ym@~Q78ozmWda?os8PMhk~qp_KKl#ITc)E&*g~T}Qe8seF@KG+4C%s( zmcFM8g@q@L6w-+5Y|#=97OqZ>XMji%*F?nRIu^@V$iLN}XR+tcX*gnnhAza^SBZJg zJlCW1lC*xq^_cAw=>&qyG;I9aAn;knGv9NPxVpX=kYlpnFRz>q218ssFs$7UFRy=> ztFH~KgVFi9buqdcTEnY>^?%{?_G)zX4tRew@Io+WoWtw$9QR?u9ePi;prpl%>g6P5 zZm=vVG>je5De{9n7W;lzZc}E!kLMDd(E|ZCb0~L7wTrqr8Te_52QS(^(T_A?#?Kc* z{fOe>2#OpZ>#Q5fXY?bf3V=@6bY6CKG_||m;zUiPe!g~scnJANDSvRpApdyt({K?7 zkX(kJ9J)k*c9P51X%9awyIHj9Y92uS{2gL23 zI7x8QPQEG2Zhu&jh^FnAuI_lcqPaYzw(|g*NLvs)LL`rrm6XBFW3K?up<8(ssMC6Zc61!REtEU<<1K+il3aY8WKD0SDn3`$>g^C z3fe@qxkq*ndX+;v`D~iiyY+A@3WzFvNf}AL!0iC=>l+-sxeI8(L$F2Q2^{M7_sI_Y ze0`Yw>YKtkt4Ko_Kq0p2{G4+koAP{dBPRv%6@L!Kntv&|hOX;59%#829Fz&L1t7c-!H$IpeE3MB~9T+rr2xW#)I?1;Esa6ZipvNEt6TXCO zU@lmqhI!Te=4#OfDroX+b=mOf>}6){;hH60ba+KoEJT8WQVgokpNWB|fT$viOk5lE ztuOP%voPSKK6qRU8aY$oL79>*o@NxeZ+}`US$RC0S!D&Tcx%22oE9$M44lEV6^W%7 z9@vRgz9ys{L0bGJbA?meZR338J2<(?r&YBdE3Y=DH78+HMUU@PNJo~c{;dfOlxpcK zx0}HwXXAD}T|@c0N>jC^rlvKs<)RBBYzdr#C-hNPrS|PYh1yQ~1yi$=%!S3NQGfQx zMN<7>C*MCXj8zCf8J-b-1A&k9Srd_3Q8Azk9H9jGUPvrOMl>8uBikk|~Q;dlNL9@a*la7%x z%az|2tKWmt`}L*qA7xTIZ-X!p-u)|1EfFADQM-oFsIQ?@hpv&3F$Z-8XA9d=sw)4z z22yBK1|)xXd@r-znRmljg|ZbrLSkL7q$}K~L7U&E86(l5H9{i1P>s@IwSRxZQdp-1 zJz(E-f@uGw>N;c0TZGz^bV?I6=!!sUZT1fz*e_6J3tfH${tMiiUXiOO^!X^!3~-Y>Bcsw zfk=-ZaQHdn(Tr7ahyu4q4u8QUL{e7>Io$BYDMY5ngVNrH0r|E~N6|@oln=F&+id>G zPN9?db>g^M*(>P0bxW+-5TQOJTR%$Bb!CA+G zT$4XG&|bsci52nP#mW8qw)-|TqKq`MBCO1{CcpWs!FHQ1$E4^3IZ_@MbUn~ zBBhqrtB9h7wQWGgw%i*rK^;U@@!oUq~q1JM+i#;oJvs!i} zT%eT$+({CGA^J0}td?2!XnkQ3f5<6yMDs&+b`KtM+_ioz5Iar*)$&~&CWAzE{;$ZT z4)`W@zeq27(+7=_u};G<5QcX@#SI-AsSK=yf&>VO88(U{*MB)D7RfoX&y_0FcPDn6 zDydq^ZT^4x(`VoPV^?=Vl&Bi%5aynpQC#r0L%+PuazV01-${k=Mj91kxq8R7^lT(O zp{rU+w0bdG=R#;hvVorDJ;X@-2>NYR2;bz z)!kX)3i-8%&oj6?D4v)&1(xhda?xPOzmJlY zSa#fXn@_R$NIvmBGnb#6Z4*ULSX4|QB-$umm^PTCQB>~KHcBp zBh!X6d5!8>Fe&f9@UmP+QL7QkRu+cW5|~nK|4{O(T22K7<>F*S;R`A~9n%#r#*w0K zr5T-Z`G4RNM#qA^E~Ao5Rsr2tYq&*GtNp4hdBIVd@3nkJZEk8IYI)Z_YW&%vEbxX^ zMO!gbE8wE3P!Lwb`{?Lb1oSlRBk>LxdjKYmB*dkvMF#%G)G2)GUR-up!#;8Gm4J|U zS590SNz{jb)P0c3^dVkCa?H+in5RKi`zSQ6l7Fz?^eKn8k{9D-8$S-bBekAyGJBB> z?u}|O9cP3sj|oBRVf%Oa#hh+U3`~0B`2jwLgRw2{3{!@HfsqnF_&Jf~WBf`!O{0g< zs=6jvY_?oqTvaHa%{J-#xhV|ct26k(_Q|n%n!zYQmBLcHTlPw|=E0E|pOoa-B;L70 z%71{%+_}X5p3TOp#MWB&LhE?9fte$_cBZ-@{74^X3ISKS>pCT{XA_I%dB}5*cW;Rv zsB7v;>8!h~aJE!97E@0sXTf8n_f)Ws60b}DeU6lLztRk*anv{S{f|O**Ju=fAymHr zLgD}6>u;5!#dErw-K`0Yp#R`Wv;|FNuzwT&cV%?e;odqNE`2TgGU1(uY-$ztB!{}5 z+3*i8JekYwg_v*L(jjivl~dqwHiWS=*jOf(k$3Xq+=2(divAk@x*VA~36AZ4^9>v# zo#^ncwY>v}Gdo0w=r@g%O;5ux42JLd6+zmel|W)w%0PVVfV2}kGBkzMX(KwfN`KOg z3GKg=^kYlA59(8Azk6)Ib?+aGv>+q~o-qY9&_+pamS$Uko{YnYAX|Yh7zg@>0=R*A zF^4avjb!)?Dp@ha#j6w|B1A}J8MP#>=}TJTH~A&hMxo@I8K5I=m@?6c+&jYrdIiAv zICDyvNd(>G%CAgvDoW%==17-Io`0j=spKY*Xqs+xLT|6>;dceK$#IjkeLP9qwH7d? z*tY3uGasK})wo{N#mJ;m-#oO9{GI#d7JKA@C#+{Vn9(im30-SEQ9G#b((a^J37EN? zBM9l8+q}1z0#hpN%s+%yO*I_pEpe7R#dr{K@7X2N@cFtHpJmRR&lRvbm4A!Kf8U92 zdH&fs_Bxkw4=r*9jHfhcj+5zHA9@-WQqbV4s@RpS>Bu1$baq1N!lWwSP=t;B{?{y% z@smo*6`+~^a46i6K^S%ZwIjz*7msmA{s4uLO-sW-5QgvjE9OvW0(z+4606jvsGt@6 zIu*ipJDV<~)37@cMDpL=e1Fi7Sagp2%slhXUfmSyLWmWrTv~*{u{DZQ{wmOoM`0{T zZqOA{Av};q#kg9$;!-*`l5Wvv8%eZCjMlLb+K|k_o1BA3Lnyul_$ta}ZWO33IfhA+ z%n}&GDE`e}W>3!_4ZS!)-{;f&$^5S2mmRm}Q!>J!&f9zPLyW{nB7a?yVzVVk)5d8_ z#epGi1>Wm0*HN_FbO!Z*P`0!AmfFsptPk`sSlGMt}34y8R86sKgJQlud7&KoExS{E9iC2x?n0*Agdcl2)pe zn|pJtXuTfnMX*bEmw(z(<^SGc!Qmq$j>^T}`F!S`h3ng5UwGaYdB!wCV5}D0KHHZ9 z%_0h8PqG|M!8pQCnIN~geOls%87r8)L%qwHlur*LNn+0{4MI{%ZiSM-v}P~Q8vmd+ z825c#mC_DuIXl*tWs&_5N8Em^3dCL_B+G#CjDcSw$L~oZxPL%tAC=spvG*#^m0Xq^ zgTG6Z9Pe4i%Zyp2LF7e-ImH^d9PRz}fS#hlMBpb{!@}7voWd3nhu5r%;;P4-^+7zjBJNy9&B-JpmC-Tx!xb{ zba9&+ZK(%e+@KM)xeO=ov+dF(qLFsnm3bDBJg z^cQDs1K>nC+24B$GI7>6cps!IL*{2;A#QP|GNXnBFEHO?8D>Yu79n*(46OrKm=Z2# zV^i>3vqD2{_J1_+h7X-qZBv^-5dNNDv1&#@LVvB(Z;5%a#=gu{>$KB;;fQmRBe^L# z7&xqs=D+t|fDj;>DU%4<+kNi2eRdbm$MG`mbmqhlaYDdMc|v`D$Dd-74$rJXhv5}T zW9$?7$^znZGDknjJx)2r>?27QE6f<0(jXXgI$25}$e7P*!~iD=e!7dJc(85vqm1#I zZGVLyYnC`6i@O!({<3W$jYBFh0?Kd*f_a+4ElyIBbe=mPt~k37sb2|_i|TA_0bPB! zpszWq2puP{Zb%tPVOZJ8G)#mNgxHI?i7&H^UI{ZOBWVEU0a?ZT$ooHYbnZA~eTNfY3Y7esOKbd;YKn7vFo<>6YrPvdGJi z7^f^Fd!?bwoX&BHUOQ7uH#I9jmVaK}RvTUGEdQ$u-sKU=*2jp515nM zU@P~Qe;_BI#t0PirVkGho!2Lwzs%U5#)MGT=7^B6-}2E|8xaKiOUMTh;8gGW)?hfD zO(qDXwj;YZe2-;h{JBL9~dxi&bSr6#u2Vf60A+EWx6E;vbU{r<0; z%P$ue}BQ+jW=vN^u=`A2CHY_E^ud0@E=##-+#BlzoLW^OxB|O zWh%g4DZ5Nu>ll|*)d-WbOv}BKqgr)FqTeJZylV+qC?R|vi)C1QG~U5Ppv4<}6W9CgWKgoR8oCQQO5uDK?`OZb3)_FB1~qwhHyO$Px(P zeh3dx!)nb&xvHA96rX58bqv4m*rl|Hn3rUfkQ)mLQ=Vybhn0gRaYc4|cQR;%dws{a z9j&5nmKF+pPt*jk&uQmw0;7>9hK}*7L<)`Fl_#RrID#Os+<#+Ki*$knhbZU3r>RL9 zCv+d@F2EC4Q779t)E>}!xnRX6Z|P^Ky-p)^l=kLo+6LVEdkl_l&*cp{e{$vQA*vSP ztYrkh_umL#xo~|-_jWNd3j#mIZ|l7$i7~K+p|6U2CYZI+VsgUDb5=&r^KUPIk{`+jaG=#A=5A_3r>*I5duMht4sovF| zw?SGEfe=U~7*(0t*C^vjIP*9uQPzYaEO?Go;b!#>*F-8t_#KLENjP66EYDX3t~ph#;*is#k~r%Ws~UN?_AHp{0*xIcWwu3?(SM37cEmV#}quN5DSMv&t3iVwnu%gNX=R68c4k1q?)BoDp9 zrge4)0e=yK>|wYu?;%XVdFaxwwQZ0gZVo8$O*W?2*Cm#f*!yGf#c1t^vll$eA@F^8 z7suz$!WO3;?r4KQ^y3bAc80Z_1GDvp)g5kdh95&T8N(#(iu4Itq7MJT`}-}gOv>mE zf~Gw{r0dh1E3xm&SbwM4$H^1K#;8lybb6a4^MB+LXa2~C_br*no2RZ(z(V5xpS=`@eUl!>+o2NUyY8vBg(i2MV7_BAXhoPyNW zw?XO&pIuU8cwR)`UQ%1$U&!+u-2+1~rbc z3V*^t5Jda^iY+XX($*+Ku(7hR4anwhFCHZ8vA0(Q@!!oMPBpyY!5q)&nE*VynUt}~ zrqS8M*2MX=Z#xiLI45$9R|)Kl{cz`zvPF`fby`SdxWo{KTd`EE1Bha*p(>UCa9`r= zS+D;I-hf+D8RzIQ6mb?`f)iVH8d9YdcYl8CEgrDGlBt6ad;z^!TW{hx6n^JdoK|Q6 z0Xt<^+6O4TOv}tx>VnkS%L5=35~o-boG5mtt#n$WksU^yJ%FNa>Il$W6XDhkeY&i7$IVgJ;j)r zf?Ma=9Kq&79wBnJt4G9EZb%p+j8-LrianaF`M4U~hlKb+T-L|L34kL@Df~&WkC7*) z6i}ZM9C#=O^vr$mC|nEuj>~Q~34i%k5^4O?0RBWV{_ZdYO*aezC!*-VA&-c{7#1u} zI24A^b{mp=Owb>j7|~4_cwF+=iWEoSnF%qW=oe#pgB(u;QW|tTPsmS`?Ha{2olMp| z!3A0?fh~_GahWVB@|Y>(R!;l#Bz;!&mEPSy7e;ZaFe=se|6O0BA9+a>uP z^ani{bW9^QLqd_E|Fuzl6Mr_(q(RxyZH1C)AoW6;5Rm@H%baRK$wecJdO5>EwKQ(A zTm*HdEmu5}&1(})-i-_jY=m;LToZ{AOJV{lBt-^kOz`0Yn+xQldlk zSt_!$mGUYxK?!C1_rR#S?;-ZgnoFVx#rJrNMNm5aBO^a!;h>nA>wjzdFj&q9%Sy5W z*TAT{>TGG?R;fR(#a3qemXIYt)6NswgZZ3mSu9{00zpp!Z&q*^aH53J2OkGW(uE@0 z;cz-z-QP_otI70sHJN>0{eAr~y_V!K+fKi#t1?$-uZAZ+$2u#@WVFL~zb`ugkLF z&?Z>J7}{1Xc7LS2s|~|d?_}rq^A6}*os-OOGL*LVJ$tGx{n~gV|11XZ`Wl;!lhkbdVo0y z@>N>7BOZFz2DuS^D91$mmfoh{X>9pdI+yupzbi=&vi&7ccj3;iVXdnx=(qTVuJFrp z?K#QIv48aU%#R;1P{-&zh+TK@+-5H~sMhS_kIG``%GD`MZ*exo^axk86~{Pw3RhR< zKN+kSv&u4_kjg^+)S6w(%Jn9%W#{FB8wnn*+|XpHXm_j9jwPx8AYfD$v@4ehjtq9E zv2;5)$Xx&Z=4SVYnS%G5I%4Cm8I#=pH;TXWht6n^JdoMdQ$ z0ot%Tvkwr`v<=;JiQ~oET9wi$=kS6j&Lj4Vi zfbK${?1ar=Y+j=?k%z_6_@@E*p!Z)LPS9aA&V}ZNcuwMT7{k2f2EOlvG5PGUI}*2G zd;tp{C8P(qwc7>khBETUHX`vh@HcY*7rBQz?zz}ZnSRDaFA8>_s88eqOMG8hyMICh z)O8-{l<7)^ZaJ#h-*mUa%8kBSalzO$oX{w?#My}8Yiy-|*;cZ~mMCjuC5i^CBXN0K z_6#%wnete~b=i?jY5c{bY%0Cij*0ILhj~VN1zBfQa8eK2Ct0Jk^L-<6%T7npCLX?x zf^WdcH?WsxTNi;ja6o8jm3CP4lz)~z88%{Z2F}MXbI6pX_+_|dv(DySlW%Fp8D`NGyV#~lw)wHl3PPByX&YmEWnkYv?f3ieDt;9&Shw5F-cHr{6@P9odlGJ7 zJRV!NrNSk=gH{WMaJt~9@TQhbm7m4PE?se^UbaePx?F8d81Ly?3$IZ-ngB~}S)`PW zrLn6Wm-0PXaTLd|7+^VuZt%T>p-5-F2BM-#&tx3sQKX$x>unYho`LYZh4^8{2{)F1Q^!W2jA)HU(EA`TPjX(>&LU{^>o zYfiBN;Y757WO@A>S0Z)gU1r*wlysQ>tdvhSp^N&_0~*MaP!F_v`hObGjXsi-FeK3p z-BDq^T2UiQ#mSwy%F~Czaz0qgIYnSxu%_tI6!s>hJfTr`OY8mrKpM zvU;9?V8`fQ3#ekEp?~HB=5VWuJ<=1C}j5?0SMvU1pRNo&$~Od9v5lR_5;KQNO;9&61%$(kXJRBb%Pvql8@ za;W^Lx{4}$(oOhGViVr$+V!)lXPZDOCT$T7J~|=74zYoJjDPp%kHSe&fIN_6QoM>` zp8q&g!8^F+PQ-JP{Kr5cp;Zyp&%mKNLdgcO;3_I(jz$`WGkni)n}MQBZWsY!;{x>p3>+!c){AdnXDCf%oB$bZgVdw+E`xq2QD>ky@0@aM_z zv%d}$T~l|q!F5Dj(!;RzT>k%IR<3HoHie=cWeUhXJ7N`#8G{Y>ON^-7|6Z&tyQXXL z=y=Z69@o2AJzRT-UHOKP0bY4yJNMM(7bCP33x${&eiG*7#fFCdu ztX`*~Rjy3>eNx^c_ZpQ!^?zzs|NG6F-B?XBt6b~*RUI+lUmB5p25O~R14xxm#MOU= z^s?`G`9ckHSyM8_VR-NZDgGCUmB@Y^~-r7S8v7xJj^~zzt~UtDfmSF6r5Wl zzK8wjC;;NfxiI14z<4}0{sp&AtOqdzf7M<8chfi$|Gj^O$}2c!+fsIUyt}f63vJlz zyB2t*u(ywJd8(r{zIAM4*=;$t|ND);*|K9Nb|R%Ak4F<*8jU_PBaJlj_}5p_INI0< z@PyC^y9AvCBjP4x*#DhePQw4;IO%sOC2{g%VkR+>$)zX^aa208V}D%e=-h- zN7(m!w=RhiFAT)JBR`~ROyrL+4HA6m%b&+MAs61H^y_3YNwq>Hdgp|OY3!2MX)shp zK6sPJC;vV>?fGOvf<#=s7{}pFPUj-V*CeLmg6m^Sk?7UN_YDLeR_4sR^`IU0^U34K z{O>;^iv7uM1bxtdV^Nh|dHjU`e~Hpd-*XX7Z~}iuY2Y%Z;dkr>SDmeE?5AW0Z2`y> zUlDYO9A}$X6wR}bH$t7wzDEazO55975%v*H92~?X3ghG?fKuMD8(*cY@0~u4pmH+m zWKF#~Ku+&A;xa{8aw;tyQZMnY$w_OC>y%UuJ$j_De2Ml=4?2p^S(?Zj zUp0UuKg3B(E!69n28z>Oe;4g4n%ja#Y8W6%eQhAZNg88+@u6ND!+r(3GYnQ3>;~it zuchf-hM`Yz&=NXU%aUqIhSo*3sEd8v)`=)oGVVHZ;_HG>c==yotR+5$O2+*xL492S zisf1rOXi%X7B=ZD}%Yv6^Y@6!~?r8jtb~j+P){t&Z_wg%e*Ne6+2UW+?rm z4;)^B?=c{89L9N%or^I+4<6D7NHj0#qalf6;$rCi9{M9p5gmuAKLk#~2&EMIio9e8 zs=yy~s{PO(@AJuaA~!+k{^GL8l3zS_@Vz4&jXZ^?^0pL$v^Ce@46JesS})rcik|*7S6t zcw8TmsA0u|M68V&z_;YuGL8uWb%3F~PzJ|%vMAWun4QDTxAU98J`J#_Yks>>G{F49 zmad@SXC1H(!ekk+SC4fvCNWCJaBYQ{=lC|)+-{J&mtv+7ERcD)j>4E=cMRal^2`aU zhP90d*e51Qe;Nlb3fJ#8roWjq4IF%HZy|j)zl1~5fs*jA&jB1vaMTe4s;VvZ)G6$3 zIhnW#2zzF->s@g&qQ z;7Q2ce2M^LAWdPJ0BZ7}@$Th{htl@)e;X#~oK^My@P`>rZw$gvEXaB3C2O94}scASul_+WcYV@BnRb6oL=tL@RIHU^(&n zp!dB*j)GRlMHogFA>u){wL~fPTf`+v}F1N7ni)wJY&qFAZ1*&ndrPI#~${jXwGpknG zP|#Z76QNG3jQ`fq8;uAo#$3j&R&%#l?}b6BsgNG55JeM60e6`uAStnQBop>^m_~p; ze+xge)n3l*4tgqPE{*?J$nmIypektZI-qgu-A( ztJ9*zPy{9WupE$!db16I1O`iBu3Xcue_{f|VSF*xkL&v0#A^hT=*F*yvWgXuB!{!Z zf9XMi$C7?cF=z5_=l<$y+^D$y@D{gPYY|vS70q)-g>3{YdduT{cz-y{ zq3}n*8ax+rt4$D?8CTF~e-Wj5Jz70;J`a1cQQ*lUN+A(WCU1}hnsRqjHa=rZ*Tzr) z%$zR@-Yo3+E(hG;tI_x8z264!-n{wHyBHjG-(P$@@0rI|HpfAg%&^NHoWQzu1QP;! zINY9#Zv6xeE)~CvI&_JpCtlH;d%N3rVW8EjcuDS(uEx<-ps-XW_AUMxA9M6v-CY+cRvh)XXNJq3I=OeW5&BJUfIWFbK;O zjHew=FLz~{kosgn?RNDgpN937W!R2K*lpz!s55=C>Z>4$vi{N& z)rlPHtY0mUQfl?&0FpP8_uh0i9MuFC2Utz1ch;Fje+AYw=S>uc5eV&@Qg|_>#P4_> zY<^@%+;13?6@@bssH0|94m@xuDYIFR#lGh_#W^FZftS4>XL*Fz2;e3wk5z#@;qR`h z!&lsGqQ4zIXHtO-f60TMeZF{?-`?ztmTF}qZkv~kpxaRK6%(tF$PA@#ER-c=^5_v- z3z0N2f0YHrGFu9Nl5AM#b0l;aE;X_Qd4iBv`^;*65pavA0N{59si4TO8=hVnkU+hm zVna#u@M#*{4#5TSvj<-jC0qo;wyvM-0`&G@q)m#nskdE8-D!a0!>pY=rNihednq#)=8_>H{rD#U3_` zvlN@M5?`r6Ko77~fZ>!Om>o~4515o8X%sIhL1JT@z8Vr0C~1mF>wS1mA&YyI6lH$g zgICv5qX+VISu4>eL zf8YV_@+XXd^U(D$f9;ugdCGJuuuQH3YJT8a%&&YDrgf~9Q=aD3wgPgSz`O+g-hG-E z$Wyz@w@OfO1JEJp&2?qc?mu~u{imN4xvIRYR`DtJ%8tUk4FjISv$^7^F4riV#=k0= zrwOetdmmd@^bAMK7)sF%%#>6-mm#i;f5cdwic&ks>E~XLW5ntvI0B`bQYi80fOLTv z4~youTty;op^A+qlWSsC72}FH=U7(i4I7@y5)pLqVBG*@?6Zwipf_8vk5fOCR-Ik{yubVR?(Q4BJNokdZ+E-;f6r%a zem?#A&h!JWpVY$$S?pMxSo`?#*_wFP1+Zih!o_(|!-ymzO zGY&gp5#^II3j{Hb#t@D_q647=BA2f+m+G>JFX$MI`ThSE6VjfgWJCeMnCX&cPq?1$Wpiv@&cT^|gkvb<3o%VWdD<@Sh@3)8i7y3b zmY&b1a^1>oxgC`FMfXLMz#}^gdTyxsrf%h}o=jy501`1a>$3RiVGswAen(S&WZ|JWOj$|nJ9@r=}!#b}sa?}&;e>~`Z8@lCPa4{Mj2tDr$k_q zqZq%M<#By!-j@>kot)WJYY41EDF^#_2H1@rBPw9k3js)iIgQDXbK<(rJ{wk4rqSgo zQDIr~#&L3gfNKqIiN*Ol@xTz7Poff^TQ^L6s4WQrWknv(fH->_8OYNt0q5x(oiyK` z%!eO0DBLL^Q}V=ik%@7#2%j)*C^mTe*;Hqf6U5wqQ3#JJIO>ipuT_0wkTC}oXiTQK zkp>WvKOu53btiC(I;J+|3NQ(C_Z?vB17MF=c_bjA|x+= zg~SRaoV!Z~t>F}s;;61L? z$5jn~N9Nx?=^JH12Pu%LDRZjPJvA6G;aE6@6D~H=R0l!aPVQdIICTyo!Brp#Na*g+ zRKwk4=)s6<5T4{f?6jDNebmf|gp zT^71$8Vj{;@v9enP%}Dg9w~QVb$Zfbt2&puyts>Gp*9ZQYGEgw)R-d9t4+m}<=g{v zF%s+7g>Kk7$)q-FkR1!?kkbM(F~ zSLf#j#ZiRendvmJEj8NZJ}jBDyZ}Z9xLG{NJ)nwYki00+Hlkl>cTu41q2*rp2q_~%fub-_ zVGZs03D*n^obdTEVP+sIsa_$W&>?78sOo>=$uR4nHW6jw8x&at872Gz6WQGHR9Xjt zDh*Do3|?zs_*3qVg~{AA;&w&U`Q$3W1}x`{#!+ z9i2&SI8H-!*GYWg8hgO00kig744Nh~LgodF(#r7S*^E{pa(wsZ;@hr!{S`|f`CUYZ zw!^4HK9pO&p!Nh8vx&in0Ch|C{OaqG5l1mYJgyzD5@gg6fW`TRWN!A!)tbE?JJa&| z4Y0s^2P?UAjJTeg7pUSaG`p(6v*-Yj&TKnbeyfD^3>EM$t^N_g zE2m{9_iJASZ1kw;FGNl}VDR|L!97_?3qK^KXSy0NU$b(4;v$3$)XPqh5Vrj3z|dBR zkYVib05Z%8Zj=^Wn3b%r1`DwQcED=>mtn>l#>Mr#ggAn052O{ixA@ap_An}u(!0L+ z&Q41{$@T1G0dfk2`KQ+edtQp`HG54?rgdBgkeziv59j9uEcB5SGu;}`gjl+pT94~i z%RVFz=l*tn_M7~(A z(9p^L-n`6}aEL2Wo0v@DU&7|q`AP_E)A^LE&$cg)(A;h?SZ!*<5jX`LdgAQjySruxSqI#Bo z7R%IF747YNfpjM)5Z`BVXw{_%aeqv5lV|{(v1!gvl(DBh7!QMYjq==|haAm&Yt20` ztPoZ_##(f-0GzVRpJX1$bbQ~1x*fTpquKDBS$}2Vph*WD zNPrlZOuun*)O@kY7OH*Hbs=6-omSuMD;gD|K2pOZz-wHfkKng!} zE%et~vO{wG$9J6+A7MyMGeLo8&a-hWGTzAN6KF_}){+tpoylJS+@1mI z2NAs?2|fM*-tON^AI=3Zqn&wexCEj;M;hVlJkv*GO%79FlRU~_3POIP-~?v&3~{UY zG!&^HSY}KV@e|&jE0;zjvIcOKqvkJQ*sZ98n^SuXz$VKxev#MXQJ%e&EO1o4s0@uDtcb6pM{lH~xvh}OX^VhJLIuVrsSeYJ`-JhkK zQf4cZzhgF=EEYwJ5MFqg*fUnUOKE*U64H~ZwIhErPGdA-ZReK&RZDo?8COGyz7-w^@~zirwk; z$6zmiKgz7LwQT|ca$A@z4p9xHRN)@0#$UwDp0b>QLgsZsO%u>0uh+*{a5;98u<~z42e#kn_ z$>SsY%1r^tUL8~= zu6}jeCOg1B94tIood$v(&wT`{0QOYjP-(u7$hBi>wQ>apA{B=mqFA#3Tfj zJCNTW{w1*u{3$i75#&qb`R6{{SZDe=%i)7xb60Z66!)&*C??-(@VHXoQVY|zUhgbJ z#8pxweV?wm_7O|&WC-e%{_)?^j@o%%V#AS6rPs^e-4jG~{M~d5EL6dH|C2Wjs0RDD z5P*43>2NaPUCg+CCFS1%Wc%V-O@CF;tSa7`^}Hs@k4N2+YcBF)E|0Vx*~y=mEK#Xu zwc$T-AozqrFmJ=P#W8d_?jE-_KY;XXV`~zeUc$0g5Oo#*YrptovtEo6Zxb}rXo+}k zji%c1xx%YTo8*GpK>bH10F13Z>M8aR(6fvLQ|M$cyzg#@KdsNc*nP*7me{WXjd>$% z=C2)BpCdMA-i>Kmf5)RoGTf^?obvAw^Lob*wz{zH#@Q3_4!h(#^=&XbH=xRFH-9L; zCW=Hrm%i_pO|l1+M{RBr(DHq2%NFwv+ur9b`r*`gwxs%K73ajjR!3*rbik$#KxxGY zLwD6mnpQi$gMTmnR|xtmsX5NvcUq%pXnmWh&MPL0f=P<|6_^3CzPy?$57Hm#!&V7P zh)l%B!qAFVa7nZdhb}$uPMQ2vtXNSG#(WZT@`@P0W@9b<&?Wq<>p;Vn7gMa#rUPy1l7&_V?Y4%-rG7nQqy6;W=>53E0Lyc)gV1lhl{-ad($Lgl1K&H zP2TVQ#ao}Q?caHMX}&}QN|_O!VPVSXukhE@NI7>u(u@(S=%fU(=YmjbF|a)MfDNcJ z{U_btCSh8rcr9+ty>4W0k)4WiOesf=B|y5}q5D)6nYq=~ly-KIJ@~x?SH_V;{6xGL zSH|!!j#lA{`qubjGWvxkrAt~DNJLS)xmysI+NTyViYcg=8}?gamu2p`z(22&NS@G! zQ}rNuCRUnDq_M^y=z%dx0)0>zp}WI)in$!;-#auk^~*j^fh@Qt4t&@}34&}Nq=0`C zHL39+k&kf;b1Nv|U`t_J12k>ZA+7<1t1cFe4PwCbsit4X8Uj{Pmjb4t2SQx|3mY2e z{89V`2nGCq@nTkOS~w?708TYsC-_RUJz!EfC96ASoJz5vT~;GYgr_%bfCjWylP1SW zjMM1uUmxrjW`Ock(Myl6f~YqTXMjNmLe{`jqid*aV;CRs|DU5jslU)9EzzSZt0eEzp~n_fX3Ae!_bsM=n`R@VJ9q0x^U>d0ko0o zAGJ`&`Y1oo_Xg6(augZFwZ($Cg=MjIH{>8ENoR!Vy?K8K5dTA+xXvR)KyX1BtorBv zY6Ut*dN8FF+uhOb{QVML!p2T~2x3J8rJh9?&4HlyNXHBllcGAqqsogUY1VKvgHYkV zYd%b{^+!p3+pza+#-hg-u$#Hp*0TkE#+{33^8o&ze*DPJ!Dn(BW+FaBV8@m9C9ZPH0Ot`Ob_g0>Qf zDEUxdu!ZkAI1LSeNOsts4`F))X;QcOAD?+=Tavsd9)ouicDj0&0iH@r1NKiP%wU=< zBQqvaK&(o7?hW8N&V!LuF&ecJ1Y~sYw(a;To14jQyC|b^+4u`X8d z_?IpH5d-TgxOPTc4po3t*Jo_QxPl|h8dIn@fJmadGZy;U&TqyBX8?m?@2y{EHjE*t z>zdbJK37T5Og)G0SpE3By84)ae|k&5Tc4KhtNX*gyFG1s6x+cWX(DE%Kyf_56Gw;x z4aem`h6TYVIi2d%oYk>;h-q+GE1F^^Z@TUK#3M+wIoeVnKN6fO$fRkm&>cf!Sw;jM zpp^yEUq=%SIXG%N&+@IM;jw0wjsN&?7#zOa=%@L7Yb%50^_wg!-Ul`RPSwc<-ooB!>FgQ_i!Huzce;q2hSiOSS})2h>9jyS%%1LW>q51==b)n z1ZDcma^QBf(3QC3%Q`{9$2z?n>OUwa4q6KZBp6qYD3tEUqIC4sEus)8j#{8hfF!(; zI3dQ3mr~ESj8YcTb{5~2gNwMhIi+bHr<;T~#uO0~j2fnnp~gfned~*=q#By}IzH>+ z!&XYI9RujQGh(+GHoiqYYDBm7p1aoTS>J~*fpvL3O6Fe4C$05zug%l1v@v$HgD#gO zmtUu9@_ZRw9jEr|CsX|rb(WMJ0M?;2M1rh|1ZE{|3piim-OJrlvq&Fihjl@GS&fML z1V_rXr@;Q{p}!)hAc(m8{(JbM9fNdZ>{1K$!u+;V)6AReMn2L0*?F0py92fWhE-1y zYQQ7GMMW;Py49jf{{7)vn|YPfCkHF{_l&!i3i!T@s+@L9Qir#y&0jTbKx7%}ELQc6 zR#l?a1)dxuH()ot-7$kbjfY-CMaQvXvkGq%UcUQ~J)PWk@JeY%#F)uZUzbD^4<&h& zNepE-NmbV<>|Tq*O;{@QPNI~MNF-74<jU2Z zvRFX^G@$>x?Y@m4O&ky0~R($nDFPvx)7Gkj?T zg(wBD4+qO6gKReO_YWkW5Hm_vig%!e~_wMro46 zn;1zyNg*SKL+j;!WC^yTy9P2gv|49d}wNs05QDOUP9x5+W(beYqbT*lA(%;!vzPku?q?ao_jDd5w z@j4Q2qJ)54MVkb{y6EGYuu&r_So$Qes|JqETx0!p<{80>o$g)sIAru3e5&2V>D6!3 zZWnE6_afUb0-l%F5+N9K#)?VLG3=A-mm{|TKN#!9PUk;oL+vT+b*fcPv=9#InbSpT zn;^3Fd3qFTsg5Lqg>$?St|f!_XfjNJJfMGT;>iI*0Z%3r2%hd0%;FgxwC764V%rvj z>)N$8ty**;lxKl@O9s|!wIhCFyA)1Skp2ax`OcOr*VNM(Q3^y+Lk5^i8Z`g zsz%m|E(#?Deh-5kNP$Z7jy6op=*{x5xXFkL81sCSk4GxjwpTqTn^B(#fULoh*K4@_ z`~v`chWnV^iYnHxuc?lLgEvcv$M~--cOS^h9w{!C5#v^Fssc9qGJ#|4D|nMz7&@X* z<>2%=n@xBg5>RB;0W~=SiEqUdhwhb?PA{MfE7g(do!P=$Hmo3s5tH)mkU9x3{o?(D z$JT{MbwxON#jG)`G6juC#2Rs(N5%J?QXhbO0WEqo;g9`Mb0tvB690cvK7avE)HSCc z6g0^LG@NTdVlj%eHM$lpb5ycjrHeba9N=~Rxz1Y!EwDMv$!UbQz>MxQX&n8Qo5a2h z9E!mPcqRXi1ItG2P#8 zb^7gocF~x|+w1rxrviB#fFpsrKWV~t6OpQLc(UZyBLB%E2{f#lUEZX}UC2PLA_;(L zojpPG45)`xbP8~Vi|>K1m!@hT0YJ+F3{!?XI{=f-(}7c#0RR2((NoD}0L2r=ZvZ;< zBF@Dtt+Q>DNac>eD{LC5|88)08}ijwkCgUOQS_i}(+fAi2qysCxl!O$bTF+(jHsae zBk*;zx|rtMKsG0_v|Ur4Jb|&?OHGSA%w@(P)GFC|0wp_50leLe%nLy)g)Nmw6EOsI zoGspFgD<+4T=V=+grOA?Kx(?Pb~I4>r6Fm|nP2^y=Sq7{6eJVS-1>X8bPI-llw8!p z*0d_!MqPva_DBSEhb=*u2+cq#|0~eP|CHNud+$%KsK&aw8Z`7cUe5|7!R8ixuwCjR zgSuuZv4oqC*wp$jv7O9-h#154hG?dA=DiGi53g+uazQ zRGx^wlrwvQk@1UX;_6waL&u2JbGB>g=V=h@7=PCPmBG6yB_h$zw)2u%k%_GgW8@N( z%#n~B;3Tvb1+S7xu^jeHdj%@ws(62tmAMxiV}{0T&PV~wsc)3AQ_Y^0=tG&p9Vd4bT!1PD z{5~dbz~IK2NJ7mVXr3J-@T*7$7iU`uskjs9QGgf8d3+=L614h8_QgcHs~hn~X06pk zJj0y63C)j;5*g(XT7##pZrZ+Zkfgx;>b8(rkUaZKBA|#lhvuE@285#NiMg8u>x~=6<=akS5^6QFR!Lc8@n@xMqXVywiHZbE#5i<57hD~ z*Q8k;vuLq!EFe~LQw`R#WK%}LQuc476h{N3{1xc~zz&2Jta7>q&ApdqIBn~Dcy61Q z+bLGT0_p-C7U?JOOcFoFYS$8Jz*QLcp>LL>&%vv2y&L8>is6Dqhbc}#wPN}8D!s0} z`>Lu{m@T?yrGu5+KTp<6)$d7C^R57U-%PT-kL27LlKf{qApbOR{I0O7ZP9v`|Iz}E zD?dQ9uxy;>*-8Bs=d8_z$Dg|N2o0)B=cIi&4Kz@UTyn`A2OQ}=rj~bnI=g=vzBA$-YEqcruO6&I zndRn8d@^;w8N(Ldpra*jcF6{YzT5z?XhyfJ2=k#NDcr!>#>q!4gC&%JgrgtC7(*zy zK_-e<5M@RW5#tx?eF4iZ$F8*%#|uq&G;lJVU`*D`KY0OV%8FvnJfWcjp^7VtiG@FiQ~>Vs>zBij`!E1Od|;P+ z#~?-$<4M_rGt#2=!1JnLl|UY2OTlJ?|Klom4A`-^f)6qUtCzUHb&FN;g7W5T-@ER_ zZJ$eA5U*sJV{WVH@;5JaSbZYYD-0cY3HTY)5qa$TyfT z3f~<67YKPD$P&xF(S{gkhe@2O&gJHmegz;h`f<81(!+-@04h<9RF zE9p=Qx=YR9BteFmW|RpY1gYZW3D6!YArz~^PI68>)fZb@8b{RWdIezm1>8!E_8`@n zH$~^8vV%eH1Pp;aW=s%-2JO!0?z%n@dWK}UEmz8_+X`!}pXG)m-ocAEFoIT^>yJDc zv`sj)jqL}y3d(!bUSt4ku!Fap@QHO4Y8-(hxSbzemDI;m;bl-vlj^Q%$>TGaNV7H!MavZfFZZmR( zvZ@7`7IrG1b{y$4(7qVnhZ2;kFI!>VZt%@5<&+VHPWAnM-6-HJ{S{@}O`IkMESbR7 znDLd4wbS)xGO(j5oG6XLFmQLBk%e-b7*80~U_?9E%L?*<%dSyzmKXAJ-5S1PiZ`(k zuO8nwTp58FI)0>rPt)FXIX3kCVGorASy{H~&uWynL1$uKW0^@d!wv!EoP{f}^=Tt* z?pl426lKPRPaeR7Zj&Ewd`fCTF>MCG1~@T}>)+Bh!mobtOjCH!j>1Ki6_^&tnMeH!Cy(@gQSj3|x*4YD7o>BMfPhSUDF0#cv9TTaV12`pz5mor^ zv&^V2!q^0zR{p+BXLE=Pyd{KoXh(ac=0e%@5msR?Ljp8(i#YnPul7X*x868ZJS3l0 zXNja-)~jcuD_kB{z>fYY)@rFnW=TgHkZ4aZIXwNNtsPuHIS8{iW%ed_of<*Uk1|h3 z*RHL0owwZ$a6OZsp5D%SFS(X0IRWQ@C}t@FhqwX1`bXNbx}6NY#HD4Wio3Zn!lRNS#||BiC=SNtm}onsS&loQ}8mU519+Wh}v;=v2Wq#2Dr^& zzeCvEMd}_puEF=3IQ{8LULqC|Bc&{o2-NWdb9SZoRXgWDm60wB#VU3w=HkE=mk1O6D zC-gaivjK8{zsZ2BE9>{shWJCZ_(oOa`@lH@=OEolITpv3?#0KBS(W@mU&| z=1hAIDnd(3!RE=_Yk$8cuy3b;m8+CtNg;8^8eqgKdJeWlqFVYwUYc}t$|TuMsgaeC z)&*Fs*D=J(%e@c!yR|kU#$VuLvr{fMGZ1pNHx~E1d-3<$nSpK1s?thCjhj5*IeR)1v`bL=M$dwlbdRP7A9Qa*gt41 z|E;aH^ted{Oj~hWsily+a5OHk^lDM3oMr%8@tOCTOm<3ISc$GlB-tXd$)|0(izW3{ z9@ww6Ha})<9XV&pb(#Jm!hp9ymCGiaSOtiG(t3)^|Z}4Dy?7hDq zZ`-aTbT~G))dA7RtWetZeKywsn~ARf;9J3Vd~%3`hF;;wH8iq{_;u5<$hZ7kpaGt^ zf`hK?{#u-e6C;&NrZgfbWD}$!t%4}|yB94^$=-O3-~g2;?o=k*nKp7GMhlO7w$J3< z^|=5Y>9P`P@sx6reHuCbT5Xj>)9+;+gNzNIL4;@j>N4^!AREQYKR>_QJ^=D{Nr_|z z??7vaLK#ZnRVvyPve3t-!qI2Ct$_6x!P`yGu=MiQp6K<}wAI!15Mp{PWv}Sw9gw^d zCbU4yjTWsa(P$_99$f4mBJ40&mgavNmeZj8FEYiMji*eE`%C?!2H|NcslmfHtUKWf zMHu~Mqyylrl@}>~75$^&W7MSmye&(9KLu~cv7}`84b;o zwwl}2Q9S4=*e{q4U9xup=V0n{@l|=3sOEz94C?5IV)TN$D0@!oVQL@|<9^)vi$%yB z3lEjjNo>FPo9R46(*Uev$bh%~Wg_dv+`pFEwa)Govazbl?CMjBO+q&W6UFXrw9*A~ zGyv6?Yi|zRC&;d!%gVgKe=aLN%mIA&MjY<(Bez0OoF1*pSoE=M7tu}#o z+pA4kFU%-=zVyvJcH5oq%nd1a_av@(ea)p#!^qX5k(mrIwvA}d0G>Wt*zO9Jm+(R* zFOeekXyp@!oe}eB&LSnO*5sf)H}X>{3}P-ZHH7KZCHo|^7wFRfv_OBBod$PtoGo4p zrO0{4ocnd)`vWPZG(?@>stxenDYLe!L*XGbhe(+I>u9-W4cXeI3-my~c>KG|Duvj~rOUsK%7jq@4F2-z#=33{xlzx#)@%ip|{VNpK?OY=iw3P2h$83Cy>z>#ru6*xYcOa zfhV77D+$`TiATB*KW*Td9zOwtAr+~j=J)(4R}vFhtGVH)P>iPbP_-I{Mls!NS*48iE+9clDAUes^!Xix%<YBqz$C zlLKQ7?Sdyh;gK(n_@x2f zsueHK2BK7M+eaa^bLohKD0HCPyA};hjB3G~0Z6CX=!p9a_4>4lBkxFFJI}Tsy?QHh zeIpcp1abk2SPx)(Y4{q~*H5=r@18y9tzalaNsQcCSbOPEg)KMd({-q>BcC_Xr! zHl>1t>${uggYpGyL6Q&4ed~!5IHQJ4AzV^vXRo>TZ-2DFdcYgI^_0f9haaHMZsFXEB`5xKJ_7B zn48NE>6iM=WdM*hn5iVuc*Ldu+`d#s)o_a-?{<4{?)-B~VOf**UZPsJ102l^Fj0?R z=(LpT>-+Smw|#@U)!e%|MO%NGJFCuj01EU>HW0`TZZ~Z1QRB~-R-w&JpC)2mN>W;5 z^~)NVBE8I`SB<~3ab5M_hF?KVqq=@fW#9r``GZ0b7;eA_k&LK*^J}Lpw6ZAei-bi4 zDr{%X?z-iuz8lg%AM&sUSkb2E zCeE=oLK%unM0Fhl5Kscfm_#MdL1>_iq+OpkoN7$y$gKw;Kyiu*HL!rw=dg&OslVCd zX60ug=4Nu7nDF5oXKB0KBYh>~6|2}m<4Co49{)MiWaaS|p}19U#6T*d!1%#o6H`hP zf>YtvSS9prgBJQ|_~gVw4RJ;_Y7Yw00p%QIwgz=B%<=Q>*XjX^^CH<++}j7-9N6#3 zM*7mY9m!Yj7aDwc{w~h%Rlfv#>jP@^@b{fQUk~8ohSdSE46ZsI96y&G)5aaIAfc&& zUu=UUVlTAqB0hQt7uL zAmWZ8id^aQ8tnmJ<9^qf0uB|q+u+`#*ZRSD_x4q=w*EcWV8?_`a`7+?%4%=xOc+vAlfQuL>6qm`mq{c&>f^aC`91ZOkCDT z!ZrH8^(C@_hICKu%$1b+dxWM6hiaKlE0iD$+EHYcy7&Mw+I)yjA1!Z(9s>`U(J8_) z6%HMU;1dxbvpkX)Yo`j)Uc|{-q0i%@#4#VKB!BE^T8L^$g%1FkTRz=sv^`#}Szm9v z_mhr%9aRq*9YQw2J2H!3l&%OYTB{U}Wgpb~zMf6toxg}38eJCE_(B+Fd7WzU*{ySs zNkE=_)B*wD`nJw?o^mM-n7!44Vu;i_ey72uXtW#IY&7QbhFmT*@3xkGzkt%E??r4w z-JEPP!H1)l;?|kBSWCrYnc4=jI&zb))P%JkSRVD?D4YN3cD{AxuQl4vUn(jTgT%YB zC=qR-!Z1q+Nj8ID5Qy0NRO{>zlMe*QpHC1A`3?ej_c!%m*wT))0I%^B%&PPbu-lg! zghJ&UQM`APFKtAO_XY%r#d=w~>9;I0qss_1)N#q5Egrg7kF=K%3wy*AGo5-I${j6& zO*g2O^W~!6ZYGk=AeHtV83S4gTOzutQ;Rhr6L(WwRZM+Tf4$EtyIT>^JR*4Fe}GP^tw+x@AbC%# z!znGm{*g{u){7Mo)hYxpM7Q&HNPun%&DxP(gn8U{KqZ$;4}?eSJIZq;GmoB5yDbIi zbxS^%9Xs?Z6q5+F9wS4*3|vB{-HaH-L|Si?>QD(%s5|buYc&_J=_vjkC(c0)5UsoM zPnCcsU|r9%r|}gJ;z`^Q+CoH}NI27#0S#qAM3d#fI@(#c*fEZTYfJZ~ZL207zd0C(v!FHMgxLbhzrXmHD$B|}K-(n4F&4KbM$fcR>JAiM;4RGaxcP8LL zfKtHqIfBCvWAy*qui#CZXN4Y!LJGq&bs=Z)no;V@#zTVAfZ>SM_)UTgXSlS|d!S>5 zBj*bxC|8g-1ZUV}ONC31Gd|^8H#lK`dfKC5#LitN>ZniK-oXNhOKTTv0rvqctKP`1s)s$IFen2L#Ov-)Tsc3CpDr<(*mduHL8Bj&wEKe;a z@Va3%eIKd>KM0U+4!t}jX8Z%7i_<`hM}41CzeJ!78Th$(q8UN4KbsOOAx-u2AZxWvaR|0R5YK!v`@5efb}4f>8rr(C{kI!Kz6Rc?Pf_a_X0R!!$Z@ z-^Q`ETRC%qv+gMkHM82uY}~xH)RGZvfLgyac|Auspk@j8>gKvso5yb72gaGs zjFbu1W1~!Uln2zMq7L)sWvmzcF*=3_NO1(^gfO2OvjVger9{56J;oE(v^2eP1IkLrfK>*I8!^%-0?<~21(Rmht!G_%S9 z;sEXv+z#@Hq*8_gFRYa$6@BXQ^iF(hpWUS&jc`}&B?}m!%vCTO$L!}NvvlbwrU^FU zQ>~MTP(dZL`ukC_dta$G;-UynYt4O#pE+FGfEhw$A?7}mqBuiI`lm*r5{Iw7g_AuY z=B=Argr+bnCV<#%sm&ynJ>d|==seCmR@X;s}Z3&Yq=mdnAyQCv9!|uezQ6Vy;eMSq&tzSmc8Ez|% zt)W0Uy)x?#S=0*d!5Q(x1&HTPrNT`W3vN(Vmyp*XEI;;o?On%g372i?J1ih{$F?6D)%fe^sC7 zM8<8VPmxF9kB)oJB0^Lni$LHLDFF0~(FIOnTR0PuTSHA2TCgNyS!h;#GGS-eJH44J!7lX#seNQYBZ= zL4$^yW?5Y;u$60{*X+&r_8+6hme*?KID5C9<~+<(8T&)lbxooJoMsUW{U@1Z9D5wu zUsFsTzb0>ZGPBJRZ+S=(8v?4TNY4Y)eRODVPT|D$ORno9ch9CludkpF18WX4{=wPr zbb>!o_QT3Caebl{lOPNkKLVzDF3HIEw$aTr-w1ESEl081^BCozh8$>t`sMNFQ}f;y zms)7SdPK7w!my(Hhloiz_y#0fWjKXHC?@Xh(IXMj4({kkk)@JZP^|MLMhQCccmq#S zuJe%-WcujZW#)AYp`*njVyDZKkjn@Xcrq}-b`M#gm4ip(GmYdwBmn;Yl!h%v(h9NI z1=riN&2AZ+-oRfK&&DeXqypnbzEbQI#<-aIm zlCG>`!$J>3!aq54${>)Gcl{22UB{uo;?`8E)Q#>v_+uqx zp)e-KvQ!{Yy)$Y*@wY$UkSC%d4zPJxEOBox>1wp$EbCnGD4?_p%!?8>2uhinj-F5+ z%JTF^9uR1^51?{qskIEU4dUFh$WpB=K`wlLxTWgFpW=8cZPn>Sp>34=w`CTSS_03} zgAD?9^#Ehr+cDk!`g{`KarDP6(?ekVZtuPy4N0wi?W*Zs)eRZ$M32J5t8 zs1?*Fr0-At;?P@=IiljY3u+PDtx5=n@F8aSDu4|}R%s0xWrfup(8<}FmgUtT&0qgB zug=_4ss96QK$5>tK2# z7;1&0C6u6H2-R{V_hEbE^Iy7-{dO1!<+_|cHKrMMljW#(?eUz0H6S-z6~ zewxvQ+y~-+klWus{cUpk$L;%zv&rqr<>kA-ZqFufPj23QydE;x(w(SIYJF&4d;pSH zlRt0HuO??T?SnRB>C+0Z#?Uc|U0Q2%4pCf3%Ut+bS#zPoqq^=n6B$@eG@J?226L-J z`S3OT9o}P+c5*dRy~2rF3S1QJ3P+mQRDiF*H{?=(K~@6a;sV;HD^617e>-~S?3QWN!bB);?QdHig`No(cb zoSl9CTez)3bwGXXYqJQ)b6?Q5&r{`2^MauKxre1E%?z$+JEOKl-h_1(Dh`?Egq~Mo zm4%dlk^;R!4zLymrc%7ygrsTEM73*ULVL&yql9gnRn=Kg5!Vu*z%G-XSm{W3O^}U~ zok7Wy=nD0G#dWsQSl&gY+MRi=N#dC~&EU6h(rRw&m#~yjpLIz^bQT%OgK@)TzWwVqjpC0ZpFK<9JWjBLwfeNAxXhwc%}v>2;?cccP3hODW27=_cSV9br@Cad#YuB zaH@R3TqFvY_cLC7vrzQ7ot`3CQ=TH3{2`vg^VMb-G?IsQA1YO>Ywt&la?0NwXy|M2 zJdPsiD}m#q5j4WyxpuqdZCXFe#W_lG$T$)yS$TwXbzz0g=Te&AZWJxRj4N6o04pbS z7QLfl(5Xr&0rvV?5oHI92^xoV zWrV17fd3#wJL@U;xVJgx?O#;YA*W-I5eGevY{9ApYdG6-kL?=(0aEY%rT!g%g+}y8 zUNHAS+u|xOz6t)hAD6Gcg0TyV*QB&b=oix0JQE-N;FTTSAf z#us`};q5!B@Fs7ygklb)9)pUYu1V)DdU122;ViFD)?5Dqg^<5)!Y~krcR$4q5eX7+ zkX9WK158LrOe|ODLM)uK<+G8Zs_$MCrNF=+FSgI0?)UjVzI^AEV(dwOJZge9x1=LA zhmAPi>5h6lEFDV>XgEr(RFcQkild3cSlPPFQmECqwU@rP9_#;_`caUVPv6#PXcOyb z9K(^~Dg+m#n%55jY?=wc5O9Ek#@idZx)X!KW9;A)I9a=ZB7a`+Ncp6%n)$UX7cfQi zF3`k3$uY7=Yno@$c}DtwRLzPr+H?t$acEbC7jov7`>Xx{l~z%2+At7)=T}@cw4@S@ zKI{qBPAttfwsu88t5rfmZgK&4!H#T)7H$3Sa}om~1PFPG?7Q#2JAZffr_a$Ws?`{o zql}1$&|?953jOg9$=T4G;hc;e&ZH8AG9^2;S}e=0T&Ad6rYn7au5D3t_S?RC7%9rx zxW^VGq<&XS<2f?5-Z;TGTR+Kj5Non?tl;yIL?DXmWW10_3EBFlB!I69nJ;0pRQp>4 z{dvg(T)SVp_cx=-(E0A(b|=HW>%b*gGo_+-tM#lSHDwC=n$}rLoEFCtrP$m4mM8qp^%nXKnZf7)ngx)QrmJ)fCle8KIMsK5t${f=4LS(tV{; zNjsNCW=~m28D;_c#`e4tmBaDAp{f|Hm`owInhE{_3}0Y>pL}hLaWKUUc+7lI92O{O zumm#IB9Y313I-OhC#cnrS1Hj+}>TglZWn2@47p3jox?oCU9qa&WXy5VuiG~Podb( zw&f7UxB`QJgW48X$H4<2z;xU3G+6!^wlgnee@w+i&JD0kYgnc9&E_yducCAhMJOau zrrO=0+3A%`s6!=LL1-zEDQ>9e)iKPQ*adRcB(Nb`rFvVOaul|34rWCeRg{FT5L`IA zW7Q@z7SGdVS)`d#n8ity58J+b|G**RQyOiET*s1DYkJq=v0y ztkCSC5D2P#s?|9sSCY%Zn*TmoPVFRa%O0kG7oR?VzVEy9-RFy{s2C%@L0fTw@RcMA zhxzK-YPuB#Zun}U$vVRoIXh*nwr{gCa>{K3a-%&L&6J6fTMHT0n?48NZ-|mTY6(9nN2v(&1EZr6BxlN6bje02_>wKYt-t@c%GS$&yPIsixV&AaO;7g5XApB^_%;q$uk3Ms|LDgf zKDGC%oV4##=zfI%=*@!O>*BDR!&_TpYiZDq_pJ4`eNaP3{#W}Sl`u3O5Wv#niO7F$ z(%~qEQQ&!=8KX@Sc4-Xpl|~Ds9TfZ-fx|N|YxG+Ku0Uw4py6RtWB3HCN574KYb2p_ zJf7For)r+@7{bIP?G0vgIOgrAbjNn=FRfQiZ`&{oz57>ifKfYWI_#dNI}{zzod#?> zHASJ?@}k+6JV|a74EgV)AbxRYn2|_dKG3rs3wR z68w9xr779m3a+#yjBB-WoLt#|weGlPdT&;~3Dl)>)3T{P`pgI%0wFGphDGv)_ zz2y9L0G}*>PFMg@&dnA;>p|>axGyBh=@MLJ+`$@no+L}?_yad1dfP}`R=qBa-O_sT zun2sn6xDuZ?CK_E{9e;kE#Tq;Hi5`F3XR7FT!TfewN^Z?-ZFJ{L&ETXPD&wt17r!_ zk1drH(p+hHra%DqvoudZMBu^4v0YsAfSEVOL2q%7lw|Lrsagf!&6?k?!1~4laj|M3 z9ww=i-BIdYyN%i#sgs?ZdS!QtdZp5#Ua$12*AP#oo^$pmr!9NCV8FMOVQQ5@TJ@xb zlMPc(CC)mGqreW0_6=`;%qAj~r?d7`NTk|g4lhNB$loQQW6_~c=; zGBxb!iv(DR0E`2F&})`Zp?29Qv&!#G3T+x<+qU`^-@APkIVPTef1}Sif{~Dv1Y4*` z0a4(_McE)E>w#g5(&nsGk>h1}e$i^lwWYVsY7 zy>`kQpTI!ga4q6K3@Z(vc z-Hbg$L2vpQHomD4SS7Q8IesFXzQRW7@V1!u{l)x2j1in!oyF6=GMa()lP#~XY%wQe z7)~s!;^5k@*e}UKczJoWF!MSB_xJ~f@PM|LLqq~CIs#SO-sZu5Qgvh6%iKM1qJW*11Tcw z#X~&?N;W&S(KZR0>0(*>-;J#;)oyh+mxRfa_nE+4-?`i|W@HKIqyoM+87P9SctUFu zl|w0iMQja{m)a1Dm)b#`gL;n`Q-wt233;t(sB>Mq0!j!lABt;3;Ioj=_Kb(+s!gF4 zN0Jn_tTKwUHC*HK<}K)#i=8YgShZ~T;%j-J${Q{;ruGLHwMg@K^u718{y$lcu_J<= zw+=kjkI=Vs!54jT#?x_^xBCHXPB10GbUsmkh2vI|{B1m-;x`?7g7V=*BjM5i6a9S( za}Q6D$F?$aBcU_CJev;0YJ`mXx{8KsGwE5i8u1GB9hUB-$04zAxM82IQ&DTeFc5z4 zuZSR`px|D0ZitNG80^8lEkk0wYG#|1Tv{gTe_w28Y_*DR=B4HG-QD-y<-323=8@-r zNfrV|i~|`;AGm=jeL*Ehd=4R_10~UDCZs|7zKmcn2fpZf9uF8Ic~uI*g^38G079@> z;(|kIK>N15xAKTRQ9KC*Cuo?lA3v7d2qlTYx5=07UauxBh@p{UvyAQ0U}7x^6*yJ} z99gf^DASrPU9eUob;?yN_qbkO8?CtFB4&Glkd zm0Qq?w2DBRy~JDKqSE8cN8MURE$CfgZay-doy#d(yOCiABNc06 zs+pWYz1?*E)2kM_a}+k-57k(0bJ{o%{?4yZ=eXK#aMCuN&J-@~T{68V4* zO-}qly?*efdGMEe^!Bjn9=1>R|L8Q`*4y6E{;6dZl*oq>k+85a?Yo|~_-87-5n9wg zE5O6RuhGYX81k~G*iP$u^h+S}Vh>F%!AJrE^Gi$%eS0Go#e;NK(0?4`uzfp(g4_yI+%tba>2 zeh!8c;n@N8eaeZqMqHl#keHM?bO>2A8lVhgBy%*UA)Fh{IPyk62a60~ep!*eo}7E{ zu$;1`RA#|vplwut@W#gM_98!GE82Y^=dN$JR=G(dxw!II&Dke%?)pY*m76p&9!24* zMt0@g^^H_2;W`vtlFd3aVf421#2HW@?r-iGvqGA4TJ6qhv**6s@3as1Pn+&puaoy4 zpLII!+he!2-|n3Cn)l`fgrX@I8)b!&!5lHuAsfaBgCu)@>rwn8sgsHvo?OBWy&(H> z4L!A#ZewT1ShiMCuNamD&*C%`lcYYINAHGtk$mL^?T{t>rL7=nB2;7-y!9JeCn6v zv#NG&%f~|%!sV`71f=4&PX;t3ebY!+wL1H+-R2RjanFw12k?@9!(F+kcmkR|S&hJ< zxKY|FY5zVcTB)hcfV%ggrm5cKc}8O!&@ck;vSnv~8jZ)#zSB|G?k?TVXfhp9o@;mC zJ-auD?JmkJ+ANXd=l=;)&;M^s$>eX#!e(j2$~aY2@of~ zShR9(t`??0V-|_DoRZa97t0Oumn;&m^2iF`U%LlMK_P_^QO#rmb5k-q%m)F10NUqP@s8$XYzP&2NG z4=_s#V+{X6Ti!Ir#%a84?6o0N2 z)O35z*Y4|Hv+K5x-!*%u1tlpxB#6b8Ij3<|^V8~ws$MLM^jZ2HXX};eIPlj8{vF4f z=$3`_xB7Z^t#_@KyCRnSjF35g!5LY9;#Zp!$=A$}rVNFz`}PMJ0h2;IZ#s^B@u)Cj zL0YjMndk5mI`z7|oj3Kmd_)D;0{2C3W&zeT;HmA`m45-HSL<$@FckjJQ+QI;5UJY( zBx|dPQY~APOu1B=nhCkYNxTw+j7eK<-Lua&gkW>?TBIrkzVrDz$LC@`Uq!or$g&9B zqd0;-0wc0PK11u(*El3|e~0#P<%A?=6k@{Sfn_CeHOhVVQN(aaRwHtN0bUR3HrXS> z@)v_z+w^D7LJGIY5H=zV(GAyJk6%(O{$_|#j1Gu4B6E}h@tyDwavcN94`3XF8|d@9 z7wfkL_!ZHRNgL3KRnN4yi6Sn4eTff{A<*G={^K}YBX9vu8_@4NUtH&#H=bU*-efu( z4{tR)_7WjS*m65aDSWYerDYMNA?2hDJu?o=z3KPe*=#!VuBXm&>`oTm-SBpFJzR{Y zlM;uYYZ}8SU#lyBy5Qmxbo0O!BUel&aT5d_!*k>GxO)z|e*XO3RN=#aFaFq=W-8$- zg$SuJ!9v7eF;B=EZ7@M=V~*v~LM7t=VzM=6nM=4zL6ZFgqQ(>x30El)=P)L4IaoE{ zgme$h_v1#wwKzzic^u?JmEv$r`6iaUF1kIf$S~)E#77R~&{Cl#4*~YUCLuB%f#;>Q zlK9N7?qFJ*;DjUzf^$%R*_G6;kz>spMo+3tJC(RPY=`5ImoXAy-r%i$qRKofptQAB zEmwU&(32wDE>q~fYR+dQN~G+H)idJP%9vL<^TxOo?N4M)i^KK$xOgZBU))OlhjVAx zCT5EE;Q{?G`Pl{dYr?)g1ua8o*`=?5H=qEy$Up^vxF})?B_%a~r*wF=TA<*}C@5UE znsJ(1mAyQ2YgyG4Y^JT4^R>K-YwUXRYto*wab6OqE@AlFpI z;>UN_bB6N;xRMo_%U<1vVT=l1fW8J0qsK4$*}m%ys@n@alkbSLnB5VlS#t)-$VQq9ZN@}B+Gq}A@UqE9(AwCgjn5)GPrU=)FWR7X=O`awvL*}^R?&Mkal zv~_OwA0`K6E-&YrR_k0JT_KZ`(E$e)q39=`>5iobJ7@odIbEbU?5G z?Vjqwpe4HIB2%77tub2fw~wU6izG^xvrG?$&C9ub-^X((zr8u^4wDH*d&~|f!SJ4L zal&!B`i4D8V4+XTdOC~~e0Lx2v4jNtSg-l8(&3>JWj0v)4xUac%Q8A)JU(u9+of`}n` zjHUt3@E%h>gMg{9#6DVP*$kYxAUGhtGc$qkdcXyLCz#nWl%_-)M%jayb=D#-EYJtv zmcEE%6>*iJe8?6e9Vie10ip@cx9|r|@s?1WT3ljhn|un)%Yx3$*vWhg_>QpaWjBa+ zTy}G?M_ho^!PdmsNwyu1W1;r{H_AwgIDTkvjT~wu{5~vWUt(1x{UNmc`W>3l+Pl|N z%hX+ewcWK-r)$*ZA~dH~cxALHL9G_(^{JBR_r& z<8hMM<^@K{&Zi4NOhSOa;3rrtH98%tQk;=Jk!dVI#4>NpTJthwY0xZh8`82^iBodO zSya28HMT4k3s`MY#;|X@d^W=2I$Z;MpdA;H{84diob$? zkWqRoJ5?0h15IYIB6MBhD1Z42tPjpU0oiX=88@knDG(#7(Tn!FZXszD$9qEW(UWad zQK$2EEA7P+3KVfFHrrvoU|tuVW7I6Wq{W3)-&Kpm8nYOt({AGCc&gdT9if@fPIbr8 ze&K2%r6*TiIWb;*sI@tDsEO3RJkB(K=TIva5KV!Lr4A5jj;l2&%kr;aa{vp5ECtQv z!g%O#Uy9U-#8un&0n7`3t#HulIkvXv{nrBuSd#pl7+NX)uk}JjQ{cZ!Qs5r_TMh){ z^-|X6T2Z0xDC#_x?D4HvdJFKdoH4`VCJW*!%X{RlLlg@TuO@V0a$20d95&j26b}cI zYQbcj`Ejz@S!T8<;dyZsREx62@%#EB{;NnUEH&|An=sYV2wUgsrN&gC;}BfEMf1wW zJ^UU3H%^Lgz{$r|K)c{JaXO8;hT8k*)O&wE+haO?qx596xR3+yCA4|_9BLz09Mci% z@C4k#^ac8oDcH--$2JAL3smsaRZf>2h#<#Njl5zD$B=7?S!VcM&d)d@fyE@}Z zwXxlidY#2;_^h6%3O!v&Rb#^oP~}gu8P+qYqB-nEbC5R++Dnz|$w!qt z?@-kk?xU)S)w!~In*0lYtyo)c+cp$__pe|IHoGSk}Sn;79&W^+jqWm=cMv6RG;B=bK+&MxCM z+2Hv!XF_sJnH0x^K`FX-&6uR}LC<{1VK3pw{d@0YQb?M!`5C)^#TiZB^HsSaOjZl# z>?cO<3w`=C&Pr0PA}r9Q#4N!)>DzNWh%+n%`uI=~uK^;UhFTK_kqN8%Jow%FVJ`L3RZ5%RJ8rW^Ta^VI^OF z0m>DY9m0YZR?VA#5ljPBAmf1SNK4K#FBiTm2xb7(I6`mT*YLQmW?HgXTM`@+{~H_* zZobtWhC|3@qT$iJA@3DQZlhv4%MI zhpG6i;sVakQ=AD>TWWhI^lLOl!JLYPS<8=sb|?fr=*B&CcbTQXbt>cfdFIcv*oqkDsODA*KJ=ie}$ z2bnm#x3y5)4tANi$IRzYWv+}(gEo=2cdu_i6G5_cJg%nnnVaUB$1WS=B$;uZ^FW(3 zLh~|K7$TT|uZWc19zgsJ8X*(BcU=ya;~zLVFrK|8_flXD-8DUMIYzMFXf@Jr1K!McX#%%J(aLf@Q!MIX_tXj_y$xL5JrzMwiBXg$?=H*L90 zu6cf^3)il8HJFP6x;mK#qw^fO9tVmydMyyX#Wcgq3?kf}c3WVPlQFt}Ep8wL=eL+I zU`x(z8v;|3!%Y|Yura}E?Vr*NeA&__48!N$UjE+dH=kMQ32nu-uRF1g?PP+U4^j1h z-8)chje#1jpAY(O2%#Gg7xscQ{X;)h+r~dvOuZrP&geKNJSH7CEP%n=CZ(&uKXJz6 z>F=}YpNqdPew{6*7qh>ov&F}MKFls#y>so6)5l!bFeALP?Q`!4OH1Zw269`Orb2ZW zLL&l1b{e^QcD)$abB*|eRDlNJGUkv0A>Y<42WLrH% zcctO}27o4uW-p3pU&VU>s+~{4`TE`WkBXqtH`@?6^)LJ}a+CI}?dmXWJb?NmRSZYZsg!jP-K6xQw4Uc4#??5Dv{SEU>UF5qk!pQ^Rn>6+ z3BCRQv|80`KVGT?1W>`kDmN!p6m&AKZ{C~pq~n8%UkVb_&(j|2}`^+bO&)5;U>Ty*}sO>uY~LOV&xJL(m4Z1O*sO z$Pxz}FT4vDliOg8H^>{sgmH?0Lc-ag(@B{fH6}ddJ2i403oNFCcI-=l6CTFIn~*Jv z!o@jVr5j9mKJgaYU(yoE*Eg6Ma4c8_5n>E{K@1nlI)6GqJPD1tG6hGN(wH(Z1c*|! zgYLizxI*knU~=#M{`lr*cH>WH({aOMi2?!Hnep@?3IniANg$a6-wzajn>66?n+E0< zVg-^$k*f?fQ~4b6b;yoS3s8jQ$Hf$@`(-&+?(i^W(Das5HZDVG*zVXNID`S38sAKfZ=JTLAc$Du@Z#|;qkRWUJEi%Q!>g* zK3tc=W@+ntdJn;DEeC5N}G=5g{ zEW1L)A)&(A5;}?y*cuF3fe)-N{zM*imhST~&WoWeF!Qp4eMO6Z7cyU`S5<-wx?SJ} zaY}eLa0))vNt?p>IMn51^KD|JH{<y~7MOvxjW0_Wbg)Jy*Hiu*I?_lVYAyQq8EX zE)CA)Vi`uVo77Tm&q;+>efcKwZZpQV)MR|b`GKoBC^+vA9s?xZ{LhGI&7vGaYqzoD zTgt^fs5oSbAFOLJE4*v?KIn~Nxsh6qX!~WN4tV`Cad@+TNc%Q5_MTGl$GA8W%8gNS zy^CiLkK+DvgM*Z^a4QN}jW>ioiepvwKKbio62yxfT0QnOLfpZ)uh>8ryc4zJUEI#5 zej&KgWX&lguN^-LdWbOKG0+PErY?ErE`k`4zMMg0Yk8SAAHRf*Gw9T~_#3uzti3N^ z{zR#d-FEMV**b@6AI2&ru3@miI@t0fFVTJHABBuD4#F@D zMR%XVLx&=9gMygLNLQAS{Iro$CrZ*Th`Up$Di#o)?C#dIfLCQdi+G}}pkba6pg8ME?r<;vP*S692BhV&l4{luDxAUhjkaXkEuQ zPMgLa+sRGF@^EMp64_8Bj{yCc*8ltME&vjwq)U68i9-SV!ajbx;8(BwT2}sjn)@Pu zfHEn62Zul6Ul`=!O2{&d1iZ}`B2pqg7!3T^uLtlNe!0GQ4>C%`DujnHOXE-#6>iYp zPhqW+qJq<;N~KD}9R4j*`B}hWWLKt-yz)~nR3)Sct0jj~Y6_h>HgpJD-jyaK8KVzW$@P<55VLy^X;X)enwu(E?n zEYUbo4HtDDskF#p*a{xO9|OS0QFR3K4E3)Zsxf%;xi>n{q>D5YhSKx&TDm}?NUh$> z%R-U}JVI3#a$Shk$fDX%5KDcJTpfvYJLzN60eI4Ic;y-m-iJ-{QyA6r8^95bv`ylJGEGh+6o#&KsDoH83 ziVPN2v4Ul)0Ba%oT-0j7cBC?h(`p!h1bB!bAWQw})R$G{|00Y0nhU3m@mvbkwRN4* zBadF5+?==Gpp|8xbA%SZ40glnqNF6IBnzu5d>-ODuAWrO&eELU0-2->HN^ep1D{w% zRaz=Yl@!@xuqe>0Q39F(LJ9O@t>>i1-?w{raD=%&@jAKNSaM55ca%@6s;!5AL1a>N z$;rf9q9ghy5ZbR%QRi$Y5sgUQ9{l+yq!K+ibX0khNg}e+yBlrUPH@YbDWar+!^6Y# zcb9{Y8q9f5%k$yt9l@S4+7dsA>b^kt+UGhc9wCh5lne&#d(AFAwMSh$xA3x;_Aj*T?!$DBt1#}V6q4Jr~6kG zp@JkVOOcBh2tT*=m!^?O6h?J_MgoSTf$b%j4JynPHv%f;SS(T$8Z;Y2E*0BQ$drJM z=#((+wH4a%-g-pu-Eq0*jO53#i~K-uLw8uXjKlG5IYd{_u%a6>f(x^cz?eG znSEn!wNx(IyaCS^==EQJoj^kt?K*S@1Z^F8bN)fD)hol%9g^(K^BoRR!wlUSKV$h(WjVcq1I)7APR0mG zixvWXuP5&w`%#UkLPULW9yOhr@3R~FqJ6&-S*X$n%{zlth?A6ml{eTThO#MojECGK zUBOL$->?`szqz@@ilxyCIEaimI2WY^{!o{Y<~T*6AC;VThp%1D_K~>U^yj>UU&S-* z1T1m~Feg=*VlSeCTH%}4HP*m_i3pjRaDU8smzKPhnWMcpbhkhI|i=S z#do_hiyW<0y4FP1O>eH*84j|xlx@Yk79EjA%;XGw+MHWvGhLd7TN5b{%g^&VN43?U z8C~oYm_wnR&M|!`e7gKW4`^e!$M+)7o+&Q2^I-GH3k4#75AQP(_p%Kct;7@iVtbOC z3K8R7bD~sOPXT)M^@|$EFa*U~NZshB#LQU23d@jL&!28zk9= zl2DX_i9-^IRjHn*8pGM6G#GrZr`1@yQR99rBFa)n8xqwy$EmZ{*u>TAqPR7P8!q1g z$!6|6v9+%D|NOkO zCTBN)xit8@p((iN+c(n2kJ)cM)I@iOZ@z)<5}(4cVB=xfkj}_yu+)k&NPkDLdU)(@ zFzKbUvUW?_;$BnB6ZKq*t(N)zsUf>TvKinco25}mIO4CKCo9B`kR^Oe)wph&meKuP zRt1&R(e~(VcGCY7Eqm@>#Ec0&*k04v3ClWv^JaA~Uy9Ghf!BTrDDHnpEY?WHDK$rR zrKr?%fFL6YdSixNZ&&s{3~Vr&NGHdCG_)_>X^}o>#X_M%_cHh;1f$1dW{Z-mS}M4w zkr4D5csNYL2bvt`#sIK~aiHB5_o=8M3Ta4_dj2zP+$IV=+C{}`MWPAh2)!OfmTeJ# zXAaOFlY0IlL}77{g8}@Xqqbl7oUlHtcRjr}mg^nvSLXXtMORVr2<c2O*u1%?8G{{1M(uR7X}IZqK-f6uv}*OOtLxOp zqZn63U1)yxM1u)MVpsfy7VKm|8!|h8xAk@Rw#DQar$n4CYtd~F$Kuy@dYywZb{$o1ePZAKUkqfQug2w&VZYrf#Gd+MXzvU5>?OFTK| zZ=M#tj9MrCT+&psq~WOl?O~I{%y+8|SZ=fG;@2tM5SY}|y+o`N%YKH#ThWs4o5}&4 z9y+{i{`}Yl!9wUU*2=UL6&9)ySCCRML=HapQ|l~??->HT(=#Z&oTR(_1MJ#O3oSV5S(hR zQ_9wjCHxPr;r{}+k~|1v7=LX6Gy_bKDAW%&!VufCa<|C<>teQF9 z0m>Nw76B|O7&54`UsBw3LHW3eS-|B;G zl2T0VHB3KhuegD9CAACcfjT?bN8f{YAy~J#FAoEH2cbw`evX<*esX=PQ#oM)AvCxg zmTPc`9T_LTTi=_>zW3r)P0LofJL)u(*QRB2Zz+e9He2JXutLgXb^sGSY8swk zB9udkhdemxrN)CNSbz5b#ky3N8Ns@@gB}i5<5YJgaAR=Da8Y;-D_7?^Lkp(?Y=iuQ zT;(AZ>eFoVCYr>Q+-09O>#K+LOH3YSm_rCw`J!Bchrw8R)W@uP$TwA-qsT+)B#F7< zgr4F&g*i_y+fOfbv(|QXhq4uTIlP$H)xwcR(D+LXA{V3`27iIQ?_P#6+!TVvDUOTV zCUWQ3QS{E8C`S(TBG5cP&`QReasz7zQNKMtRDs4}1X}BjYq1FrG)@<&w+IklvH}y` z)Vk}L%t`=c{s@SG(e1KXW*`KQqP0+A^8gMZCbL-zo`FRh^V!OEM~P?o79R2GT|^H9!EVy>AA@IZXu01Ot-)q{ zEHq32_EU7608ph52`N9tA!NIp6ef~tVLuxPD~3*=>==H!^o8k`Z!ZSZ5G8*YmrQt( z8?I)_x=iPIeS4J@m9qRrWql!7c&^h)`u7bSt0l6+oqwM@^hnG1d@UFv>01r>-0I}auu1Jem>&{ zB92VS1G0pd4%VlR9sKFJc9g2zZN)>Uqpp@UJb#=VN+&Q2HQ>y%jLpRiNiGO5WO0SfPD?=?;3zQADT#k2#nN(w`<=T<5 zp_WT-PNAsF2&rw(rdloylvvcIg)>z>S!=m8P`Hl9szfbRQ!ST4ss=cdRMuK9$zJ_+ z2Yc02V5N~tskBnTw<@rbr22LTshSF`G*T&*R*q6N6v-%?4HZEufPbE( zS#1p!K@z}?B7t_H=CQNDEh#BUhiJW=fJif~TDg?Qx)k0noxzwKX7eW9+{DTT^1bwaDcPk;Ve5gI{$ zg9I(1+bDN}fN7Jd<%#kkw!?DDm&5x*=A1)u$hdAAyJh5wv|G=}Qve+ANODc{(6vhI z2fVgW&CjzcrBqUOTgX!)>~eQpDfydCgpkJNJFZZQ31@AU@#lb^9@Fuuv*$ zCRtO;E>N7>3Wh;j=hI3?Lw~c>VJAdGJz>*o(@}$5afxaR45w|2>_TZ@1^l_$#GCyo zgXIs{y#x;(2H%+u-G+aDADkju28KAXyp?Vd&R6r#w^>ukH@EqMYL?F0<~EyFpW+-F zfYG$N8dJ6JTWnLCMM2smO^2z%1EAF#1Y5u9uU6y}q$~Otq;sU?1b913s(22%T+jUY(VJW_kR6L=&m>;Igkaazx2rWqpo}hjKJ3gLE-5X5sSvKr%aY~BG zjQ$6Y8^PDO?xm7p)k_+HBMq*MrC${{yk^vxv?x}{wBpe@ELSBdo)o2(0nSQ{f3whz zQ%pysrnx1kF-W6}&VQJKEvDY+8=Rrkq~55;X8el8C2cszW_B{$&fQQaOY?mY29y_6 z7IyP62HEN6WEtdyiXwsRbbYcBgd9qtW`UtldW6`Z8Hys9{B;!$gL|_$cQ*&MDM>-z8>KpXKMA%ZMQpoy2I#?P+eSIiAM>ypUooYQLK#mGA`MaQfgnZ}O6G zkxX%e2EJP&LAr>2kka_;c5w3KlCMAom^)3|a*sk;X zWQj6-q*f{SwZ^IG0orXHs$fedJv_@V8bP9MaXujLCX>m4ER{&RqZp%leiRhym5oSa zk-L-|2t!XpwV{a2$cOW{@9loA_JVXan-SZtr<1quoY?q0Ycl@WWy?x{;TI|DZwLV@ z6}-C1tiQLIUIRdvEgIylISI4e#LJoqWnO$09sumbBMS|)knHTwMKe;por-+PC}U6Mcf;Vxb; zmS7OCK)#9RAU`^Mdi6LUJh=5k{JMeEHOGB`}Eg-F%qr-K& zdCUa1Ow)Jqe;tSy6Vw!)qR5i#Z2|J*?+!$Qk{b`d=l$XP@4fYQxjaUKe>%HDqKEe( zp|l;IQkvt{24p#G4o2!U>RgP1@uV~8MQ6h>9KH#9(dpahb!Qw6$LL>Y{EA9Ve0DIL zRy+?eWdN$!d$5Ss={j1ai{vJOm`k+%K{veY1sE*-e;y47U2-FM-3jrRaq#nHe;kP4 z%csKOtA4i=LcG%DFUmC}mov~GOr{<9{_qT64uUuMe>WTsDCS@KQ}QHvA_yme@RfWS z^w_QL`4E5Uk$-Q_`(eP5!RPP|d~rspf;ZV$_&?}$&xPCkvKMs2&X}VUFFOE)Q*9F6+}a`SCJ2z#V~`t-TUoBp(vgK*XD zP|AD3S?4mGa)hT)R6h}MjK>`&i7@P(hO8Z@e+U%eQ6aXB@ydXtQ(m-8HWOOecC73I;RszcXwK932T0%X6?7V*fw+SXC2|{?lt7lHSqspR9;VSeU9Dn9sOY8I(EE>lBn9F&LMDp<(Q~v0 zAAdaZ&F^?c7AH&e9)|8EIRfOx%VqijcEvl80spZVb0_oY_?Wr4=?0mFcxk1pqyl@F z3~Uyb^4v)oiG)fE#vR}pQl;6I(5(dEadx|HI8CtwKYYeirex+eOSc=wjm%?n zZt&EB&U*;y3Ig1e_0Y-ehD>RmAFH$qZh!q0TCdYfIJT>J%sy?=~n)>rb(`|$9|4>>4j=12a!WW9i9RC)j85bnaTv7 z@-@E$^LPBEqr<~vXKwu8d{eN-|A*g<$HN!Wn+n;TZRt?Rt}eo8%*$CTjX%?>=~Bhm;as__Lx9gnyRCBqVF- zVuIb!Bm47GSN+SuPlMr`0apS$lYH(2H4G2!QI$j#2S^)`8$oeHiF`Zz?~;I2_l~rN z{pD(v6n!k(k!rY5NoTVXyT+RY=Z*)9$jq8mD9t5NB@~P5>NMMQTve!Q+3bxDNy_|N z14S~w=qxk4KAPhY78?M2JAbwSPl=aRWdp=vn7jtZ;K$w<;`~7~Q=N%tiSN}Dgsh@F zInOO!jfur*P(O`yY_|M&6p~pRnXGm-dc5Z$_YaSx`mjv=D%qA0hsp&h!}UzU#XG&# z1=2ga-CNQPu-&$_f)Lpk)2|Jzi|Mthwqno}>tX^!IIt+H=YQ{e;D6)B8i^A_8_d0Y zN+t{xC7#}5#5RE`PwX}_?tllkM|o4mV`&HTXDuMt=*aYi2+bI+;W1y22+=zj0!5Lq9tf?w}7Jh~V(G0qaEw6$Yw& z7g{I?E5`u~{=z>zu*`u10jVKYzC*5hxukJW|K{&zUp&3yze7Bg`iRuf`yT2e#Ln6y z&a(Lai1$HE&O!N?CSUkR)SmdqzMzqa?Bs?>27Qlm$m7!HK!5dbNT6fp=kPN3z3+eU zinN0XIDC2h*z*ZI@(Y>*;~V7an=5HHtkUG4SQ-p!P$ZJct|_TJfyDpLHZwMn&57gG zej`!)txPRRJdp_gaF;AWRmTxYc!M7%k%5;I;HDW1vk zTa+M!Al{@|M1P#V>?vF>tsPaLmO-nY%sq|HK6?gN+F8Qrx#&`EbT!1cw&WKm(vi+7AkH3 zA)T|x0}O!H4LRX+klv6L_9+@5BX!*Q>MIZSE$8P1b@H*`#@bX9~%>NLApN9fI0}gZ~}KAP6`P6WKw!K%T>Qk325Dx!&H?g`pR4u| zX9jYMgXio}(LfCC2*booA->tb9OCDw5t@B{g@1;dci{eYoMEF!0uKK5{TSR(6FEZz zzi1bg5z(Qai2q9s@g%WhXQHqliBys}lR0vo zN>}OVixHsej#Bx3nLB#U~r7E!-%4jZ)v-Am8Y~sNxnr7- z?D4|c<_g5?`~*(-1^dSmfV4@0VZP8Dt2pmbea#1O^$|`!@pNLFD%-y48Re9m@XT}= z|9606NG3sn(rCL@qT3GC$wVHiF>3O{eLMk+y3ksDBOeu=Ks z6LCIf5sWpR4dWJ+I8Ks9@Rr40~FMm`2z_ST0`RD@4S z9Z=bN04Ed87_r2hKGHZx$i!h`6jgW#B5PK@8xYB@W@-M)Q4?={bOX+yf32?ImHXG4 z!Bw4T1&X}Ggxz)(fwsF4KQ>JjPkO zv>e(>QU_nC6)CnZfb${;rk$2*`)R@T-;rRl0H6@960C*ZTM5>h3Epw1s>PMD^Ul{A z8uD)LY0@f1RX6jhdYTD`crOCWhO({hX7ZZKW4{WCv74Em=UHDnr70SgZ|FZITTab3 z5Cb!13PNQx#?Tf*V1EVyLdxIs<*%tnX2!+$M@nREnAalPJOwaz$e8EjBQ+ z(6{Dr42um2fZ%?k5-3<@Fp3d*y1OxFXECa4q#1y%YAo(fH^d- zmnXik5CtDwl`9naPepOIGO3`r_y0mziTE=kMSp&~_07MfB~i%Saaq7j zF2CzQY@Ov(#roK{qcK`O{xqYq%znXD1t{mrg1=_>#H3){f}Lz78ahIEsi}%!E5RFK zQ)PX@G(^dW`@K95nnGvGn&YFdkW|>V`BKv=lbdF64CafxUiNKTLCccQSt&~rYJ%`s zLZpzp$&0th*?*R83&xhrSuG&*A~JuK5^0u=RafeSQ(8VD+w@^3#i$aRV=qyuj%I51 zry!ySC%#t5b;Oq=o|?zB?}Dx{Sw{MU7xu&w8GOmq1%V6}Is<5pPuvhkrD-n`!2E9T3%x?dr1KW8aRZ zddYv2rBKt5yP$?!?IP0Sz7^m+?UuaQAjDJ~hf_6>)^d6y=KQ;lOIY=+%jWc6QZV1Bj+$^2DV$_XR$IFe%6K$30dHF?R#V32J+^mMZ78;_SW16}kxf5zb+Q3COc~4#udz&A-Az&#^nhAz?GqLPq`7h)Qg2jM5}L< zlOk_bY-(${acTAis`_Lj0$Ze_kuI4#O*2v(HVk)7EXZ0LS(&He2F%q{ae=;zr_u<% z>Zw$@sSgltvNdTVP&&~<;_U;bySW8|EPrct?y21hO{mnYSkafSCBYF84RCHBTM`Q1 zAH$<3atUFzQ0}o>C|BZ{?fG25UJs{ob8wd~7a*&qm6<>uBsPH%W9d65_2aJfnnE9y zzi3DhmVXFn z09J=DG_eCOCis*AgvPu#Qmx-}QX6i7ppVcrTa=A9+2#{%W%s@ws8zT3@0OV5j0UM$ zc~3=SE~jLBzOGr6a!Mr_zSM{_?IOpu0#zDHMFVp}l34O!H&HvIL8312H50Y%c}G!~ zV0g4$4zIb1TB!d3Z78qEC-f{!^nY$=@M>i;YiTUY&+2_$V7Q8qR4htawA_15L@JVH zqO*nv$rk-yMY0syssiM!^&5so%LNc)g=DiO#;P)+FCLM+9?b|puZ#Ec_Ydh>N>$i* z1t8T6IeDK{cvdUb)sT%>A#nM(BOI!IW*R-LM2m0lNOtWuICW4oZiG`cK!4m0N0DBq z3tO!OvOfSnhKnGno4$m-aW9m;ao-sB#{EU!S@ZPko%VncdUUyxBG76^a)Ea*#fx}T z(2}%j&sTOj@hZ>HYqv7td^dZG$lGZYg;RGZp%k@pdwOf-9LNj>8pRLEa*0a8+>TCQt86hm@>ZPk%@48Eq|7#Fe{F ziKX?bX*B9|E;?`f7ttX2>9RMRqVE;Tq@~yJ`Lr3kV+Ygvuoix_lU8k11hT2zxVtY5 zyP~ay<|{@=kj3+Yj?8t2%orGx_qbQSZ{u93E}|#Y2&uVp*Q-2N$hc&RPV#j9h*>+O zEFIE*ngS<8w!p2NIDf4`;i=P#8FQjnlxhXR6*zXxU{WB~=Pxy2X5ZYV-BGyYJ?()- z%Zb_}bHI#)0F;*T|9^*Wqs%hf9M_P!X`K$cl)$e=XnLRt&y{JHR?=|>rs3DR6-enF z=@q0AcbD2$>$HGc!$88)evd|Es7sECj*+8)IrZmVX9uwOTBtyJfE0s%s{H zu5MeSr)#EhZ%h@6%8X?r3ImiX1V|;TWoQe|?z+CB1ZP?C=7-r=ZYjmv44Twzt)%jc zo zK~p?NG#AO5;;BY+88&3bf@aIk&#gq$>%ZO$O)q)h1Wk81=ys-!Fd5Nw)Ac+q>V-D! z?I*O9O~NbDpq#6H(3~d4ha?A`^`a8ZaNHD2C7NMY&40}=&GA&B`6bON(M%favl-3g zF1aZ}a8p!sGucyU7|l4jy(=owjD~Oa651&JK!2|3H=Qt;bb|)CEd3^4f_x5Y(DVn5 zCyOGQQJNS1^;}L=BhYqSXeMAY0HJzTL*EN_rnUz(Y7w+OsfAD#YH9uV)8Q}-Is@2~ z8x4CR*niVx9cTBbd!^|T#A{Erl&;7e&bvkp~R2Xu0(m=yxU`k9Cnku0+sR1nTyBiw+-&+(~ zMcaJY2AV3*grNDSHqcZ#rv%NDHqcZ#rv%NPT7N-P;hYjQU$udz$~h%y9<{? z&7_GxQiG<-0b*#HS>}2)76*u;8JWtNIHIX?fOwaAw8_A{sedA(xkOlSpOMF9-b?m_ zjJt^f`44;4Atj zcgdy-mH*Fen8wK}UM~5S0t&YGw23#R!^DGQGu$@k2#ABmVa0*&EqOG>8Jw?)4ti z)Bvxcs8HeH8D93>Lb|f*&6nE+taL~9Bc0!5~$U=M#JFsJqkbi{u z9-qo6%Ww?sLVx^#GNcGhNFPpyA_ArLaE|MASO2ja=lFO8bcm{_o*GFD;&J$LavI9B z&C!aPkaMl%1>;9%{<~zo@Nr5!NnyDK#o02A3xxb9_}h`5sLc|+OCo#e_Ie3OiaLfX z7D;9D@r4Bs!rH{ZSWPx*U&C83dNTJooDO1PzXgME2_q`vf zF+r$KPJZg6wFrd!M8Dtb2UTi{A2lne|1bN_IdFZN$##Pe4wZ#PPOWeQZGT)+^#AJP zgID2H;9X7^mj7C7l|?EicVM{;KBB0w+?*rWJ)Mk{0(b;_W}zKx`?ep1F4<)&)VB#( zE?CuBC0m3+-<@U(9VtW=?7F(9m9X)?7aekRHXdH=)+;gOvn*Yy!k(U2lUE0rot8_W zmN{w4_8FJcqD-P=kqAt#o_|h_NrARF{lHF-GXm<N+3`;{5?39mWjjr*WZ!V2mdd_)>y(A}CA8FYvePv;3!?7WFf!gO(|ntOo!Wbw zgNhTyTn|$do4;K_kk9VoXx99tG)#NQ>d#kW(qP#}(%EvKSAQ_*M}I3FLOzE}lED8Q z)1dAsw4JtBO2WFK&@772*-Sh{$7rM#pS#5{X+3>^r30$RlB#|LG9v$NQ@LhzglilXWG`Ok4SD#}FAS(4k9VUe~ zDx*Fn;3|7nH8g%ai2AOcMXf=v$kw)}Y1{A!_nl-?wKYMP$7A1y$hZ?hcvkDV$dENI ztYNTBd}BB-g2oT?MYSiTjgE4)phj{j@u2~-3n7w-vp7#;HGeM2^tmaLhOo;X3wtRN zwq>^_-SwsOX))}iR!E7o+}*nV|Vd3R6!$mAL_}k- zgqralNGQHO)_+w)-`~6IS$6tHGr;>9_- zxn1AD=}vwJZ(~wD#(;N&z<%lV3wUe0TzK&^Pk+5@US?Z4>7#qjjiyvMh^SAK zTQBC&T6ChluDySc14O0gM(jr1bK{$(oXMzq#!MHOWj>~#Q zjpO)aYH5n&H^D!+48uw1ENFocbf8Nf-vB#7(%GQWlFtJS1A7%~*D5ZyZW3s9d9rHb z%4tjbWobxO>1v0r*HocuRLDvJa(~%n8`Vl}e#urJ`V|(W1`y`rH6=pcrhwqO+gCH( zXA0b%Ps)+uipvx=VFF2gaqT*3wNPPHZf+FsKr(;w1A2wd*M3b5UdyQ>pb1A z(E%aHPvAX#+RNb#{d9%55Py*qUno3ugv=p7o(83F@q9`iHh=7kqLwg2cXyF`P^IqR zxaU220!+^68Zh%(=WXV0NxibUq1bkpA=!_uabFBCRB)v zbHdEEJGBQJ>WWgkvjo%1p=;%s(=WhE*m~UR$!jW>XAFySJX%?w^M4^(aoa>xg9RV; zgEoUV!BQ_o3zioQiy|-+l6oP!va;8yc-FQzo?oZ%*UFR@W!#h@Ti$JiC@%fpAnj8> z5`_?IfJPj0*i|!Yc&!H7UWc$rkVIM<02faN<_Ev%poD`lEei(K=<^VV34($^pCVY?vE9NM z8aC^E!3}N0IRvtNVTg*qjeOoVIbXYux+v!|HR(`VCPSSMW?8b)IwMDSB z=;~nwD!Kt9Gqy16WunyeCGKzE9Z9`dlHC;Zupodf>h8Jc9^UcAPbcvz?sP&CNEHiD zlB@7edZ}EDIvpZ(plgh~4fn3`?v~MwgEKj9@?iHc+(c)Evlj({ z4Ab#B=Y97>KabXTCP(MY3?NnBKd-nf|_x$cp=B`gZzihWc{uLX=n}ejvEAIbC-o)>PI1o6B#FwCzW~$0RxdZJ)K79s}@2(K#)YLX#G*X zh9_k$Mr{VKgqK8nEoQ0k{+xOkamy@`X_kb>deqsJ3|m55a@K`I4$B+Je`5{xeB+7r z`W8Ys^c&~5APkoJ*qxrfpS$Ap3w+*Sea%l$3e~6NjPSe%xSgIeLch@gDJVF-K&0ME zDn?9XotGVRshKM}Z|Kypu(@h?GX_3^So+>9Ui+y7T{qmt=zjZ!o_!c*PJj06)f@PD zF}=EG_X8mQfWXhpq)=MEf4GYhDZCYAYpDrkjjL(bAkHrB6LJ}l3f!jnX6K29@^6Ak zl=N_JKsRu8^ot5Ep(2GgyUkKik}(Us8IZhankBMTd_PnpN5kR$>6pQCAd*CUhUQ^K zHf8P&vAgZli%gBGbKOt(>-|<^mjx`wjn?NQ@>C~rh(8!IA$i`HGTq_9}b(e=KVum-nXDyAU$P5)ZP^GtsVR$eyX>cP$ zvcq^!p@~GvKSXlK_Egy|oYq=q=Hh!qo`;@@m0UcG%})>2b6Vzz`vz7W@G>RUgEi%&SZBCZY&#j_o8i!8rT{|D;AX;@v2XSt zVB;}mmIf*3e~?E52$t_QN%l51f@bUW-hM^h-peGqmfNT~n$6CG%1`Ap z0|DbD@^?cWLSDS*z4~+S?-F{}T=-UgkpeC_B zz3asg-jbtB!o4U9p)U22r8-*+A9mh%Nfa(&%UNbfmS|hN(HN2S`5A8+?2Ov!+q7ID zns?LMHF)b9;m~u=dz>#$&Qa%l+GSwoy7zca%gpzoJaQ0(8I;~d&1=uaIEX&V-xJ}l zp`_offBe+^q*J2~FLlRr`NFJN!WejdhTh|Z##R(_J-dAA1F2%u%73Ca1ES6qzztOE=m1~c&(gm%5q{(H7ed(DT zwfagM8j5 z(rk&7*)D^j{`Xz%gg7rPMFNDB_FkSlKX<-Mj|a&jX|-;_4?PaV7Lo_PoXN)oM8E6w zTFi?;B%TlCjLpH9a7#yvWaM!Hyw_@>n-JtQjv`=^1W^(~`biM_UBqkxe?0KQ;GcIB zLhGqT@Gs%9R4}A1;X(GQLLoga&jSX{nqd&aC>G7iY5W^llNQ)*BP7b#0ivn`x4a1h zpUjucmqE00_yvBvK7iS|i=OcduJeR9w>g;~U!JP&6ovcxN*1_UErC3aNK zn)39oEf;|}I7t&ky+OU9e>79B)}d-vq|i{8s!m`CRS@BV1@V1sM*oC2QG2789OIyd+;sk z{iX}M6>g~sHX*)-iE7Vm!hIDB+qc-8x5GPi!uvGAY$oH0x?68}f6c})k9p)toZk8Z z*CwEzeH5cbwt?#ylY_zE5XsgfgJNO{o;@4uJCyAhw!xg(bnb-$r&Ygix;jSG(osr7 zcSQhw6-vV4ZicD*3)`}7_se8F`+V{9bbLN^Y&ZXOedyYQBTC1Viako*L)Y1BJJ!C& zb=Cyc*c_4&S2&_ye`nrKgq{|0m46cz>(aaKpf~;x5XilxlvB#CiZsaXE-5>p-cD^D zbm|ld<3m}1*gAEK9A?5lOWf0T4shAMa!_UIGd-vB%Cp#m5BPAlNwAG5^WfnenA)X^ zzI1FZVlF|*AB#ZhccxKpXH&7f!FI}f$!xSe(shhvRR9iAe|!&FfFjy~>d6rCp3naA zs^Yt$@J}g&1~ziGT2EU2DpoHc5AHn)<<+r)gZwQCpUvZ>ol>H19y}yrd<%AZ=k~RS zaZ5!OWMq_qo?Q$J6C4HL`3quake<-s)k;?SLG@|MMQUp_KyQ8dUoJ@6cZSPxL;lsY z)}FG!DaTlCe<)iG$E;z;b=C7zBD^p<&^}7yb{Z$`FXOdduP~2u@3A&)@dreHIk3{W z8ki69JpZLYzs5cp5G(sS!><-X<=?Gd^%R#D!+w||szv%I8Xx;MZOKgVJj76(md_MF zZ&B3E_2R3kvxS&~W-F{_lJ7RO$zDuMlT4(Q!+MlLf2vKU4PgxNRbHl5>p#6%+iu%9 z5PkPouz=A@Xd1MAwBsyX!^Q?^Y-8gVSVV!r$h0l2ED0o))Ghq)OAd9jB#KNoSii*1 z9L||DLvlvC`XkvVz21iSA*KX5jMKp9Yko`!8+~$zy$Bx&OR!JSO|&IGCmV0MPnMW6 zLWjLxf6Cen-aOtAZ%lW?PQdg>Ld^*8OAujtTqNEkj(p6!SKMq!#Di@>44&sgS2yC$ z$08@*oybVETN|+az`bvb2$)DDW9Um7gd0L<*yk}l_I~w{_$29L82D(LMm`VX2w^UK zKc<{GeVOJ9gek>G)W>wk&xM+Y>Dsv?Ge^K7#hZ3IB2u0+%hI6t2{v=^SC>so- zm>zH#{3KGi;&U%hpYH?q;aUuhv=eEypj0>ux*+0&Zly#Wt6;L>fnkSfI{RUe~ ztCManK=U z96b`09qX8ayLYbPqCSh=BE>LvRc1b^AAZ(!_lulv#`$PihO&(*!Tuhp0S;k?`u~t4 z8eN0adJZ6m(ojv-xQPQ^2^)ble}T}Clv$-En|t2oP7UsA`9zqmj`zbgRAQvxU*)8) zJasYGGI;+W+cK8VC)$G6mYCYW1czbQ7!P}6mI3t#^$gZM#4o4>|L!QSrU77)ZsY|- zFOW&VZL!KAp#(b0vqc&In;<4fqO1&XUz^q36-x|iN}ydyfZzQeM2iRuf3;efbMoBL z9}CFKq`fduUpBiL;r_mM)lUk8A;c1B^=xZ3Eh=~Q{a?hktilZ8one1-&s)wQ8AWxI zm+3r5nQ~h5`P!S?N*BD;f#*3Q{6iB|FM1kXFg?f!cq*j!-I6RmYxGVJe z1tWl11MhYa<|rgsOaS~je@2plFeVVJz5n+`I=BiLp7r2Z6uD4uk5u9y*!zzU?pf~^ z0S98?ry&x5uS%8j_xtyar^+)nsYCs6DuxS-DEh&J+cnNq+?^GV22Yri$_1pO&>I@(S8?pVUt~?5y?2(bN zT+MLWmST*~0+Oq!BgzlY$hLq@`1WsDSZH9+qliMj4N-X4 zBC3eyln53D%cYIr)o}D^b87TfL%6AX3?WbGM{Rs21oG4dH;r2)jKxqRNHD9cD$b`d zY$^>PK{X-If99EWTY^+Qa3kHzqpDInk8UV7*o2Z>?SFv74%UhERaNcQh(y=OVi^(9 zCE?bZ&`T-(Bg2equ+z9CPfw(?Jg~?9|0Lsj@eIS9Mme4XX8+>d7`88!{12cLg$^{F z=E@%O5E1ccl5k13jIcPByG1PnO)QPTZjRUF^z@W0e_VHA^IA(WdT~F)!MOV~2l{|~ z-*H90g_sIkN95#iuh(Pc&IP5Ei&Ae<%?}7;435881WCPTZ3JjIV!%n$;vlS+?bmK# zm5n$TDi^f2jcH=p$tXR2*G_H`FYN&bon1@bydejpisA>cWv}=qbRAmzd~auW9N{7k2X$AqtMg8`YFL$7&YBPl7P0f_eu4Mcv8)Jj z`jlaUu?kSSS2;6)rhG9{C+dzc^K0s~pB4aRxIA6Rx>#v(Jx)e}uti^wq9DBzA!J8A~k*{mf` z?L)mXP$!Hq0N!K3T6-;!^*zC5{iUm5y`-$g%X-ync4g*ao0yoLA`OQ`r@G^!6MKK< zf4CwATQYDKKMA4&G{v?hD)Bu$mepxS_aV_dQjdIYx#~(C+ozZqI zD1r8CoI7+lD2<_!1_LTR4-AOt1K#z)^JgZ#JEuBriz={_R{Fp~dyNkr_qnboAV}BT zuv^IZ2(QH#0Qbvf9&fQy3WXuNs!@!$fBbR04X!*wsef5jV$(ST(1ud09t-(=KL)+NcgF~P3KWRd#*SMC=x z9UO0D9_u@CL>l*)QFzeGp!y#90Y71HmP;7L!eCdKtD7=rR_#cP7f6yg~C=%sJ zDTqZNA)$p`c25LVZaQfrrB2p%pw-glIJsz?y__H-4du{5 z1458*2uENkflcwlTHyR~e+d4ve3HZ=>1C8lF)W67{6ZxVA*obTB7-od$(6!WaDt4; zlPe&JTrxT*f#f;#iHiupWM!y8D2JYhw#_JKp^Q^T#^W$$$SMz|*HixY3FVxwNRLXC zXOhdp=CiN27sS=CC+D#^I86m`{{~ zS_97~rv=L`P8?*;849G0xz8P#H!&AdgQ-klvwAd}|I=|7<{kYgWDuq~L-DOKpB#}v ztEE`{V!v~m#8C`WZEupMNxiiJ8I4Ay&P=<7?|b8){R8?xP7v>^D@1{U3(fas3oa(#MUmL8eor>#t%K=5xAGj1KRvDjzrc%`B)v3>(2qXR z9|^FToMY`{nDaYzl;w*DQyZI4kzUDxCifax)!M=Yp1osofARixXyKi1MoWk|BAyMS zHov`9kk3m5-=e90a?aCN!r+wz_qn`}z9QSHxL$^kDgV7d;Pu61 z!i-R>m7WDF-*RnTVW?!%8DW&$=Ar4{ZA2{{KC&ILzzN`qZ^tkpGGdyq!zOGcZLwxp z0ezSEu7umje`|)$n=rSX{FvYdy+LpzqhDpaZjiqs4MyR3o0>T$Dok}D+)N|wq6zT= zeOZr-^I>Oq-&UY+3+4BBJB+%+XBwsVGl<fSU$mbsu4uCj^PlgEwp&MCPvCutv1B1&`BJITkidGaDIs+gXfGG8 zmzjRVf0W@3 zDg!H_pbiXOstOQGQ&o=r(pVTLvY$~a)PKiLTI5s(JXv?~-M!1Ze{AcPF^NKRi!gR% zm7pyhT6DA9NzM%aK-Y4CurL)0LRqZpcEznje_JdYi8*85{mK?^+$t`WSm~fqH(H|2 z|9UVlLj*1;XCaYuFtRsu#bWne zf21mfwoe~mo%c#=vANysjLWRr3d`aDruR6_rZHfZg5 zwYweCi!b93TgC+%PvEX^;$l3DanSGnzo0EIYHHi0|(1YD+3Y z=eEN?AK(73@3yr{HE4S65ONmR8L8xGk!LSOsYvgUtu_dsv_&J>tQW0aXvgT*^P#~~ zsc_2-OX>#t4u^mTL24L2hQ00a5O?aNAdK~O-x-)BemP!kJsAlAs46p1f6(woa_yWx z-qKHSdua)dwHIWV!D>?^$`v1HB5lXdZ+}vwoAN%G;4w3DIzKeqp?vu|{&^lt$qSfX zo$d@AigyI7ED^KKKg?K9V#V%h_ZXJ_wwwLn&guenjj;;CKoAA{{faHMOnr)2rjdYc zAgp^YL@?)ayMiM5cT-r{f7m^kVczawlM!X;O)7ZfQLh?9ybQi?wuy?&a1#Z$WrPND z-%Zv@b=3ZJ&qzcM|4WaTwI~{i2BJoLJa@ic0aHMjJ>q`X7c*xf4%PGq~6wyUe2l3L(Pd@0S^KLxcJ zG{X#G0t&xinxi6FNYp+45JnXc_49_Y1?6DyvlQc|u6|Maf3-YLH)!d-3X?vw4qH5QgvjE9M|1fqL-Ttu3C!iwO0m5;mLB1az~^ z%z{$<@7+XOe_{!CZoBi&^UlZHhp)U+CEBAQgp`G9E4f@e@^q4E<;)4$8;h`Td$fY( zc2)V6Ax7FRn-aBBfuCfbBxgmmGgh>U?#wWg=w1ZDIW@rpo&{aW(3h$&1u=XmjJtX|q z+|$>=&JHM_p=hUCw#!X3c)j)XrvpL>j0NwdfmOJ=>Oy5=LadLyLrFAkQ{uCU2YFIrA2g{g5 zp}9jSJUJz(rK?51ek&_x_!+(B0%2=<6oj(b4R*(!N7vM&#EP-#^&aY=HSaX;qZjZ( zXrzbF@oY6-(vJNwh+{*im4GarsFs^P7(r?@(6(YUF-QX-fZ))gc9E;E*R^e*6cS`kPR5&gZOr`2+c#cw@hXkuht-Fc5`z{fZk5 zcEBCF)=jgtLzWOow>TI@KF6YtETmH#e^c_`E7@tWLrQKDNO#}6r}wM3V|82>br&|lJgUaOq zJQ1qW!XJfwGw`L|zL5f=5A3qZ#V2nZPOd7a1j$xGQHWOg<(;4;45kD1?WE0Re=Y@X z4DTS~1D2IxumiFOg(lwgNt{c6W@5rSs!r!SwFF%6?DEu0hSeB?r zRuawS?P=s~MC#WJY9pWLn{E$C8@CVeRfs1E$ll$R7lY)Cf^F>O;uPW@9PjR+-+lN! zaxiq88Hd1%X`=Bj_{@F)g^@9Df5I>jg?Imo8<3nxbm-cYc7dS_LZTZ%k>eaB5;&Ic zEP*Qid+nsq1X1?+6qyjJ}8Hf5W7Zm!Dov!drmW9)Dg)ljqqW1s2Qt# zRoj(vgf3sU73OO`awdeQKP{OEbRw9y1>lL%R0OwH@g*RX_2r?_Frgq(e>ReIYpRj5 z^G0*i8YqhJ79xAiNe5h0=zQ!V_J!OnJ`zIv(Z&w8@y)w-$2ZB*i;7fCoZVe_I$O*e3&D+Etwt zu=wD9Y1*i<;jW`uvvEq0>=l%y=#|gr1jRwG@Dh?&9S%e(j7CNtSb}n0mjXA2A7R1C zzf9!_t)FbR$slvK6ly`Ow0BQ4)MO{S1bWqg7*k9}zXs-+PFIudkaAZA|EqARIDv<= zY`ueHU)|F8-Nv?U+fHNKY|^B$?H#9$ZQDj0+qRv?Y@9TCe!b3p?&qBMeg1^K_N;n^5)i@A~f+9VCR9H>uy-1Y_lfEMm(oU&eNNxb1^VjwJV0C z6OOHPEJz-k{75^;6F)4EcfR)GSJz=$SmZ_9w%{ z{gcUg$uV~{xC>KH$WG;{s>t;U)f6Nq$>Bd-x-o)jwmJi;icrTRg{KZc!4;VPS0Bz> zIQ$yShlIgoo(BzwqCAnzZPcPBr_J>o`B=((&AmUQ%}e#rZB-Fm(%PkK?};=RbW7$Dh0e2F|p_`i?zEAV(FdOs{i_13};A)CI;1bEwkCvDPz@xP7_keq7cvQ zpx0W_d)7I!zyw%V)3;l6^db74^7tB|Bt4w6_phw6D|eb3aubhj)Dc3R&pU*+=Ik8+ z%jh=^BMMNs)w@l^7h3q1kv!NCHlHgc1Pyq5j3Q)KGf&(PpDGu{C0iPMeoV-iO9+rc z+U%t|{l0Qf{7b7{Y)aO>?q#W#fl;OCz)bi@#Us>zdH3i%!uml4eizG>f4sX+=Q5Zc zRtY*s;_HJf7h*N+zU1+ScTTq9rj2z-sfsITRY$Z8J=4>d8CzgUhbi)GMyCu#XaX10 z#NbS?EoDD8d_&p9aXZ_YwB4Hm7Im^G?CjC^sOlp2Ll>^XISE{Uj6chwR+eTg%DpPS zZMu)2&%IY4s$lE(^(EBOra99+ z`)$Q=fcd{Z`)^3sRN()5ga&pD3h84h%dx|v?ty4N8zpH^`^VhrQxQ}VUpF% zg~BJAZ({a8e&p7#3B~Lkt>tJZ%f20#Hjft8BJ3QpP#?tXMJ^CY$DVT$7RGW&?`;Y`6v(b3nFdj zHj0W3ZQQ7XR%*KO6V+aI$`57)&5PyuTU?N=4aH}hWWv)u`eypdua9oHb{Vj6eGw9VRDn;Qt-Lh%BJzvl2Ei# z(y&cJl0lk0O`?_VZdp?YpyduE++B2dyDL2iHR;id2efJ;8B3qhP4E&k&hEP=!W6hk zYgz`U(W_=cvvDr&HZ5Rg#LCsx)V5 zh|w4NfzPwbiyweFr~2$auV>i8OcInZw6UD(Wb#SLoO5Xx5ak1Z7^pHYRA5I@3_ZWg zo5WSq*A=Vg$!pmL97|rh%70S2r@MCd6NzY%gGaFloyd z1bulF0-ym+aRl+hxM&l`%S)1e@c0Pet&bet!n2q6%ic2XuRiX2>`vzCSxh{5d_*J2 zAXBvZn=9O5azmW?^Se}~yU`G~27i)G;la`A?1z%Vnk}P9eD$W}l{t@X)cw&7p*2IP-zVx+(9RdzY`|9?4-8}+mf}lkD%V^mT32JTI8>{4~Y{2Ne_gO%Qs9ui1==| zWmiLPoU>XvT9=k$oFSErT5;B91jd4Qz}Ky}x!Ofu>ZL`SX5m^WZ=ydJXtmOIiu| zv<-y$Yje%}nv)c;4F3)@AnDtX&P~Lnr9ude7&E$WD;5UeBkunV9gVZZ7!lYcE@?>h|-`|Ge^4vdI z1HRc`qoLCpgx)Wyc&_HBFJ=JOio57liMC20XEn6-0D1_@k)cO?i*4r00?#vC9v$3_ zw%}934CDEPbnxXxD=eG%6{Igv$Kc-a^5@d)=h}+}5h~k`UpGcrz9gm3tpl#3!OuEE zvX#KoZ%+iJnNGw{rt>*czQr6`1$I0;1s|EFNhuZqLr3X&1MAWZd%;A!0DvR~9dQj| zKjD*8z6SveG2ER0L}LQ`6P3f%Aj(1z+#Zd6&fu&Rs_a!ehwOk5R+=hc^HW9*jPx2G z9Pa!FPKd!UlZuDfgK5CN7ZZ8vn4*DWIv>8 zqc}+0ATtm9p1ksLb1JZwOJ->wRLY&P>Se+3ozhx|&cj;oGd#}(kWCPbzin?;CZ-y4 zRw{@&^-=YKJfos@MSXiC?+EY1{`w2Yg7<`WbpAG!vBikA2rePV>WE1u%Ya;CI(%^2 zYCg&M+<+nTk2;H4&m@!9!g#d7%nol#W5W$y4~^>a4_&Ytb~}_tmpAAu$lzU#YZ$8C z-EbEjJ|56A&?!X#Q?0l}bC7)&8U;P14i(+OAAXTOky=48I|N}5i56Hc26>|#n@Q`k93_3M^TINpt9&z- z1YUF{7>TNkPl^mw^yAh(wC-cs4_Dl|8f+C1RfJxkiSpP3#ZIk5R@c_$_vnQd0v8$C`Mw?kXT6{b;`6x2kEIT9jlP%tvd8i zd33!%!Jkd{smp9b{nKEJ>DyIujQ&pc%Ez-_jNYh);Jb7z1tL1YPx59+3q-A|I)G7wJ zMAb`mEm2janpM=NS90})rr7fiV6)=jcEpI4Q8k~6x$rFsSA8}#Qtgk$(@-`QRM~n? zCVRZi;k%hd4R{~3KzYg|?&s#HK%D~o}(jF`P*&14Dq-&7VyY zg^-pRNv*2kqi78UOcwfV4a&5g-snrSchKWsJK4>DQT)D2WOgQ1ou~hbdeYA|mwCk{ zb<&8J$6^(gNFO!L?K~fOY+5@GJ&LyaeZ7ze_aTX_(Jz~6`R2TF>IUcb> zH>dntC&peMgReCWThh6iHI~9#PS2v6-g==KgPW9HpN|*lU1;B^mR}1F(ya5|)aj8{ z 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

U8hrJF#pAI|+<`CV_@G#K+&}aPgIACpUWB# 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

uWU~gRSW+-Kxmjqa1lCun0PkTD=q1Xu#% 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%0D5L9UQke&+43^ZnW%-~IjL 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 delta 910798 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 z

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∨bUw{(U!k^w;3a>|Z3C$*?le|Oz42?HSLDVRhQ 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

E|-y*T{f`}dPGUvwic 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

gOQw{R7QWm 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

GvZw<&H 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�uQw05pBlUH0Gou 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 zⓈ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

qOrb%XUc{sXB2eB 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

+fb?|3t&s}>%D@dP#nX^3K^fUV=d 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%0AH>`$F*njuY>=RSm*4mhN<(4eunZNP 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⪻+|^45<~VXD`4fm1 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 delta 189110 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 z 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')) { fwrite( STDERR, sprintf( - 'PHPUnit 9.5.26 by Sebastian Bergmann and contributors.' . PHP_EOL . PHP_EOL . + 'PHPUnit 9.6.21 by Sebastian Bergmann and contributors.' . PHP_EOL . PHP_EOL . 'This version of PHPUnit requires PHP >= 7.3.' . PHP_EOL . 'You are using PHP %s (%s).' . PHP_EOL, PHP_VERSION, @@ -30,35 +30,46 @@ if (version_compare('7.3.0', PHP_VERSION, '>')) { die(1); } -foreach (['dom', 'json', 'libxml', 'mbstring', 'tokenizer', 'xml', 'xmlwriter'] as $extension) { - if (extension_loaded($extension)) { - continue; +$requiredExtensions = ['dom', 'json', 'libxml', 'mbstring', 'tokenizer', 'xml', 'xmlwriter']; + +$unavailableExtensions = array_filter( + $requiredExtensions, + static function ($extension) { + return !extension_loaded($extension); } +); +if ([] !== $unavailableExtensions) { fwrite( STDERR, sprintf( - 'PHPUnit requires the "%s" extension.' . PHP_EOL, - $extension + 'PHPUnit requires the "%s" extensions, but the "%s" %s not available.' . PHP_EOL, + implode('", "', $requiredExtensions), + implode('", "', $unavailableExtensions), + count($unavailableExtensions) === 1 ? 'extension is' : 'extensions are' ) ); die(1); } +unset($requiredExtensions, $unavailableExtensions); + if (__FILE__ === realpath($_SERVER['SCRIPT_NAME'])) { $execute = true; } else { $execute = false; } -$options = getopt('', array('prepend:', 'manifest', 'sbom')); +$options = getopt('', array('prepend:', 'composer-lock', 'manifest', 'sbom')); if (isset($options['prepend'])) { require $options['prepend']; } -if (isset($options['manifest'])) { +if (isset($options['composer-lock'])) { + $printComposerLock = true; +} elseif (isset($options['manifest'])) { $printManifest = true; } elseif (isset($options['sbom'])) { $printSbom = true; @@ -67,44 +78,771 @@ if (isset($options['manifest'])) { unset($options); define('__PHPUNIT_PHAR__', str_replace(DIRECTORY_SEPARATOR, '/', __FILE__)); -define('__PHPUNIT_PHAR_ROOT__', 'phar://phpunit-9.5.26.phar'); +define('__PHPUNIT_PHAR_ROOT__', 'phar://phpunit-9.6.21.phar'); -Phar::mapPhar('phpunit-9.5.26.phar'); +Phar::mapPhar('phpunit-9.6.21.phar'); spl_autoload_register( function ($class) { static $classes = null; if ($classes === null) { - $classes = ['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy.php', - 'PHPUnit\\DeepCopy\\Exception\\CloneException' => '/myclabs-deep-copy/DeepCopy/Exception/CloneException.php', - 'PHPUnit\\DeepCopy\\Exception\\PropertyException' => '/myclabs-deep-copy/DeepCopy/Exception/PropertyException.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Filter' => '/myclabs-deep-copy/DeepCopy/Filter/Filter.php', - 'PHPUnit\\DeepCopy\\Filter\\KeepFilter' => '/myclabs-deep-copy/DeepCopy/Filter/KeepFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\SetNullFilter' => '/myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.php', - 'PHPUnit\\DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\Matcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Matcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyNameMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyTypeMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php', - 'PHPUnit\\DeepCopy\\Reflection\\ReflectionHelper' => '/myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\ShallowCopyFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\TypeFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.php', - 'PHPUnit\\DeepCopy\\TypeMatcher\\TypeMatcher' => '/myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\ExceptionInterface' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php', - 'PHPUnit\\Doctrine\\Instantiator\\Instantiator' => '/doctrine-instantiator/Doctrine/Instantiator/Instantiator.php', - 'PHPUnit\\Doctrine\\Instantiator\\InstantiatorInterface' => '/doctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.php', + $classes = ['Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations' => '/doctrine-deprecations/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.php', + 'PHPUnitPHAR\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy.php', + 'PHPUnitPHAR\\DeepCopy\\Exception\\CloneException' => '/myclabs-deep-copy/DeepCopy/Exception/CloneException.php', + 'PHPUnitPHAR\\DeepCopy\\Exception\\PropertyException' => '/myclabs-deep-copy/DeepCopy/Exception/PropertyException.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\ChainableFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ChainableFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Filter' => '/myclabs-deep-copy/DeepCopy/Filter/Filter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\KeepFilter' => '/myclabs-deep-copy/DeepCopy/Filter/KeepFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\SetNullFilter' => '/myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\Matcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Matcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyNameMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyTypeMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Reflection\\ReflectionHelper' => '/myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\ShallowCopyFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\TypeFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeMatcher\\TypeMatcher' => '/myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.php', + 'PHPUnitPHAR\\Doctrine\\Deprecations\\Deprecation' => '/doctrine-deprecations/Doctrine/Deprecations/Deprecation.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\ExceptionInterface' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Instantiator' => '/doctrine-instantiator/Doctrine/Instantiator/Instantiator.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\InstantiatorInterface' => '/doctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\AbstractNodeVisitor' => '/phpstan-phpdoc-parser/Ast/AbstractNodeVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Attribute' => '/phpstan-phpdoc-parser/Ast/Attribute.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayItemNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFalseNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFalseNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFloatNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFloatNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprIntegerNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprIntegerNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNullNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNullNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprTrueNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprTrueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstFetchNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstFetchNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\DoctrineConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/DoctrineConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\QuoteAwareConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/QuoteAwareConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Node' => '/phpstan-phpdoc-parser/Ast/Node.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeAttributes' => '/phpstan-phpdoc-parser/Ast/NodeAttributes.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeTraverser' => '/phpstan-phpdoc-parser/Ast/NodeTraverser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeVisitor' => '/phpstan-phpdoc-parser/Ast/NodeVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeVisitor\\CloningVisitor' => '/phpstan-phpdoc-parser/Ast/NodeVisitor/CloningVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagMethodValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagMethodValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagPropertyValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagPropertyValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\DeprecatedTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/DeprecatedTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineAnnotation' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineAnnotation.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArgument' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArgument.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArray' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArray.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArrayItem' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArrayItem.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ExtendsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/GenericTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ImplementsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\InvalidTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/InvalidTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueParameterNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MixinTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MixinTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamClosureThisTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamClosureThisTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamImmediatelyInvokedCallableTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamImmediatelyInvokedCallableTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamLaterInvokedCallableTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamLaterInvokedCallableTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamOutTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamOutTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocChildNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocChildNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTextNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PropertyTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\RequireExtendsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/RequireExtendsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\RequireImplementsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/RequireImplementsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ReturnTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\SelfOutTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/SelfOutTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TemplateTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ThrowsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasImportTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasImportTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypelessParamTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypelessParamTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\UsesTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/UsesTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/VarTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeUnsealedTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeUnsealedTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/CallableTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode' => '/phpstan-phpdoc-parser/Ast/Type/CallableTypeParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConditionalTypeForParameterNode' => '/phpstan-phpdoc-parser/Ast/Type/ConditionalTypeForParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConditionalTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ConditionalTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConstTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ConstTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/GenericTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/IdentifierTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/IntersectionTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\InvalidTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/InvalidTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\NullableTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/NullableTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ObjectShapeItemNode' => '/phpstan-phpdoc-parser/Ast/Type/ObjectShapeItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ObjectShapeNode' => '/phpstan-phpdoc-parser/Ast/Type/ObjectShapeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\OffsetAccessTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/OffsetAccessTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ThisTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ThisTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\TypeNode' => '/phpstan-phpdoc-parser/Ast/Type/TypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/UnionTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Lexer\\Lexer' => '/phpstan-phpdoc-parser/Lexer/Lexer.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\ConstExprParser' => '/phpstan-phpdoc-parser/Parser/ConstExprParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\ParserException' => '/phpstan-phpdoc-parser/Parser/ParserException.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\PhpDocParser' => '/phpstan-phpdoc-parser/Parser/PhpDocParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\StringUnescaper' => '/phpstan-phpdoc-parser/Parser/StringUnescaper.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\TokenIterator' => '/phpstan-phpdoc-parser/Parser/TokenIterator.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\TypeParser' => '/phpstan-phpdoc-parser/Parser/TypeParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\DiffElem' => '/phpstan-phpdoc-parser/Printer/DiffElem.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\Differ' => '/phpstan-phpdoc-parser/Printer/Differ.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\Printer' => '/phpstan-phpdoc-parser/Printer/Printer.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Application' => '/phar-io-manifest/values/Application.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ApplicationName' => '/phar-io-manifest/values/ApplicationName.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Author' => '/phar-io-manifest/values/Author.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorCollection' => '/phar-io-manifest/values/AuthorCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorCollectionIterator' => '/phar-io-manifest/values/AuthorCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorElement' => '/phar-io-manifest/xml/AuthorElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorElementCollection' => '/phar-io-manifest/xml/AuthorElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponent' => '/phar-io-manifest/values/BundledComponent.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponentCollection' => '/phar-io-manifest/values/BundledComponentCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponentCollectionIterator' => '/phar-io-manifest/values/BundledComponentCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundlesElement' => '/phar-io-manifest/xml/BundlesElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ComponentElement' => '/phar-io-manifest/xml/ComponentElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ComponentElementCollection' => '/phar-io-manifest/xml/ComponentElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ContainsElement' => '/phar-io-manifest/xml/ContainsElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\CopyrightElement' => '/phar-io-manifest/xml/CopyrightElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\CopyrightInformation' => '/phar-io-manifest/values/CopyrightInformation.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ElementCollection' => '/phar-io-manifest/xml/ElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ElementCollectionException' => '/phar-io-manifest/exceptions/ElementCollectionException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Email' => '/phar-io-manifest/values/Email.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Exception' => '/phar-io-manifest/exceptions/Exception.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtElement' => '/phar-io-manifest/xml/ExtElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtElementCollection' => '/phar-io-manifest/xml/ExtElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Extension' => '/phar-io-manifest/values/Extension.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtensionElement' => '/phar-io-manifest/xml/ExtensionElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidApplicationNameException' => '/phar-io-manifest/exceptions/InvalidApplicationNameException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidEmailException' => '/phar-io-manifest/exceptions/InvalidEmailException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidUrlException' => '/phar-io-manifest/exceptions/InvalidUrlException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Library' => '/phar-io-manifest/values/Library.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\License' => '/phar-io-manifest/values/License.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\LicenseElement' => '/phar-io-manifest/xml/LicenseElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Manifest' => '/phar-io-manifest/values/Manifest.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocument' => '/phar-io-manifest/xml/ManifestDocument.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentException' => '/phar-io-manifest/exceptions/ManifestDocumentException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentLoadingException' => '/phar-io-manifest/exceptions/ManifestDocumentLoadingException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentMapper' => '/phar-io-manifest/ManifestDocumentMapper.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentMapperException' => '/phar-io-manifest/exceptions/ManifestDocumentMapperException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestElement' => '/phar-io-manifest/xml/ManifestElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestElementException' => '/phar-io-manifest/exceptions/ManifestElementException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestLoader' => '/phar-io-manifest/ManifestLoader.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestLoaderException' => '/phar-io-manifest/exceptions/ManifestLoaderException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestSerializer' => '/phar-io-manifest/ManifestSerializer.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\NoEmailAddressException' => '/phar-io-manifest/exceptions/NoEmailAddressException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpElement' => '/phar-io-manifest/xml/PhpElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpExtensionRequirement' => '/phar-io-manifest/values/PhpExtensionRequirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpVersionRequirement' => '/phar-io-manifest/values/PhpVersionRequirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Requirement' => '/phar-io-manifest/values/Requirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequirementCollection' => '/phar-io-manifest/values/RequirementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequirementCollectionIterator' => '/phar-io-manifest/values/RequirementCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequiresElement' => '/phar-io-manifest/xml/RequiresElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Type' => '/phar-io-manifest/values/Type.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Url' => '/phar-io-manifest/values/Url.php', + 'PHPUnitPHAR\\PharIo\\Version\\AbstractVersionConstraint' => '/phar-io-version/constraints/AbstractVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\AndVersionConstraintGroup' => '/phar-io-version/constraints/AndVersionConstraintGroup.php', + 'PHPUnitPHAR\\PharIo\\Version\\AnyVersionConstraint' => '/phar-io-version/constraints/AnyVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\BuildMetaData' => '/phar-io-version/BuildMetaData.php', + 'PHPUnitPHAR\\PharIo\\Version\\ExactVersionConstraint' => '/phar-io-version/constraints/ExactVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\Exception' => '/phar-io-version/exceptions/Exception.php', + 'PHPUnitPHAR\\PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => '/phar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\InvalidPreReleaseSuffixException' => '/phar-io-version/exceptions/InvalidPreReleaseSuffixException.php', + 'PHPUnitPHAR\\PharIo\\Version\\InvalidVersionException' => '/phar-io-version/exceptions/InvalidVersionException.php', + 'PHPUnitPHAR\\PharIo\\Version\\NoBuildMetaDataException' => '/phar-io-version/exceptions/NoBuildMetaDataException.php', + 'PHPUnitPHAR\\PharIo\\Version\\NoPreReleaseSuffixException' => '/phar-io-version/exceptions/NoPreReleaseSuffixException.php', + 'PHPUnitPHAR\\PharIo\\Version\\OrVersionConstraintGroup' => '/phar-io-version/constraints/OrVersionConstraintGroup.php', + 'PHPUnitPHAR\\PharIo\\Version\\PreReleaseSuffix' => '/phar-io-version/PreReleaseSuffix.php', + 'PHPUnitPHAR\\PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\SpecificMajorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\UnsupportedVersionConstraintException' => '/phar-io-version/exceptions/UnsupportedVersionConstraintException.php', + 'PHPUnitPHAR\\PharIo\\Version\\Version' => '/phar-io-version/Version.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraint' => '/phar-io-version/constraints/VersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraintParser' => '/phar-io-version/VersionConstraintParser.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraintValue' => '/phar-io-version/VersionConstraintValue.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionNumber' => '/phar-io-version/VersionNumber.php', + 'PHPUnitPHAR\\PhpParser\\Builder' => '/nikic-php-parser/PhpParser/Builder.php', + 'PHPUnitPHAR\\PhpParser\\BuilderFactory' => '/nikic-php-parser/PhpParser/BuilderFactory.php', + 'PHPUnitPHAR\\PhpParser\\BuilderHelpers' => '/nikic-php-parser/PhpParser/BuilderHelpers.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\ClassConst' => '/nikic-php-parser/PhpParser/Builder/ClassConst.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Class_' => '/nikic-php-parser/PhpParser/Builder/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Declaration' => '/nikic-php-parser/PhpParser/Builder/Declaration.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\EnumCase' => '/nikic-php-parser/PhpParser/Builder/EnumCase.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Enum_' => '/nikic-php-parser/PhpParser/Builder/Enum_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\FunctionLike' => '/nikic-php-parser/PhpParser/Builder/FunctionLike.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Function_' => '/nikic-php-parser/PhpParser/Builder/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Interface_' => '/nikic-php-parser/PhpParser/Builder/Interface_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Method' => '/nikic-php-parser/PhpParser/Builder/Method.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Namespace_' => '/nikic-php-parser/PhpParser/Builder/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Param' => '/nikic-php-parser/PhpParser/Builder/Param.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Property' => '/nikic-php-parser/PhpParser/Builder/Property.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\TraitUse' => '/nikic-php-parser/PhpParser/Builder/TraitUse.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Trait_' => '/nikic-php-parser/PhpParser/Builder/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Use_' => '/nikic-php-parser/PhpParser/Builder/Use_.php', + 'PHPUnitPHAR\\PhpParser\\Comment' => '/nikic-php-parser/PhpParser/Comment.php', + 'PHPUnitPHAR\\PhpParser\\Comment\\Doc' => '/nikic-php-parser/PhpParser/Comment/Doc.php', + 'PHPUnitPHAR\\PhpParser\\ConstExprEvaluationException' => '/nikic-php-parser/PhpParser/ConstExprEvaluationException.php', + 'PHPUnitPHAR\\PhpParser\\ConstExprEvaluator' => '/nikic-php-parser/PhpParser/ConstExprEvaluator.php', + 'PHPUnitPHAR\\PhpParser\\Error' => '/nikic-php-parser/PhpParser/Error.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler' => '/nikic-php-parser/PhpParser/ErrorHandler.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler\\Collecting' => '/nikic-php-parser/PhpParser/ErrorHandler/Collecting.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler\\Throwing' => '/nikic-php-parser/PhpParser/ErrorHandler/Throwing.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\DiffElem' => '/nikic-php-parser/PhpParser/Internal/DiffElem.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\Differ' => '/nikic-php-parser/PhpParser/Internal/Differ.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\PrintableNewAnonClassNode' => '/nikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\TokenStream' => '/nikic-php-parser/PhpParser/Internal/TokenStream.php', + 'PHPUnitPHAR\\PhpParser\\JsonDecoder' => '/nikic-php-parser/PhpParser/JsonDecoder.php', + 'PHPUnitPHAR\\PhpParser\\Lexer' => '/nikic-php-parser/PhpParser/Lexer.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\Emulative' => '/nikic-php-parser/PhpParser/Lexer/Emulative.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyFunctionTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\TokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/TokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\NameContext' => '/nikic-php-parser/PhpParser/NameContext.php', + 'PHPUnitPHAR\\PhpParser\\Node' => '/nikic-php-parser/PhpParser/Node.php', + 'PHPUnitPHAR\\PhpParser\\NodeAbstract' => '/nikic-php-parser/PhpParser/NodeAbstract.php', + 'PHPUnitPHAR\\PhpParser\\NodeDumper' => '/nikic-php-parser/PhpParser/NodeDumper.php', + 'PHPUnitPHAR\\PhpParser\\NodeFinder' => '/nikic-php-parser/PhpParser/NodeFinder.php', + 'PHPUnitPHAR\\PhpParser\\NodeTraverser' => '/nikic-php-parser/PhpParser/NodeTraverser.php', + 'PHPUnitPHAR\\PhpParser\\NodeTraverserInterface' => '/nikic-php-parser/PhpParser/NodeTraverserInterface.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitorAbstract' => '/nikic-php-parser/PhpParser/NodeVisitorAbstract.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\CloningVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\FindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\FirstFindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\NameResolver' => '/nikic-php-parser/PhpParser/NodeVisitor/NameResolver.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\NodeConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\ParentConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Arg' => '/nikic-php-parser/PhpParser/Node/Arg.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Attribute' => '/nikic-php-parser/PhpParser/Node/Attribute.php', + 'PHPUnitPHAR\\PhpParser\\Node\\AttributeGroup' => '/nikic-php-parser/PhpParser/Node/AttributeGroup.php', + 'PHPUnitPHAR\\PhpParser\\Node\\ComplexType' => '/nikic-php-parser/PhpParser/Node/ComplexType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Const_' => '/nikic-php-parser/PhpParser/Node/Const_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr' => '/nikic-php-parser/PhpParser/Node/Expr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrayDimFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayDimFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrayItem' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayItem.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Array_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrowFunction' => '/nikic-php-parser/PhpParser/Node/Expr/ArrowFunction.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Assign' => '/nikic-php-parser/PhpParser/Node/Expr/Assign.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Coalesce.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Concat.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Div.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Minus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mul.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Plus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Pow.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftRight.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignRef' => '/nikic-php-parser/PhpParser/Node/Expr/AssignRef.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Coalesce.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Concat.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Div.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Equal' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Equal.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Greater' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Greater.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Identical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Identical.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Minus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mul.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BitwiseNot' => '/nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BooleanNot' => '/nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\CallLike' => '/nikic-php-parser/PhpParser/Node/Expr/CallLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast' => '/nikic-php-parser/PhpParser/Node/Expr/Cast.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Bool_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Double' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Int_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Object_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\String_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/String_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Unset_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ClassConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Clone_' => '/nikic-php-parser/PhpParser/Node/Expr/Clone_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Closure' => '/nikic-php-parser/PhpParser/Node/Expr/Closure.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ClosureUse' => '/nikic-php-parser/PhpParser/Node/Expr/ClosureUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ConstFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Empty_' => '/nikic-php-parser/PhpParser/Node/Expr/Empty_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Error' => '/nikic-php-parser/PhpParser/Node/Expr/Error.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ErrorSuppress' => '/nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Eval_' => '/nikic-php-parser/PhpParser/Node/Expr/Eval_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Exit_' => '/nikic-php-parser/PhpParser/Node/Expr/Exit_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\FuncCall' => '/nikic-php-parser/PhpParser/Node/Expr/FuncCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Include_' => '/nikic-php-parser/PhpParser/Node/Expr/Include_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Instanceof_' => '/nikic-php-parser/PhpParser/Node/Expr/Instanceof_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Isset_' => '/nikic-php-parser/PhpParser/Node/Expr/Isset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\List_' => '/nikic-php-parser/PhpParser/Node/Expr/List_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Match_' => '/nikic-php-parser/PhpParser/Node/Expr/Match_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\MethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/MethodCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\New_' => '/nikic-php-parser/PhpParser/Node/Expr/New_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\NullsafeMethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\NullsafePropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PostDec' => '/nikic-php-parser/PhpParser/Node/Expr/PostDec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PostInc' => '/nikic-php-parser/PhpParser/Node/Expr/PostInc.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PreDec' => '/nikic-php-parser/PhpParser/Node/Expr/PreDec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PreInc' => '/nikic-php-parser/PhpParser/Node/Expr/PreInc.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Print_' => '/nikic-php-parser/PhpParser/Node/Expr/Print_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ShellExec' => '/nikic-php-parser/PhpParser/Node/Expr/ShellExec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\StaticCall' => '/nikic-php-parser/PhpParser/Node/Expr/StaticCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\StaticPropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Ternary' => '/nikic-php-parser/PhpParser/Node/Expr/Ternary.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Throw_' => '/nikic-php-parser/PhpParser/Node/Expr/Throw_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\UnaryMinus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\UnaryPlus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Variable' => '/nikic-php-parser/PhpParser/Node/Expr/Variable.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\YieldFrom' => '/nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Yield_' => '/nikic-php-parser/PhpParser/Node/Expr/Yield_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\FunctionLike' => '/nikic-php-parser/PhpParser/Node/FunctionLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Identifier' => '/nikic-php-parser/PhpParser/Node/Identifier.php', + 'PHPUnitPHAR\\PhpParser\\Node\\IntersectionType' => '/nikic-php-parser/PhpParser/Node/IntersectionType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\MatchArm' => '/nikic-php-parser/PhpParser/Node/MatchArm.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name' => '/nikic-php-parser/PhpParser/Node/Name.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name\\FullyQualified' => '/nikic-php-parser/PhpParser/Node/Name/FullyQualified.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name\\Relative' => '/nikic-php-parser/PhpParser/Node/Name/Relative.php', + 'PHPUnitPHAR\\PhpParser\\Node\\NullableType' => '/nikic-php-parser/PhpParser/Node/NullableType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Param' => '/nikic-php-parser/PhpParser/Node/Param.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar' => '/nikic-php-parser/PhpParser/Node/Scalar.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\DNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/DNumber.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\Encapsed' => '/nikic-php-parser/PhpParser/Node/Scalar/Encapsed.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\EncapsedStringPart' => '/nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\LNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/LNumber.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Class_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Dir' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\File' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Function_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Line' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Method' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\String_' => '/nikic-php-parser/PhpParser/Node/Scalar/String_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt' => '/nikic-php-parser/PhpParser/Node/Stmt.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Break_' => '/nikic-php-parser/PhpParser/Node/Stmt/Break_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Case_' => '/nikic-php-parser/PhpParser/Node/Stmt/Case_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Catch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassConst' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassConst.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassLike' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassMethod' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Class_' => '/nikic-php-parser/PhpParser/Node/Stmt/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Const_' => '/nikic-php-parser/PhpParser/Node/Stmt/Const_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Continue_' => '/nikic-php-parser/PhpParser/Node/Stmt/Continue_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\DeclareDeclare' => '/nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Declare_' => '/nikic-php-parser/PhpParser/Node/Stmt/Declare_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Do_' => '/nikic-php-parser/PhpParser/Node/Stmt/Do_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Echo_' => '/nikic-php-parser/PhpParser/Node/Stmt/Echo_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ElseIf_' => '/nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Else_' => '/nikic-php-parser/PhpParser/Node/Stmt/Else_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\EnumCase' => '/nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Enum_' => '/nikic-php-parser/PhpParser/Node/Stmt/Enum_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Expression' => '/nikic-php-parser/PhpParser/Node/Stmt/Expression.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Finally_' => '/nikic-php-parser/PhpParser/Node/Stmt/Finally_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\For_' => '/nikic-php-parser/PhpParser/Node/Stmt/For_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Foreach_' => '/nikic-php-parser/PhpParser/Node/Stmt/Foreach_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Function_' => '/nikic-php-parser/PhpParser/Node/Stmt/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Global_' => '/nikic-php-parser/PhpParser/Node/Stmt/Global_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Goto_' => '/nikic-php-parser/PhpParser/Node/Stmt/Goto_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\GroupUse' => '/nikic-php-parser/PhpParser/Node/Stmt/GroupUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\HaltCompiler' => '/nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\If_' => '/nikic-php-parser/PhpParser/Node/Stmt/If_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\InlineHTML' => '/nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Interface_' => '/nikic-php-parser/PhpParser/Node/Stmt/Interface_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Label' => '/nikic-php-parser/PhpParser/Node/Stmt/Label.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Stmt/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Nop' => '/nikic-php-parser/PhpParser/Node/Stmt/Nop.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Property' => '/nikic-php-parser/PhpParser/Node/Stmt/Property.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\PropertyProperty' => '/nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Return_' => '/nikic-php-parser/PhpParser/Node/Stmt/Return_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\StaticVar' => '/nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Static_' => '/nikic-php-parser/PhpParser/Node/Stmt/Static_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Switch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Switch_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Throw_' => '/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUse' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Trait_' => '/nikic-php-parser/PhpParser/Node/Stmt/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TryCatch' => '/nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Unset_' => '/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\UseUse' => '/nikic-php-parser/PhpParser/Node/Stmt/UseUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Use_' => '/nikic-php-parser/PhpParser/Node/Stmt/Use_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\While_' => '/nikic-php-parser/PhpParser/Node/Stmt/While_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\UnionType' => '/nikic-php-parser/PhpParser/Node/UnionType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\VarLikeIdentifier' => '/nikic-php-parser/PhpParser/Node/VarLikeIdentifier.php', + 'PHPUnitPHAR\\PhpParser\\Node\\VariadicPlaceholder' => '/nikic-php-parser/PhpParser/Node/VariadicPlaceholder.php', + 'PHPUnitPHAR\\PhpParser\\Parser' => '/nikic-php-parser/PhpParser/Parser.php', + 'PHPUnitPHAR\\PhpParser\\ParserAbstract' => '/nikic-php-parser/PhpParser/ParserAbstract.php', + 'PHPUnitPHAR\\PhpParser\\ParserFactory' => '/nikic-php-parser/PhpParser/ParserFactory.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Multiple' => '/nikic-php-parser/PhpParser/Parser/Multiple.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Php5' => '/nikic-php-parser/PhpParser/Parser/Php5.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Php7' => '/nikic-php-parser/PhpParser/Parser/Php7.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Tokens' => '/nikic-php-parser/PhpParser/Parser/Tokens.php', + 'PHPUnitPHAR\\PhpParser\\PrettyPrinterAbstract' => '/nikic-php-parser/PhpParser/PrettyPrinterAbstract.php', + 'PHPUnitPHAR\\PhpParser\\PrettyPrinter\\Standard' => '/nikic-php-parser/PhpParser/PrettyPrinter/Standard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\AmbiguousOptionException' => '/sebastian-cli-parser/exceptions/AmbiguousOptionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\Exception' => '/sebastian-cli-parser/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => '/sebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\Parser' => '/sebastian-cli-parser/Parser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => '/sebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\UnknownOptionException' => '/sebastian-cli-parser/exceptions/UnknownOptionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => '/php-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\CodeCoverage' => '/php-code-coverage/CodeCoverage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => '/php-code-coverage/Exception/DeadCodeDetectionNotSupportedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Driver' => '/php-code-coverage/Driver/Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => '/php-code-coverage/Exception/PathExistsButIsNotDirectoryException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => '/php-code-coverage/Driver/PcovDriver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => '/php-code-coverage/Exception/PcovNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => '/php-code-coverage/Driver/PhpdbgDriver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => '/php-code-coverage/Exception/PhpdbgNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Selector' => '/php-code-coverage/Driver/Selector.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => '/php-code-coverage/Exception/WriteOperationFailedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => '/php-code-coverage/Exception/WrongXdebugVersionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => '/php-code-coverage/Driver/Xdebug2Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => '/php-code-coverage/Exception/Xdebug2NotEnabledException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => '/php-code-coverage/Driver/Xdebug3Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => '/php-code-coverage/Exception/Xdebug3NotEnabledException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => '/php-code-coverage/Exception/XdebugNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Exception' => '/php-code-coverage/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Filter' => '/php-code-coverage/Filter.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => '/php-code-coverage/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => '/php-code-coverage/Node/AbstractNode.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Builder' => '/php-code-coverage/Node/Builder.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => '/php-code-coverage/Node/CrapIndex.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Directory' => '/php-code-coverage/Node/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\File' => '/php-code-coverage/Node/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Iterator' => '/php-code-coverage/Node/Iterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ParserException' => '/php-code-coverage/Exception/ParserException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => '/php-code-coverage/ProcessedCodeCoverageData.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => '/php-code-coverage/RawCodeCoverageData.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ReflectionException' => '/php-code-coverage/Exception/ReflectionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => '/php-code-coverage/Exception/ReportAlreadyFinalizedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Clover' => '/php-code-coverage/Report/Clover.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => '/php-code-coverage/Report/Cobertura.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => '/php-code-coverage/Report/Crap4j.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => '/php-code-coverage/Report/Html/Renderer/Dashboard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => '/php-code-coverage/Report/Html/Renderer/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => '/php-code-coverage/Report/Html/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => '/php-code-coverage/Report/Html/Renderer/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => '/php-code-coverage/Report/Html/Renderer.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\PHP' => '/php-code-coverage/Report/PHP.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Text' => '/php-code-coverage/Report/Text.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => '/php-code-coverage/Report/Xml/BuildInformation.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => '/php-code-coverage/Report/Xml/Coverage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => '/php-code-coverage/Report/Xml/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => '/php-code-coverage/Report/Xml/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => '/php-code-coverage/Report/Xml/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => '/php-code-coverage/Report/Xml/Method.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => '/php-code-coverage/Report/Xml/Node.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => '/php-code-coverage/Report/Xml/Project.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => '/php-code-coverage/Report/Xml/Report.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => '/php-code-coverage/Report/Xml/Source.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => '/php-code-coverage/Report/Xml/Tests.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => '/php-code-coverage/Report/Xml/Totals.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => '/php-code-coverage/Report/Xml/Unit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => '/php-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => '/php-code-coverage/StaticAnalysis/CacheWarmer.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => '/php-code-coverage/StaticAnalysis/CachingFileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => '/php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => '/php-code-coverage/StaticAnalysis/FileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => '/php-code-coverage/StaticAnalysis/ParsingFileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\TestIdMissingException' => '/php-code-coverage/Exception/TestIdMissingException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => '/php-code-coverage/Exception/UnintentionallyCoveredCodeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => '/php-code-coverage/Exception/DirectoryCouldNotBeCreatedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => '/php-code-coverage/Util/Filesystem.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\Percentage' => '/php-code-coverage/Util/Percentage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Version' => '/php-code-coverage/Version.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\XmlException' => '/php-code-coverage/Exception/XmlException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => '/sebastian-code-unit-reverse-lookup/Wizard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ClassMethodUnit' => '/sebastian-code-unit/ClassMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ClassUnit' => '/sebastian-code-unit/ClassUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnit' => '/sebastian-code-unit/CodeUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnitCollection' => '/sebastian-code-unit/CodeUnitCollection.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => '/sebastian-code-unit/CodeUnitCollectionIterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\Exception' => '/sebastian-code-unit/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\FunctionUnit' => '/sebastian-code-unit/FunctionUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => '/sebastian-code-unit/InterfaceMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InterfaceUnit' => '/sebastian-code-unit/InterfaceUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => '/sebastian-code-unit/exceptions/InvalidCodeUnitException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\Mapper' => '/sebastian-code-unit/Mapper.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\NoTraitException' => '/sebastian-code-unit/exceptions/NoTraitException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ReflectionException' => '/sebastian-code-unit/exceptions/ReflectionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\TraitMethodUnit' => '/sebastian-code-unit/TraitMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\TraitUnit' => '/sebastian-code-unit/TraitUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ArrayComparator' => '/sebastian-comparator/ArrayComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Comparator' => '/sebastian-comparator/Comparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ComparisonFailure' => '/sebastian-comparator/ComparisonFailure.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DOMNodeComparator' => '/sebastian-comparator/DOMNodeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DateTimeComparator' => '/sebastian-comparator/DateTimeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DoubleComparator' => '/sebastian-comparator/DoubleComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Exception' => '/sebastian-comparator/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ExceptionComparator' => '/sebastian-comparator/ExceptionComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Factory' => '/sebastian-comparator/Factory.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\MockObjectComparator' => '/sebastian-comparator/MockObjectComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\NumericComparator' => '/sebastian-comparator/NumericComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ObjectComparator' => '/sebastian-comparator/ObjectComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ResourceComparator' => '/sebastian-comparator/ResourceComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\RuntimeException' => '/sebastian-comparator/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ScalarComparator' => '/sebastian-comparator/ScalarComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\SplObjectStorageComparator' => '/sebastian-comparator/SplObjectStorageComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\TypeComparator' => '/sebastian-comparator/TypeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Calculator' => '/sebastian-complexity/Calculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Complexity' => '/sebastian-complexity/Complexity/Complexity.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/ComplexityCalculatingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCollection' => '/sebastian-complexity/Complexity/ComplexityCollection.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => '/sebastian-complexity/Complexity/ComplexityCollectionIterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/CyclomaticComplexityCalculatingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Exception' => '/sebastian-complexity/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\RuntimeException' => '/sebastian-complexity/Exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Chunk' => '/sebastian-diff/Chunk.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\ConfigurationException' => '/sebastian-diff/Exception/ConfigurationException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Diff' => '/sebastian-diff/Diff.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Differ' => '/sebastian-diff/Differ.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Exception' => '/sebastian-diff/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\InvalidArgumentException' => '/sebastian-diff/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Line' => '/sebastian-diff/Line.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => '/sebastian-diff/LongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => '/sebastian-diff/Output/AbstractChunkOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => '/sebastian-diff/Output/DiffOnlyOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => '/sebastian-diff/Output/DiffOutputBuilderInterface.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => '/sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => '/sebastian-diff/Output/UnifiedDiffOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Parser' => '/sebastian-diff/Parser.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\Console' => '/sebastian-environment/Console.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\OperatingSystem' => '/sebastian-environment/OperatingSystem.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\Runtime' => '/sebastian-environment/Runtime.php', + 'PHPUnitPHAR\\SebastianBergmann\\Exporter\\Exporter' => '/sebastian-exporter/Exporter.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Facade' => '/php-file-iterator/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Factory' => '/php-file-iterator/Factory.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Iterator' => '/php-file-iterator/Iterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\CodeExporter' => '/sebastian-global-state/CodeExporter.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Exception' => '/sebastian-global-state/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\ExcludeList' => '/sebastian-global-state/ExcludeList.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Restorer' => '/sebastian-global-state/Restorer.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\RuntimeException' => '/sebastian-global-state/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Snapshot' => '/sebastian-global-state/Snapshot.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\Exception' => '/php-invoker/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\Invoker' => '/php-invoker/Invoker.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => '/php-invoker/exceptions/ProcessControlExtensionNotLoadedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\TimeoutException' => '/php-invoker/exceptions/TimeoutException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\Counter' => '/sebastian-lines-of-code/Counter.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\Exception' => '/sebastian-lines-of-code/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => '/sebastian-lines-of-code/Exception/IllogicalValuesException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => '/sebastian-lines-of-code/LineCountingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\LinesOfCode' => '/sebastian-lines-of-code/LinesOfCode.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\NegativeValueException' => '/sebastian-lines-of-code/Exception/NegativeValueException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\RuntimeException' => '/sebastian-lines-of-code/Exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\Enumerator' => '/sebastian-object-enumerator/Enumerator.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\Exception' => '/sebastian-object-enumerator/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => '/sebastian-object-enumerator/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\Exception' => '/sebastian-object-reflector/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => '/sebastian-object-reflector/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\ObjectReflector' => '/sebastian-object-reflector/ObjectReflector.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\Context' => '/sebastian-recursion-context/Context.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\Exception' => '/sebastian-recursion-context/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\InvalidArgumentException' => '/sebastian-recursion-context/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ResourceOperations\\ResourceOperations' => '/sebastian-resource-operations/ResourceOperations.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\Exception' => '/php-text-template/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\InvalidArgumentException' => '/php-text-template/exceptions/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\RuntimeException' => '/php-text-template/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\Template' => '/php-text-template/Template.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Duration' => '/php-timer/Duration.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Exception' => '/php-timer/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\NoActiveTimerException' => '/php-timer/exceptions/NoActiveTimerException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\ResourceUsageFormatter' => '/php-timer/ResourceUsageFormatter.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => '/php-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Timer' => '/php-timer/Timer.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\CallableType' => '/sebastian-type/type/CallableType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Exception' => '/sebastian-type/exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\FalseType' => '/sebastian-type/type/FalseType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\GenericObjectType' => '/sebastian-type/type/GenericObjectType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\IntersectionType' => '/sebastian-type/type/IntersectionType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\IterableType' => '/sebastian-type/type/IterableType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\MixedType' => '/sebastian-type/type/MixedType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\NeverType' => '/sebastian-type/type/NeverType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\NullType' => '/sebastian-type/type/NullType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\ObjectType' => '/sebastian-type/type/ObjectType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Parameter' => '/sebastian-type/Parameter.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\ReflectionMapper' => '/sebastian-type/ReflectionMapper.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\RuntimeException' => '/sebastian-type/exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\SimpleType' => '/sebastian-type/type/SimpleType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\StaticType' => '/sebastian-type/type/StaticType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\TrueType' => '/sebastian-type/type/TrueType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Type' => '/sebastian-type/type/Type.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\TypeName' => '/sebastian-type/TypeName.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\UnionType' => '/sebastian-type/type/UnionType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\UnknownType' => '/sebastian-type/type/UnknownType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\VoidType' => '/sebastian-type/type/VoidType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Version' => '/sebastian-version/Version.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Exception' => '/theseer-tokenizer/Exception.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\NamespaceUri' => '/theseer-tokenizer/NamespaceUri.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\NamespaceUriException' => '/theseer-tokenizer/NamespaceUriException.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Token' => '/theseer-tokenizer/Token.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\TokenCollection' => '/theseer-tokenizer/TokenCollection.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\TokenCollectionException' => '/theseer-tokenizer/TokenCollectionException.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Tokenizer' => '/theseer-tokenizer/Tokenizer.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\XMLSerializer' => '/theseer-tokenizer/XMLSerializer.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\Assert' => '/webmozart-assert/Assert.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\InvalidArgumentException' => '/webmozart-assert/InvalidArgumentException.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\Mixin' => '/webmozart-assert/Mixin.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock' => '/phpdocumentor-reflection-docblock/DocBlock.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlockFactory' => '/phpdocumentor-reflection-docblock/DocBlockFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlockFactoryInterface' => '/phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Description' => '/phpdocumentor-reflection-docblock/DocBlock/Description.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => '/phpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => '/phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Serializer' => '/phpdocumentor-reflection-docblock/DocBlock/Serializer.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tag' => '/phpdocumentor-reflection-docblock/DocBlock/Tag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\TagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/TagFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Author.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Example.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\InvalidTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Link.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Param.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Property.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/See.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Since.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Source.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\TagWithType' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Element' => '/phpdocumentor-reflection-common/Element.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Exception\\PcreException' => '/phpdocumentor-reflection-docblock/Exception/PcreException.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\File' => '/phpdocumentor-reflection-common/File.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Fqsen' => '/phpdocumentor-reflection-common/Fqsen.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\FqsenResolver' => '/phpdocumentor-type-resolver/FqsenResolver.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Location' => '/phpdocumentor-reflection-common/Location.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Project' => '/phpdocumentor-reflection-common/Project.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\ProjectFactory' => '/phpdocumentor-reflection-common/ProjectFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoType' => '/phpdocumentor-type-resolver/PseudoType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ArrayShape' => '/phpdocumentor-type-resolver/PseudoTypes/ArrayShape.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ArrayShapeItem' => '/phpdocumentor-type-resolver/PseudoTypes/ArrayShapeItem.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\CallableString' => '/phpdocumentor-type-resolver/PseudoTypes/CallableString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ConstExpression' => '/phpdocumentor-type-resolver/PseudoTypes/ConstExpression.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\False_' => '/phpdocumentor-type-resolver/PseudoTypes/False_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\FloatValue' => '/phpdocumentor-type-resolver/PseudoTypes/FloatValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\HtmlEscapedString' => '/phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerRange' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerValue' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\List_' => '/phpdocumentor-type-resolver/PseudoTypes/List_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\LiteralString' => '/phpdocumentor-type-resolver/PseudoTypes/LiteralString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\LowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/LowercaseString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NegativeInteger' => '/phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyList' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyList.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyLowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NumericString' => '/phpdocumentor-type-resolver/PseudoTypes/NumericString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\Numeric_' => '/phpdocumentor-type-resolver/PseudoTypes/Numeric_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\PositiveInteger' => '/phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\StringValue' => '/phpdocumentor-type-resolver/PseudoTypes/StringValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\TraitString' => '/phpdocumentor-type-resolver/PseudoTypes/TraitString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\True_' => '/phpdocumentor-type-resolver/PseudoTypes/True_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Type' => '/phpdocumentor-type-resolver/Type.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\TypeResolver' => '/phpdocumentor-type-resolver/TypeResolver.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\AbstractList' => '/phpdocumentor-type-resolver/Types/AbstractList.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\AggregatedType' => '/phpdocumentor-type-resolver/Types/AggregatedType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ArrayKey' => '/phpdocumentor-type-resolver/Types/ArrayKey.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Array_' => '/phpdocumentor-type-resolver/Types/Array_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Boolean' => '/phpdocumentor-type-resolver/Types/Boolean.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\CallableParameter' => '/phpdocumentor-type-resolver/Types/CallableParameter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Callable_' => '/phpdocumentor-type-resolver/Types/Callable_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ClassString' => '/phpdocumentor-type-resolver/Types/ClassString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Collection' => '/phpdocumentor-type-resolver/Types/Collection.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Compound' => '/phpdocumentor-type-resolver/Types/Compound.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Context' => '/phpdocumentor-type-resolver/Types/Context.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ContextFactory' => '/phpdocumentor-type-resolver/Types/ContextFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Expression' => '/phpdocumentor-type-resolver/Types/Expression.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Float_' => '/phpdocumentor-type-resolver/Types/Float_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Integer' => '/phpdocumentor-type-resolver/Types/Integer.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\InterfaceString' => '/phpdocumentor-type-resolver/Types/InterfaceString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Intersection' => '/phpdocumentor-type-resolver/Types/Intersection.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Iterable_' => '/phpdocumentor-type-resolver/Types/Iterable_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Mixed_' => '/phpdocumentor-type-resolver/Types/Mixed_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Never_' => '/phpdocumentor-type-resolver/Types/Never_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Null_' => '/phpdocumentor-type-resolver/Types/Null_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Nullable' => '/phpdocumentor-type-resolver/Types/Nullable.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Object_' => '/phpdocumentor-type-resolver/Types/Object_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Parent_' => '/phpdocumentor-type-resolver/Types/Parent_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Resource_' => '/phpdocumentor-type-resolver/Types/Resource_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Scalar' => '/phpdocumentor-type-resolver/Types/Scalar.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Self_' => '/phpdocumentor-type-resolver/Types/Self_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Static_' => '/phpdocumentor-type-resolver/Types/Static_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\String_' => '/phpdocumentor-type-resolver/Types/String_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\This' => '/phpdocumentor-type-resolver/Types/This.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Void_' => '/phpdocumentor-type-resolver/Types/Void_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Utils' => '/phpdocumentor-reflection-docblock/Utils.php', 'PHPUnit\\Exception' => '/phpunit/Exception.php', 'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => '/phpunit/Framework/Exception/ActualValueIsNotAnObjectException.php', 'PHPUnit\\Framework\\Assert' => '/phpunit/Framework/Assert.php', @@ -156,6 +894,7 @@ spl_autoload_register( 'PHPUnit\\Framework\\Constraint\\LogicalXor' => '/phpunit/Framework/Constraint/Operator/LogicalXor.php', 'PHPUnit\\Framework\\Constraint\\ObjectEquals' => '/phpunit/Framework/Constraint/Object/ObjectEquals.php', 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => '/phpunit/Framework/Constraint/Object/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasProperty' => '/phpunit/Framework/Constraint/Object/ObjectHasProperty.php', 'PHPUnit\\Framework\\Constraint\\Operator' => '/phpunit/Framework/Constraint/Operator/Operator.php', 'PHPUnit\\Framework\\Constraint\\RegularExpression' => '/phpunit/Framework/Constraint/String/RegularExpression.php', 'PHPUnit\\Framework\\Constraint\\SameSize' => '/phpunit/Framework/Constraint/Cardinality/SameSize.php', @@ -200,6 +939,7 @@ spl_autoload_register( 'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => '/phpunit/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php', 'PHPUnit\\Framework\\MockObject\\ClassAlreadyExistsException' => '/phpunit/Framework/MockObject/Exception/ClassAlreadyExistsException.php', 'PHPUnit\\Framework\\MockObject\\ClassIsFinalException' => '/phpunit/Framework/MockObject/Exception/ClassIsFinalException.php', + 'PHPUnit\\Framework\\MockObject\\ClassIsReadonlyException' => '/phpunit/Framework/MockObject/Exception/ClassIsReadonlyException.php', 'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => '/phpunit/Framework/MockObject/ConfigurableMethod.php', 'PHPUnit\\Framework\\MockObject\\ConfigurableMethodsAlreadyInitializedException' => '/phpunit/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php', 'PHPUnit\\Framework\\MockObject\\DuplicateMethodException' => '/phpunit/Framework/MockObject/Exception/DuplicateMethodException.php', @@ -280,326 +1020,6 @@ spl_autoload_register( 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => '/phpunit/Framework/Exception/UnintentionallyCoveredCodeError.php', 'PHPUnit\\Framework\\Warning' => '/phpunit/Framework/Exception/Warning.php', 'PHPUnit\\Framework\\WarningTestCase' => '/phpunit/Framework/WarningTestCase.php', - 'PHPUnit\\PharIo\\Manifest\\Application' => '/phar-io-manifest/values/Application.php', - 'PHPUnit\\PharIo\\Manifest\\ApplicationName' => '/phar-io-manifest/values/ApplicationName.php', - 'PHPUnit\\PharIo\\Manifest\\Author' => '/phar-io-manifest/values/Author.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorCollection' => '/phar-io-manifest/values/AuthorCollection.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorCollectionIterator' => '/phar-io-manifest/values/AuthorCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorElement' => '/phar-io-manifest/xml/AuthorElement.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorElementCollection' => '/phar-io-manifest/xml/AuthorElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponent' => '/phar-io-manifest/values/BundledComponent.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponentCollection' => '/phar-io-manifest/values/BundledComponentCollection.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponentCollectionIterator' => '/phar-io-manifest/values/BundledComponentCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\BundlesElement' => '/phar-io-manifest/xml/BundlesElement.php', - 'PHPUnit\\PharIo\\Manifest\\ComponentElement' => '/phar-io-manifest/xml/ComponentElement.php', - 'PHPUnit\\PharIo\\Manifest\\ComponentElementCollection' => '/phar-io-manifest/xml/ComponentElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\ContainsElement' => '/phar-io-manifest/xml/ContainsElement.php', - 'PHPUnit\\PharIo\\Manifest\\CopyrightElement' => '/phar-io-manifest/xml/CopyrightElement.php', - 'PHPUnit\\PharIo\\Manifest\\CopyrightInformation' => '/phar-io-manifest/values/CopyrightInformation.php', - 'PHPUnit\\PharIo\\Manifest\\ElementCollection' => '/phar-io-manifest/xml/ElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\ElementCollectionException' => '/phar-io-manifest/exceptions/ElementCollectionException.php', - 'PHPUnit\\PharIo\\Manifest\\Email' => '/phar-io-manifest/values/Email.php', - 'PHPUnit\\PharIo\\Manifest\\Exception' => '/phar-io-manifest/exceptions/Exception.php', - 'PHPUnit\\PharIo\\Manifest\\ExtElement' => '/phar-io-manifest/xml/ExtElement.php', - 'PHPUnit\\PharIo\\Manifest\\ExtElementCollection' => '/phar-io-manifest/xml/ExtElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\Extension' => '/phar-io-manifest/values/Extension.php', - 'PHPUnit\\PharIo\\Manifest\\ExtensionElement' => '/phar-io-manifest/xml/ExtensionElement.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidApplicationNameException' => '/phar-io-manifest/exceptions/InvalidApplicationNameException.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidEmailException' => '/phar-io-manifest/exceptions/InvalidEmailException.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidUrlException' => '/phar-io-manifest/exceptions/InvalidUrlException.php', - 'PHPUnit\\PharIo\\Manifest\\Library' => '/phar-io-manifest/values/Library.php', - 'PHPUnit\\PharIo\\Manifest\\License' => '/phar-io-manifest/values/License.php', - 'PHPUnit\\PharIo\\Manifest\\LicenseElement' => '/phar-io-manifest/xml/LicenseElement.php', - 'PHPUnit\\PharIo\\Manifest\\Manifest' => '/phar-io-manifest/values/Manifest.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocument' => '/phar-io-manifest/xml/ManifestDocument.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentException' => '/phar-io-manifest/exceptions/ManifestDocumentException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentLoadingException' => '/phar-io-manifest/exceptions/ManifestDocumentLoadingException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentMapper' => '/phar-io-manifest/ManifestDocumentMapper.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentMapperException' => '/phar-io-manifest/exceptions/ManifestDocumentMapperException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestElement' => '/phar-io-manifest/xml/ManifestElement.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestElementException' => '/phar-io-manifest/exceptions/ManifestElementException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestLoader' => '/phar-io-manifest/ManifestLoader.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestLoaderException' => '/phar-io-manifest/exceptions/ManifestLoaderException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestSerializer' => '/phar-io-manifest/ManifestSerializer.php', - 'PHPUnit\\PharIo\\Manifest\\PhpElement' => '/phar-io-manifest/xml/PhpElement.php', - 'PHPUnit\\PharIo\\Manifest\\PhpExtensionRequirement' => '/phar-io-manifest/values/PhpExtensionRequirement.php', - 'PHPUnit\\PharIo\\Manifest\\PhpVersionRequirement' => '/phar-io-manifest/values/PhpVersionRequirement.php', - 'PHPUnit\\PharIo\\Manifest\\Requirement' => '/phar-io-manifest/values/Requirement.php', - 'PHPUnit\\PharIo\\Manifest\\RequirementCollection' => '/phar-io-manifest/values/RequirementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\RequirementCollectionIterator' => '/phar-io-manifest/values/RequirementCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\RequiresElement' => '/phar-io-manifest/xml/RequiresElement.php', - 'PHPUnit\\PharIo\\Manifest\\Type' => '/phar-io-manifest/values/Type.php', - 'PHPUnit\\PharIo\\Manifest\\Url' => '/phar-io-manifest/values/Url.php', - 'PHPUnit\\PharIo\\Version\\AbstractVersionConstraint' => '/phar-io-version/constraints/AbstractVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\AndVersionConstraintGroup' => '/phar-io-version/constraints/AndVersionConstraintGroup.php', - 'PHPUnit\\PharIo\\Version\\AnyVersionConstraint' => '/phar-io-version/constraints/AnyVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\BuildMetaData' => '/phar-io-version/BuildMetaData.php', - 'PHPUnit\\PharIo\\Version\\ExactVersionConstraint' => '/phar-io-version/constraints/ExactVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\Exception' => '/phar-io-version/exceptions/Exception.php', - 'PHPUnit\\PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => '/phar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\InvalidPreReleaseSuffixException' => '/phar-io-version/exceptions/InvalidPreReleaseSuffixException.php', - 'PHPUnit\\PharIo\\Version\\InvalidVersionException' => '/phar-io-version/exceptions/InvalidVersionException.php', - 'PHPUnit\\PharIo\\Version\\NoBuildMetaDataException' => '/phar-io-version/exceptions/NoBuildMetaDataException.php', - 'PHPUnit\\PharIo\\Version\\NoPreReleaseSuffixException' => '/phar-io-version/exceptions/NoPreReleaseSuffixException.php', - 'PHPUnit\\PharIo\\Version\\OrVersionConstraintGroup' => '/phar-io-version/constraints/OrVersionConstraintGroup.php', - 'PHPUnit\\PharIo\\Version\\PreReleaseSuffix' => '/phar-io-version/PreReleaseSuffix.php', - 'PHPUnit\\PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\SpecificMajorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\UnsupportedVersionConstraintException' => '/phar-io-version/exceptions/UnsupportedVersionConstraintException.php', - 'PHPUnit\\PharIo\\Version\\Version' => '/phar-io-version/Version.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraint' => '/phar-io-version/constraints/VersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraintParser' => '/phar-io-version/VersionConstraintParser.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraintValue' => '/phar-io-version/VersionConstraintValue.php', - 'PHPUnit\\PharIo\\Version\\VersionNumber' => '/phar-io-version/VersionNumber.php', - 'PHPUnit\\PhpParser\\Builder' => '/nikic-php-parser/PhpParser/Builder.php', - 'PHPUnit\\PhpParser\\BuilderFactory' => '/nikic-php-parser/PhpParser/BuilderFactory.php', - 'PHPUnit\\PhpParser\\BuilderHelpers' => '/nikic-php-parser/PhpParser/BuilderHelpers.php', - 'PHPUnit\\PhpParser\\Builder\\ClassConst' => '/nikic-php-parser/PhpParser/Builder/ClassConst.php', - 'PHPUnit\\PhpParser\\Builder\\Class_' => '/nikic-php-parser/PhpParser/Builder/Class_.php', - 'PHPUnit\\PhpParser\\Builder\\Declaration' => '/nikic-php-parser/PhpParser/Builder/Declaration.php', - 'PHPUnit\\PhpParser\\Builder\\EnumCase' => '/nikic-php-parser/PhpParser/Builder/EnumCase.php', - 'PHPUnit\\PhpParser\\Builder\\Enum_' => '/nikic-php-parser/PhpParser/Builder/Enum_.php', - 'PHPUnit\\PhpParser\\Builder\\FunctionLike' => '/nikic-php-parser/PhpParser/Builder/FunctionLike.php', - 'PHPUnit\\PhpParser\\Builder\\Function_' => '/nikic-php-parser/PhpParser/Builder/Function_.php', - 'PHPUnit\\PhpParser\\Builder\\Interface_' => '/nikic-php-parser/PhpParser/Builder/Interface_.php', - 'PHPUnit\\PhpParser\\Builder\\Method' => '/nikic-php-parser/PhpParser/Builder/Method.php', - 'PHPUnit\\PhpParser\\Builder\\Namespace_' => '/nikic-php-parser/PhpParser/Builder/Namespace_.php', - 'PHPUnit\\PhpParser\\Builder\\Param' => '/nikic-php-parser/PhpParser/Builder/Param.php', - 'PHPUnit\\PhpParser\\Builder\\Property' => '/nikic-php-parser/PhpParser/Builder/Property.php', - 'PHPUnit\\PhpParser\\Builder\\TraitUse' => '/nikic-php-parser/PhpParser/Builder/TraitUse.php', - 'PHPUnit\\PhpParser\\Builder\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.php', - 'PHPUnit\\PhpParser\\Builder\\Trait_' => '/nikic-php-parser/PhpParser/Builder/Trait_.php', - 'PHPUnit\\PhpParser\\Builder\\Use_' => '/nikic-php-parser/PhpParser/Builder/Use_.php', - 'PHPUnit\\PhpParser\\Comment' => '/nikic-php-parser/PhpParser/Comment.php', - 'PHPUnit\\PhpParser\\Comment\\Doc' => '/nikic-php-parser/PhpParser/Comment/Doc.php', - 'PHPUnit\\PhpParser\\ConstExprEvaluationException' => '/nikic-php-parser/PhpParser/ConstExprEvaluationException.php', - 'PHPUnit\\PhpParser\\ConstExprEvaluator' => '/nikic-php-parser/PhpParser/ConstExprEvaluator.php', - 'PHPUnit\\PhpParser\\Error' => '/nikic-php-parser/PhpParser/Error.php', - 'PHPUnit\\PhpParser\\ErrorHandler' => '/nikic-php-parser/PhpParser/ErrorHandler.php', - 'PHPUnit\\PhpParser\\ErrorHandler\\Collecting' => '/nikic-php-parser/PhpParser/ErrorHandler/Collecting.php', - 'PHPUnit\\PhpParser\\ErrorHandler\\Throwing' => '/nikic-php-parser/PhpParser/ErrorHandler/Throwing.php', - 'PHPUnit\\PhpParser\\Internal\\DiffElem' => '/nikic-php-parser/PhpParser/Internal/DiffElem.php', - 'PHPUnit\\PhpParser\\Internal\\Differ' => '/nikic-php-parser/PhpParser/Internal/Differ.php', - 'PHPUnit\\PhpParser\\Internal\\PrintableNewAnonClassNode' => '/nikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php', - 'PHPUnit\\PhpParser\\Internal\\TokenStream' => '/nikic-php-parser/PhpParser/Internal/TokenStream.php', - 'PHPUnit\\PhpParser\\JsonDecoder' => '/nikic-php-parser/PhpParser/JsonDecoder.php', - 'PHPUnit\\PhpParser\\Lexer' => '/nikic-php-parser/PhpParser/Lexer.php', - 'PHPUnit\\PhpParser\\Lexer\\Emulative' => '/nikic-php-parser/PhpParser/Lexer/Emulative.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\TokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/TokenEmulator.php', - 'PHPUnit\\PhpParser\\NameContext' => '/nikic-php-parser/PhpParser/NameContext.php', - 'PHPUnit\\PhpParser\\Node' => '/nikic-php-parser/PhpParser/Node.php', - 'PHPUnit\\PhpParser\\NodeAbstract' => '/nikic-php-parser/PhpParser/NodeAbstract.php', - 'PHPUnit\\PhpParser\\NodeDumper' => '/nikic-php-parser/PhpParser/NodeDumper.php', - 'PHPUnit\\PhpParser\\NodeFinder' => '/nikic-php-parser/PhpParser/NodeFinder.php', - 'PHPUnit\\PhpParser\\NodeTraverser' => '/nikic-php-parser/PhpParser/NodeTraverser.php', - 'PHPUnit\\PhpParser\\NodeTraverserInterface' => '/nikic-php-parser/PhpParser/NodeTraverserInterface.php', - 'PHPUnit\\PhpParser\\NodeVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitorAbstract' => '/nikic-php-parser/PhpParser/NodeVisitorAbstract.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\CloningVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\FindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\FirstFindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\NameResolver' => '/nikic-php-parser/PhpParser/NodeVisitor/NameResolver.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\NodeConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\ParentConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.php', - 'PHPUnit\\PhpParser\\Node\\Arg' => '/nikic-php-parser/PhpParser/Node/Arg.php', - 'PHPUnit\\PhpParser\\Node\\Attribute' => '/nikic-php-parser/PhpParser/Node/Attribute.php', - 'PHPUnit\\PhpParser\\Node\\AttributeGroup' => '/nikic-php-parser/PhpParser/Node/AttributeGroup.php', - 'PHPUnit\\PhpParser\\Node\\ComplexType' => '/nikic-php-parser/PhpParser/Node/ComplexType.php', - 'PHPUnit\\PhpParser\\Node\\Const_' => '/nikic-php-parser/PhpParser/Node/Const_.php', - 'PHPUnit\\PhpParser\\Node\\Expr' => '/nikic-php-parser/PhpParser/Node/Expr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrayDimFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayDimFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrayItem' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayItem.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Array_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrowFunction' => '/nikic-php-parser/PhpParser/Node/Expr/ArrowFunction.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Assign' => '/nikic-php-parser/PhpParser/Node/Expr/Assign.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Coalesce.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Concat.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Div.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Minus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mod.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mul.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Plus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Pow.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftRight.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignRef' => '/nikic-php-parser/PhpParser/Node/Expr/AssignRef.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Coalesce.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Concat.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Div.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Equal' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Equal.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Greater' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Greater.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Identical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Identical.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Minus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mod.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mul.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BitwiseNot' => '/nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BooleanNot' => '/nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\CallLike' => '/nikic-php-parser/PhpParser/Node/Expr/CallLike.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast' => '/nikic-php-parser/PhpParser/Node/Expr/Cast.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Bool_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Double' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Int_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Object_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\String_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/String_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Unset_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ClassConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Clone_' => '/nikic-php-parser/PhpParser/Node/Expr/Clone_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Closure' => '/nikic-php-parser/PhpParser/Node/Expr/Closure.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ClosureUse' => '/nikic-php-parser/PhpParser/Node/Expr/ClosureUse.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ConstFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Empty_' => '/nikic-php-parser/PhpParser/Node/Expr/Empty_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Error' => '/nikic-php-parser/PhpParser/Node/Expr/Error.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ErrorSuppress' => '/nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Eval_' => '/nikic-php-parser/PhpParser/Node/Expr/Eval_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Exit_' => '/nikic-php-parser/PhpParser/Node/Expr/Exit_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\FuncCall' => '/nikic-php-parser/PhpParser/Node/Expr/FuncCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Include_' => '/nikic-php-parser/PhpParser/Node/Expr/Include_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Instanceof_' => '/nikic-php-parser/PhpParser/Node/Expr/Instanceof_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Isset_' => '/nikic-php-parser/PhpParser/Node/Expr/Isset_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\List_' => '/nikic-php-parser/PhpParser/Node/Expr/List_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Match_' => '/nikic-php-parser/PhpParser/Node/Expr/Match_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\MethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/MethodCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\New_' => '/nikic-php-parser/PhpParser/Node/Expr/New_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\NullsafeMethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\NullsafePropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PostDec' => '/nikic-php-parser/PhpParser/Node/Expr/PostDec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PostInc' => '/nikic-php-parser/PhpParser/Node/Expr/PostInc.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PreDec' => '/nikic-php-parser/PhpParser/Node/Expr/PreDec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PreInc' => '/nikic-php-parser/PhpParser/Node/Expr/PreInc.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Print_' => '/nikic-php-parser/PhpParser/Node/Expr/Print_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ShellExec' => '/nikic-php-parser/PhpParser/Node/Expr/ShellExec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\StaticCall' => '/nikic-php-parser/PhpParser/Node/Expr/StaticCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\StaticPropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Ternary' => '/nikic-php-parser/PhpParser/Node/Expr/Ternary.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Throw_' => '/nikic-php-parser/PhpParser/Node/Expr/Throw_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\UnaryMinus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\UnaryPlus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Variable' => '/nikic-php-parser/PhpParser/Node/Expr/Variable.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\YieldFrom' => '/nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Yield_' => '/nikic-php-parser/PhpParser/Node/Expr/Yield_.php', - 'PHPUnit\\PhpParser\\Node\\FunctionLike' => '/nikic-php-parser/PhpParser/Node/FunctionLike.php', - 'PHPUnit\\PhpParser\\Node\\Identifier' => '/nikic-php-parser/PhpParser/Node/Identifier.php', - 'PHPUnit\\PhpParser\\Node\\IntersectionType' => '/nikic-php-parser/PhpParser/Node/IntersectionType.php', - 'PHPUnit\\PhpParser\\Node\\MatchArm' => '/nikic-php-parser/PhpParser/Node/MatchArm.php', - 'PHPUnit\\PhpParser\\Node\\Name' => '/nikic-php-parser/PhpParser/Node/Name.php', - 'PHPUnit\\PhpParser\\Node\\Name\\FullyQualified' => '/nikic-php-parser/PhpParser/Node/Name/FullyQualified.php', - 'PHPUnit\\PhpParser\\Node\\Name\\Relative' => '/nikic-php-parser/PhpParser/Node/Name/Relative.php', - 'PHPUnit\\PhpParser\\Node\\NullableType' => '/nikic-php-parser/PhpParser/Node/NullableType.php', - 'PHPUnit\\PhpParser\\Node\\Param' => '/nikic-php-parser/PhpParser/Node/Param.php', - 'PHPUnit\\PhpParser\\Node\\Scalar' => '/nikic-php-parser/PhpParser/Node/Scalar.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\DNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/DNumber.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\Encapsed' => '/nikic-php-parser/PhpParser/Node/Scalar/Encapsed.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\EncapsedStringPart' => '/nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\LNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/LNumber.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Class_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Dir' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\File' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Function_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Line' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Method' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\String_' => '/nikic-php-parser/PhpParser/Node/Scalar/String_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt' => '/nikic-php-parser/PhpParser/Node/Stmt.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Break_' => '/nikic-php-parser/PhpParser/Node/Stmt/Break_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Case_' => '/nikic-php-parser/PhpParser/Node/Stmt/Case_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Catch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassConst' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassConst.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassLike' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassLike.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassMethod' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Class_' => '/nikic-php-parser/PhpParser/Node/Stmt/Class_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Const_' => '/nikic-php-parser/PhpParser/Node/Stmt/Const_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Continue_' => '/nikic-php-parser/PhpParser/Node/Stmt/Continue_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\DeclareDeclare' => '/nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Declare_' => '/nikic-php-parser/PhpParser/Node/Stmt/Declare_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Do_' => '/nikic-php-parser/PhpParser/Node/Stmt/Do_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Echo_' => '/nikic-php-parser/PhpParser/Node/Stmt/Echo_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ElseIf_' => '/nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Else_' => '/nikic-php-parser/PhpParser/Node/Stmt/Else_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\EnumCase' => '/nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Enum_' => '/nikic-php-parser/PhpParser/Node/Stmt/Enum_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Expression' => '/nikic-php-parser/PhpParser/Node/Stmt/Expression.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Finally_' => '/nikic-php-parser/PhpParser/Node/Stmt/Finally_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\For_' => '/nikic-php-parser/PhpParser/Node/Stmt/For_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Foreach_' => '/nikic-php-parser/PhpParser/Node/Stmt/Foreach_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Function_' => '/nikic-php-parser/PhpParser/Node/Stmt/Function_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Global_' => '/nikic-php-parser/PhpParser/Node/Stmt/Global_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Goto_' => '/nikic-php-parser/PhpParser/Node/Stmt/Goto_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\GroupUse' => '/nikic-php-parser/PhpParser/Node/Stmt/GroupUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\HaltCompiler' => '/nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\If_' => '/nikic-php-parser/PhpParser/Node/Stmt/If_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\InlineHTML' => '/nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Interface_' => '/nikic-php-parser/PhpParser/Node/Stmt/Interface_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Label' => '/nikic-php-parser/PhpParser/Node/Stmt/Label.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Stmt/Namespace_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Nop' => '/nikic-php-parser/PhpParser/Node/Stmt/Nop.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Property' => '/nikic-php-parser/PhpParser/Node/Stmt/Property.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\PropertyProperty' => '/nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Return_' => '/nikic-php-parser/PhpParser/Node/Stmt/Return_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\StaticVar' => '/nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Static_' => '/nikic-php-parser/PhpParser/Node/Stmt/Static_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Switch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Switch_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Throw_' => '/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUse' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Trait_' => '/nikic-php-parser/PhpParser/Node/Stmt/Trait_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TryCatch' => '/nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Unset_' => '/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\UseUse' => '/nikic-php-parser/PhpParser/Node/Stmt/UseUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Use_' => '/nikic-php-parser/PhpParser/Node/Stmt/Use_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\While_' => '/nikic-php-parser/PhpParser/Node/Stmt/While_.php', - 'PHPUnit\\PhpParser\\Node\\UnionType' => '/nikic-php-parser/PhpParser/Node/UnionType.php', - 'PHPUnit\\PhpParser\\Node\\VarLikeIdentifier' => '/nikic-php-parser/PhpParser/Node/VarLikeIdentifier.php', - 'PHPUnit\\PhpParser\\Node\\VariadicPlaceholder' => '/nikic-php-parser/PhpParser/Node/VariadicPlaceholder.php', - 'PHPUnit\\PhpParser\\Parser' => '/nikic-php-parser/PhpParser/Parser.php', - 'PHPUnit\\PhpParser\\ParserAbstract' => '/nikic-php-parser/PhpParser/ParserAbstract.php', - 'PHPUnit\\PhpParser\\ParserFactory' => '/nikic-php-parser/PhpParser/ParserFactory.php', - 'PHPUnit\\PhpParser\\Parser\\Multiple' => '/nikic-php-parser/PhpParser/Parser/Multiple.php', - 'PHPUnit\\PhpParser\\Parser\\Php5' => '/nikic-php-parser/PhpParser/Parser/Php5.php', - 'PHPUnit\\PhpParser\\Parser\\Php7' => '/nikic-php-parser/PhpParser/Parser/Php7.php', - 'PHPUnit\\PhpParser\\Parser\\Tokens' => '/nikic-php-parser/PhpParser/Parser/Tokens.php', - 'PHPUnit\\PhpParser\\PrettyPrinterAbstract' => '/nikic-php-parser/PhpParser/PrettyPrinterAbstract.php', - 'PHPUnit\\PhpParser\\PrettyPrinter\\Standard' => '/nikic-php-parser/PhpParser/PrettyPrinter/Standard.php', 'PHPUnit\\Runner\\AfterIncompleteTestHook' => '/phpunit/Runner/Hook/AfterIncompleteTestHook.php', 'PHPUnit\\Runner\\AfterLastTestHook' => '/phpunit/Runner/Hook/AfterLastTestHook.php', 'PHPUnit\\Runner\\AfterRiskyTestHook' => '/phpunit/Runner/Hook/AfterRiskyTestHook.php', @@ -632,206 +1052,6 @@ spl_autoload_register( 'PHPUnit\\Runner\\TestSuiteLoader' => '/phpunit/Runner/TestSuiteLoader.php', 'PHPUnit\\Runner\\TestSuiteSorter' => '/phpunit/Runner/TestSuiteSorter.php', 'PHPUnit\\Runner\\Version' => '/phpunit/Runner/Version.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\AmbiguousOptionException' => '/sebastian-cli-parser/exceptions/AmbiguousOptionException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\Exception' => '/sebastian-cli-parser/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => '/sebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\Parser' => '/sebastian-cli-parser/Parser.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => '/sebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\UnknownOptionException' => '/sebastian-cli-parser/exceptions/UnknownOptionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => '/php-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\CodeCoverage' => '/php-code-coverage/CodeCoverage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => '/php-code-coverage/Exception/DeadCodeDetectionNotSupportedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Driver' => '/php-code-coverage/Driver/Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => '/php-code-coverage/Exception/PathExistsButIsNotDirectoryException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => '/php-code-coverage/Driver/PcovDriver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => '/php-code-coverage/Exception/PcovNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => '/php-code-coverage/Driver/PhpdbgDriver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => '/php-code-coverage/Exception/PhpdbgNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Selector' => '/php-code-coverage/Driver/Selector.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => '/php-code-coverage/Exception/WriteOperationFailedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => '/php-code-coverage/Exception/WrongXdebugVersionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => '/php-code-coverage/Driver/Xdebug2Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => '/php-code-coverage/Exception/Xdebug2NotEnabledException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => '/php-code-coverage/Driver/Xdebug3Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => '/php-code-coverage/Exception/Xdebug3NotEnabledException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => '/php-code-coverage/Exception/XdebugNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Exception' => '/php-code-coverage/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Filter' => '/php-code-coverage/Filter.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => '/php-code-coverage/Exception/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => '/php-code-coverage/Node/AbstractNode.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Builder' => '/php-code-coverage/Node/Builder.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => '/php-code-coverage/Node/CrapIndex.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Directory' => '/php-code-coverage/Node/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\File' => '/php-code-coverage/Node/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Iterator' => '/php-code-coverage/Node/Iterator.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ParserException' => '/php-code-coverage/Exception/ParserException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => '/php-code-coverage/ProcessedCodeCoverageData.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => '/php-code-coverage/RawCodeCoverageData.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ReflectionException' => '/php-code-coverage/Exception/ReflectionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => '/php-code-coverage/Exception/ReportAlreadyFinalizedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Clover' => '/php-code-coverage/Report/Clover.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => '/php-code-coverage/Report/Cobertura.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => '/php-code-coverage/Report/Crap4j.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => '/php-code-coverage/Report/Html/Renderer/Dashboard.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => '/php-code-coverage/Report/Html/Renderer/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => '/php-code-coverage/Report/Html/Facade.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => '/php-code-coverage/Report/Html/Renderer/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => '/php-code-coverage/Report/Html/Renderer.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\PHP' => '/php-code-coverage/Report/PHP.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Text' => '/php-code-coverage/Report/Text.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => '/php-code-coverage/Report/Xml/BuildInformation.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => '/php-code-coverage/Report/Xml/Coverage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => '/php-code-coverage/Report/Xml/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => '/php-code-coverage/Report/Xml/Facade.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => '/php-code-coverage/Report/Xml/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => '/php-code-coverage/Report/Xml/Method.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => '/php-code-coverage/Report/Xml/Node.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => '/php-code-coverage/Report/Xml/Project.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => '/php-code-coverage/Report/Xml/Report.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => '/php-code-coverage/Report/Xml/Source.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => '/php-code-coverage/Report/Xml/Tests.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => '/php-code-coverage/Report/Xml/Totals.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => '/php-code-coverage/Report/Xml/Unit.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => '/php-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => '/php-code-coverage/StaticAnalysis/CacheWarmer.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => '/php-code-coverage/StaticAnalysis/CachingFileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => '/php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => '/php-code-coverage/StaticAnalysis/FileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => '/php-code-coverage/StaticAnalysis/ParsingFileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\TestIdMissingException' => '/php-code-coverage/Exception/TestIdMissingException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => '/php-code-coverage/Exception/UnintentionallyCoveredCodeException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => '/php-code-coverage/Exception/DirectoryCouldNotBeCreatedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => '/php-code-coverage/Util/Filesystem.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\Percentage' => '/php-code-coverage/Util/Percentage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Version' => '/php-code-coverage/Version.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\XmlException' => '/php-code-coverage/Exception/XmlException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => '/sebastian-code-unit-reverse-lookup/Wizard.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ClassMethodUnit' => '/sebastian-code-unit/ClassMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ClassUnit' => '/sebastian-code-unit/ClassUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnit' => '/sebastian-code-unit/CodeUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnitCollection' => '/sebastian-code-unit/CodeUnitCollection.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => '/sebastian-code-unit/CodeUnitCollectionIterator.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\Exception' => '/sebastian-code-unit/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\FunctionUnit' => '/sebastian-code-unit/FunctionUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => '/sebastian-code-unit/InterfaceMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InterfaceUnit' => '/sebastian-code-unit/InterfaceUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => '/sebastian-code-unit/exceptions/InvalidCodeUnitException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\Mapper' => '/sebastian-code-unit/Mapper.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\NoTraitException' => '/sebastian-code-unit/exceptions/NoTraitException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ReflectionException' => '/sebastian-code-unit/exceptions/ReflectionException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\TraitMethodUnit' => '/sebastian-code-unit/TraitMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\TraitUnit' => '/sebastian-code-unit/TraitUnit.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ArrayComparator' => '/sebastian-comparator/ArrayComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Comparator' => '/sebastian-comparator/Comparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ComparisonFailure' => '/sebastian-comparator/ComparisonFailure.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DOMNodeComparator' => '/sebastian-comparator/DOMNodeComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DateTimeComparator' => '/sebastian-comparator/DateTimeComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DoubleComparator' => '/sebastian-comparator/DoubleComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Exception' => '/sebastian-comparator/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ExceptionComparator' => '/sebastian-comparator/ExceptionComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Factory' => '/sebastian-comparator/Factory.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\MockObjectComparator' => '/sebastian-comparator/MockObjectComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\NumericComparator' => '/sebastian-comparator/NumericComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ObjectComparator' => '/sebastian-comparator/ObjectComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ResourceComparator' => '/sebastian-comparator/ResourceComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\RuntimeException' => '/sebastian-comparator/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ScalarComparator' => '/sebastian-comparator/ScalarComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\SplObjectStorageComparator' => '/sebastian-comparator/SplObjectStorageComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\TypeComparator' => '/sebastian-comparator/TypeComparator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Calculator' => '/sebastian-complexity/Calculator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Complexity' => '/sebastian-complexity/Complexity/Complexity.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/ComplexityCalculatingVisitor.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCollection' => '/sebastian-complexity/Complexity/ComplexityCollection.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => '/sebastian-complexity/Complexity/ComplexityCollectionIterator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/CyclomaticComplexityCalculatingVisitor.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Exception' => '/sebastian-complexity/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\RuntimeException' => '/sebastian-complexity/Exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Chunk' => '/sebastian-diff/Chunk.php', - 'PHPUnit\\SebastianBergmann\\Diff\\ConfigurationException' => '/sebastian-diff/Exception/ConfigurationException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Diff' => '/sebastian-diff/Diff.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Differ' => '/sebastian-diff/Differ.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Exception' => '/sebastian-diff/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Diff\\InvalidArgumentException' => '/sebastian-diff/Exception/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Line' => '/sebastian-diff/Line.php', - 'PHPUnit\\SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => '/sebastian-diff/LongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => '/sebastian-diff/Output/AbstractChunkOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => '/sebastian-diff/Output/DiffOnlyOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => '/sebastian-diff/Output/DiffOutputBuilderInterface.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => '/sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => '/sebastian-diff/Output/UnifiedDiffOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Parser' => '/sebastian-diff/Parser.php', - 'PHPUnit\\SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Environment\\Console' => '/sebastian-environment/Console.php', - 'PHPUnit\\SebastianBergmann\\Environment\\OperatingSystem' => '/sebastian-environment/OperatingSystem.php', - 'PHPUnit\\SebastianBergmann\\Environment\\Runtime' => '/sebastian-environment/Runtime.php', - 'PHPUnit\\SebastianBergmann\\Exporter\\Exporter' => '/sebastian-exporter/Exporter.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Facade' => '/php-file-iterator/Facade.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Factory' => '/php-file-iterator/Factory.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Iterator' => '/php-file-iterator/Iterator.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\CodeExporter' => '/sebastian-global-state/CodeExporter.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Exception' => '/sebastian-global-state/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\ExcludeList' => '/sebastian-global-state/ExcludeList.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Restorer' => '/sebastian-global-state/Restorer.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\RuntimeException' => '/sebastian-global-state/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Snapshot' => '/sebastian-global-state/Snapshot.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\Exception' => '/php-invoker/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\Invoker' => '/php-invoker/Invoker.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => '/php-invoker/exceptions/ProcessControlExtensionNotLoadedException.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\TimeoutException' => '/php-invoker/exceptions/TimeoutException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\Counter' => '/sebastian-lines-of-code/Counter.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\Exception' => '/sebastian-lines-of-code/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => '/sebastian-lines-of-code/Exception/IllogicalValuesException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => '/sebastian-lines-of-code/LineCountingVisitor.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\LinesOfCode' => '/sebastian-lines-of-code/LinesOfCode.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\NegativeValueException' => '/sebastian-lines-of-code/Exception/NegativeValueException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\RuntimeException' => '/sebastian-lines-of-code/Exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\Enumerator' => '/sebastian-object-enumerator/Enumerator.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\Exception' => '/sebastian-object-enumerator/Exception.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => '/sebastian-object-enumerator/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\Exception' => '/sebastian-object-reflector/Exception.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => '/sebastian-object-reflector/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\ObjectReflector' => '/sebastian-object-reflector/ObjectReflector.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\Context' => '/sebastian-recursion-context/Context.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\Exception' => '/sebastian-recursion-context/Exception.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\InvalidArgumentException' => '/sebastian-recursion-context/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ResourceOperations\\ResourceOperations' => '/sebastian-resource-operations/ResourceOperations.php', - 'PHPUnit\\SebastianBergmann\\Template\\Exception' => '/php-text-template/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Template\\InvalidArgumentException' => '/php-text-template/exceptions/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\Template\\RuntimeException' => '/php-text-template/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Template\\Template' => '/php-text-template/Template.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Duration' => '/php-timer/Duration.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Exception' => '/php-timer/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Timer\\NoActiveTimerException' => '/php-timer/exceptions/NoActiveTimerException.php', - 'PHPUnit\\SebastianBergmann\\Timer\\ResourceUsageFormatter' => '/php-timer/ResourceUsageFormatter.php', - 'PHPUnit\\SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => '/php-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Timer' => '/php-timer/Timer.php', - 'PHPUnit\\SebastianBergmann\\Type\\CallableType' => '/sebastian-type/type/CallableType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Exception' => '/sebastian-type/exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Type\\FalseType' => '/sebastian-type/type/FalseType.php', - 'PHPUnit\\SebastianBergmann\\Type\\GenericObjectType' => '/sebastian-type/type/GenericObjectType.php', - 'PHPUnit\\SebastianBergmann\\Type\\IntersectionType' => '/sebastian-type/type/IntersectionType.php', - 'PHPUnit\\SebastianBergmann\\Type\\IterableType' => '/sebastian-type/type/IterableType.php', - 'PHPUnit\\SebastianBergmann\\Type\\MixedType' => '/sebastian-type/type/MixedType.php', - 'PHPUnit\\SebastianBergmann\\Type\\NeverType' => '/sebastian-type/type/NeverType.php', - 'PHPUnit\\SebastianBergmann\\Type\\NullType' => '/sebastian-type/type/NullType.php', - 'PHPUnit\\SebastianBergmann\\Type\\ObjectType' => '/sebastian-type/type/ObjectType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Parameter' => '/sebastian-type/Parameter.php', - 'PHPUnit\\SebastianBergmann\\Type\\ReflectionMapper' => '/sebastian-type/ReflectionMapper.php', - 'PHPUnit\\SebastianBergmann\\Type\\RuntimeException' => '/sebastian-type/exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Type\\SimpleType' => '/sebastian-type/type/SimpleType.php', - 'PHPUnit\\SebastianBergmann\\Type\\StaticType' => '/sebastian-type/type/StaticType.php', - 'PHPUnit\\SebastianBergmann\\Type\\TrueType' => '/sebastian-type/type/TrueType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Type' => '/sebastian-type/type/Type.php', - 'PHPUnit\\SebastianBergmann\\Type\\TypeName' => '/sebastian-type/TypeName.php', - 'PHPUnit\\SebastianBergmann\\Type\\UnionType' => '/sebastian-type/type/UnionType.php', - 'PHPUnit\\SebastianBergmann\\Type\\UnknownType' => '/sebastian-type/type/UnknownType.php', - 'PHPUnit\\SebastianBergmann\\Type\\VoidType' => '/sebastian-type/type/VoidType.php', - 'PHPUnit\\SebastianBergmann\\Version' => '/sebastian-version/Version.php', 'PHPUnit\\TextUI\\CliArguments\\Builder' => '/phpunit/TextUI/CliArguments/Builder.php', 'PHPUnit\\TextUI\\CliArguments\\Configuration' => '/phpunit/TextUI/CliArguments/Configuration.php', 'PHPUnit\\TextUI\\CliArguments\\Exception' => '/phpunit/TextUI/CliArguments/Exception.php', @@ -905,8 +1125,8 @@ spl_autoload_register( 'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrator.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromRootToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php', - 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistDirectoriesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistExcludesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php', + 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistIncludesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistIncludesToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\PHPUnit' => '/phpunit/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php', 'PHPUnit\\TextUI\\XmlConfiguration\\Php' => '/phpunit/TextUI/XmlConfiguration/PHP/Php.php', 'PHPUnit\\TextUI\\XmlConfiguration\\PhpHandler' => '/phpunit/TextUI/XmlConfiguration/PHP/PhpHandler.php', @@ -926,14 +1146,6 @@ spl_autoload_register( 'PHPUnit\\TextUI\\XmlConfiguration\\Variable' => '/phpunit/TextUI/XmlConfiguration/PHP/Variable.php', 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollection' => '/phpunit/TextUI/XmlConfiguration/PHP/VariableCollection.php', 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollectionIterator' => '/phpunit/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Exception' => '/theseer-tokenizer/Exception.php', - 'PHPUnit\\TheSeer\\Tokenizer\\NamespaceUri' => '/theseer-tokenizer/NamespaceUri.php', - 'PHPUnit\\TheSeer\\Tokenizer\\NamespaceUriException' => '/theseer-tokenizer/NamespaceUriException.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Token' => '/theseer-tokenizer/Token.php', - 'PHPUnit\\TheSeer\\Tokenizer\\TokenCollection' => '/theseer-tokenizer/TokenCollection.php', - 'PHPUnit\\TheSeer\\Tokenizer\\TokenCollectionException' => '/theseer-tokenizer/TokenCollectionException.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Tokenizer' => '/theseer-tokenizer/Tokenizer.php', - 'PHPUnit\\TheSeer\\Tokenizer\\XMLSerializer' => '/theseer-tokenizer/XMLSerializer.php', 'PHPUnit\\Util\\Annotation\\DocBlock' => '/phpunit/Util/Annotation/DocBlock.php', 'PHPUnit\\Util\\Annotation\\Registry' => '/phpunit/Util/Annotation/Registry.php', 'PHPUnit\\Util\\Blacklist' => '/phpunit/Util/Blacklist.php', @@ -980,105 +1192,6 @@ spl_autoload_register( 'PHPUnit\\Util\\Xml\\SuccessfulSchemaDetectionResult' => '/phpunit/Util/Xml/SuccessfulSchemaDetectionResult.php', 'PHPUnit\\Util\\Xml\\ValidationResult' => '/phpunit/Util/Xml/ValidationResult.php', 'PHPUnit\\Util\\Xml\\Validator' => '/phpunit/Util/Xml/Validator.php', - 'PHPUnit\\Webmozart\\Assert\\Assert' => '/webmozart-assert/Assert.php', - 'PHPUnit\\Webmozart\\Assert\\InvalidArgumentException' => '/webmozart-assert/InvalidArgumentException.php', - 'PHPUnit\\Webmozart\\Assert\\Mixin' => '/webmozart-assert/Mixin.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock' => '/phpdocumentor-reflection-docblock/DocBlock.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlockFactory' => '/phpdocumentor-reflection-docblock/DocBlockFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlockFactoryInterface' => '/phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Description' => '/phpdocumentor-reflection-docblock/DocBlock/Description.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => '/phpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => '/phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Serializer' => '/phpdocumentor-reflection-docblock/DocBlock/Serializer.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tag' => '/phpdocumentor-reflection-docblock/DocBlock/Tag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\TagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/TagFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Author.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Example.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\InvalidTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Link.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Param.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Property.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/See.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Since.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Source.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\TagWithType' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Element' => '/phpdocumentor-reflection-common/Element.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Exception\\PcreException' => '/phpdocumentor-reflection-docblock/Exception/PcreException.php', - 'PHPUnit\\phpDocumentor\\Reflection\\File' => '/phpdocumentor-reflection-common/File.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Fqsen' => '/phpdocumentor-reflection-common/Fqsen.php', - 'PHPUnit\\phpDocumentor\\Reflection\\FqsenResolver' => '/phpdocumentor-type-resolver/FqsenResolver.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Location' => '/phpdocumentor-reflection-common/Location.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Project' => '/phpdocumentor-reflection-common/Project.php', - 'PHPUnit\\phpDocumentor\\Reflection\\ProjectFactory' => '/phpdocumentor-reflection-common/ProjectFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoType' => '/phpdocumentor-type-resolver/PseudoType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\CallableString' => '/phpdocumentor-type-resolver/PseudoTypes/CallableString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\False_' => '/phpdocumentor-type-resolver/PseudoTypes/False_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\HtmlEscapedString' => '/phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerRange' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\List_' => '/phpdocumentor-type-resolver/PseudoTypes/List_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\LiteralString' => '/phpdocumentor-type-resolver/PseudoTypes/LiteralString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\LowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/LowercaseString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NegativeInteger' => '/phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyLowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NumericString' => '/phpdocumentor-type-resolver/PseudoTypes/NumericString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\Numeric_' => '/phpdocumentor-type-resolver/PseudoTypes/Numeric_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\PositiveInteger' => '/phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\TraitString' => '/phpdocumentor-type-resolver/PseudoTypes/TraitString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\True_' => '/phpdocumentor-type-resolver/PseudoTypes/True_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Type' => '/phpdocumentor-type-resolver/Type.php', - 'PHPUnit\\phpDocumentor\\Reflection\\TypeResolver' => '/phpdocumentor-type-resolver/TypeResolver.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\AbstractList' => '/phpdocumentor-type-resolver/Types/AbstractList.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\AggregatedType' => '/phpdocumentor-type-resolver/Types/AggregatedType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ArrayKey' => '/phpdocumentor-type-resolver/Types/ArrayKey.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Array_' => '/phpdocumentor-type-resolver/Types/Array_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Boolean' => '/phpdocumentor-type-resolver/Types/Boolean.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Callable_' => '/phpdocumentor-type-resolver/Types/Callable_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ClassString' => '/phpdocumentor-type-resolver/Types/ClassString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Collection' => '/phpdocumentor-type-resolver/Types/Collection.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Compound' => '/phpdocumentor-type-resolver/Types/Compound.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Context' => '/phpdocumentor-type-resolver/Types/Context.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ContextFactory' => '/phpdocumentor-type-resolver/Types/ContextFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Expression' => '/phpdocumentor-type-resolver/Types/Expression.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Float_' => '/phpdocumentor-type-resolver/Types/Float_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Integer' => '/phpdocumentor-type-resolver/Types/Integer.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\InterfaceString' => '/phpdocumentor-type-resolver/Types/InterfaceString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Intersection' => '/phpdocumentor-type-resolver/Types/Intersection.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Iterable_' => '/phpdocumentor-type-resolver/Types/Iterable_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Mixed_' => '/phpdocumentor-type-resolver/Types/Mixed_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Never_' => '/phpdocumentor-type-resolver/Types/Never_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Null_' => '/phpdocumentor-type-resolver/Types/Null_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Nullable' => '/phpdocumentor-type-resolver/Types/Nullable.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Object_' => '/phpdocumentor-type-resolver/Types/Object_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Parent_' => '/phpdocumentor-type-resolver/Types/Parent_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Resource_' => '/phpdocumentor-type-resolver/Types/Resource_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Scalar' => '/phpdocumentor-type-resolver/Types/Scalar.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Self_' => '/phpdocumentor-type-resolver/Types/Self_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Static_' => '/phpdocumentor-type-resolver/Types/Static_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\String_' => '/phpdocumentor-type-resolver/Types/String_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\This' => '/phpdocumentor-type-resolver/Types/This.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Void_' => '/phpdocumentor-type-resolver/Types/Void_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Utils' => '/phpdocumentor-reflection-docblock/Utils.php', 'Prophecy\\Argument' => '/phpspec-prophecy/Prophecy/Argument.php', 'Prophecy\\Argument\\ArgumentsWildcard' => '/phpspec-prophecy/Prophecy/Argument/ArgumentsWildcard.php', 'Prophecy\\Argument\\Token\\AnyValueToken' => '/phpspec-prophecy/Prophecy/Argument/Token/AnyValueToken.php', @@ -1102,11 +1215,11 @@ spl_autoload_register( 'Prophecy\\Call\\CallCenter' => '/phpspec-prophecy/Prophecy/Call/CallCenter.php', 'Prophecy\\Comparator\\ClosureComparator' => '/phpspec-prophecy/Prophecy/Comparator/ClosureComparator.php', 'Prophecy\\Comparator\\Factory' => '/phpspec-prophecy/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\FactoryProvider' => '/phpspec-prophecy/Prophecy/Comparator/FactoryProvider.php', 'Prophecy\\Comparator\\ProphecyComparator' => '/phpspec-prophecy/Prophecy/Comparator/ProphecyComparator.php', 'Prophecy\\Doubler\\CachedDoubler' => '/phpspec-prophecy/Prophecy/Doubler/CachedDoubler.php', 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/KeywordPatch.php', 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', @@ -1152,7 +1265,6 @@ spl_autoload_register( 'Prophecy\\Exception\\Prophecy\\ProphecyException' => '/phpspec-prophecy/Prophecy/Exception/Prophecy/ProphecyException.php', 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/ClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => '/phpspec-prophecy/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', 'Prophecy\\Prediction\\CallPrediction' => '/phpspec-prophecy/Prophecy/Prediction/CallPrediction.php', 'Prophecy\\Prediction\\CallTimesPrediction' => '/phpspec-prophecy/Prophecy/Prediction/CallTimesPrediction.php', @@ -1176,42 +1288,769 @@ spl_autoload_register( } if (isset($classes[$class])) { - require_once 'phar://phpunit-9.5.26.phar' . $classes[$class]; + require_once 'phar://phpunit-9.6.21.phar' . $classes[$class]; } }, true, false ); -foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy.php', - 'PHPUnit\\DeepCopy\\Exception\\CloneException' => '/myclabs-deep-copy/DeepCopy/Exception/CloneException.php', - 'PHPUnit\\DeepCopy\\Exception\\PropertyException' => '/myclabs-deep-copy/DeepCopy/Exception/PropertyException.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\Filter' => '/myclabs-deep-copy/DeepCopy/Filter/Filter.php', - 'PHPUnit\\DeepCopy\\Filter\\KeepFilter' => '/myclabs-deep-copy/DeepCopy/Filter/KeepFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.php', - 'PHPUnit\\DeepCopy\\Filter\\SetNullFilter' => '/myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.php', - 'PHPUnit\\DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\Matcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Matcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyNameMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.php', - 'PHPUnit\\DeepCopy\\Matcher\\PropertyTypeMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php', - 'PHPUnit\\DeepCopy\\Reflection\\ReflectionHelper' => '/myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\ShallowCopyFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', - 'PHPUnit\\DeepCopy\\TypeFilter\\TypeFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.php', - 'PHPUnit\\DeepCopy\\TypeMatcher\\TypeMatcher' => '/myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\ExceptionInterface' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.php', - 'PHPUnit\\Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php', - 'PHPUnit\\Doctrine\\Instantiator\\Instantiator' => '/doctrine-instantiator/Doctrine/Instantiator/Instantiator.php', - 'PHPUnit\\Doctrine\\Instantiator\\InstantiatorInterface' => '/doctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.php', +foreach (['Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations' => '/doctrine-deprecations/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.php', + 'PHPUnitPHAR\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy.php', + 'PHPUnitPHAR\\DeepCopy\\Exception\\CloneException' => '/myclabs-deep-copy/DeepCopy/Exception/CloneException.php', + 'PHPUnitPHAR\\DeepCopy\\Exception\\PropertyException' => '/myclabs-deep-copy/DeepCopy/Exception/PropertyException.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\ChainableFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ChainableFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => '/myclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\Filter' => '/myclabs-deep-copy/DeepCopy/Filter/Filter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\KeepFilter' => '/myclabs-deep-copy/DeepCopy/Filter/KeepFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Filter\\SetNullFilter' => '/myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\Matcher' => '/myclabs-deep-copy/DeepCopy/Matcher/Matcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyNameMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Matcher\\PropertyTypeMatcher' => '/myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'PHPUnitPHAR\\DeepCopy\\Reflection\\ReflectionHelper' => '/myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\ReplaceFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\ShallowCopyFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeFilter\\TypeFilter' => '/myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.php', + 'PHPUnitPHAR\\DeepCopy\\TypeMatcher\\TypeMatcher' => '/myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.php', + 'PHPUnitPHAR\\Doctrine\\Deprecations\\Deprecation' => '/doctrine-deprecations/Doctrine/Deprecations/Deprecation.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\ExceptionInterface' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => '/doctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\Instantiator' => '/doctrine-instantiator/Doctrine/Instantiator/Instantiator.php', + 'PHPUnitPHAR\\Doctrine\\Instantiator\\InstantiatorInterface' => '/doctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\AbstractNodeVisitor' => '/phpstan-phpdoc-parser/Ast/AbstractNodeVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Attribute' => '/phpstan-phpdoc-parser/Ast/Attribute.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayItemNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprArrayNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFalseNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFalseNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprFloatNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFloatNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprIntegerNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprIntegerNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprNullNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNullNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprTrueNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprTrueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstFetchNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/ConstFetchNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\DoctrineConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/DoctrineConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\ConstExpr\\QuoteAwareConstExprStringNode' => '/phpstan-phpdoc-parser/Ast/ConstExpr/QuoteAwareConstExprStringNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Node' => '/phpstan-phpdoc-parser/Ast/Node.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeAttributes' => '/phpstan-phpdoc-parser/Ast/NodeAttributes.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeTraverser' => '/phpstan-phpdoc-parser/Ast/NodeTraverser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeVisitor' => '/phpstan-phpdoc-parser/Ast/NodeVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\NodeVisitor\\CloningVisitor' => '/phpstan-phpdoc-parser/Ast/NodeVisitor/CloningVisitor.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagMethodValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagMethodValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagPropertyValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagPropertyValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\AssertTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\DeprecatedTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/DeprecatedTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineAnnotation' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineAnnotation.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArgument' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArgument.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArray' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArray.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineArrayItem' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArrayItem.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\Doctrine\\DoctrineTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ExtendsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ExtendsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\GenericTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/GenericTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ImplementsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ImplementsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\InvalidTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/InvalidTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MethodTagValueParameterNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\MixinTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/MixinTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamClosureThisTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamClosureThisTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamImmediatelyInvokedCallableTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamImmediatelyInvokedCallableTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamLaterInvokedCallableTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamLaterInvokedCallableTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamOutTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamOutTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ParamTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ParamTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocChildNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocChildNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTextNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTextNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PropertyTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/PropertyTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\RequireExtendsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/RequireExtendsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\RequireImplementsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/RequireImplementsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ReturnTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ReturnTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\SelfOutTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/SelfOutTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TemplateTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TemplateTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\ThrowsTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/ThrowsTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasImportTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasImportTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypeAliasTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\TypelessParamTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/TypelessParamTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\UsesTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/UsesTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\PhpDoc\\VarTagValueNode' => '/phpstan-phpdoc-parser/Ast/PhpDoc/VarTagValueNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeItemNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayShapeUnsealedTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayShapeUnsealedTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ArrayTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ArrayTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/CallableTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\CallableTypeParameterNode' => '/phpstan-phpdoc-parser/Ast/Type/CallableTypeParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConditionalTypeForParameterNode' => '/phpstan-phpdoc-parser/Ast/Type/ConditionalTypeForParameterNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConditionalTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ConditionalTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ConstTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ConstTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\GenericTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/GenericTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/IdentifierTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\IntersectionTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/IntersectionTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\InvalidTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/InvalidTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\NullableTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/NullableTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ObjectShapeItemNode' => '/phpstan-phpdoc-parser/Ast/Type/ObjectShapeItemNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ObjectShapeNode' => '/phpstan-phpdoc-parser/Ast/Type/ObjectShapeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\OffsetAccessTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/OffsetAccessTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\ThisTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/ThisTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\TypeNode' => '/phpstan-phpdoc-parser/Ast/Type/TypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Ast\\Type\\UnionTypeNode' => '/phpstan-phpdoc-parser/Ast/Type/UnionTypeNode.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Lexer\\Lexer' => '/phpstan-phpdoc-parser/Lexer/Lexer.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\ConstExprParser' => '/phpstan-phpdoc-parser/Parser/ConstExprParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\ParserException' => '/phpstan-phpdoc-parser/Parser/ParserException.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\PhpDocParser' => '/phpstan-phpdoc-parser/Parser/PhpDocParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\StringUnescaper' => '/phpstan-phpdoc-parser/Parser/StringUnescaper.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\TokenIterator' => '/phpstan-phpdoc-parser/Parser/TokenIterator.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Parser\\TypeParser' => '/phpstan-phpdoc-parser/Parser/TypeParser.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\DiffElem' => '/phpstan-phpdoc-parser/Printer/DiffElem.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\Differ' => '/phpstan-phpdoc-parser/Printer/Differ.php', + 'PHPUnitPHAR\\PHPStan\\PhpDocParser\\Printer\\Printer' => '/phpstan-phpdoc-parser/Printer/Printer.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Application' => '/phar-io-manifest/values/Application.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ApplicationName' => '/phar-io-manifest/values/ApplicationName.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Author' => '/phar-io-manifest/values/Author.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorCollection' => '/phar-io-manifest/values/AuthorCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorCollectionIterator' => '/phar-io-manifest/values/AuthorCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorElement' => '/phar-io-manifest/xml/AuthorElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\AuthorElementCollection' => '/phar-io-manifest/xml/AuthorElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponent' => '/phar-io-manifest/values/BundledComponent.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponentCollection' => '/phar-io-manifest/values/BundledComponentCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundledComponentCollectionIterator' => '/phar-io-manifest/values/BundledComponentCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\BundlesElement' => '/phar-io-manifest/xml/BundlesElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ComponentElement' => '/phar-io-manifest/xml/ComponentElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ComponentElementCollection' => '/phar-io-manifest/xml/ComponentElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ContainsElement' => '/phar-io-manifest/xml/ContainsElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\CopyrightElement' => '/phar-io-manifest/xml/CopyrightElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\CopyrightInformation' => '/phar-io-manifest/values/CopyrightInformation.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ElementCollection' => '/phar-io-manifest/xml/ElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ElementCollectionException' => '/phar-io-manifest/exceptions/ElementCollectionException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Email' => '/phar-io-manifest/values/Email.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Exception' => '/phar-io-manifest/exceptions/Exception.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtElement' => '/phar-io-manifest/xml/ExtElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtElementCollection' => '/phar-io-manifest/xml/ExtElementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Extension' => '/phar-io-manifest/values/Extension.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ExtensionElement' => '/phar-io-manifest/xml/ExtensionElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidApplicationNameException' => '/phar-io-manifest/exceptions/InvalidApplicationNameException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidEmailException' => '/phar-io-manifest/exceptions/InvalidEmailException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\InvalidUrlException' => '/phar-io-manifest/exceptions/InvalidUrlException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Library' => '/phar-io-manifest/values/Library.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\License' => '/phar-io-manifest/values/License.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\LicenseElement' => '/phar-io-manifest/xml/LicenseElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Manifest' => '/phar-io-manifest/values/Manifest.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocument' => '/phar-io-manifest/xml/ManifestDocument.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentException' => '/phar-io-manifest/exceptions/ManifestDocumentException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentLoadingException' => '/phar-io-manifest/exceptions/ManifestDocumentLoadingException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentMapper' => '/phar-io-manifest/ManifestDocumentMapper.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestDocumentMapperException' => '/phar-io-manifest/exceptions/ManifestDocumentMapperException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestElement' => '/phar-io-manifest/xml/ManifestElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestElementException' => '/phar-io-manifest/exceptions/ManifestElementException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestLoader' => '/phar-io-manifest/ManifestLoader.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestLoaderException' => '/phar-io-manifest/exceptions/ManifestLoaderException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\ManifestSerializer' => '/phar-io-manifest/ManifestSerializer.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\NoEmailAddressException' => '/phar-io-manifest/exceptions/NoEmailAddressException.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpElement' => '/phar-io-manifest/xml/PhpElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpExtensionRequirement' => '/phar-io-manifest/values/PhpExtensionRequirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\PhpVersionRequirement' => '/phar-io-manifest/values/PhpVersionRequirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Requirement' => '/phar-io-manifest/values/Requirement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequirementCollection' => '/phar-io-manifest/values/RequirementCollection.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequirementCollectionIterator' => '/phar-io-manifest/values/RequirementCollectionIterator.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\RequiresElement' => '/phar-io-manifest/xml/RequiresElement.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Type' => '/phar-io-manifest/values/Type.php', + 'PHPUnitPHAR\\PharIo\\Manifest\\Url' => '/phar-io-manifest/values/Url.php', + 'PHPUnitPHAR\\PharIo\\Version\\AbstractVersionConstraint' => '/phar-io-version/constraints/AbstractVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\AndVersionConstraintGroup' => '/phar-io-version/constraints/AndVersionConstraintGroup.php', + 'PHPUnitPHAR\\PharIo\\Version\\AnyVersionConstraint' => '/phar-io-version/constraints/AnyVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\BuildMetaData' => '/phar-io-version/BuildMetaData.php', + 'PHPUnitPHAR\\PharIo\\Version\\ExactVersionConstraint' => '/phar-io-version/constraints/ExactVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\Exception' => '/phar-io-version/exceptions/Exception.php', + 'PHPUnitPHAR\\PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => '/phar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\InvalidPreReleaseSuffixException' => '/phar-io-version/exceptions/InvalidPreReleaseSuffixException.php', + 'PHPUnitPHAR\\PharIo\\Version\\InvalidVersionException' => '/phar-io-version/exceptions/InvalidVersionException.php', + 'PHPUnitPHAR\\PharIo\\Version\\NoBuildMetaDataException' => '/phar-io-version/exceptions/NoBuildMetaDataException.php', + 'PHPUnitPHAR\\PharIo\\Version\\NoPreReleaseSuffixException' => '/phar-io-version/exceptions/NoPreReleaseSuffixException.php', + 'PHPUnitPHAR\\PharIo\\Version\\OrVersionConstraintGroup' => '/phar-io-version/constraints/OrVersionConstraintGroup.php', + 'PHPUnitPHAR\\PharIo\\Version\\PreReleaseSuffix' => '/phar-io-version/PreReleaseSuffix.php', + 'PHPUnitPHAR\\PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\SpecificMajorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorVersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\UnsupportedVersionConstraintException' => '/phar-io-version/exceptions/UnsupportedVersionConstraintException.php', + 'PHPUnitPHAR\\PharIo\\Version\\Version' => '/phar-io-version/Version.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraint' => '/phar-io-version/constraints/VersionConstraint.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraintParser' => '/phar-io-version/VersionConstraintParser.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionConstraintValue' => '/phar-io-version/VersionConstraintValue.php', + 'PHPUnitPHAR\\PharIo\\Version\\VersionNumber' => '/phar-io-version/VersionNumber.php', + 'PHPUnitPHAR\\PhpParser\\Builder' => '/nikic-php-parser/PhpParser/Builder.php', + 'PHPUnitPHAR\\PhpParser\\BuilderFactory' => '/nikic-php-parser/PhpParser/BuilderFactory.php', + 'PHPUnitPHAR\\PhpParser\\BuilderHelpers' => '/nikic-php-parser/PhpParser/BuilderHelpers.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\ClassConst' => '/nikic-php-parser/PhpParser/Builder/ClassConst.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Class_' => '/nikic-php-parser/PhpParser/Builder/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Declaration' => '/nikic-php-parser/PhpParser/Builder/Declaration.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\EnumCase' => '/nikic-php-parser/PhpParser/Builder/EnumCase.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Enum_' => '/nikic-php-parser/PhpParser/Builder/Enum_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\FunctionLike' => '/nikic-php-parser/PhpParser/Builder/FunctionLike.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Function_' => '/nikic-php-parser/PhpParser/Builder/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Interface_' => '/nikic-php-parser/PhpParser/Builder/Interface_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Method' => '/nikic-php-parser/PhpParser/Builder/Method.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Namespace_' => '/nikic-php-parser/PhpParser/Builder/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Param' => '/nikic-php-parser/PhpParser/Builder/Param.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Property' => '/nikic-php-parser/PhpParser/Builder/Property.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\TraitUse' => '/nikic-php-parser/PhpParser/Builder/TraitUse.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Trait_' => '/nikic-php-parser/PhpParser/Builder/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Builder\\Use_' => '/nikic-php-parser/PhpParser/Builder/Use_.php', + 'PHPUnitPHAR\\PhpParser\\Comment' => '/nikic-php-parser/PhpParser/Comment.php', + 'PHPUnitPHAR\\PhpParser\\Comment\\Doc' => '/nikic-php-parser/PhpParser/Comment/Doc.php', + 'PHPUnitPHAR\\PhpParser\\ConstExprEvaluationException' => '/nikic-php-parser/PhpParser/ConstExprEvaluationException.php', + 'PHPUnitPHAR\\PhpParser\\ConstExprEvaluator' => '/nikic-php-parser/PhpParser/ConstExprEvaluator.php', + 'PHPUnitPHAR\\PhpParser\\Error' => '/nikic-php-parser/PhpParser/Error.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler' => '/nikic-php-parser/PhpParser/ErrorHandler.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler\\Collecting' => '/nikic-php-parser/PhpParser/ErrorHandler/Collecting.php', + 'PHPUnitPHAR\\PhpParser\\ErrorHandler\\Throwing' => '/nikic-php-parser/PhpParser/ErrorHandler/Throwing.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\DiffElem' => '/nikic-php-parser/PhpParser/Internal/DiffElem.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\Differ' => '/nikic-php-parser/PhpParser/Internal/Differ.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\PrintableNewAnonClassNode' => '/nikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php', + 'PHPUnitPHAR\\PhpParser\\Internal\\TokenStream' => '/nikic-php-parser/PhpParser/Internal/TokenStream.php', + 'PHPUnitPHAR\\PhpParser\\JsonDecoder' => '/nikic-php-parser/PhpParser/JsonDecoder.php', + 'PHPUnitPHAR\\PhpParser\\Lexer' => '/nikic-php-parser/PhpParser/Lexer.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\Emulative' => '/nikic-php-parser/PhpParser/Lexer/Emulative.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyFunctionTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php', + 'PHPUnitPHAR\\PhpParser\\Lexer\\TokenEmulator\\TokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/TokenEmulator.php', + 'PHPUnitPHAR\\PhpParser\\NameContext' => '/nikic-php-parser/PhpParser/NameContext.php', + 'PHPUnitPHAR\\PhpParser\\Node' => '/nikic-php-parser/PhpParser/Node.php', + 'PHPUnitPHAR\\PhpParser\\NodeAbstract' => '/nikic-php-parser/PhpParser/NodeAbstract.php', + 'PHPUnitPHAR\\PhpParser\\NodeDumper' => '/nikic-php-parser/PhpParser/NodeDumper.php', + 'PHPUnitPHAR\\PhpParser\\NodeFinder' => '/nikic-php-parser/PhpParser/NodeFinder.php', + 'PHPUnitPHAR\\PhpParser\\NodeTraverser' => '/nikic-php-parser/PhpParser/NodeTraverser.php', + 'PHPUnitPHAR\\PhpParser\\NodeTraverserInterface' => '/nikic-php-parser/PhpParser/NodeTraverserInterface.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitorAbstract' => '/nikic-php-parser/PhpParser/NodeVisitorAbstract.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\CloningVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\FindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\FirstFindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\NameResolver' => '/nikic-php-parser/PhpParser/NodeVisitor/NameResolver.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\NodeConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\NodeVisitor\\ParentConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Arg' => '/nikic-php-parser/PhpParser/Node/Arg.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Attribute' => '/nikic-php-parser/PhpParser/Node/Attribute.php', + 'PHPUnitPHAR\\PhpParser\\Node\\AttributeGroup' => '/nikic-php-parser/PhpParser/Node/AttributeGroup.php', + 'PHPUnitPHAR\\PhpParser\\Node\\ComplexType' => '/nikic-php-parser/PhpParser/Node/ComplexType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Const_' => '/nikic-php-parser/PhpParser/Node/Const_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr' => '/nikic-php-parser/PhpParser/Node/Expr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrayDimFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayDimFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrayItem' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayItem.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Array_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ArrowFunction' => '/nikic-php-parser/PhpParser/Node/Expr/ArrowFunction.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Assign' => '/nikic-php-parser/PhpParser/Node/Expr/Assign.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Coalesce.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Concat.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Div.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Minus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mul.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Plus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Pow.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftRight.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\AssignRef' => '/nikic-php-parser/PhpParser/Node/Expr/AssignRef.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Coalesce.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Concat.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Div.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Equal' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Equal.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Greater' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Greater.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Identical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Identical.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Minus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mul.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BitwiseNot' => '/nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\BooleanNot' => '/nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\CallLike' => '/nikic-php-parser/PhpParser/Node/Expr/CallLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast' => '/nikic-php-parser/PhpParser/Node/Expr/Cast.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Bool_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Double' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Int_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Object_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\String_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/String_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Cast\\Unset_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ClassConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Clone_' => '/nikic-php-parser/PhpParser/Node/Expr/Clone_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Closure' => '/nikic-php-parser/PhpParser/Node/Expr/Closure.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ClosureUse' => '/nikic-php-parser/PhpParser/Node/Expr/ClosureUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ConstFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Empty_' => '/nikic-php-parser/PhpParser/Node/Expr/Empty_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Error' => '/nikic-php-parser/PhpParser/Node/Expr/Error.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ErrorSuppress' => '/nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Eval_' => '/nikic-php-parser/PhpParser/Node/Expr/Eval_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Exit_' => '/nikic-php-parser/PhpParser/Node/Expr/Exit_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\FuncCall' => '/nikic-php-parser/PhpParser/Node/Expr/FuncCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Include_' => '/nikic-php-parser/PhpParser/Node/Expr/Include_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Instanceof_' => '/nikic-php-parser/PhpParser/Node/Expr/Instanceof_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Isset_' => '/nikic-php-parser/PhpParser/Node/Expr/Isset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\List_' => '/nikic-php-parser/PhpParser/Node/Expr/List_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Match_' => '/nikic-php-parser/PhpParser/Node/Expr/Match_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\MethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/MethodCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\New_' => '/nikic-php-parser/PhpParser/Node/Expr/New_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\NullsafeMethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\NullsafePropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PostDec' => '/nikic-php-parser/PhpParser/Node/Expr/PostDec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PostInc' => '/nikic-php-parser/PhpParser/Node/Expr/PostInc.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PreDec' => '/nikic-php-parser/PhpParser/Node/Expr/PreDec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PreInc' => '/nikic-php-parser/PhpParser/Node/Expr/PreInc.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Print_' => '/nikic-php-parser/PhpParser/Node/Expr/Print_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\PropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\ShellExec' => '/nikic-php-parser/PhpParser/Node/Expr/ShellExec.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\StaticCall' => '/nikic-php-parser/PhpParser/Node/Expr/StaticCall.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\StaticPropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Ternary' => '/nikic-php-parser/PhpParser/Node/Expr/Ternary.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Throw_' => '/nikic-php-parser/PhpParser/Node/Expr/Throw_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\UnaryMinus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\UnaryPlus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Variable' => '/nikic-php-parser/PhpParser/Node/Expr/Variable.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\YieldFrom' => '/nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Expr\\Yield_' => '/nikic-php-parser/PhpParser/Node/Expr/Yield_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\FunctionLike' => '/nikic-php-parser/PhpParser/Node/FunctionLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Identifier' => '/nikic-php-parser/PhpParser/Node/Identifier.php', + 'PHPUnitPHAR\\PhpParser\\Node\\IntersectionType' => '/nikic-php-parser/PhpParser/Node/IntersectionType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\MatchArm' => '/nikic-php-parser/PhpParser/Node/MatchArm.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name' => '/nikic-php-parser/PhpParser/Node/Name.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name\\FullyQualified' => '/nikic-php-parser/PhpParser/Node/Name/FullyQualified.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Name\\Relative' => '/nikic-php-parser/PhpParser/Node/Name/Relative.php', + 'PHPUnitPHAR\\PhpParser\\Node\\NullableType' => '/nikic-php-parser/PhpParser/Node/NullableType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Param' => '/nikic-php-parser/PhpParser/Node/Param.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar' => '/nikic-php-parser/PhpParser/Node/Scalar.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\DNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/DNumber.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\Encapsed' => '/nikic-php-parser/PhpParser/Node/Scalar/Encapsed.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\EncapsedStringPart' => '/nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\LNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/LNumber.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Class_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Dir' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\File' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Function_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Line' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Method' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Scalar\\String_' => '/nikic-php-parser/PhpParser/Node/Scalar/String_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt' => '/nikic-php-parser/PhpParser/Node/Stmt.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Break_' => '/nikic-php-parser/PhpParser/Node/Stmt/Break_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Case_' => '/nikic-php-parser/PhpParser/Node/Stmt/Case_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Catch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassConst' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassConst.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassLike' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassLike.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ClassMethod' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Class_' => '/nikic-php-parser/PhpParser/Node/Stmt/Class_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Const_' => '/nikic-php-parser/PhpParser/Node/Stmt/Const_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Continue_' => '/nikic-php-parser/PhpParser/Node/Stmt/Continue_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\DeclareDeclare' => '/nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Declare_' => '/nikic-php-parser/PhpParser/Node/Stmt/Declare_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Do_' => '/nikic-php-parser/PhpParser/Node/Stmt/Do_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Echo_' => '/nikic-php-parser/PhpParser/Node/Stmt/Echo_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\ElseIf_' => '/nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Else_' => '/nikic-php-parser/PhpParser/Node/Stmt/Else_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\EnumCase' => '/nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Enum_' => '/nikic-php-parser/PhpParser/Node/Stmt/Enum_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Expression' => '/nikic-php-parser/PhpParser/Node/Stmt/Expression.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Finally_' => '/nikic-php-parser/PhpParser/Node/Stmt/Finally_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\For_' => '/nikic-php-parser/PhpParser/Node/Stmt/For_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Foreach_' => '/nikic-php-parser/PhpParser/Node/Stmt/Foreach_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Function_' => '/nikic-php-parser/PhpParser/Node/Stmt/Function_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Global_' => '/nikic-php-parser/PhpParser/Node/Stmt/Global_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Goto_' => '/nikic-php-parser/PhpParser/Node/Stmt/Goto_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\GroupUse' => '/nikic-php-parser/PhpParser/Node/Stmt/GroupUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\HaltCompiler' => '/nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\If_' => '/nikic-php-parser/PhpParser/Node/Stmt/If_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\InlineHTML' => '/nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Interface_' => '/nikic-php-parser/PhpParser/Node/Stmt/Interface_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Label' => '/nikic-php-parser/PhpParser/Node/Stmt/Label.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Stmt/Namespace_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Nop' => '/nikic-php-parser/PhpParser/Node/Stmt/Nop.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Property' => '/nikic-php-parser/PhpParser/Node/Stmt/Property.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\PropertyProperty' => '/nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Return_' => '/nikic-php-parser/PhpParser/Node/Stmt/Return_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\StaticVar' => '/nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Static_' => '/nikic-php-parser/PhpParser/Node/Stmt/Static_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Switch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Switch_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Throw_' => '/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUse' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Trait_' => '/nikic-php-parser/PhpParser/Node/Stmt/Trait_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\TryCatch' => '/nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Unset_' => '/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\UseUse' => '/nikic-php-parser/PhpParser/Node/Stmt/UseUse.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\Use_' => '/nikic-php-parser/PhpParser/Node/Stmt/Use_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\Stmt\\While_' => '/nikic-php-parser/PhpParser/Node/Stmt/While_.php', + 'PHPUnitPHAR\\PhpParser\\Node\\UnionType' => '/nikic-php-parser/PhpParser/Node/UnionType.php', + 'PHPUnitPHAR\\PhpParser\\Node\\VarLikeIdentifier' => '/nikic-php-parser/PhpParser/Node/VarLikeIdentifier.php', + 'PHPUnitPHAR\\PhpParser\\Node\\VariadicPlaceholder' => '/nikic-php-parser/PhpParser/Node/VariadicPlaceholder.php', + 'PHPUnitPHAR\\PhpParser\\Parser' => '/nikic-php-parser/PhpParser/Parser.php', + 'PHPUnitPHAR\\PhpParser\\ParserAbstract' => '/nikic-php-parser/PhpParser/ParserAbstract.php', + 'PHPUnitPHAR\\PhpParser\\ParserFactory' => '/nikic-php-parser/PhpParser/ParserFactory.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Multiple' => '/nikic-php-parser/PhpParser/Parser/Multiple.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Php5' => '/nikic-php-parser/PhpParser/Parser/Php5.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Php7' => '/nikic-php-parser/PhpParser/Parser/Php7.php', + 'PHPUnitPHAR\\PhpParser\\Parser\\Tokens' => '/nikic-php-parser/PhpParser/Parser/Tokens.php', + 'PHPUnitPHAR\\PhpParser\\PrettyPrinterAbstract' => '/nikic-php-parser/PhpParser/PrettyPrinterAbstract.php', + 'PHPUnitPHAR\\PhpParser\\PrettyPrinter\\Standard' => '/nikic-php-parser/PhpParser/PrettyPrinter/Standard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\AmbiguousOptionException' => '/sebastian-cli-parser/exceptions/AmbiguousOptionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\Exception' => '/sebastian-cli-parser/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => '/sebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\Parser' => '/sebastian-cli-parser/Parser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => '/sebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CliParser\\UnknownOptionException' => '/sebastian-cli-parser/exceptions/UnknownOptionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => '/php-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\CodeCoverage' => '/php-code-coverage/CodeCoverage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => '/php-code-coverage/Exception/DeadCodeDetectionNotSupportedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Driver' => '/php-code-coverage/Driver/Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => '/php-code-coverage/Exception/PathExistsButIsNotDirectoryException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => '/php-code-coverage/Driver/PcovDriver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => '/php-code-coverage/Exception/PcovNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => '/php-code-coverage/Driver/PhpdbgDriver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => '/php-code-coverage/Exception/PhpdbgNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Selector' => '/php-code-coverage/Driver/Selector.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => '/php-code-coverage/Exception/WriteOperationFailedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => '/php-code-coverage/Exception/WrongXdebugVersionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => '/php-code-coverage/Driver/Xdebug2Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => '/php-code-coverage/Exception/Xdebug2NotEnabledException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => '/php-code-coverage/Driver/Xdebug3Driver.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => '/php-code-coverage/Exception/Xdebug3NotEnabledException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => '/php-code-coverage/Exception/XdebugNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Exception' => '/php-code-coverage/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Filter' => '/php-code-coverage/Filter.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => '/php-code-coverage/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => '/php-code-coverage/Node/AbstractNode.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Builder' => '/php-code-coverage/Node/Builder.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => '/php-code-coverage/Node/CrapIndex.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Directory' => '/php-code-coverage/Node/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\File' => '/php-code-coverage/Node/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Node\\Iterator' => '/php-code-coverage/Node/Iterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ParserException' => '/php-code-coverage/Exception/ParserException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => '/php-code-coverage/ProcessedCodeCoverageData.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => '/php-code-coverage/RawCodeCoverageData.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ReflectionException' => '/php-code-coverage/Exception/ReflectionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => '/php-code-coverage/Exception/ReportAlreadyFinalizedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Clover' => '/php-code-coverage/Report/Clover.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => '/php-code-coverage/Report/Cobertura.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => '/php-code-coverage/Report/Crap4j.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => '/php-code-coverage/Report/Html/Renderer/Dashboard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => '/php-code-coverage/Report/Html/Renderer/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => '/php-code-coverage/Report/Html/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => '/php-code-coverage/Report/Html/Renderer/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => '/php-code-coverage/Report/Html/Renderer.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\PHP' => '/php-code-coverage/Report/PHP.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Text' => '/php-code-coverage/Report/Text.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => '/php-code-coverage/Report/Xml/BuildInformation.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => '/php-code-coverage/Report/Xml/Coverage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => '/php-code-coverage/Report/Xml/Directory.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => '/php-code-coverage/Report/Xml/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => '/php-code-coverage/Report/Xml/File.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => '/php-code-coverage/Report/Xml/Method.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => '/php-code-coverage/Report/Xml/Node.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => '/php-code-coverage/Report/Xml/Project.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => '/php-code-coverage/Report/Xml/Report.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => '/php-code-coverage/Report/Xml/Source.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => '/php-code-coverage/Report/Xml/Tests.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => '/php-code-coverage/Report/Xml/Totals.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => '/php-code-coverage/Report/Xml/Unit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => '/php-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => '/php-code-coverage/StaticAnalysis/CacheWarmer.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => '/php-code-coverage/StaticAnalysis/CachingFileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => '/php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => '/php-code-coverage/StaticAnalysis/FileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => '/php-code-coverage/StaticAnalysis/ParsingFileAnalyser.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\TestIdMissingException' => '/php-code-coverage/Exception/TestIdMissingException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => '/php-code-coverage/Exception/UnintentionallyCoveredCodeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => '/php-code-coverage/Exception/DirectoryCouldNotBeCreatedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => '/php-code-coverage/Util/Filesystem.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Util\\Percentage' => '/php-code-coverage/Util/Percentage.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\Version' => '/php-code-coverage/Version.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeCoverage\\XmlException' => '/php-code-coverage/Exception/XmlException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => '/sebastian-code-unit-reverse-lookup/Wizard.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ClassMethodUnit' => '/sebastian-code-unit/ClassMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ClassUnit' => '/sebastian-code-unit/ClassUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnit' => '/sebastian-code-unit/CodeUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnitCollection' => '/sebastian-code-unit/CodeUnitCollection.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => '/sebastian-code-unit/CodeUnitCollectionIterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\Exception' => '/sebastian-code-unit/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\FunctionUnit' => '/sebastian-code-unit/FunctionUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => '/sebastian-code-unit/InterfaceMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InterfaceUnit' => '/sebastian-code-unit/InterfaceUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => '/sebastian-code-unit/exceptions/InvalidCodeUnitException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\Mapper' => '/sebastian-code-unit/Mapper.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\NoTraitException' => '/sebastian-code-unit/exceptions/NoTraitException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\ReflectionException' => '/sebastian-code-unit/exceptions/ReflectionException.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\TraitMethodUnit' => '/sebastian-code-unit/TraitMethodUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\CodeUnit\\TraitUnit' => '/sebastian-code-unit/TraitUnit.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ArrayComparator' => '/sebastian-comparator/ArrayComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Comparator' => '/sebastian-comparator/Comparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ComparisonFailure' => '/sebastian-comparator/ComparisonFailure.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DOMNodeComparator' => '/sebastian-comparator/DOMNodeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DateTimeComparator' => '/sebastian-comparator/DateTimeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\DoubleComparator' => '/sebastian-comparator/DoubleComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Exception' => '/sebastian-comparator/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ExceptionComparator' => '/sebastian-comparator/ExceptionComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\Factory' => '/sebastian-comparator/Factory.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\MockObjectComparator' => '/sebastian-comparator/MockObjectComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\NumericComparator' => '/sebastian-comparator/NumericComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ObjectComparator' => '/sebastian-comparator/ObjectComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ResourceComparator' => '/sebastian-comparator/ResourceComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\RuntimeException' => '/sebastian-comparator/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\ScalarComparator' => '/sebastian-comparator/ScalarComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\SplObjectStorageComparator' => '/sebastian-comparator/SplObjectStorageComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Comparator\\TypeComparator' => '/sebastian-comparator/TypeComparator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Calculator' => '/sebastian-complexity/Calculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Complexity' => '/sebastian-complexity/Complexity/Complexity.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/ComplexityCalculatingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCollection' => '/sebastian-complexity/Complexity/ComplexityCollection.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => '/sebastian-complexity/Complexity/ComplexityCollectionIterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/CyclomaticComplexityCalculatingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\Exception' => '/sebastian-complexity/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Complexity\\RuntimeException' => '/sebastian-complexity/Exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Chunk' => '/sebastian-diff/Chunk.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\ConfigurationException' => '/sebastian-diff/Exception/ConfigurationException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Diff' => '/sebastian-diff/Diff.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Differ' => '/sebastian-diff/Differ.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Exception' => '/sebastian-diff/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\InvalidArgumentException' => '/sebastian-diff/Exception/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Line' => '/sebastian-diff/Line.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => '/sebastian-diff/LongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => '/sebastian-diff/Output/AbstractChunkOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => '/sebastian-diff/Output/DiffOnlyOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => '/sebastian-diff/Output/DiffOutputBuilderInterface.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => '/sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => '/sebastian-diff/Output/UnifiedDiffOutputBuilder.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\Parser' => '/sebastian-diff/Parser.php', + 'PHPUnitPHAR\\SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\Console' => '/sebastian-environment/Console.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\OperatingSystem' => '/sebastian-environment/OperatingSystem.php', + 'PHPUnitPHAR\\SebastianBergmann\\Environment\\Runtime' => '/sebastian-environment/Runtime.php', + 'PHPUnitPHAR\\SebastianBergmann\\Exporter\\Exporter' => '/sebastian-exporter/Exporter.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Facade' => '/php-file-iterator/Facade.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Factory' => '/php-file-iterator/Factory.php', + 'PHPUnitPHAR\\SebastianBergmann\\FileIterator\\Iterator' => '/php-file-iterator/Iterator.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\CodeExporter' => '/sebastian-global-state/CodeExporter.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Exception' => '/sebastian-global-state/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\ExcludeList' => '/sebastian-global-state/ExcludeList.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Restorer' => '/sebastian-global-state/Restorer.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\RuntimeException' => '/sebastian-global-state/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\GlobalState\\Snapshot' => '/sebastian-global-state/Snapshot.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\Exception' => '/php-invoker/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\Invoker' => '/php-invoker/Invoker.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => '/php-invoker/exceptions/ProcessControlExtensionNotLoadedException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Invoker\\TimeoutException' => '/php-invoker/exceptions/TimeoutException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\Counter' => '/sebastian-lines-of-code/Counter.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\Exception' => '/sebastian-lines-of-code/Exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => '/sebastian-lines-of-code/Exception/IllogicalValuesException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => '/sebastian-lines-of-code/LineCountingVisitor.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\LinesOfCode' => '/sebastian-lines-of-code/LinesOfCode.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\NegativeValueException' => '/sebastian-lines-of-code/Exception/NegativeValueException.php', + 'PHPUnitPHAR\\SebastianBergmann\\LinesOfCode\\RuntimeException' => '/sebastian-lines-of-code/Exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\Enumerator' => '/sebastian-object-enumerator/Enumerator.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\Exception' => '/sebastian-object-enumerator/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => '/sebastian-object-enumerator/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\Exception' => '/sebastian-object-reflector/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => '/sebastian-object-reflector/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ObjectReflector\\ObjectReflector' => '/sebastian-object-reflector/ObjectReflector.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\Context' => '/sebastian-recursion-context/Context.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\Exception' => '/sebastian-recursion-context/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\RecursionContext\\InvalidArgumentException' => '/sebastian-recursion-context/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\ResourceOperations\\ResourceOperations' => '/sebastian-resource-operations/ResourceOperations.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\Exception' => '/php-text-template/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\InvalidArgumentException' => '/php-text-template/exceptions/InvalidArgumentException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\RuntimeException' => '/php-text-template/exceptions/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Template\\Template' => '/php-text-template/Template.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Duration' => '/php-timer/Duration.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Exception' => '/php-timer/exceptions/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\NoActiveTimerException' => '/php-timer/exceptions/NoActiveTimerException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\ResourceUsageFormatter' => '/php-timer/ResourceUsageFormatter.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => '/php-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Timer\\Timer' => '/php-timer/Timer.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\CallableType' => '/sebastian-type/type/CallableType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Exception' => '/sebastian-type/exception/Exception.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\FalseType' => '/sebastian-type/type/FalseType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\GenericObjectType' => '/sebastian-type/type/GenericObjectType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\IntersectionType' => '/sebastian-type/type/IntersectionType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\IterableType' => '/sebastian-type/type/IterableType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\MixedType' => '/sebastian-type/type/MixedType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\NeverType' => '/sebastian-type/type/NeverType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\NullType' => '/sebastian-type/type/NullType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\ObjectType' => '/sebastian-type/type/ObjectType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Parameter' => '/sebastian-type/Parameter.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\ReflectionMapper' => '/sebastian-type/ReflectionMapper.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\RuntimeException' => '/sebastian-type/exception/RuntimeException.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\SimpleType' => '/sebastian-type/type/SimpleType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\StaticType' => '/sebastian-type/type/StaticType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\TrueType' => '/sebastian-type/type/TrueType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\Type' => '/sebastian-type/type/Type.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\TypeName' => '/sebastian-type/TypeName.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\UnionType' => '/sebastian-type/type/UnionType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\UnknownType' => '/sebastian-type/type/UnknownType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Type\\VoidType' => '/sebastian-type/type/VoidType.php', + 'PHPUnitPHAR\\SebastianBergmann\\Version' => '/sebastian-version/Version.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Exception' => '/theseer-tokenizer/Exception.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\NamespaceUri' => '/theseer-tokenizer/NamespaceUri.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\NamespaceUriException' => '/theseer-tokenizer/NamespaceUriException.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Token' => '/theseer-tokenizer/Token.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\TokenCollection' => '/theseer-tokenizer/TokenCollection.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\TokenCollectionException' => '/theseer-tokenizer/TokenCollectionException.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\Tokenizer' => '/theseer-tokenizer/Tokenizer.php', + 'PHPUnitPHAR\\TheSeer\\Tokenizer\\XMLSerializer' => '/theseer-tokenizer/XMLSerializer.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\Assert' => '/webmozart-assert/Assert.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\InvalidArgumentException' => '/webmozart-assert/InvalidArgumentException.php', + 'PHPUnitPHAR\\Webmozart\\Assert\\Mixin' => '/webmozart-assert/Mixin.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock' => '/phpdocumentor-reflection-docblock/DocBlock.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlockFactory' => '/phpdocumentor-reflection-docblock/DocBlockFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlockFactoryInterface' => '/phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Description' => '/phpdocumentor-reflection-docblock/DocBlock/Description.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => '/phpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => '/phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Serializer' => '/phpdocumentor-reflection-docblock/DocBlock/Serializer.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tag' => '/phpdocumentor-reflection-docblock/DocBlock/Tag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\TagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/TagFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Author.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Example.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\InvalidTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Link.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Param.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Property.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/See.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Since.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Source.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\TagWithType' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Element' => '/phpdocumentor-reflection-common/Element.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Exception\\PcreException' => '/phpdocumentor-reflection-docblock/Exception/PcreException.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\File' => '/phpdocumentor-reflection-common/File.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Fqsen' => '/phpdocumentor-reflection-common/Fqsen.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\FqsenResolver' => '/phpdocumentor-type-resolver/FqsenResolver.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Location' => '/phpdocumentor-reflection-common/Location.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Project' => '/phpdocumentor-reflection-common/Project.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\ProjectFactory' => '/phpdocumentor-reflection-common/ProjectFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoType' => '/phpdocumentor-type-resolver/PseudoType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ArrayShape' => '/phpdocumentor-type-resolver/PseudoTypes/ArrayShape.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ArrayShapeItem' => '/phpdocumentor-type-resolver/PseudoTypes/ArrayShapeItem.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\CallableString' => '/phpdocumentor-type-resolver/PseudoTypes/CallableString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\ConstExpression' => '/phpdocumentor-type-resolver/PseudoTypes/ConstExpression.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\False_' => '/phpdocumentor-type-resolver/PseudoTypes/False_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\FloatValue' => '/phpdocumentor-type-resolver/PseudoTypes/FloatValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\HtmlEscapedString' => '/phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerRange' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerValue' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\List_' => '/phpdocumentor-type-resolver/PseudoTypes/List_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\LiteralString' => '/phpdocumentor-type-resolver/PseudoTypes/LiteralString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\LowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/LowercaseString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NegativeInteger' => '/phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyList' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyList.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyLowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\NumericString' => '/phpdocumentor-type-resolver/PseudoTypes/NumericString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\Numeric_' => '/phpdocumentor-type-resolver/PseudoTypes/Numeric_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\PositiveInteger' => '/phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\StringValue' => '/phpdocumentor-type-resolver/PseudoTypes/StringValue.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\TraitString' => '/phpdocumentor-type-resolver/PseudoTypes/TraitString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\PseudoTypes\\True_' => '/phpdocumentor-type-resolver/PseudoTypes/True_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Type' => '/phpdocumentor-type-resolver/Type.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\TypeResolver' => '/phpdocumentor-type-resolver/TypeResolver.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\AbstractList' => '/phpdocumentor-type-resolver/Types/AbstractList.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\AggregatedType' => '/phpdocumentor-type-resolver/Types/AggregatedType.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ArrayKey' => '/phpdocumentor-type-resolver/Types/ArrayKey.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Array_' => '/phpdocumentor-type-resolver/Types/Array_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Boolean' => '/phpdocumentor-type-resolver/Types/Boolean.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\CallableParameter' => '/phpdocumentor-type-resolver/Types/CallableParameter.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Callable_' => '/phpdocumentor-type-resolver/Types/Callable_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ClassString' => '/phpdocumentor-type-resolver/Types/ClassString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Collection' => '/phpdocumentor-type-resolver/Types/Collection.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Compound' => '/phpdocumentor-type-resolver/Types/Compound.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Context' => '/phpdocumentor-type-resolver/Types/Context.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\ContextFactory' => '/phpdocumentor-type-resolver/Types/ContextFactory.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Expression' => '/phpdocumentor-type-resolver/Types/Expression.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Float_' => '/phpdocumentor-type-resolver/Types/Float_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Integer' => '/phpdocumentor-type-resolver/Types/Integer.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\InterfaceString' => '/phpdocumentor-type-resolver/Types/InterfaceString.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Intersection' => '/phpdocumentor-type-resolver/Types/Intersection.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Iterable_' => '/phpdocumentor-type-resolver/Types/Iterable_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Mixed_' => '/phpdocumentor-type-resolver/Types/Mixed_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Never_' => '/phpdocumentor-type-resolver/Types/Never_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Null_' => '/phpdocumentor-type-resolver/Types/Null_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Nullable' => '/phpdocumentor-type-resolver/Types/Nullable.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Object_' => '/phpdocumentor-type-resolver/Types/Object_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Parent_' => '/phpdocumentor-type-resolver/Types/Parent_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Resource_' => '/phpdocumentor-type-resolver/Types/Resource_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Scalar' => '/phpdocumentor-type-resolver/Types/Scalar.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Self_' => '/phpdocumentor-type-resolver/Types/Self_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Static_' => '/phpdocumentor-type-resolver/Types/Static_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\String_' => '/phpdocumentor-type-resolver/Types/String_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\This' => '/phpdocumentor-type-resolver/Types/This.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Types\\Void_' => '/phpdocumentor-type-resolver/Types/Void_.php', + 'PHPUnitPHAR\\phpDocumentor\\Reflection\\Utils' => '/phpdocumentor-reflection-docblock/Utils.php', 'PHPUnit\\Exception' => '/phpunit/Exception.php', 'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => '/phpunit/Framework/Exception/ActualValueIsNotAnObjectException.php', 'PHPUnit\\Framework\\Assert' => '/phpunit/Framework/Assert.php', @@ -1263,6 +2102,7 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\Framework\\Constraint\\LogicalXor' => '/phpunit/Framework/Constraint/Operator/LogicalXor.php', 'PHPUnit\\Framework\\Constraint\\ObjectEquals' => '/phpunit/Framework/Constraint/Object/ObjectEquals.php', 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => '/phpunit/Framework/Constraint/Object/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasProperty' => '/phpunit/Framework/Constraint/Object/ObjectHasProperty.php', 'PHPUnit\\Framework\\Constraint\\Operator' => '/phpunit/Framework/Constraint/Operator/Operator.php', 'PHPUnit\\Framework\\Constraint\\RegularExpression' => '/phpunit/Framework/Constraint/String/RegularExpression.php', 'PHPUnit\\Framework\\Constraint\\SameSize' => '/phpunit/Framework/Constraint/Cardinality/SameSize.php', @@ -1307,6 +2147,7 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => '/phpunit/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php', 'PHPUnit\\Framework\\MockObject\\ClassAlreadyExistsException' => '/phpunit/Framework/MockObject/Exception/ClassAlreadyExistsException.php', 'PHPUnit\\Framework\\MockObject\\ClassIsFinalException' => '/phpunit/Framework/MockObject/Exception/ClassIsFinalException.php', + 'PHPUnit\\Framework\\MockObject\\ClassIsReadonlyException' => '/phpunit/Framework/MockObject/Exception/ClassIsReadonlyException.php', 'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => '/phpunit/Framework/MockObject/ConfigurableMethod.php', 'PHPUnit\\Framework\\MockObject\\ConfigurableMethodsAlreadyInitializedException' => '/phpunit/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php', 'PHPUnit\\Framework\\MockObject\\DuplicateMethodException' => '/phpunit/Framework/MockObject/Exception/DuplicateMethodException.php', @@ -1387,326 +2228,6 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => '/phpunit/Framework/Exception/UnintentionallyCoveredCodeError.php', 'PHPUnit\\Framework\\Warning' => '/phpunit/Framework/Exception/Warning.php', 'PHPUnit\\Framework\\WarningTestCase' => '/phpunit/Framework/WarningTestCase.php', - 'PHPUnit\\PharIo\\Manifest\\Application' => '/phar-io-manifest/values/Application.php', - 'PHPUnit\\PharIo\\Manifest\\ApplicationName' => '/phar-io-manifest/values/ApplicationName.php', - 'PHPUnit\\PharIo\\Manifest\\Author' => '/phar-io-manifest/values/Author.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorCollection' => '/phar-io-manifest/values/AuthorCollection.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorCollectionIterator' => '/phar-io-manifest/values/AuthorCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorElement' => '/phar-io-manifest/xml/AuthorElement.php', - 'PHPUnit\\PharIo\\Manifest\\AuthorElementCollection' => '/phar-io-manifest/xml/AuthorElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponent' => '/phar-io-manifest/values/BundledComponent.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponentCollection' => '/phar-io-manifest/values/BundledComponentCollection.php', - 'PHPUnit\\PharIo\\Manifest\\BundledComponentCollectionIterator' => '/phar-io-manifest/values/BundledComponentCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\BundlesElement' => '/phar-io-manifest/xml/BundlesElement.php', - 'PHPUnit\\PharIo\\Manifest\\ComponentElement' => '/phar-io-manifest/xml/ComponentElement.php', - 'PHPUnit\\PharIo\\Manifest\\ComponentElementCollection' => '/phar-io-manifest/xml/ComponentElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\ContainsElement' => '/phar-io-manifest/xml/ContainsElement.php', - 'PHPUnit\\PharIo\\Manifest\\CopyrightElement' => '/phar-io-manifest/xml/CopyrightElement.php', - 'PHPUnit\\PharIo\\Manifest\\CopyrightInformation' => '/phar-io-manifest/values/CopyrightInformation.php', - 'PHPUnit\\PharIo\\Manifest\\ElementCollection' => '/phar-io-manifest/xml/ElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\ElementCollectionException' => '/phar-io-manifest/exceptions/ElementCollectionException.php', - 'PHPUnit\\PharIo\\Manifest\\Email' => '/phar-io-manifest/values/Email.php', - 'PHPUnit\\PharIo\\Manifest\\Exception' => '/phar-io-manifest/exceptions/Exception.php', - 'PHPUnit\\PharIo\\Manifest\\ExtElement' => '/phar-io-manifest/xml/ExtElement.php', - 'PHPUnit\\PharIo\\Manifest\\ExtElementCollection' => '/phar-io-manifest/xml/ExtElementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\Extension' => '/phar-io-manifest/values/Extension.php', - 'PHPUnit\\PharIo\\Manifest\\ExtensionElement' => '/phar-io-manifest/xml/ExtensionElement.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidApplicationNameException' => '/phar-io-manifest/exceptions/InvalidApplicationNameException.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidEmailException' => '/phar-io-manifest/exceptions/InvalidEmailException.php', - 'PHPUnit\\PharIo\\Manifest\\InvalidUrlException' => '/phar-io-manifest/exceptions/InvalidUrlException.php', - 'PHPUnit\\PharIo\\Manifest\\Library' => '/phar-io-manifest/values/Library.php', - 'PHPUnit\\PharIo\\Manifest\\License' => '/phar-io-manifest/values/License.php', - 'PHPUnit\\PharIo\\Manifest\\LicenseElement' => '/phar-io-manifest/xml/LicenseElement.php', - 'PHPUnit\\PharIo\\Manifest\\Manifest' => '/phar-io-manifest/values/Manifest.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocument' => '/phar-io-manifest/xml/ManifestDocument.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentException' => '/phar-io-manifest/exceptions/ManifestDocumentException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentLoadingException' => '/phar-io-manifest/exceptions/ManifestDocumentLoadingException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentMapper' => '/phar-io-manifest/ManifestDocumentMapper.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestDocumentMapperException' => '/phar-io-manifest/exceptions/ManifestDocumentMapperException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestElement' => '/phar-io-manifest/xml/ManifestElement.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestElementException' => '/phar-io-manifest/exceptions/ManifestElementException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestLoader' => '/phar-io-manifest/ManifestLoader.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestLoaderException' => '/phar-io-manifest/exceptions/ManifestLoaderException.php', - 'PHPUnit\\PharIo\\Manifest\\ManifestSerializer' => '/phar-io-manifest/ManifestSerializer.php', - 'PHPUnit\\PharIo\\Manifest\\PhpElement' => '/phar-io-manifest/xml/PhpElement.php', - 'PHPUnit\\PharIo\\Manifest\\PhpExtensionRequirement' => '/phar-io-manifest/values/PhpExtensionRequirement.php', - 'PHPUnit\\PharIo\\Manifest\\PhpVersionRequirement' => '/phar-io-manifest/values/PhpVersionRequirement.php', - 'PHPUnit\\PharIo\\Manifest\\Requirement' => '/phar-io-manifest/values/Requirement.php', - 'PHPUnit\\PharIo\\Manifest\\RequirementCollection' => '/phar-io-manifest/values/RequirementCollection.php', - 'PHPUnit\\PharIo\\Manifest\\RequirementCollectionIterator' => '/phar-io-manifest/values/RequirementCollectionIterator.php', - 'PHPUnit\\PharIo\\Manifest\\RequiresElement' => '/phar-io-manifest/xml/RequiresElement.php', - 'PHPUnit\\PharIo\\Manifest\\Type' => '/phar-io-manifest/values/Type.php', - 'PHPUnit\\PharIo\\Manifest\\Url' => '/phar-io-manifest/values/Url.php', - 'PHPUnit\\PharIo\\Version\\AbstractVersionConstraint' => '/phar-io-version/constraints/AbstractVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\AndVersionConstraintGroup' => '/phar-io-version/constraints/AndVersionConstraintGroup.php', - 'PHPUnit\\PharIo\\Version\\AnyVersionConstraint' => '/phar-io-version/constraints/AnyVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\BuildMetaData' => '/phar-io-version/BuildMetaData.php', - 'PHPUnit\\PharIo\\Version\\ExactVersionConstraint' => '/phar-io-version/constraints/ExactVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\Exception' => '/phar-io-version/exceptions/Exception.php', - 'PHPUnit\\PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => '/phar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\InvalidPreReleaseSuffixException' => '/phar-io-version/exceptions/InvalidPreReleaseSuffixException.php', - 'PHPUnit\\PharIo\\Version\\InvalidVersionException' => '/phar-io-version/exceptions/InvalidVersionException.php', - 'PHPUnit\\PharIo\\Version\\NoBuildMetaDataException' => '/phar-io-version/exceptions/NoBuildMetaDataException.php', - 'PHPUnit\\PharIo\\Version\\NoPreReleaseSuffixException' => '/phar-io-version/exceptions/NoPreReleaseSuffixException.php', - 'PHPUnit\\PharIo\\Version\\OrVersionConstraintGroup' => '/phar-io-version/constraints/OrVersionConstraintGroup.php', - 'PHPUnit\\PharIo\\Version\\PreReleaseSuffix' => '/phar-io-version/PreReleaseSuffix.php', - 'PHPUnit\\PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\SpecificMajorVersionConstraint' => '/phar-io-version/constraints/SpecificMajorVersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\UnsupportedVersionConstraintException' => '/phar-io-version/exceptions/UnsupportedVersionConstraintException.php', - 'PHPUnit\\PharIo\\Version\\Version' => '/phar-io-version/Version.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraint' => '/phar-io-version/constraints/VersionConstraint.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraintParser' => '/phar-io-version/VersionConstraintParser.php', - 'PHPUnit\\PharIo\\Version\\VersionConstraintValue' => '/phar-io-version/VersionConstraintValue.php', - 'PHPUnit\\PharIo\\Version\\VersionNumber' => '/phar-io-version/VersionNumber.php', - 'PHPUnit\\PhpParser\\Builder' => '/nikic-php-parser/PhpParser/Builder.php', - 'PHPUnit\\PhpParser\\BuilderFactory' => '/nikic-php-parser/PhpParser/BuilderFactory.php', - 'PHPUnit\\PhpParser\\BuilderHelpers' => '/nikic-php-parser/PhpParser/BuilderHelpers.php', - 'PHPUnit\\PhpParser\\Builder\\ClassConst' => '/nikic-php-parser/PhpParser/Builder/ClassConst.php', - 'PHPUnit\\PhpParser\\Builder\\Class_' => '/nikic-php-parser/PhpParser/Builder/Class_.php', - 'PHPUnit\\PhpParser\\Builder\\Declaration' => '/nikic-php-parser/PhpParser/Builder/Declaration.php', - 'PHPUnit\\PhpParser\\Builder\\EnumCase' => '/nikic-php-parser/PhpParser/Builder/EnumCase.php', - 'PHPUnit\\PhpParser\\Builder\\Enum_' => '/nikic-php-parser/PhpParser/Builder/Enum_.php', - 'PHPUnit\\PhpParser\\Builder\\FunctionLike' => '/nikic-php-parser/PhpParser/Builder/FunctionLike.php', - 'PHPUnit\\PhpParser\\Builder\\Function_' => '/nikic-php-parser/PhpParser/Builder/Function_.php', - 'PHPUnit\\PhpParser\\Builder\\Interface_' => '/nikic-php-parser/PhpParser/Builder/Interface_.php', - 'PHPUnit\\PhpParser\\Builder\\Method' => '/nikic-php-parser/PhpParser/Builder/Method.php', - 'PHPUnit\\PhpParser\\Builder\\Namespace_' => '/nikic-php-parser/PhpParser/Builder/Namespace_.php', - 'PHPUnit\\PhpParser\\Builder\\Param' => '/nikic-php-parser/PhpParser/Builder/Param.php', - 'PHPUnit\\PhpParser\\Builder\\Property' => '/nikic-php-parser/PhpParser/Builder/Property.php', - 'PHPUnit\\PhpParser\\Builder\\TraitUse' => '/nikic-php-parser/PhpParser/Builder/TraitUse.php', - 'PHPUnit\\PhpParser\\Builder\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.php', - 'PHPUnit\\PhpParser\\Builder\\Trait_' => '/nikic-php-parser/PhpParser/Builder/Trait_.php', - 'PHPUnit\\PhpParser\\Builder\\Use_' => '/nikic-php-parser/PhpParser/Builder/Use_.php', - 'PHPUnit\\PhpParser\\Comment' => '/nikic-php-parser/PhpParser/Comment.php', - 'PHPUnit\\PhpParser\\Comment\\Doc' => '/nikic-php-parser/PhpParser/Comment/Doc.php', - 'PHPUnit\\PhpParser\\ConstExprEvaluationException' => '/nikic-php-parser/PhpParser/ConstExprEvaluationException.php', - 'PHPUnit\\PhpParser\\ConstExprEvaluator' => '/nikic-php-parser/PhpParser/ConstExprEvaluator.php', - 'PHPUnit\\PhpParser\\Error' => '/nikic-php-parser/PhpParser/Error.php', - 'PHPUnit\\PhpParser\\ErrorHandler' => '/nikic-php-parser/PhpParser/ErrorHandler.php', - 'PHPUnit\\PhpParser\\ErrorHandler\\Collecting' => '/nikic-php-parser/PhpParser/ErrorHandler/Collecting.php', - 'PHPUnit\\PhpParser\\ErrorHandler\\Throwing' => '/nikic-php-parser/PhpParser/ErrorHandler/Throwing.php', - 'PHPUnit\\PhpParser\\Internal\\DiffElem' => '/nikic-php-parser/PhpParser/Internal/DiffElem.php', - 'PHPUnit\\PhpParser\\Internal\\Differ' => '/nikic-php-parser/PhpParser/Internal/Differ.php', - 'PHPUnit\\PhpParser\\Internal\\PrintableNewAnonClassNode' => '/nikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php', - 'PHPUnit\\PhpParser\\Internal\\TokenStream' => '/nikic-php-parser/PhpParser/Internal/TokenStream.php', - 'PHPUnit\\PhpParser\\JsonDecoder' => '/nikic-php-parser/PhpParser/JsonDecoder.php', - 'PHPUnit\\PhpParser\\Lexer' => '/nikic-php-parser/PhpParser/Lexer.php', - 'PHPUnit\\PhpParser\\Lexer\\Emulative' => '/nikic-php-parser/PhpParser/Lexer/Emulative.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php', - 'PHPUnit\\PhpParser\\Lexer\\TokenEmulator\\TokenEmulator' => '/nikic-php-parser/PhpParser/Lexer/TokenEmulator/TokenEmulator.php', - 'PHPUnit\\PhpParser\\NameContext' => '/nikic-php-parser/PhpParser/NameContext.php', - 'PHPUnit\\PhpParser\\Node' => '/nikic-php-parser/PhpParser/Node.php', - 'PHPUnit\\PhpParser\\NodeAbstract' => '/nikic-php-parser/PhpParser/NodeAbstract.php', - 'PHPUnit\\PhpParser\\NodeDumper' => '/nikic-php-parser/PhpParser/NodeDumper.php', - 'PHPUnit\\PhpParser\\NodeFinder' => '/nikic-php-parser/PhpParser/NodeFinder.php', - 'PHPUnit\\PhpParser\\NodeTraverser' => '/nikic-php-parser/PhpParser/NodeTraverser.php', - 'PHPUnit\\PhpParser\\NodeTraverserInterface' => '/nikic-php-parser/PhpParser/NodeTraverserInterface.php', - 'PHPUnit\\PhpParser\\NodeVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitorAbstract' => '/nikic-php-parser/PhpParser/NodeVisitorAbstract.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\CloningVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\FindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\FirstFindingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\NameResolver' => '/nikic-php-parser/PhpParser/NodeVisitor/NameResolver.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\NodeConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.php', - 'PHPUnit\\PhpParser\\NodeVisitor\\ParentConnectingVisitor' => '/nikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.php', - 'PHPUnit\\PhpParser\\Node\\Arg' => '/nikic-php-parser/PhpParser/Node/Arg.php', - 'PHPUnit\\PhpParser\\Node\\Attribute' => '/nikic-php-parser/PhpParser/Node/Attribute.php', - 'PHPUnit\\PhpParser\\Node\\AttributeGroup' => '/nikic-php-parser/PhpParser/Node/AttributeGroup.php', - 'PHPUnit\\PhpParser\\Node\\ComplexType' => '/nikic-php-parser/PhpParser/Node/ComplexType.php', - 'PHPUnit\\PhpParser\\Node\\Const_' => '/nikic-php-parser/PhpParser/Node/Const_.php', - 'PHPUnit\\PhpParser\\Node\\Expr' => '/nikic-php-parser/PhpParser/Node/Expr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrayDimFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayDimFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrayItem' => '/nikic-php-parser/PhpParser/Node/Expr/ArrayItem.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Array_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ArrowFunction' => '/nikic-php-parser/PhpParser/Node/Expr/ArrowFunction.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Assign' => '/nikic-php-parser/PhpParser/Node/Expr/Assign.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Coalesce.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Concat.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Div.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Minus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mod.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mul.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Plus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/Pow.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftRight.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\AssignRef' => '/nikic-php-parser/PhpParser/Node/Expr/AssignRef.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Coalesce.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Concat' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Concat.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Div' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Div.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Equal' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Equal.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Greater' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Greater.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Identical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Identical.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Minus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Minus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Mod' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mod.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Mul' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mul.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Plus' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Pow' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => '/nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BitwiseNot' => '/nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\BooleanNot' => '/nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\CallLike' => '/nikic-php-parser/PhpParser/Node/Expr/CallLike.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast' => '/nikic-php-parser/PhpParser/Node/Expr/Cast.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Array_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Bool_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Double' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Int_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Object_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\String_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/String_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Cast\\Unset_' => '/nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ClassConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Clone_' => '/nikic-php-parser/PhpParser/Node/Expr/Clone_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Closure' => '/nikic-php-parser/PhpParser/Node/Expr/Closure.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ClosureUse' => '/nikic-php-parser/PhpParser/Node/Expr/ClosureUse.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ConstFetch' => '/nikic-php-parser/PhpParser/Node/Expr/ConstFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Empty_' => '/nikic-php-parser/PhpParser/Node/Expr/Empty_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Error' => '/nikic-php-parser/PhpParser/Node/Expr/Error.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ErrorSuppress' => '/nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Eval_' => '/nikic-php-parser/PhpParser/Node/Expr/Eval_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Exit_' => '/nikic-php-parser/PhpParser/Node/Expr/Exit_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\FuncCall' => '/nikic-php-parser/PhpParser/Node/Expr/FuncCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Include_' => '/nikic-php-parser/PhpParser/Node/Expr/Include_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Instanceof_' => '/nikic-php-parser/PhpParser/Node/Expr/Instanceof_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Isset_' => '/nikic-php-parser/PhpParser/Node/Expr/Isset_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\List_' => '/nikic-php-parser/PhpParser/Node/Expr/List_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Match_' => '/nikic-php-parser/PhpParser/Node/Expr/Match_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\MethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/MethodCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\New_' => '/nikic-php-parser/PhpParser/Node/Expr/New_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\NullsafeMethodCall' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\NullsafePropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PostDec' => '/nikic-php-parser/PhpParser/Node/Expr/PostDec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PostInc' => '/nikic-php-parser/PhpParser/Node/Expr/PostInc.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PreDec' => '/nikic-php-parser/PhpParser/Node/Expr/PreDec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PreInc' => '/nikic-php-parser/PhpParser/Node/Expr/PreInc.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Print_' => '/nikic-php-parser/PhpParser/Node/Expr/Print_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\PropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\ShellExec' => '/nikic-php-parser/PhpParser/Node/Expr/ShellExec.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\StaticCall' => '/nikic-php-parser/PhpParser/Node/Expr/StaticCall.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\StaticPropertyFetch' => '/nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Ternary' => '/nikic-php-parser/PhpParser/Node/Expr/Ternary.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Throw_' => '/nikic-php-parser/PhpParser/Node/Expr/Throw_.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\UnaryMinus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\UnaryPlus' => '/nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Variable' => '/nikic-php-parser/PhpParser/Node/Expr/Variable.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\YieldFrom' => '/nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php', - 'PHPUnit\\PhpParser\\Node\\Expr\\Yield_' => '/nikic-php-parser/PhpParser/Node/Expr/Yield_.php', - 'PHPUnit\\PhpParser\\Node\\FunctionLike' => '/nikic-php-parser/PhpParser/Node/FunctionLike.php', - 'PHPUnit\\PhpParser\\Node\\Identifier' => '/nikic-php-parser/PhpParser/Node/Identifier.php', - 'PHPUnit\\PhpParser\\Node\\IntersectionType' => '/nikic-php-parser/PhpParser/Node/IntersectionType.php', - 'PHPUnit\\PhpParser\\Node\\MatchArm' => '/nikic-php-parser/PhpParser/Node/MatchArm.php', - 'PHPUnit\\PhpParser\\Node\\Name' => '/nikic-php-parser/PhpParser/Node/Name.php', - 'PHPUnit\\PhpParser\\Node\\Name\\FullyQualified' => '/nikic-php-parser/PhpParser/Node/Name/FullyQualified.php', - 'PHPUnit\\PhpParser\\Node\\Name\\Relative' => '/nikic-php-parser/PhpParser/Node/Name/Relative.php', - 'PHPUnit\\PhpParser\\Node\\NullableType' => '/nikic-php-parser/PhpParser/Node/NullableType.php', - 'PHPUnit\\PhpParser\\Node\\Param' => '/nikic-php-parser/PhpParser/Node/Param.php', - 'PHPUnit\\PhpParser\\Node\\Scalar' => '/nikic-php-parser/PhpParser/Node/Scalar.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\DNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/DNumber.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\Encapsed' => '/nikic-php-parser/PhpParser/Node/Scalar/Encapsed.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\EncapsedStringPart' => '/nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\LNumber' => '/nikic-php-parser/PhpParser/Node/Scalar/LNumber.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Class_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Dir' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\File' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Function_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Line' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Method' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => '/nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.php', - 'PHPUnit\\PhpParser\\Node\\Scalar\\String_' => '/nikic-php-parser/PhpParser/Node/Scalar/String_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt' => '/nikic-php-parser/PhpParser/Node/Stmt.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Break_' => '/nikic-php-parser/PhpParser/Node/Stmt/Break_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Case_' => '/nikic-php-parser/PhpParser/Node/Stmt/Case_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Catch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassConst' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassConst.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassLike' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassLike.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ClassMethod' => '/nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Class_' => '/nikic-php-parser/PhpParser/Node/Stmt/Class_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Const_' => '/nikic-php-parser/PhpParser/Node/Stmt/Const_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Continue_' => '/nikic-php-parser/PhpParser/Node/Stmt/Continue_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\DeclareDeclare' => '/nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Declare_' => '/nikic-php-parser/PhpParser/Node/Stmt/Declare_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Do_' => '/nikic-php-parser/PhpParser/Node/Stmt/Do_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Echo_' => '/nikic-php-parser/PhpParser/Node/Stmt/Echo_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\ElseIf_' => '/nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Else_' => '/nikic-php-parser/PhpParser/Node/Stmt/Else_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\EnumCase' => '/nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Enum_' => '/nikic-php-parser/PhpParser/Node/Stmt/Enum_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Expression' => '/nikic-php-parser/PhpParser/Node/Stmt/Expression.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Finally_' => '/nikic-php-parser/PhpParser/Node/Stmt/Finally_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\For_' => '/nikic-php-parser/PhpParser/Node/Stmt/For_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Foreach_' => '/nikic-php-parser/PhpParser/Node/Stmt/Foreach_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Function_' => '/nikic-php-parser/PhpParser/Node/Stmt/Function_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Global_' => '/nikic-php-parser/PhpParser/Node/Stmt/Global_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Goto_' => '/nikic-php-parser/PhpParser/Node/Stmt/Goto_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\GroupUse' => '/nikic-php-parser/PhpParser/Node/Stmt/GroupUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\HaltCompiler' => '/nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\If_' => '/nikic-php-parser/PhpParser/Node/Stmt/If_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\InlineHTML' => '/nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Interface_' => '/nikic-php-parser/PhpParser/Node/Stmt/Interface_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Label' => '/nikic-php-parser/PhpParser/Node/Stmt/Label.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Namespace_' => '/nikic-php-parser/PhpParser/Node/Stmt/Namespace_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Nop' => '/nikic-php-parser/PhpParser/Node/Stmt/Nop.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Property' => '/nikic-php-parser/PhpParser/Node/Stmt/Property.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\PropertyProperty' => '/nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Return_' => '/nikic-php-parser/PhpParser/Node/Stmt/Return_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\StaticVar' => '/nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Static_' => '/nikic-php-parser/PhpParser/Node/Stmt/Static_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Switch_' => '/nikic-php-parser/PhpParser/Node/Stmt/Switch_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Throw_' => '/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUse' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => '/nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Trait_' => '/nikic-php-parser/PhpParser/Node/Stmt/Trait_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\TryCatch' => '/nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Unset_' => '/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\UseUse' => '/nikic-php-parser/PhpParser/Node/Stmt/UseUse.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\Use_' => '/nikic-php-parser/PhpParser/Node/Stmt/Use_.php', - 'PHPUnit\\PhpParser\\Node\\Stmt\\While_' => '/nikic-php-parser/PhpParser/Node/Stmt/While_.php', - 'PHPUnit\\PhpParser\\Node\\UnionType' => '/nikic-php-parser/PhpParser/Node/UnionType.php', - 'PHPUnit\\PhpParser\\Node\\VarLikeIdentifier' => '/nikic-php-parser/PhpParser/Node/VarLikeIdentifier.php', - 'PHPUnit\\PhpParser\\Node\\VariadicPlaceholder' => '/nikic-php-parser/PhpParser/Node/VariadicPlaceholder.php', - 'PHPUnit\\PhpParser\\Parser' => '/nikic-php-parser/PhpParser/Parser.php', - 'PHPUnit\\PhpParser\\ParserAbstract' => '/nikic-php-parser/PhpParser/ParserAbstract.php', - 'PHPUnit\\PhpParser\\ParserFactory' => '/nikic-php-parser/PhpParser/ParserFactory.php', - 'PHPUnit\\PhpParser\\Parser\\Multiple' => '/nikic-php-parser/PhpParser/Parser/Multiple.php', - 'PHPUnit\\PhpParser\\Parser\\Php5' => '/nikic-php-parser/PhpParser/Parser/Php5.php', - 'PHPUnit\\PhpParser\\Parser\\Php7' => '/nikic-php-parser/PhpParser/Parser/Php7.php', - 'PHPUnit\\PhpParser\\Parser\\Tokens' => '/nikic-php-parser/PhpParser/Parser/Tokens.php', - 'PHPUnit\\PhpParser\\PrettyPrinterAbstract' => '/nikic-php-parser/PhpParser/PrettyPrinterAbstract.php', - 'PHPUnit\\PhpParser\\PrettyPrinter\\Standard' => '/nikic-php-parser/PhpParser/PrettyPrinter/Standard.php', 'PHPUnit\\Runner\\AfterIncompleteTestHook' => '/phpunit/Runner/Hook/AfterIncompleteTestHook.php', 'PHPUnit\\Runner\\AfterLastTestHook' => '/phpunit/Runner/Hook/AfterLastTestHook.php', 'PHPUnit\\Runner\\AfterRiskyTestHook' => '/phpunit/Runner/Hook/AfterRiskyTestHook.php', @@ -1739,206 +2260,6 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\Runner\\TestSuiteLoader' => '/phpunit/Runner/TestSuiteLoader.php', 'PHPUnit\\Runner\\TestSuiteSorter' => '/phpunit/Runner/TestSuiteSorter.php', 'PHPUnit\\Runner\\Version' => '/phpunit/Runner/Version.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\AmbiguousOptionException' => '/sebastian-cli-parser/exceptions/AmbiguousOptionException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\Exception' => '/sebastian-cli-parser/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => '/sebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\Parser' => '/sebastian-cli-parser/Parser.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => '/sebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.php', - 'PHPUnit\\SebastianBergmann\\CliParser\\UnknownOptionException' => '/sebastian-cli-parser/exceptions/UnknownOptionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => '/php-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\CodeCoverage' => '/php-code-coverage/CodeCoverage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => '/php-code-coverage/Exception/DeadCodeDetectionNotSupportedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Driver' => '/php-code-coverage/Driver/Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => '/php-code-coverage/Exception/PathExistsButIsNotDirectoryException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => '/php-code-coverage/Driver/PcovDriver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => '/php-code-coverage/Exception/PcovNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => '/php-code-coverage/Driver/PhpdbgDriver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => '/php-code-coverage/Exception/PhpdbgNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Selector' => '/php-code-coverage/Driver/Selector.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => '/php-code-coverage/Exception/WriteOperationFailedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => '/php-code-coverage/Exception/WrongXdebugVersionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => '/php-code-coverage/Driver/Xdebug2Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => '/php-code-coverage/Exception/Xdebug2NotEnabledException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => '/php-code-coverage/Driver/Xdebug3Driver.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => '/php-code-coverage/Exception/Xdebug3NotEnabledException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => '/php-code-coverage/Exception/XdebugNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Exception' => '/php-code-coverage/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Filter' => '/php-code-coverage/Filter.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => '/php-code-coverage/Exception/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => '/php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => '/php-code-coverage/Node/AbstractNode.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Builder' => '/php-code-coverage/Node/Builder.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => '/php-code-coverage/Node/CrapIndex.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Directory' => '/php-code-coverage/Node/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\File' => '/php-code-coverage/Node/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Node\\Iterator' => '/php-code-coverage/Node/Iterator.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ParserException' => '/php-code-coverage/Exception/ParserException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => '/php-code-coverage/ProcessedCodeCoverageData.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => '/php-code-coverage/RawCodeCoverageData.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ReflectionException' => '/php-code-coverage/Exception/ReflectionException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => '/php-code-coverage/Exception/ReportAlreadyFinalizedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Clover' => '/php-code-coverage/Report/Clover.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => '/php-code-coverage/Report/Cobertura.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => '/php-code-coverage/Report/Crap4j.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => '/php-code-coverage/Report/Html/Renderer/Dashboard.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => '/php-code-coverage/Report/Html/Renderer/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => '/php-code-coverage/Report/Html/Facade.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => '/php-code-coverage/Report/Html/Renderer/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => '/php-code-coverage/Report/Html/Renderer.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\PHP' => '/php-code-coverage/Report/PHP.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Text' => '/php-code-coverage/Report/Text.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => '/php-code-coverage/Report/Xml/BuildInformation.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => '/php-code-coverage/Report/Xml/Coverage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => '/php-code-coverage/Report/Xml/Directory.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => '/php-code-coverage/Report/Xml/Facade.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => '/php-code-coverage/Report/Xml/File.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => '/php-code-coverage/Report/Xml/Method.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => '/php-code-coverage/Report/Xml/Node.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => '/php-code-coverage/Report/Xml/Project.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => '/php-code-coverage/Report/Xml/Report.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => '/php-code-coverage/Report/Xml/Source.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => '/php-code-coverage/Report/Xml/Tests.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => '/php-code-coverage/Report/Xml/Totals.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => '/php-code-coverage/Report/Xml/Unit.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => '/php-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => '/php-code-coverage/StaticAnalysis/CacheWarmer.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => '/php-code-coverage/StaticAnalysis/CachingFileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => '/php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => '/php-code-coverage/StaticAnalysis/FileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => '/php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => '/php-code-coverage/StaticAnalysis/ParsingFileAnalyser.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\TestIdMissingException' => '/php-code-coverage/Exception/TestIdMissingException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => '/php-code-coverage/Exception/UnintentionallyCoveredCodeException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => '/php-code-coverage/Exception/DirectoryCouldNotBeCreatedException.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => '/php-code-coverage/Util/Filesystem.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Util\\Percentage' => '/php-code-coverage/Util/Percentage.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\Version' => '/php-code-coverage/Version.php', - 'PHPUnit\\SebastianBergmann\\CodeCoverage\\XmlException' => '/php-code-coverage/Exception/XmlException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => '/sebastian-code-unit-reverse-lookup/Wizard.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ClassMethodUnit' => '/sebastian-code-unit/ClassMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ClassUnit' => '/sebastian-code-unit/ClassUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnit' => '/sebastian-code-unit/CodeUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnitCollection' => '/sebastian-code-unit/CodeUnitCollection.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => '/sebastian-code-unit/CodeUnitCollectionIterator.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\Exception' => '/sebastian-code-unit/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\FunctionUnit' => '/sebastian-code-unit/FunctionUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => '/sebastian-code-unit/InterfaceMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InterfaceUnit' => '/sebastian-code-unit/InterfaceUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => '/sebastian-code-unit/exceptions/InvalidCodeUnitException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\Mapper' => '/sebastian-code-unit/Mapper.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\NoTraitException' => '/sebastian-code-unit/exceptions/NoTraitException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\ReflectionException' => '/sebastian-code-unit/exceptions/ReflectionException.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\TraitMethodUnit' => '/sebastian-code-unit/TraitMethodUnit.php', - 'PHPUnit\\SebastianBergmann\\CodeUnit\\TraitUnit' => '/sebastian-code-unit/TraitUnit.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ArrayComparator' => '/sebastian-comparator/ArrayComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Comparator' => '/sebastian-comparator/Comparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ComparisonFailure' => '/sebastian-comparator/ComparisonFailure.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DOMNodeComparator' => '/sebastian-comparator/DOMNodeComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DateTimeComparator' => '/sebastian-comparator/DateTimeComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\DoubleComparator' => '/sebastian-comparator/DoubleComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Exception' => '/sebastian-comparator/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ExceptionComparator' => '/sebastian-comparator/ExceptionComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\Factory' => '/sebastian-comparator/Factory.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\MockObjectComparator' => '/sebastian-comparator/MockObjectComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\NumericComparator' => '/sebastian-comparator/NumericComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ObjectComparator' => '/sebastian-comparator/ObjectComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ResourceComparator' => '/sebastian-comparator/ResourceComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\RuntimeException' => '/sebastian-comparator/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\ScalarComparator' => '/sebastian-comparator/ScalarComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\SplObjectStorageComparator' => '/sebastian-comparator/SplObjectStorageComparator.php', - 'PHPUnit\\SebastianBergmann\\Comparator\\TypeComparator' => '/sebastian-comparator/TypeComparator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Calculator' => '/sebastian-complexity/Calculator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Complexity' => '/sebastian-complexity/Complexity/Complexity.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/ComplexityCalculatingVisitor.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCollection' => '/sebastian-complexity/Complexity/ComplexityCollection.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => '/sebastian-complexity/Complexity/ComplexityCollectionIterator.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => '/sebastian-complexity/Visitor/CyclomaticComplexityCalculatingVisitor.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\Exception' => '/sebastian-complexity/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Complexity\\RuntimeException' => '/sebastian-complexity/Exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Chunk' => '/sebastian-diff/Chunk.php', - 'PHPUnit\\SebastianBergmann\\Diff\\ConfigurationException' => '/sebastian-diff/Exception/ConfigurationException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Diff' => '/sebastian-diff/Diff.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Differ' => '/sebastian-diff/Differ.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Exception' => '/sebastian-diff/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Diff\\InvalidArgumentException' => '/sebastian-diff/Exception/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Line' => '/sebastian-diff/Line.php', - 'PHPUnit\\SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => '/sebastian-diff/LongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => '/sebastian-diff/Output/AbstractChunkOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => '/sebastian-diff/Output/DiffOnlyOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => '/sebastian-diff/Output/DiffOutputBuilderInterface.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => '/sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => '/sebastian-diff/Output/UnifiedDiffOutputBuilder.php', - 'PHPUnit\\SebastianBergmann\\Diff\\Parser' => '/sebastian-diff/Parser.php', - 'PHPUnit\\SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => '/sebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.php', - 'PHPUnit\\SebastianBergmann\\Environment\\Console' => '/sebastian-environment/Console.php', - 'PHPUnit\\SebastianBergmann\\Environment\\OperatingSystem' => '/sebastian-environment/OperatingSystem.php', - 'PHPUnit\\SebastianBergmann\\Environment\\Runtime' => '/sebastian-environment/Runtime.php', - 'PHPUnit\\SebastianBergmann\\Exporter\\Exporter' => '/sebastian-exporter/Exporter.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Facade' => '/php-file-iterator/Facade.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Factory' => '/php-file-iterator/Factory.php', - 'PHPUnit\\SebastianBergmann\\FileIterator\\Iterator' => '/php-file-iterator/Iterator.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\CodeExporter' => '/sebastian-global-state/CodeExporter.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Exception' => '/sebastian-global-state/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\ExcludeList' => '/sebastian-global-state/ExcludeList.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Restorer' => '/sebastian-global-state/Restorer.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\RuntimeException' => '/sebastian-global-state/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\GlobalState\\Snapshot' => '/sebastian-global-state/Snapshot.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\Exception' => '/php-invoker/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\Invoker' => '/php-invoker/Invoker.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => '/php-invoker/exceptions/ProcessControlExtensionNotLoadedException.php', - 'PHPUnit\\SebastianBergmann\\Invoker\\TimeoutException' => '/php-invoker/exceptions/TimeoutException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\Counter' => '/sebastian-lines-of-code/Counter.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\Exception' => '/sebastian-lines-of-code/Exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => '/sebastian-lines-of-code/Exception/IllogicalValuesException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => '/sebastian-lines-of-code/LineCountingVisitor.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\LinesOfCode' => '/sebastian-lines-of-code/LinesOfCode.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\NegativeValueException' => '/sebastian-lines-of-code/Exception/NegativeValueException.php', - 'PHPUnit\\SebastianBergmann\\LinesOfCode\\RuntimeException' => '/sebastian-lines-of-code/Exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\Enumerator' => '/sebastian-object-enumerator/Enumerator.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\Exception' => '/sebastian-object-enumerator/Exception.php', - 'PHPUnit\\SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => '/sebastian-object-enumerator/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\Exception' => '/sebastian-object-reflector/Exception.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => '/sebastian-object-reflector/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ObjectReflector\\ObjectReflector' => '/sebastian-object-reflector/ObjectReflector.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\Context' => '/sebastian-recursion-context/Context.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\Exception' => '/sebastian-recursion-context/Exception.php', - 'PHPUnit\\SebastianBergmann\\RecursionContext\\InvalidArgumentException' => '/sebastian-recursion-context/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\ResourceOperations\\ResourceOperations' => '/sebastian-resource-operations/ResourceOperations.php', - 'PHPUnit\\SebastianBergmann\\Template\\Exception' => '/php-text-template/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Template\\InvalidArgumentException' => '/php-text-template/exceptions/InvalidArgumentException.php', - 'PHPUnit\\SebastianBergmann\\Template\\RuntimeException' => '/php-text-template/exceptions/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Template\\Template' => '/php-text-template/Template.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Duration' => '/php-timer/Duration.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Exception' => '/php-timer/exceptions/Exception.php', - 'PHPUnit\\SebastianBergmann\\Timer\\NoActiveTimerException' => '/php-timer/exceptions/NoActiveTimerException.php', - 'PHPUnit\\SebastianBergmann\\Timer\\ResourceUsageFormatter' => '/php-timer/ResourceUsageFormatter.php', - 'PHPUnit\\SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => '/php-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.php', - 'PHPUnit\\SebastianBergmann\\Timer\\Timer' => '/php-timer/Timer.php', - 'PHPUnit\\SebastianBergmann\\Type\\CallableType' => '/sebastian-type/type/CallableType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Exception' => '/sebastian-type/exception/Exception.php', - 'PHPUnit\\SebastianBergmann\\Type\\FalseType' => '/sebastian-type/type/FalseType.php', - 'PHPUnit\\SebastianBergmann\\Type\\GenericObjectType' => '/sebastian-type/type/GenericObjectType.php', - 'PHPUnit\\SebastianBergmann\\Type\\IntersectionType' => '/sebastian-type/type/IntersectionType.php', - 'PHPUnit\\SebastianBergmann\\Type\\IterableType' => '/sebastian-type/type/IterableType.php', - 'PHPUnit\\SebastianBergmann\\Type\\MixedType' => '/sebastian-type/type/MixedType.php', - 'PHPUnit\\SebastianBergmann\\Type\\NeverType' => '/sebastian-type/type/NeverType.php', - 'PHPUnit\\SebastianBergmann\\Type\\NullType' => '/sebastian-type/type/NullType.php', - 'PHPUnit\\SebastianBergmann\\Type\\ObjectType' => '/sebastian-type/type/ObjectType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Parameter' => '/sebastian-type/Parameter.php', - 'PHPUnit\\SebastianBergmann\\Type\\ReflectionMapper' => '/sebastian-type/ReflectionMapper.php', - 'PHPUnit\\SebastianBergmann\\Type\\RuntimeException' => '/sebastian-type/exception/RuntimeException.php', - 'PHPUnit\\SebastianBergmann\\Type\\SimpleType' => '/sebastian-type/type/SimpleType.php', - 'PHPUnit\\SebastianBergmann\\Type\\StaticType' => '/sebastian-type/type/StaticType.php', - 'PHPUnit\\SebastianBergmann\\Type\\TrueType' => '/sebastian-type/type/TrueType.php', - 'PHPUnit\\SebastianBergmann\\Type\\Type' => '/sebastian-type/type/Type.php', - 'PHPUnit\\SebastianBergmann\\Type\\TypeName' => '/sebastian-type/TypeName.php', - 'PHPUnit\\SebastianBergmann\\Type\\UnionType' => '/sebastian-type/type/UnionType.php', - 'PHPUnit\\SebastianBergmann\\Type\\UnknownType' => '/sebastian-type/type/UnknownType.php', - 'PHPUnit\\SebastianBergmann\\Type\\VoidType' => '/sebastian-type/type/VoidType.php', - 'PHPUnit\\SebastianBergmann\\Version' => '/sebastian-version/Version.php', 'PHPUnit\\TextUI\\CliArguments\\Builder' => '/phpunit/TextUI/CliArguments/Builder.php', 'PHPUnit\\TextUI\\CliArguments\\Configuration' => '/phpunit/TextUI/CliArguments/Configuration.php', 'PHPUnit\\TextUI\\CliArguments\\Exception' => '/phpunit/TextUI/CliArguments/Exception.php', @@ -2012,8 +2333,8 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrator.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromRootToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php', - 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistDirectoriesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistExcludesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php', + 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistIncludesToCoverage' => '/phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistIncludesToCoverage.php', 'PHPUnit\\TextUI\\XmlConfiguration\\PHPUnit' => '/phpunit/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php', 'PHPUnit\\TextUI\\XmlConfiguration\\Php' => '/phpunit/TextUI/XmlConfiguration/PHP/Php.php', 'PHPUnit\\TextUI\\XmlConfiguration\\PhpHandler' => '/phpunit/TextUI/XmlConfiguration/PHP/PhpHandler.php', @@ -2033,14 +2354,6 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\TextUI\\XmlConfiguration\\Variable' => '/phpunit/TextUI/XmlConfiguration/PHP/Variable.php', 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollection' => '/phpunit/TextUI/XmlConfiguration/PHP/VariableCollection.php', 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollectionIterator' => '/phpunit/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Exception' => '/theseer-tokenizer/Exception.php', - 'PHPUnit\\TheSeer\\Tokenizer\\NamespaceUri' => '/theseer-tokenizer/NamespaceUri.php', - 'PHPUnit\\TheSeer\\Tokenizer\\NamespaceUriException' => '/theseer-tokenizer/NamespaceUriException.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Token' => '/theseer-tokenizer/Token.php', - 'PHPUnit\\TheSeer\\Tokenizer\\TokenCollection' => '/theseer-tokenizer/TokenCollection.php', - 'PHPUnit\\TheSeer\\Tokenizer\\TokenCollectionException' => '/theseer-tokenizer/TokenCollectionException.php', - 'PHPUnit\\TheSeer\\Tokenizer\\Tokenizer' => '/theseer-tokenizer/Tokenizer.php', - 'PHPUnit\\TheSeer\\Tokenizer\\XMLSerializer' => '/theseer-tokenizer/XMLSerializer.php', 'PHPUnit\\Util\\Annotation\\DocBlock' => '/phpunit/Util/Annotation/DocBlock.php', 'PHPUnit\\Util\\Annotation\\Registry' => '/phpunit/Util/Annotation/Registry.php', 'PHPUnit\\Util\\Blacklist' => '/phpunit/Util/Blacklist.php', @@ -2087,105 +2400,6 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'PHPUnit\\Util\\Xml\\SuccessfulSchemaDetectionResult' => '/phpunit/Util/Xml/SuccessfulSchemaDetectionResult.php', 'PHPUnit\\Util\\Xml\\ValidationResult' => '/phpunit/Util/Xml/ValidationResult.php', 'PHPUnit\\Util\\Xml\\Validator' => '/phpunit/Util/Xml/Validator.php', - 'PHPUnit\\Webmozart\\Assert\\Assert' => '/webmozart-assert/Assert.php', - 'PHPUnit\\Webmozart\\Assert\\InvalidArgumentException' => '/webmozart-assert/InvalidArgumentException.php', - 'PHPUnit\\Webmozart\\Assert\\Mixin' => '/webmozart-assert/Mixin.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock' => '/phpdocumentor-reflection-docblock/DocBlock.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlockFactory' => '/phpdocumentor-reflection-docblock/DocBlockFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlockFactoryInterface' => '/phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Description' => '/phpdocumentor-reflection-docblock/DocBlock/Description.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => '/phpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => '/phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Serializer' => '/phpdocumentor-reflection-docblock/DocBlock/Serializer.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tag' => '/phpdocumentor-reflection-docblock/DocBlock/Tag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\TagFactory' => '/phpdocumentor-reflection-docblock/DocBlock/TagFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Author.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Example.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\InvalidTag' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Link.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Param.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Property.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/See.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Since.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Source.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\TagWithType' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => '/phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Element' => '/phpdocumentor-reflection-common/Element.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Exception\\PcreException' => '/phpdocumentor-reflection-docblock/Exception/PcreException.php', - 'PHPUnit\\phpDocumentor\\Reflection\\File' => '/phpdocumentor-reflection-common/File.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Fqsen' => '/phpdocumentor-reflection-common/Fqsen.php', - 'PHPUnit\\phpDocumentor\\Reflection\\FqsenResolver' => '/phpdocumentor-type-resolver/FqsenResolver.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Location' => '/phpdocumentor-reflection-common/Location.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Project' => '/phpdocumentor-reflection-common/Project.php', - 'PHPUnit\\phpDocumentor\\Reflection\\ProjectFactory' => '/phpdocumentor-reflection-common/ProjectFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoType' => '/phpdocumentor-type-resolver/PseudoType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\CallableString' => '/phpdocumentor-type-resolver/PseudoTypes/CallableString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\False_' => '/phpdocumentor-type-resolver/PseudoTypes/False_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\HtmlEscapedString' => '/phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\IntegerRange' => '/phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\List_' => '/phpdocumentor-type-resolver/PseudoTypes/List_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\LiteralString' => '/phpdocumentor-type-resolver/PseudoTypes/LiteralString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\LowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/LowercaseString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NegativeInteger' => '/phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyLowercaseString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NonEmptyString' => '/phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\NumericString' => '/phpdocumentor-type-resolver/PseudoTypes/NumericString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\Numeric_' => '/phpdocumentor-type-resolver/PseudoTypes/Numeric_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\PositiveInteger' => '/phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\TraitString' => '/phpdocumentor-type-resolver/PseudoTypes/TraitString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\True_' => '/phpdocumentor-type-resolver/PseudoTypes/True_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Type' => '/phpdocumentor-type-resolver/Type.php', - 'PHPUnit\\phpDocumentor\\Reflection\\TypeResolver' => '/phpdocumentor-type-resolver/TypeResolver.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\AbstractList' => '/phpdocumentor-type-resolver/Types/AbstractList.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\AggregatedType' => '/phpdocumentor-type-resolver/Types/AggregatedType.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ArrayKey' => '/phpdocumentor-type-resolver/Types/ArrayKey.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Array_' => '/phpdocumentor-type-resolver/Types/Array_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Boolean' => '/phpdocumentor-type-resolver/Types/Boolean.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Callable_' => '/phpdocumentor-type-resolver/Types/Callable_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ClassString' => '/phpdocumentor-type-resolver/Types/ClassString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Collection' => '/phpdocumentor-type-resolver/Types/Collection.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Compound' => '/phpdocumentor-type-resolver/Types/Compound.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Context' => '/phpdocumentor-type-resolver/Types/Context.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\ContextFactory' => '/phpdocumentor-type-resolver/Types/ContextFactory.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Expression' => '/phpdocumentor-type-resolver/Types/Expression.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Float_' => '/phpdocumentor-type-resolver/Types/Float_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Integer' => '/phpdocumentor-type-resolver/Types/Integer.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\InterfaceString' => '/phpdocumentor-type-resolver/Types/InterfaceString.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Intersection' => '/phpdocumentor-type-resolver/Types/Intersection.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Iterable_' => '/phpdocumentor-type-resolver/Types/Iterable_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Mixed_' => '/phpdocumentor-type-resolver/Types/Mixed_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Never_' => '/phpdocumentor-type-resolver/Types/Never_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Null_' => '/phpdocumentor-type-resolver/Types/Null_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Nullable' => '/phpdocumentor-type-resolver/Types/Nullable.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Object_' => '/phpdocumentor-type-resolver/Types/Object_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Parent_' => '/phpdocumentor-type-resolver/Types/Parent_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Resource_' => '/phpdocumentor-type-resolver/Types/Resource_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Scalar' => '/phpdocumentor-type-resolver/Types/Scalar.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Self_' => '/phpdocumentor-type-resolver/Types/Self_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Static_' => '/phpdocumentor-type-resolver/Types/Static_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\String_' => '/phpdocumentor-type-resolver/Types/String_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\This' => '/phpdocumentor-type-resolver/Types/This.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Types\\Void_' => '/phpdocumentor-type-resolver/Types/Void_.php', - 'PHPUnit\\phpDocumentor\\Reflection\\Utils' => '/phpdocumentor-reflection-docblock/Utils.php', 'Prophecy\\Argument' => '/phpspec-prophecy/Prophecy/Argument.php', 'Prophecy\\Argument\\ArgumentsWildcard' => '/phpspec-prophecy/Prophecy/Argument/ArgumentsWildcard.php', 'Prophecy\\Argument\\Token\\AnyValueToken' => '/phpspec-prophecy/Prophecy/Argument/Token/AnyValueToken.php', @@ -2209,11 +2423,11 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'Prophecy\\Call\\CallCenter' => '/phpspec-prophecy/Prophecy/Call/CallCenter.php', 'Prophecy\\Comparator\\ClosureComparator' => '/phpspec-prophecy/Prophecy/Comparator/ClosureComparator.php', 'Prophecy\\Comparator\\Factory' => '/phpspec-prophecy/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\FactoryProvider' => '/phpspec-prophecy/Prophecy/Comparator/FactoryProvider.php', 'Prophecy\\Comparator\\ProphecyComparator' => '/phpspec-prophecy/Prophecy/Comparator/ProphecyComparator.php', 'Prophecy\\Doubler\\CachedDoubler' => '/phpspec-prophecy/Prophecy/Doubler/CachedDoubler.php', 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/KeywordPatch.php', 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => '/phpspec-prophecy/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', @@ -2259,7 +2473,6 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'Prophecy\\Exception\\Prophecy\\ProphecyException' => '/phpspec-prophecy/Prophecy/Exception/Prophecy/ProphecyException.php', 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/ClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => '/phpspec-prophecy/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => '/phpspec-prophecy/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', 'Prophecy\\Prediction\\CallPrediction' => '/phpspec-prophecy/Prophecy/Prediction/CallPrediction.php', 'Prophecy\\Prediction\\CallTimesPrediction' => '/phpspec-prophecy/Prophecy/Prediction/CallTimesPrediction.php', @@ -2280,12 +2493,18 @@ foreach (['PHPUnit\\DeepCopy\\DeepCopy' => '/myclabs-deep-copy/DeepCopy/DeepCopy 'Prophecy\\Prophet' => '/phpspec-prophecy/Prophecy/Prophet.php', 'Prophecy\\Util\\ExportUtil' => '/phpspec-prophecy/Prophecy/Util/ExportUtil.php', 'Prophecy\\Util\\StringUtil' => '/phpspec-prophecy/Prophecy/Util/StringUtil.php'] as $file) { - require_once 'phar://phpunit-9.5.26.phar' . $file; + require_once 'phar://phpunit-9.6.21.phar' . $file; } require __PHPUNIT_PHAR_ROOT__ . '/phpunit/Framework/Assert/Functions.php'; if ($execute) { + if (isset($printComposerLock)) { + print file_get_contents(__PHPUNIT_PHAR_ROOT__ . '/composer.lock'); + + exit; + } + if (isset($printManifest)) { print file_get_contents(__PHPUNIT_PHAR_ROOT__ . '/manifest.txt'); @@ -2304,4186 +2523,7049 @@ if ($execute) { } __HALT_COMPILER(); ?> -jphpunit-9.5.26.pharLdoctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.phpÇp[cÇŒµb¤Rdoctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.php™p[c™ªú¯¤Rdoctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php:p[c:_Y%[¤<doctrine-instantiator/Doctrine/Instantiator/Instantiator.php†p[c†²ˆ5¹¤Edoctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.php p[c LŒȤdoctrine-instantiator/LICENSE$p[c$ -Í‚å¤ manifest.txtÎp[cαŒÂ¤'myclabs-deep-copy/DeepCopy/DeepCopy.php>p[c>¼Ê¼Y¤7myclabs-deep-copy/DeepCopy/Exception/CloneException.php†p[c† {¿Ë¤:myclabs-deep-copy/DeepCopy/Exception/PropertyException.phpp[c3Gzœ¤Gmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php -p[c -²Dg¤Lmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.phpàp[cà)$ð¤Bmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php¢p[c¢)ë¢ÿ¤,myclabs-deep-copy/DeepCopy/Filter/Filter.phpdp[cd³Mð¤0myclabs-deep-copy/DeepCopy/Filter/KeepFilter.phpp[c¶Ynž¤3myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.phpp[c±ž¤3myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.phpñp[cñØ䊉¤Dmyclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.phpp[cpr°¤.myclabs-deep-copy/DeepCopy/Matcher/Matcher.phpÝp[cݺ§³ê¤6myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.php¶p[c¶=ŽBv¤:myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.phpþp[cþŒR×÷¤:myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php2p[c2ZÁQͤ:myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php5p[c5Ù‰«¤Amyclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php‹p[c‹¯ÃƤ7myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.phpp[cŒz†—¤;myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.phpçp[cç‚ëõؤ?myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.phpäp[cä^—ú¤Amyclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php¸p[c¸Ôîv|¤Gmyclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.phpp[cT¿Ø+¤4myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.phpÊp[cÊ’VDº¤6myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.phpÝp[cÝ„QBŤ(myclabs-deep-copy/DeepCopy/deep_copy.phpŸp[cŸrÞx¤myclabs-deep-copy/LICENSE5p[c5Ê­Ë„¤nikic-php-parser/LICENSEðp[cð¥ä”*¤&nikic-php-parser/PhpParser/Builder.phpÔp[cÔ©·6¤1nikic-php-parser/PhpParser/Builder/ClassConst.phpm p[cm ðz˜¤-nikic-php-parser/PhpParser/Builder/Class_.php§p[c§c3­‹¤2nikic-php-parser/PhpParser/Builder/Declaration.phpÝp[cÝÕEÊ7¤/nikic-php-parser/PhpParser/Builder/EnumCase.php^p[c^šçɤ,nikic-php-parser/PhpParser/Builder/Enum_.phpŒ p[cŒ ¸‰#±¤3nikic-php-parser/PhpParser/Builder/FunctionLike.phpép[céZqe¤0nikic-php-parser/PhpParser/Builder/Function_.phpFp[cFu‹x¤1nikic-php-parser/PhpParser/Builder/Interface_.phpÈ p[cÈ øà¤-nikic-php-parser/PhpParser/Builder/Method.phpp[cð”}¤1nikic-php-parser/PhpParser/Builder/Namespace_.php:p[c:ˆp¤,nikic-php-parser/PhpParser/Builder/Param.php p[c èƒÖ¤/nikic-php-parser/PhpParser/Builder/Property.php|p[c|O ì¤/nikic-php-parser/PhpParser/Builder/TraitUse.phpWp[cW³L@á¤9nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.phpŠp[cŠUVx®¤-nikic-php-parser/PhpParser/Builder/Trait_.phpÖp[cÖkj†¤+nikic-php-parser/PhpParser/Builder/Use_.phpßp[cß·s¸°¤-nikic-php-parser/PhpParser/BuilderFactory.php+p[c+òÞ¶¤-nikic-php-parser/PhpParser/BuilderHelpers.phpÎ$p[cÎ$·Ó6N¤&nikic-php-parser/PhpParser/Comment.php´p[c´A¤*nikic-php-parser/PhpParser/Comment/Doc.phpxp[cxpŠ¤;nikic-php-parser/PhpParser/ConstExprEvaluationException.php_p[c_ÞIÌ ¤1nikic-php-parser/PhpParser/ConstExprEvaluator.phpl%p[cl%evÄQ¤$nikic-php-parser/PhpParser/Error.php¸p[c¸ªQZ¤+nikic-php-parser/PhpParser/ErrorHandler.php/p[c/#Òä\¤6nikic-php-parser/PhpParser/ErrorHandler/Collecting.php”p[c”¶&ØȤ4nikic-php-parser/PhpParser/ErrorHandler/Throwing.php†p[c†–S}<¤0nikic-php-parser/PhpParser/Internal/DiffElem.php7p[c7$À‡‹¤.nikic-php-parser/PhpParser/Internal/Differ.php-p[c-åõî^¤Anikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php$p[c$'¬c¢¤3nikic-php-parser/PhpParser/Internal/TokenStream.php%#p[c%# D–«¤*nikic-php-parser/PhpParser/JsonDecoder.php p[c Ùxg¤$nikic-php-parser/PhpParser/Lexer.php›Zp[c›ZÆSnikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.phpVp[cV“h< -¤6nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.phpDp[cD' ,¤5nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.phpCp[cC’Æð¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.phpOp[cOõÈQ#¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.phpQp[cQ„¬Ǥ9nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.phpJp[cJ€f‡¤@nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.phpYp[cYæÕâ¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.phpPp[cPHƉ.¤3nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.phpšp[cš~'›ÿ¤3nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php§p[c§DíæC¤1nikic-php-parser/PhpParser/Node/Expr/CallLike.php&p[c&ŽKS0¤-nikic-php-parser/PhpParser/Node/Expr/Cast.phpAp[cAÎ:Vs¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.phpçp[cçI|–¤3nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.phpåp[cå V]S¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php›p[c›ˆ>,„¤2nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.phpãp[cãá§c¤5nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.phpép[céþ˜æá¤5nikic-php-parser/PhpParser/Node/Expr/Cast/String_.phpép[céó…°¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.phpçp[cç1ÂîÓ¤8nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.phpôp[côÖØ÷¤/nikic-php-parser/PhpParser/Node/Expr/Clone_.php‹p[c‹„©W¤0nikic-php-parser/PhpParser/Node/Expr/Closure.php¤ -p[c¤ -U;¤3nikic-php-parser/PhpParser/Node/Expr/ClosureUse.php‡p[c‡ö¦¹h¤3nikic-php-parser/PhpParser/Node/Expr/ConstFetch.phpÁp[cÁÞ¶%þ¤/nikic-php-parser/PhpParser/Node/Expr/Empty_.phpŽp[cŽÉ'‡‹¤.nikic-php-parser/PhpParser/Node/Expr/Error.phpp[cœa\¤6nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.php¤p[c¤Úg”å¤.nikic-php-parser/PhpParser/Node/Expr/Eval_.php‹p[c‹3ó56¤.nikic-php-parser/PhpParser/Node/Expr/Exit_.phpp[c©•ù¤1nikic-php-parser/PhpParser/Node/Expr/FuncCall.php3p[c3ö%Aõ¤1nikic-php-parser/PhpParser/Node/Expr/Include_.php¢p[c¢‘i„¤4nikic-php-parser/PhpParser/Node/Expr/Instanceof_.phpap[ca<± œ¤/nikic-php-parser/PhpParser/Node/Expr/Isset_.phpp[cI‹¤.nikic-php-parser/PhpParser/Node/Expr/List_.phpæp[cæ™þå¤/nikic-php-parser/PhpParser/Node/Expr/Match_.phpªp[cª–WÇ ¤3nikic-php-parser/PhpParser/Node/Expr/MethodCall.phpOp[cO·DWX¤-nikic-php-parser/PhpParser/Node/Expr/New_.php‹p[c‹ÅÜiĤ;nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.phpfp[cføɤ>nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.phpñp[cñ º/N¤0nikic-php-parser/PhpParser/Node/Expr/PostDec.phpŽp[cŽ‚w´:¤0nikic-php-parser/PhpParser/Node/Expr/PostInc.phpŽp[cŽᦦ!¤/nikic-php-parser/PhpParser/Node/Expr/PreDec.php‹p[c‹tÀg¤/nikic-php-parser/PhpParser/Node/Expr/PreInc.php‹p[c‹Yä/nikic-php-parser/PhpParser/Node/Expr/Print_.phpŽp[cŽnX¤6nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.php×p[c×ɾŠ¤2nikic-php-parser/PhpParser/Node/Expr/ShellExec.php¿p[c¿™hóy¤3nikic-php-parser/PhpParser/Node/Expr/StaticCall.phpep[ceîפ<nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php&p[c&ÙÜ€¤0nikic-php-parser/PhpParser/Node/Expr/Ternary.phpîp[cîQ³åͤ/nikic-php-parser/PhpParser/Node/Expr/Throw_.php¨p[c¨ †?Á¤3nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.phpšp[cšl›ÔA¤2nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.php¤p[c¤e»‹Ì¤1nikic-php-parser/PhpParser/Node/Expr/Variable.php•p[c•mJÃr¤2nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php¨p[c¨µw8³¤/nikic-php-parser/PhpParser/Node/Expr/Yield_.php\p[c\‚Áµ ¤0nikic-php-parser/PhpParser/Node/FunctionLike.phpýp[cý·4üͤ.nikic-php-parser/PhpParser/Node/Identifier.phpíp[cíáJa¤4nikic-php-parser/PhpParser/Node/IntersectionType.phpÏp[cÏäo¤,nikic-php-parser/PhpParser/Node/MatchArm.php®p[c®¢+m6¤(nikic-php-parser/PhpParser/Node/Name.php p[c Qé…¯¤7nikic-php-parser/PhpParser/Node/Name/FullyQualified.phpÀp[cÀ ¤1nikic-php-parser/PhpParser/Node/Name/Relative.php½p[c½Ç›Ef¤0nikic-php-parser/PhpParser/Node/NullableType.php×p[c×Ä6C¤)nikic-php-parser/PhpParser/Node/Param.phpbp[cbM®ºß¤*nikic-php-parser/PhpParser/Node/Scalar.phpkp[ckô,ߤ2nikic-php-parser/PhpParser/Node/Scalar/DNumber.phpap[cakõ·¤3nikic-php-parser/PhpParser/Node/Scalar/Encapsed.phpÙp[cÙRU¼¤=nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.phpæp[cæ%‡¤2nikic-php-parser/PhpParser/Node/Scalar/LNumber.php² p[c² äŸzð¤5nikic-php-parser/PhpParser/Node/Scalar/MagicConst.phpcp[cc,ãxG¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.phpTp[cT㨘X¤9nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.phpMp[cM±aïl¤:nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.phpPp[cP#Íä¤?nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.php]p[c]HnY¤:nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.phpPp[cPM4û¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.phpVp[cV·Τ@nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.php`p[c`>£Š¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.phpTp[cT‹d¤2nikic-php-parser/PhpParser/Node/Scalar/String_.phpqp[cqT$œQ¤(nikic-php-parser/PhpParser/Node/Stmt.php•p[c•¿v2/¤/nikic-php-parser/PhpParser/Node/Stmt/Break_.phpÊp[cÊçßÖ¤.nikic-php-parser/PhpParser/Node/Stmt/Case_.phplp[clÆìÙu¤/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php|p[c|*V>¤3nikic-php-parser/PhpParser/Node/Stmt/ClassConst.phpºp[cºeX?ͤ2nikic-php-parser/PhpParser/Node/Stmt/ClassLike.phpœ p[cœ ‘–Ó0¤4nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.phpýp[cýÒXÀñ¤/nikic-php-parser/PhpParser/Node/Stmt/Class_.phpup[cu_­Ä¼¤/nikic-php-parser/PhpParser/Node/Stmt/Const_.phpÊp[cʳÁ¦æ¤2nikic-php-parser/PhpParser/Node/Stmt/Continue_.phpÙp[cÙﶤ7nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.php–p[c–äÆ€›¤1nikic-php-parser/PhpParser/Node/Stmt/Declare_.php†p[c†.. -¤,nikic-php-parser/PhpParser/Node/Stmt/Do_.phpBp[cB -@¤.nikic-php-parser/PhpParser/Node/Stmt/Echo_.php¤p[c¤͘œÆ¤0nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.phpIp[cI›EÐä.nikic-php-parser/PhpParser/Node/Stmt/Else_.php§p[c§’|ŸÃ¤1nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php³p[c³jDˆ¢¤.nikic-php-parser/PhpParser/Node/Stmt/Enum_.php=p[c=œdA¤3nikic-php-parser/PhpParser/Node/Stmt/Expression.phpâp[câÂRK¤1nikic-php-parser/PhpParser/Node/Stmt/Finally_.php¯p[c¯ö1·A¤-nikic-php-parser/PhpParser/Node/Stmt/For_.php>p[c>N¤æQ¤1nikic-php-parser/PhpParser/Node/Stmt/Foreach_.phpop[co9õ¢¤2nikic-php-parser/PhpParser/Node/Stmt/Function_.php, -p[c, -ãn«L¤0nikic-php-parser/PhpParser/Node/Stmt/Global_.php¸p[c¸Ùͤ.nikic-php-parser/PhpParser/Node/Stmt/Goto_.phpp[cVyPn¤1nikic-php-parser/PhpParser/Node/Stmt/GroupUse.php -p[c -ߎ0|¤5nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.phpp[c]–;¤,nikic-php-parser/PhpParser/Node/Stmt/If_.php:p[c:¬uÙ¤3nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.phpžp[cž]þ¤3nikic-php-parser/PhpParser/Node/Stmt/Interface_.phpæp[cæŽL/Ǥ.nikic-php-parser/PhpParser/Node/Stmt/Label.phpêp[cê®°Ó¤3nikic-php-parser/PhpParser/Node/Stmt/Namespace_.php¿p[c¿ÿã¹€¤,nikic-php-parser/PhpParser/Node/Stmt/Nop.php@p[c@G즤1nikic-php-parser/PhpParser/Node/Stmt/Property.phpO -p[cO -™¿³=¤9nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.phpÝp[cÝ·Ò‰ñ¤0nikic-php-parser/PhpParser/Node/Stmt/Return_.php¶p[c¶Í¿)e¤2nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php—p[c—½àã¤0nikic-php-parser/PhpParser/Node/Stmt/Static_.phpÅp[cÅÈà‹¤0nikic-php-parser/PhpParser/Node/Stmt/Switch_.php5p[c5FF¦Y¤/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php®p[c®ÕȤ1nikic-php-parser/PhpParser/Node/Stmt/TraitUse.php—p[c—gž,Š¤;nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.phpp[ca8‚¤Anikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.phpAp[cA°d¤Fnikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.phpZp[cZP¦Ö¤/nikic-php-parser/PhpParser/Node/Stmt/Trait_.phpp[c÷“$v¤1nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php$p[c$—WÑì¤/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php°p[c°=o¨B¤/nikic-php-parser/PhpParser/Node/Stmt/UseUse.phpdp[cdbŠ‰­¤-nikic-php-parser/PhpParser/Node/Stmt/Use_.phplp[clù9=|¤/nikic-php-parser/PhpParser/Node/Stmt/While_.phpEp[cEÕ¡´¹¤-nikic-php-parser/PhpParser/Node/UnionType.php¦p[c¦^º·m¤5nikic-php-parser/PhpParser/Node/VarLikeIdentifier.phpp[c‰»&œ¤7nikic-php-parser/PhpParser/Node/VariadicPlaceholder.phpšp[cšŽPñ¤+nikic-php-parser/PhpParser/NodeAbstract.phpZp[cZ×»Ì@¤)nikic-php-parser/PhpParser/NodeDumper.phpdp[cdY lˆ¤)nikic-php-parser/PhpParser/NodeFinder.php· p[c· †À¤,nikic-php-parser/PhpParser/NodeTraverser.php]'p[c]'TG:Ƥ5nikic-php-parser/PhpParser/NodeTraverserInterface.php|p[c|Åš À¤*nikic-php-parser/PhpParser/NodeVisitor.phpðp[cð½ÜÍ3¤9nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.phpp[c"WJ¤9nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.php„p[c„¨òB ¤>nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.phpüp[cüm4”Ť7nikic-php-parser/PhpParser/NodeVisitor/NameResolver.phpm&p[cm&f[&¤@nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.phpŒp[cŒ†u -äBnikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.phpup[cuME¨¤2nikic-php-parser/PhpParser/NodeVisitorAbstract.phpÌp[ç½Ä¤%nikic-php-parser/PhpParser/Parser.php}p[c}²ñü{¤.nikic-php-parser/PhpParser/Parser/Multiple.php¦p[c¦sF)7¤*nikic-php-parser/PhpParser/Parser/Php5.php*(p[c*(2“l=¤*nikic-php-parser/PhpParser/Parser/Php7.phpSHp[cSHt5Ô5¤,nikic-php-parser/PhpParser/Parser/Tokens.php&p[c&<£ìþ¤-nikic-php-parser/PhpParser/ParserAbstract.phpÀ™p[cÀ™6û­(¤,nikic-php-parser/PhpParser/ParserFactory.phpèp[cè -~&¤5nikic-php-parser/PhpParser/PrettyPrinter/Standard.php†£p[c†£'ƒó¤4nikic-php-parser/PhpParser/PrettyPrinterAbstract.phpzàp[czà>«¢(¤object-enumerator/LICENSEp[c×y{¤object-reflector/LICENSEp[c¢9v¤phar-io-manifest/LICENSE`p[c`÷þp¤+phar-io-manifest/ManifestDocumentMapper.phpp[c÷Ç:Á¤#phar-io-manifest/ManifestLoader.phpËp[cË.ü-a¤'phar-io-manifest/ManifestSerializer.php¬p[c¬šróp¤:phar-io-manifest/exceptions/ElementCollectionException.phpÔp[cÔÙ ßI¤)phar-io-manifest/exceptions/Exception.php£p[c£¢„ü¤?phar-io-manifest/exceptions/InvalidApplicationNameException.phpýp[cý:@Ä>¤5phar-io-manifest/exceptions/InvalidEmailException.phpÏp[cÏ<»·†¤3phar-io-manifest/exceptions/InvalidUrlException.phpÍp[cÍ£ ¤9phar-io-manifest/exceptions/ManifestDocumentException.php˜p[c˜!P4¶¤@phar-io-manifest/exceptions/ManifestDocumentLoadingException.phpHp[cHǃ·ê¤?phar-io-manifest/exceptions/ManifestDocumentMapperException.phpžp[cž’:9z¤8phar-io-manifest/exceptions/ManifestElementException.php—p[c—“ÂA4¤7phar-io-manifest/exceptions/ManifestLoaderException.phpp[cDªØ>¤'phar-io-manifest/values/Application.phpèp[cèI$Û¤+phar-io-manifest/values/ApplicationName.php;p[c;D»ö¤"phar-io-manifest/values/Author.phpp[cÑÌFì¤,phar-io-manifest/values/AuthorCollection.phpžp[cž”o¤4phar-io-manifest/values/AuthorCollectionIterator.php3p[c3ÑŸƒé¤,phar-io-manifest/values/BundledComponent.php@p[c@öDP`¤6phar-io-manifest/values/BundledComponentCollection.php p[c ¾W6¤>phar-io-manifest/values/BundledComponentCollectionIterator.php¡p[c¡‰Vh¤0phar-io-manifest/values/CopyrightInformation.phpPp[cP aºi¤!phar-io-manifest/values/Email.phpNp[cNZÀ&½¤%phar-io-manifest/values/Extension.php p[c ŽÛq}¤#phar-io-manifest/values/Library.phpàp[càÇÀO¤#phar-io-manifest/values/License.phpïp[cï¥&!o¤$phar-io-manifest/values/Manifest.php -p[c -=La¡¤3phar-io-manifest/values/PhpExtensionRequirement.php›p[c›¹1¤1phar-io-manifest/values/PhpVersionRequirement.phpp[cm¨?¤'phar-io-manifest/values/Requirement.php’p[c’¯÷d÷¤1phar-io-manifest/values/RequirementCollection.phpßp[cßÕì¤P¤9phar-io-manifest/values/RequirementCollectionIterator.phpjp[cjÜ­:’¤ phar-io-manifest/values/Type.php´p[c´ðÕ=%¤phar-io-manifest/values/Url.php…p[c…¬æÍš¤&phar-io-manifest/xml/AuthorElement.phprp[cr¡<¤0phar-io-manifest/xml/AuthorElementCollection.php,p[c,ð¥-­¤'phar-io-manifest/xml/BundlesElement.phpSp[cSúWN>¤)phar-io-manifest/xml/ComponentElement.phpyp[cyæ·ìݤ3phar-io-manifest/xml/ComponentElementCollection.php5p[c5(†Á\¤(phar-io-manifest/xml/ContainsElement.phpnp[cnfÇü¤)phar-io-manifest/xml/CopyrightElement.phpÓp[cÓ—·7¤*phar-io-manifest/xml/ElementCollection.phpp[c@¨ é¤#phar-io-manifest/xml/ExtElement.php p[c y>¾¤-phar-io-manifest/xml/ExtElementCollection.php#p[c#E¼Éí¤)phar-io-manifest/xml/ExtensionElement.php}p[c}0¢ý¤'phar-io-manifest/xml/LicenseElement.phpop[co%Ã:'¤)phar-io-manifest/xml/ManifestDocument.php - p[c - ›ª4º¤(phar-io-manifest/xml/ManifestElement.php4p[c4ãó¤#phar-io-manifest/xml/PhpElement.phpp[c“B:5¤(phar-io-manifest/xml/RequiresElement.php$p[c$>¶¦¤!phar-io-version/BuildMetaData.phpáp[cáê¤phar-io-version/LICENSE&p[c&Òª ¤$phar-io-version/PreReleaseSuffix.phpp[cò:¼¤phar-io-version/Version.phpp[c¥u#¤+phar-io-version/VersionConstraintParser.phpT p[cT ¯¬Ð¤*phar-io-version/VersionConstraintValue.phpH -p[cH -F{~4¤!phar-io-version/VersionNumber.php³p[c³O£1¤9phar-io-version/constraints/AbstractVersionConstraint.php¾p[c¾xB‘¤9phar-io-version/constraints/AndVersionConstraintGroup.phpæp[cæªYí¤4phar-io-version/constraints/AnyVersionConstraint.phpRp[cR #²¤6phar-io-version/constraints/ExactVersionConstraint.phpÓp[cÓý¢!¤Ephar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php†p[c†²VU…¤8phar-io-version/constraints/OrVersionConstraintGroup.phpp[cM%¤Fphar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.phpÉp[cÉ©Éþ¤>phar-io-version/constraints/SpecificMajorVersionConstraint.phpp[c`9q:¤1phar-io-version/constraints/VersionConstraint.phpöp[cöe¤Dq¤(phar-io-version/exceptions/Exception.php¯p[c¯$eœb¤?phar-io-version/exceptions/InvalidPreReleaseSuffixException.php—p[c—…±Òµ¤6phar-io-version/exceptions/InvalidVersionException.phpp[c4/S¤7phar-io-version/exceptions/NoBuildMetaDataException.phpp[c]Š¤:phar-io-version/exceptions/NoPreReleaseSuffixException.php’p[c’ŽÜT4¤Dphar-io-version/exceptions/UnsupportedVersionConstraintException.phpÛp[cÛµˆ9ð¤"php-code-coverage/CodeCoverage.php©Bp[c©B½ž“w¤#php-code-coverage/Driver/Driver.php¡p[c¡3ËA•¤'php-code-coverage/Driver/PcovDriver.phpJp[cJÂ÷ø¤)php-code-coverage/Driver/PhpdbgDriver.php^ -p[c^ -_¿2G¤%php-code-coverage/Driver/Selector.php p[c ó6¦]¤*php-code-coverage/Driver/Xdebug2Driver.phpA p[cA ûŠÝ¤*php-code-coverage/Driver/Xdebug3Driver.php p[c åh*¤Jphp-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.phpÃp[cóÀ77¤Fphp-code-coverage/Exception/DeadCodeDetectionNotSupportedException.php¿p[c¿÷ý›¤Cphp-code-coverage/Exception/DirectoryCouldNotBeCreatedException.php÷p[c÷ë·ï‹¤)php-code-coverage/Exception/Exception.php}p[c}íz¤™¤8php-code-coverage/Exception/InvalidArgumentException.php¤p[c¤ñK.n¤Fphp-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php/p[c/6§R¤]php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.phpap[ca"A£¤/php-code-coverage/Exception/ParserException.php¨p[c¨, /ô¤Dphp-code-coverage/Exception/PathExistsButIsNotDirectoryException.phpp[cô.2¤9php-code-coverage/Exception/PcovNotAvailableException.phpap[caj®¤;php-code-coverage/Exception/PhpdbgNotAvailableException.php`p[c`ðˆ›¤3php-code-coverage/Exception/ReflectionException.php¬p[c¬Ýäk)¤?php-code-coverage/Exception/ReportAlreadyFinalizedException.php:p[c:d%6¤Iphp-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.phpÂp[c»ïÍ}¤6php-code-coverage/Exception/TestIdMissingException.phpp[c‰ -Þÿ¤Cphp-code-coverage/Exception/UnintentionallyCoveredCodeException.php+p[c+Q_ª¤=php-code-coverage/Exception/WriteOperationFailedException.phpˆp[cˆù¹(e¤;php-code-coverage/Exception/WrongXdebugVersionException.phpñp[cñ³ ºÈ¤:php-code-coverage/Exception/Xdebug2NotEnabledException.phpfp[cf†®,'¤:php-code-coverage/Exception/Xdebug3NotEnabledException.phpyp[cy<ÿ>¤;php-code-coverage/Exception/XdebugNotAvailableException.phpep[ceN·‰G¤,php-code-coverage/Exception/XmlException.php¥p[c¥W–ƒÜ¤php-code-coverage/Filter.phpê p[cê Í4¤php-code-coverage/LICENSEp[c?€i¤'php-code-coverage/Node/AbstractNode.php:p[c:%›^‘¤"php-code-coverage/Node/Builder.php p[c Õ2N¤$php-code-coverage/Node/CrapIndex.phpîp[cî# é¤$php-code-coverage/Node/Directory.php -&p[c -&™}ç¤php-code-coverage/Node/File.php’Kp[c’K˜{ê¤#php-code-coverage/Node/Iterator.phpp[cH˜k¤/php-code-coverage/ProcessedCodeCoverageData.php$p[c$äŽ'¤)php-code-coverage/RawCodeCoverageData.phpÝp[cÝ—ç>}¤#php-code-coverage/Report/Clover.phpú'p[cú'òlá4¤&php-code-coverage/Report/Cobertura.phpã0p[cã0êȆ̤#php-code-coverage/Report/Crap4j.phpßp[cßJÅ#D¤(php-code-coverage/Report/Html/Facade.php"p[c"ù;ŸÚ¤*php-code-coverage/Report/Html/Renderer.phpU!p[cU!åž}¤4php-code-coverage/Report/Html/Renderer/Dashboard.phpC p[cC €LÅ+¤4php-code-coverage/Report/Html/Renderer/Directory.php p[c §Ù(¤/php-code-coverage/Report/Html/Renderer/File.phpÕŒp[cÕŒ=Ž¯E¤Bphp-code-coverage/Report/Html/Renderer/Template/branches.html.distôp[côh2+¤Fphp-code-coverage/Report/Html/Renderer/Template/coverage_bar.html.dist'p[c'õO}¤Mphp-code-coverage/Report/Html/Renderer/Template/coverage_bar_branch.html.dist'p[c'õO}¤Ephp-code-coverage/Report/Html/Renderer/Template/css/bootstrap.min.cssáxp[cáxvX²¤>php-code-coverage/Report/Html/Renderer/Template/css/custom.cssp[c¤Aphp-code-coverage/Report/Html/Renderer/Template/css/nv.d3.min.cssX%p[cX%0,¤@php-code-coverage/Report/Html/Renderer/Template/css/octicons.cssXp[cX'#ï¤=php-code-coverage/Report/Html/Renderer/Template/css/style.css­p[c­Y– ¤Cphp-code-coverage/Report/Html/Renderer/Template/dashboard.html.distGp[cGäÄl¤Jphp-code-coverage/Report/Html/Renderer/Template/dashboard_branch.html.distGp[cGäÄl¤Cphp-code-coverage/Report/Html/Renderer/Template/directory.html.distÌp[cÌGÉM³¤Jphp-code-coverage/Report/Html/Renderer/Template/directory_branch.html.distjp[cj¡HØâ¤Hphp-code-coverage/Report/Html/Renderer/Template/directory_item.html.distAp[cAds¤Ophp-code-coverage/Report/Html/Renderer/Template/directory_item_branch.html.dist;p[c;ªm½Û¤>php-code-coverage/Report/Html/Renderer/Template/file.html.distîp[cîGd=r¤Ephp-code-coverage/Report/Html/Renderer/Template/file_branch.html.dist‹ p[c‹ göõ¤Cphp-code-coverage/Report/Html/Renderer/Template/file_item.html.distrp[créð/y¤Jphp-code-coverage/Report/Html/Renderer/Template/file_item_branch.html.distlp[cl¡-°÷¤Cphp-code-coverage/Report/Html/Renderer/Template/icons/file-code.svg0p[c0ÙQUU¤Hphp-code-coverage/Report/Html/Renderer/Template/icons/file-directory.svgêp[cêýÚZÿ¤Cphp-code-coverage/Report/Html/Renderer/Template/js/bootstrap.min.jsèóp[cèóQÀU<¤<php-code-coverage/Report/Html/Renderer/Template/js/d3.min.js­Pp[c­PÅhéb¤:php-code-coverage/Report/Html/Renderer/Template/js/file.jsùp[cùb䆤@php-code-coverage/Report/Html/Renderer/Template/js/jquery.min.js]p[c]Æ2]¤?php-code-coverage/Report/Html/Renderer/Template/js/nv.d3.min.jsÚRp[cÚRphp-code-coverage/Report/Html/Renderer/Template/line.html.distÅp[cÅãç­{¤?php-code-coverage/Report/Html/Renderer/Template/lines.html.distep[cedf ¤Ephp-code-coverage/Report/Html/Renderer/Template/method_item.html.dist«p[c«‹jפLphp-code-coverage/Report/Html/Renderer/Template/method_item_branch.html.dist¥p[c¥yÄŽk¤?php-code-coverage/Report/Html/Renderer/Template/paths.html.distòp[còã*'ݤ php-code-coverage/Report/PHP.php²p[c²$&aë¤!php-code-coverage/Report/Text.phpå'p[cå' 6H¤1php-code-coverage/Report/Xml/BuildInformation.phpç p[cç T3›e¤)php-code-coverage/Report/Xml/Coverage.php+p[c+Ô9ùE¤*php-code-coverage/Report/Xml/Directory.phpép[céAfà¤'php-code-coverage/Report/Xml/Facade.php"p[c"O}¤%php-code-coverage/Report/Xml/File.php+p[c+g׃¤'php-code-coverage/Report/Xml/Method.phpWp[cW »Ê¤%php-code-coverage/Report/Xml/Node.php3p[c3¹šª¤(php-code-coverage/Report/Xml/Project.phpfp[cfP›e¤'php-code-coverage/Report/Xml/Report.php p[c ¦HC¤'php-code-coverage/Report/Xml/Source.phpzp[cz'Â1Š¤&php-code-coverage/Report/Xml/Tests.php®p[c®•äÊò¤'php-code-coverage/Report/Xml/Totals.phpp[có:6í¤%php-code-coverage/Report/Xml/Unit.php¡p[c¡Yˆ¬¤0php-code-coverage/StaticAnalysis/CacheWarmer.php)p[c)„ ŒÛ¤8php-code-coverage/StaticAnalysis/CachingFileAnalyser.phpÍp[c͹Z*¤;php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.php_&p[c_&mqi¤Bphp-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.php$p[c$39Ó¤1php-code-coverage/StaticAnalysis/FileAnalyser.php½p[c½öçÜJ¤?php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php p[c §¹ä¤8php-code-coverage/StaticAnalysis/ParsingFileAnalyser.php‚p[c‚¸û}Á¤%php-code-coverage/Util/Filesystem.phpªp[cªŒëÿ¤%php-code-coverage/Util/Percentage.php„p[c„¹ù«ö¤php-code-coverage/Version.phpÃp[cà y[Ö¤php-file-iterator/Facade.php% -p[c% -Üë®Î¤php-file-iterator/Factory.phpÛp[cÛg Ï,¤php-file-iterator/Iterator.phpZ p[cZ CÜŽ¤php-file-iterator/LICENSEp[co™:¤php-invoker/Invoker.phpp[cÂ+L¤$php-invoker/exceptions/Exception.phprp[crvvdu¤Dphp-invoker/exceptions/ProcessControlExtensionNotLoadedException.php·p[c· áí¤+php-invoker/exceptions/TimeoutException.phpžp[cžö™.¢¤php-text-template/LICENSEp[cu¹¤php-text-template/Template.php( p[c( Áä¤*php-text-template/exceptions/Exception.phpyp[cyæn³µ¤9php-text-template/exceptions/InvalidArgumentException.php p[c …aM¤1php-text-template/exceptions/RuntimeException.phpµp[cµYm'¤php-timer/Duration.php -p[c -tX÷y¤php-timer/LICENSEp[cx™¸œ¤$php-timer/ResourceUsageFormatter.php¨p[c¨PÚ¾¤php-timer/Timer.phpˆp[cˆc²Aɤ"php-timer/exceptions/Exception.phpnp[cn«iuÛ¤/php-timer/exceptions/NoActiveTimerException.phpœp[cœüólÙ¤Ephp-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.php¶p[c¶´$bž¤+phpdocumentor-reflection-common/Element.php p[c %â¤(phpdocumentor-reflection-common/File.phpŸp[cŸ°ˆI)¤)phpdocumentor-reflection-common/Fqsen.phpÅp[cÅ—â¤?¤'phpdocumentor-reflection-common/LICENSE9p[c9*2Ȥ,phpdocumentor-reflection-common/Location.php‘p[c‘=­(œ¤+phpdocumentor-reflection-common/Project.phpp[c¬¦J¤2phpdocumentor-reflection-common/ProjectFactory.php_p[c_j÷\"¤.phpdocumentor-reflection-docblock/DocBlock.php“p[c“Hx>$¤:phpdocumentor-reflection-docblock/DocBlock/Description.phpÖ p[cÖ 54¬¤Aphpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.phpòp[còËd=¤<phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php,p[c,ׯƒf¤9phpdocumentor-reflection-docblock/DocBlock/Serializer.php p[c µ]–¤Aphpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.phpì0p[cì0‹¢<¤2phpdocumentor-reflection-docblock/DocBlock/Tag.php¡p[c¡·¶”¤9phpdocumentor-reflection-docblock/DocBlock/TagFactory.php†p[c†JMx¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Author.php¹ p[c¹ Ø·’¤;phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.phpŒp[cŒÖÌZr¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.phpg -p[cg -w8«¤>phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.phpë -p[cë -}CœO¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Example.phpßp[cßalN@¤Hphpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.phpp[c.ý·Í¤=phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.phpp[cð}BܤLphpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.phpqp[cqÀ¯­ë¤Rphpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.php¹p[c¹PæŸ~¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.phpx p[cx Bðån¤>phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php,p[c,õMd8¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Link.phpƒp[cƒGŠ›¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php›p[c›YK¼c¤9phpdocumentor-reflection-docblock/DocBlock/Tags/Param.phpp[cêB¥®¤<phpdocumentor-reflection-docblock/DocBlock/Tags/Property.phpË p[cË |yCϤ@phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.phpÙ p[cÙ â#k:¤Aphpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.php× p[c× v ФCphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php,p[c,%8¤Gphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.phpÔp[cÔª ¢¤Aphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.phpÍp[cÍc[]î¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.phpp[c Nœ¤7phpdocumentor-reflection-docblock/DocBlock/Tags/See.php p[c ±:e¤9phpdocumentor-reflection-docblock/DocBlock/Tags/Since.phpW -p[cW -1>Íó¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Source.php³ p[c³ «[K¤?phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php¨p[c¨;u•¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.phpp[c"»îG¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.php> -p[c> -¸ -¦¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.php p[c u:—Ú¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php¬ -p[c¬ -@S³±¤5phpdocumentor-reflection-docblock/DocBlockFactory.phpÖ$p[cÖ$³br¤>phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php…p[c…)%ùߤ=phpdocumentor-reflection-docblock/Exception/PcreException.php™p[c™ èV¤)phpdocumentor-reflection-docblock/LICENSE8p[c8á‰Ê¤+phpdocumentor-reflection-docblock/Utils.php¾ p[c¾ -phpdocumentor-type-resolver/FqsenResolver.phpýp[cýjƒ²^¤#phpdocumentor-type-resolver/LICENSE8p[c8á‰Ê¤*phpdocumentor-type-resolver/PseudoType.phpup[cuœ]ú\¤:phpdocumentor-type-resolver/PseudoTypes/CallableString.php`p[c`Z‚¤2phpdocumentor-type-resolver/PseudoTypes/False_.php§p[c§¡o䈤=phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.phpgp[cgÐãwe¤8phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php%p[c%ô…¯R¤1phpdocumentor-type-resolver/PseudoTypes/List_.phpœp[cœªÃwu¤9phpdocumentor-type-resolver/PseudoTypes/LiteralString.php^p[c^=oNW¤;phpdocumentor-type-resolver/PseudoTypes/LowercaseString.phpbp[cb¦7 æ¤;phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.php[p[c[DEÛ¤Cphpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.phptp[ctõÃ)¤:phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.phpap[ca²,¤9phpdocumentor-type-resolver/PseudoTypes/NumericString.php^p[c^ÌÃ8M¤4phpdocumentor-type-resolver/PseudoTypes/Numeric_.php÷p[c÷=šçk¤;phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.php[p[c[ÜHǤ7phpdocumentor-type-resolver/PseudoTypes/TraitString.phpZp[cZ´g†C¤1phpdocumentor-type-resolver/PseudoTypes/True_.php£p[c£»l´¤$phpdocumentor-type-resolver/Type.phpÜp[cÜ’b¾&¤,phpdocumentor-type-resolver/TypeResolver.php%Up[c%UUðŒ­¤2phpdocumentor-type-resolver/Types/AbstractList.phptp[ctt»¤4phpdocumentor-type-resolver/Types/AggregatedType.phpÓ -p[cÓ -ôHɵ¤.phpdocumentor-type-resolver/Types/ArrayKey.phpœp[cœîºPĤ,phpdocumentor-type-resolver/Types/Array_.phpÕp[cÕø4¤-phpdocumentor-type-resolver/Types/Boolean.phpnp[cnrõĤ/phpdocumentor-type-resolver/Types/Callable_.php{p[c{ëE§ã¤1phpdocumentor-type-resolver/Types/ClassString.phpCp[cCrvyµ¤0phpdocumentor-type-resolver/Types/Collection.php p[c ?¬¼ÿ¤.phpdocumentor-type-resolver/Types/Compound.phpp[c>7¢¤-phpdocumentor-type-resolver/Types/Context.phpÌ p[cÌ º]ëZ¤4phpdocumentor-type-resolver/Types/ContextFactory.phpþ6p[cþ6ù´\¤0phpdocumentor-type-resolver/Types/Expression.php8p[c8’g¸ð¤,phpdocumentor-type-resolver/Types/Float_.phpmp[cm)J¤-phpdocumentor-type-resolver/Types/Integer.phpjp[cjœv£¤5phpdocumentor-type-resolver/Types/InterfaceString.php²p[c²Áùø¤2phpdocumentor-type-resolver/Types/Intersection.phpp[cUz$´¤/phpdocumentor-type-resolver/Types/Iterable_.php?p[c?úQ8¤,phpdocumentor-type-resolver/Types/Mixed_.php€p[c€3ši«¤,phpdocumentor-type-resolver/Types/Never_.phpp[c€j¤+phpdocumentor-type-resolver/Types/Null_.phpxp[cx”sú¤.phpdocumentor-type-resolver/Types/Nullable.phpRp[cRCp\¤-phpdocumentor-type-resolver/Types/Object_.phpèp[cèwEhN¤-phpdocumentor-type-resolver/Types/Parent_.phpäp[cäO!.¤/phpdocumentor-type-resolver/Types/Resource_.phpp[cÅžX¡¤,phpdocumentor-type-resolver/Types/Scalar.php´p[c´·ÅÁ¤+phpdocumentor-type-resolver/Types/Self_.phpÌp[cÌåoȤ-phpdocumentor-type-resolver/Types/Static_.phpp[cëèÉ8¤-phpdocumentor-type-resolver/Types/String_.phpsp[csåâüH¤*phpdocumentor-type-resolver/Types/This.phpYp[cY^?Öˆ¤+phpdocumentor-type-resolver/Types/Void_.phpp[ck¤phpspec-prophecy/LICENSE}p[c} ðߦ¤&phpspec-prophecy/Prophecy/Argument.php’p[c’ün¼¤8phpspec-prophecy/Prophecy/Argument/ArgumentsWildcard.phpY p[cY ¸0?Š¤:phpspec-prophecy/Prophecy/Argument/Token/AnyValueToken.phpÂp[cÂÍ{ƒÜ¤;phpspec-prophecy/Prophecy/Argument/Token/AnyValuesToken.phpñp[cñÃ'Þ`¤Bphpspec-prophecy/Prophecy/Argument/Token/ApproximateValueToken.php©p[c©‰ óð¤<phpspec-prophecy/Prophecy/Argument/Token/ArrayCountToken.phpõp[cõ»/*2¤<phpspec-prophecy/Prophecy/Argument/Token/ArrayEntryToken.php½p[c½¹‰‘¥¤Aphpspec-prophecy/Prophecy/Argument/Token/ArrayEveryEntryToken.phpÝp[cݲ‘ª#¤:phpspec-prophecy/Prophecy/Argument/Token/CallbackToken.phpp[cv¸þ¤<phpspec-prophecy/Prophecy/Argument/Token/ExactValueToken.phpÔ p[cÔ j\£¤@phpspec-prophecy/Prophecy/Argument/Token/IdenticalValueToken.phpúp[cúu`S…¤9phpspec-prophecy/Prophecy/Argument/Token/InArrayToken.phpép[céŠ?xn¤<phpspec-prophecy/Prophecy/Argument/Token/LogicalAndToken.phpDp[cD(bL‘¤<phpspec-prophecy/Prophecy/Argument/Token/LogicalNotToken.phpXp[cXÊ5)ð¤<phpspec-prophecy/Prophecy/Argument/Token/NotInArrayToken.phpñp[cñ;®¤=phpspec-prophecy/Prophecy/Argument/Token/ObjectStateToken.phpø p[cø ×ÛTá¤@phpspec-prophecy/Prophecy/Argument/Token/StringContainsToken.php-p[c-3xÖD¤;phpspec-prophecy/Prophecy/Argument/Token/TokenInterface.phpp[c(nGw¤6phpspec-prophecy/Prophecy/Argument/Token/TypeToken.php¢p[c¢’ú$¤'phpspec-prophecy/Prophecy/Call/Call.phpc p[cc ÚŸøJ¤-phpspec-prophecy/Prophecy/Call/CallCenter.phpàp[càÉ.í¤:phpspec-prophecy/Prophecy/Comparator/ClosureComparator.phpÛp[cÛ4†ý’¤0phpspec-prophecy/Prophecy/Comparator/Factory.phpp[c8! -Ô¤;phpspec-prophecy/Prophecy/Comparator/ProphecyComparator.phpœp[cœ^ß^¤3phpspec-prophecy/Prophecy/Doubler/CachedDoubler.phpƒp[cƒOd\¤Dphpspec-prophecy/Prophecy/Doubler/ClassPatch/ClassPatchInterface.phphp[chýq!ʤHphpspec-prophecy/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.phpòp[cò”‹Åã¤Cphpspec-prophecy/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.phpõp[cõ…9Ú¤=phpspec-prophecy/Prophecy/Doubler/ClassPatch/KeywordPatch.php p[c ’ª¤«¤?phpspec-prophecy/Prophecy/Doubler/ClassPatch/MagicCallPatch.phpÄ p[cÄ Q)š7¤Ephpspec-prophecy/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.phpý p[cý ç/äPphpspec-prophecy/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php‰p[c‰Æ¯Û¤Aphpspec-prophecy/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.phpi p[ci [§ê¢¤?phpspec-prophecy/Prophecy/Doubler/ClassPatch/ThrowablePatch.php p[c 83§û¤Aphpspec-prophecy/Prophecy/Doubler/ClassPatch/TraversablePatch.phpô p[cô Œwp¤5phpspec-prophecy/Prophecy/Doubler/DoubleInterface.phpáp[cáBÿÛ¤-phpspec-prophecy/Prophecy/Doubler/Doubler.php5p[c5¹ôú5¤Bphpspec-prophecy/Prophecy/Doubler/Generator/ClassCodeGenerator.phpé p[cé phpspec-prophecy/Prophecy/Doubler/Generator/Node/ClassNode.phpp[c"BË(¤?phpspec-prophecy/Prophecy/Doubler/Generator/Node/MethodNode.phpop[což}-¤Cphpspec-prophecy/Prophecy/Doubler/Generator/Node/ReturnTypeNode.phpp[c,®X;¤Ephpspec-prophecy/Prophecy/Doubler/Generator/Node/TypeNodeAbstract.phpÚ p[cÚ ¬‰°¾¤Cphpspec-prophecy/Prophecy/Doubler/Generator/ReflectionInterface.phpñp[cñ Y¤Aphpspec-prophecy/Prophecy/Doubler/Generator/TypeHintReference.php–p[c–°ÿi¶¤0phpspec-prophecy/Prophecy/Doubler/LazyDouble.phpÎ p[cÎ ¾äÙ¤3phpspec-prophecy/Prophecy/Doubler/NameGenerator.php‰p[c‰¬Öd´¤Dphpspec-prophecy/Prophecy/Exception/Call/UnexpectedCallException.php°p[c°èª}â¤Ephpspec-prophecy/Prophecy/Exception/Doubler/ClassCreatorException.phpÌp[cÌr™çý¤Dphpspec-prophecy/Prophecy/Exception/Doubler/ClassMirrorException.phpÁp[cÁb¤Fphpspec-prophecy/Prophecy/Exception/Doubler/ClassNotFoundException.phpÝp[cÝï>Âí¤?phpspec-prophecy/Prophecy/Exception/Doubler/DoubleException.phpÃp[cÃV”"^¤@phpspec-prophecy/Prophecy/Exception/Doubler/DoublerException.php•p[c•hîú¤Jphpspec-prophecy/Prophecy/Exception/Doubler/InterfaceNotFoundException.phpûp[cû&¾q¤Lphpspec-prophecy/Prophecy/Exception/Doubler/MethodNotExtendableException.phpÝp[cÝÐã[–¤Gphpspec-prophecy/Prophecy/Exception/Doubler/MethodNotFoundException.php÷p[c÷æe:°¤Jphpspec-prophecy/Prophecy/Exception/Doubler/ReturnByReferenceException.php£p[c£0+5,¤1phpspec-prophecy/Prophecy/Exception/Exception.phpõp[cõxò•¤@phpspec-prophecy/Prophecy/Exception/InvalidArgumentException.php¨p[c¨õ󱙤Ephpspec-prophecy/Prophecy/Exception/Prediction/AggregateException.php8p[c8 ¹.Ú¤Lphpspec-prophecy/Prophecy/Exception/Prediction/FailedPredictionException.phpgp[cg3'}}¤Cphpspec-prophecy/Prophecy/Exception/Prediction/NoCallsException.php÷p[c÷ò½½Z¤Fphpspec-prophecy/Prophecy/Exception/Prediction/PredictionException.php›p[c›R2ìͤPphpspec-prophecy/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php#p[c#þªÝߤKphpspec-prophecy/Prophecy/Exception/Prediction/UnexpectedCallsException.phpFp[cFà|‚b¤Hphpspec-prophecy/Prophecy/Exception/Prophecy/MethodProphecyException.phpAp[cA’‚Ãc¤Hphpspec-prophecy/Prophecy/Exception/Prophecy/ObjectProphecyException.php2p[c2øŒËe¤Bphpspec-prophecy/Prophecy/Exception/Prophecy/ProphecyException.php—p[c—D¬7j¤Iphpspec-prophecy/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php¸p[c¸—ŠùƤ=phpspec-prophecy/Prophecy/PhpDocumentor/ClassTagRetriever.phpÿp[cÿ@¿Ž%¤Cphpspec-prophecy/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php”p[c”|6õ¤Gphpspec-prophecy/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.phpíp[cí®’³1¤7phpspec-prophecy/Prophecy/Prediction/CallPrediction.phpZp[cZ%…÷U¤<phpspec-prophecy/Prophecy/Prediction/CallTimesPrediction.phpÇ -p[cÇ -#c©¤;phpspec-prophecy/Prophecy/Prediction/CallbackPrediction.phpÒp[cÒ~Ï*»¤:phpspec-prophecy/Prophecy/Prediction/NoCallsPrediction.php‡p[c‡˜Ü¼ò¤<phpspec-prophecy/Prophecy/Prediction/PredictionInterface.phpp[cávñ¤5phpspec-prophecy/Prophecy/Promise/CallbackPromise.phpÉp[cÉÔŒòÓ¤6phpspec-prophecy/Prophecy/Promise/PromiseInterface.phpIp[cIyv²¤;phpspec-prophecy/Prophecy/Promise/ReturnArgumentPromise.php -p[c -¤,Ôs¤3phpspec-prophecy/Prophecy/Promise/ReturnPromise.php%p[c%•¦¾&¤2phpspec-prophecy/Prophecy/Promise/ThrowPromise.php% p[c% ›Q3¤5phpspec-prophecy/Prophecy/Prophecy/MethodProphecy.php29p[c29SÑȤ5phpspec-prophecy/Prophecy/Prophecy/ObjectProphecy.phpÚp[cÚŸð#=¤8phpspec-prophecy/Prophecy/Prophecy/ProphecyInterface.php+p[c+´ãXì¤?phpspec-prophecy/Prophecy/Prophecy/ProphecySubjectInterface.phpðp[cð<¤/phpspec-prophecy/Prophecy/Prophecy/Revealer.phpµp[cµ ”m€¤8phpspec-prophecy/Prophecy/Prophecy/RevealerInterface.phpGp[cG§WnZ¤%phpspec-prophecy/Prophecy/Prophet.phpEp[cE³:.b¤-phpspec-prophecy/Prophecy/Util/ExportUtil.phpdp[cd/ü,¤-phpspec-prophecy/Prophecy/Util/StringUtil.phpŽ -p[cŽ -S‚–¤ phpunit.xsdDFp[cDFûùs|¤phpunit/Exception.php­p[c­aµ•#¤phpunit/Framework/Assert.php˜Rp[c˜R6ë’¤&phpunit/Framework/Assert/Functions.phpäšp[cäš lO•¤0phpunit/Framework/Constraint/Boolean/IsFalse.phpšp[cš×ýµŠ¤/phpunit/Framework/Constraint/Boolean/IsTrue.php—p[c—‹­}¤)phpunit/Framework/Constraint/Callback.php?p[c?ù -¼b¤2phpunit/Framework/Constraint/Cardinality/Count.phpj p[cj xR@ؤ8phpunit/Framework/Constraint/Cardinality/GreaterThan.phpãp[cãh,d}¤4phpunit/Framework/Constraint/Cardinality/IsEmpty.php¾p[c¾¥hfà¤5phpunit/Framework/Constraint/Cardinality/LessThan.phpÝp[cÝa ýT¤5phpunit/Framework/Constraint/Cardinality/SameSize.php_p[c_uáËŤ+phpunit/Framework/Constraint/Constraint.phpk"p[ck"§@Ƥ1phpunit/Framework/Constraint/Equality/IsEqual.phpÎ p[cÎ éÀÓ¤?phpunit/Framework/Constraint/Equality/IsEqualCanonicalizing.php¨ -p[c¨ -¶~á¤=phpunit/Framework/Constraint/Equality/IsEqualIgnoringCase.php¦ -p[c¦ -ì±C\¤:phpunit/Framework/Constraint/Equality/IsEqualWithDelta.php -p[c -•É6Œ¤4phpunit/Framework/Constraint/Exception/Exception.phpp[cRuž{¤8phpunit/Framework/Constraint/Exception/ExceptionCode.phpÁp[cÁiØ£¤;phpunit/Framework/Constraint/Exception/ExceptionMessage.phpŸp[cŸw;¤Lphpunit/Framework/Constraint/Exception/ExceptionMessageRegularExpression.phpÃp[cÃLj[i¤;phpunit/Framework/Constraint/Filesystem/DirectoryExists.phpjp[cjœi+¬¤6phpunit/Framework/Constraint/Filesystem/FileExists.phpep[ceKô£¤6phpunit/Framework/Constraint/Filesystem/IsReadable.phpep[ce•ó1º¤6phpunit/Framework/Constraint/Filesystem/IsWritable.phpep[ce¾Ý¤+phpunit/Framework/Constraint/IsAnything.php†p[c†€E•¸¤,phpunit/Framework/Constraint/IsIdentical.phpã p[cã õ&¨¤,phpunit/Framework/Constraint/JsonMatches.phpz p[cz '÷R­¤@phpunit/Framework/Constraint/JsonMatchesErrorMessageProvider.php5p[c5m½Ò»¤.phpunit/Framework/Constraint/Math/IsFinite.php´p[c´ZÒ—ã¤0phpunit/Framework/Constraint/Math/IsInfinite.php¼p[c¼'*~‘¤+phpunit/Framework/Constraint/Math/IsNan.php¨p[c¨4Ïg0¤9phpunit/Framework/Constraint/Object/ClassHasAttribute.phpnp[cn9“Ð<¤?phpunit/Framework/Constraint/Object/ClassHasStaticAttribute.phpåp[cådRõ¤4phpunit/Framework/Constraint/Object/ObjectEquals.php -p[c -0ÒW¤:phpunit/Framework/Constraint/Object/ObjectHasAttribute.php[p[c[F÷ƒm¤8phpunit/Framework/Constraint/Operator/BinaryOperator.phpGp[cGS\ô¤¤4phpunit/Framework/Constraint/Operator/LogicalAnd.phpp[c˜bJ±¤4phpunit/Framework/Constraint/Operator/LogicalNot.phpº p[cº Óüý¤3phpunit/Framework/Constraint/Operator/LogicalOr.phpúp[cú·ÄøZ¤4phpunit/Framework/Constraint/Operator/LogicalXor.php$p[c$O¤2phpunit/Framework/Constraint/Operator/Operator.php&p[c&È Dܤ7phpunit/Framework/Constraint/Operator/UnaryOperator.php -p[c - „a¤.phpunit/Framework/Constraint/String/IsJson.phpp[c´\@¤9phpunit/Framework/Constraint/String/RegularExpression.php¥p[c¥+±J±¤6phpunit/Framework/Constraint/String/StringContains.phpÕp[cÕij"„¤6phpunit/Framework/Constraint/String/StringEndsWith.php£p[c£{Š´¤Fphpunit/Framework/Constraint/String/StringMatchesFormatDescription.php½ -p[c½ -¬ÉJ¤8phpunit/Framework/Constraint/String/StringStartsWith.phpBp[cB›¨ß¤8phpunit/Framework/Constraint/Traversable/ArrayHasKey.php¾p[c¾6¸@!¤@phpunit/Framework/Constraint/Traversable/TraversableContains.phpp[c™¼½ç¤Ephpunit/Framework/Constraint/Traversable/TraversableContainsEqual.phpap[caw«A­¤Iphpunit/Framework/Constraint/Traversable/TraversableContainsIdentical.php'p[c's‡‘Ó¤Dphpunit/Framework/Constraint/Traversable/TraversableContainsOnly.php p[c R‰uФ2phpunit/Framework/Constraint/Type/IsInstanceOf.php:p[c:ç@¿¤,phpunit/Framework/Constraint/Type/IsNull.php–p[c–ª½?)¤,phpunit/Framework/Constraint/Type/IsType.phpŒp[cŒGïÏȤ+phpunit/Framework/DataProviderTestSuite.phpp[c\8¤&phpunit/Framework/Error/Deprecated.phpzp[czñàV¤!phpunit/Framework/Error/Error.phplp[cl¸‰Ö]¤"phpunit/Framework/Error/Notice.phpvp[cv¯úÂˤ#phpunit/Framework/Error/Warning.phpwp[cwÙãG¤#phpunit/Framework/ErrorTestCase.phpp[c¡¾Ì¤Aphpunit/Framework/Exception/ActualValueIsNotAnObjectException.phpÁp[cÁá`B‰¤4phpunit/Framework/Exception/AssertionFailedError.php“p[c“ÓÂà¤5phpunit/Framework/Exception/CodeCoverageException.phpÃp[cõ£[è¤Sphpunit/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.phpkp[ckphpunit/Framework/MockObject/Exception/ReflectionException.phpp[c.Ø”¶¤Lphpunit/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php6p[c6?먙¤;phpunit/Framework/MockObject/Exception/RuntimeException.php÷p[c÷ô¨_|¤Mphpunit/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php¥p[c¥©¿Šz¤@phpunit/Framework/MockObject/Exception/UnknownClassException.php«p[c«5uþW¤@phpunit/Framework/MockObject/Exception/UnknownTraitException.php«p[c«qÂ¥—¤?phpunit/Framework/MockObject/Exception/UnknownTypeException.php­p[c­’~ùµ¤*phpunit/Framework/MockObject/Generator.phpˆp[cˆäiƤ6phpunit/Framework/MockObject/Generator/deprecation.tpl;p[c;O5øs¤7phpunit/Framework/MockObject/Generator/intersection.tplLp[cL®Ž-X¤7phpunit/Framework/MockObject/Generator/mocked_class.tplp[c‚wZ¤8phpunit/Framework/MockObject/Generator/mocked_method.tplFp[cFŒK¤Fphpunit/Framework/MockObject/Generator/mocked_method_never_or_void.tplp[cßpç¤?phpunit/Framework/MockObject/Generator/mocked_static_method.tplîp[cî 4éR¤9phpunit/Framework/MockObject/Generator/proxied_method.tpl}p[c}@üÄ—¤Gphpunit/Framework/MockObject/Generator/proxied_method_never_or_void.tplvp[cvÖÃT¤6phpunit/Framework/MockObject/Generator/trait_class.tplQp[cQ÷<‹È¤5phpunit/Framework/MockObject/Generator/wsdl_class.tplÍp[cÍô’±¤6phpunit/Framework/MockObject/Generator/wsdl_method.tpl<p[c<¾Ði‰¤+phpunit/Framework/MockObject/Invocation.php›p[c›idô»¤2phpunit/Framework/MockObject/InvocationHandler.php:p[c:ô‰Æˤ(phpunit/Framework/MockObject/Matcher.phpëp[cë¡DË-¤5phpunit/Framework/MockObject/MethodNameConstraint.php -p[c -ªA1|¤,phpunit/Framework/MockObject/MockBuilder.php=+p[c=+BÑ5ƒ¤*phpunit/Framework/MockObject/MockClass.phpÀp[cÀó'Cµ¤+phpunit/Framework/MockObject/MockMethod.php†&p[c†&[ù(·¤.phpunit/Framework/MockObject/MockMethodSet.php8p[c8G¶¤\¤+phpunit/Framework/MockObject/MockObject.php—p[c—ÍÜbt¤*phpunit/Framework/MockObject/MockTrait.php†p[c†&¢nä)phpunit/Framework/MockObject/MockType.phpûp[cûFñFt¤5phpunit/Framework/MockObject/Rule/AnyInvokedCount.phpjp[cj¡ƒ`Ť3phpunit/Framework/MockObject/Rule/AnyParameters.phpûp[cû~'³¤;phpunit/Framework/MockObject/Rule/ConsecutiveParameters.phpl p[cl “z'%¤5phpunit/Framework/MockObject/Rule/InvocationOrder.phpÈp[cÈ’LDÓ¤4phpunit/Framework/MockObject/Rule/InvokedAtIndex.php,p[c,kK»‘¤9phpunit/Framework/MockObject/Rule/InvokedAtLeastCount.php–p[c–ãBû¤8phpunit/Framework/MockObject/Rule/InvokedAtLeastOnce.php-p[c-… µ(¤8phpunit/Framework/MockObject/Rule/InvokedAtMostCount.php‹p[c‹®gØY¤2phpunit/Framework/MockObject/Rule/InvokedCount.php¦ p[c¦ ^¤ ¤0phpunit/Framework/MockObject/Rule/MethodName.php‡p[c‡Ç -WG¤0phpunit/Framework/MockObject/Rule/Parameters.phpQp[cQ`g|¤¤4phpunit/Framework/MockObject/Rule/ParametersRule.phpcp[cc?‘(¤%phpunit/Framework/MockObject/Stub.phpp[cÅŽ»¤6phpunit/Framework/MockObject/Stub/ConsecutiveCalls.php p[c þÊä.¤/phpunit/Framework/MockObject/Stub/Exception.php(p[c(ŸJâ¤4phpunit/Framework/MockObject/Stub/ReturnArgument.phpp[c?ð}6¤4phpunit/Framework/MockObject/Stub/ReturnCallback.phpëp[cëD0Ó¤5phpunit/Framework/MockObject/Stub/ReturnReference.php p[c œfÝû¤0phpunit/Framework/MockObject/Stub/ReturnSelf.php4p[c4ìDD©¤0phpunit/Framework/MockObject/Stub/ReturnStub.phpèp[c辶¤4phpunit/Framework/MockObject/Stub/ReturnValueMap.phpýp[cýößÛ¤*phpunit/Framework/MockObject/Stub/Stub.php3p[c3>+œ¤+phpunit/Framework/MockObject/Verifiable.phpÌp[cÌÌ s¤!phpunit/Framework/Reorderable.php‹p[c‹¼zš0¤$phpunit/Framework/SelfDescribing.php -p[c -ÀÎÂs¤!phpunit/Framework/SkippedTest.php¹p[c¹S±.¤%phpunit/Framework/SkippedTestCase.php„p[c„¤lÇ]¤phpunit/Framework/Test.php~p[c~wýt¤!phpunit/Framework/TestBuilder.php"p[c"©14j¤phpunit/Framework/TestCase.php $p[c $ÆŒh¤!phpunit/Framework/TestFailure.phpp[c'„qŸ¤"phpunit/Framework/TestListener.phprp[crÓªc^¤7phpunit/Framework/TestListenerDefaultImplementation.php'p[c'Å!Ìñ¤ phpunit/Framework/TestResult.phpð~p[cð~Ö‚t¤phpunit/Framework/TestSuite.php)cp[c)cwe:ä'phpunit/Framework/TestSuiteIterator.phpþp[cþò¨”¬¤%phpunit/Framework/WarningTestCase.php$p[c$ÐHÞ¤!phpunit/Runner/BaseTestRunner.phpÀ p[cÀ C +¤)phpunit/Runner/DefaultTestResultCache.php!p[c!/i^´¤phpunit/Runner/Exception.phpâp[câzZÖ¤-phpunit/Runner/Extension/ExtensionHandler.php‰ p[c‰ ¢+1 ¤'phpunit/Runner/Extension/PharLoader.phpð p[cð Øcñ¤4phpunit/Runner/Filter/ExcludeGroupFilterIterator.phpsp[cs} -Z¤!phpunit/Runner/Filter/Factory.php®p[c®d€cΤ-phpunit/Runner/Filter/GroupFilterIterator.php¬p[c¬™=¢;¤4phpunit/Runner/Filter/IncludeGroupFilterIterator.phprp[crP;AD¤,phpunit/Runner/Filter/NameFilterIterator.phpv p[cv ­Z³¤/phpunit/Runner/Hook/AfterIncompleteTestHook.php-p[c-ÀzÔ¤)phpunit/Runner/Hook/AfterLastTestHook.phpóp[có0B­Ö¤*phpunit/Runner/Hook/AfterRiskyTestHook.php#p[c#ûdm¤,phpunit/Runner/Hook/AfterSkippedTestHook.php'p[c'±üÓ:¤/phpunit/Runner/Hook/AfterSuccessfulTestHook.phpp[c¾5Îw¤*phpunit/Runner/Hook/AfterTestErrorHook.php#p[c#Ý®´ä¤,phpunit/Runner/Hook/AfterTestFailureHook.php'p[c'¾2F¤%phpunit/Runner/Hook/AfterTestHook.phpÑp[cÑ;gA¤,phpunit/Runner/Hook/AfterTestWarningHook.php'p[c''»:¤+phpunit/Runner/Hook/BeforeFirstTestHook.php÷p[c÷hWŒt¤&phpunit/Runner/Hook/BeforeTestHook.phpýp[cý"§b’¤phpunit/Runner/Hook/Hook.php–p[c–©.¤ phpunit/Runner/Hook/TestHook.php·p[c·ÆZ_ -¤+phpunit/Runner/Hook/TestListenerAdapter.phpÇp[cÇ\î6E¤&phpunit/Runner/NullTestResultCache.php™p[c™¾W<ª¤phpunit/Runner/PhptTestCase.php\Vp[c\V†Ç™¤'phpunit/Runner/ResultCacheExtension.php<p[c<–6 _¤*phpunit/Runner/StandardTestSuiteLoader.php¡ p[c¡ ¶§Hm¤"phpunit/Runner/TestResultCache.phpÕp[cÕÏK¤"phpunit/Runner/TestSuiteLoader.php˜p[c˜›¥ÐÞ¤"phpunit/Runner/TestSuiteSorter.php¦,p[c¦,ÇkÚ¤phpunit/Runner/Version.phpp[cÈ„Q¤'phpunit/TextUI/CliArguments/Builder.php±Tp[c±T6ø6¤-phpunit/TextUI/CliArguments/Configuration.phpö²p[cö²àì¼X¤)phpunit/TextUI/CliArguments/Exception.phpïp[cï%ézE¤&phpunit/TextUI/CliArguments/Mapper.php+,p[c+,'aˆ“¤phpunit/TextUI/Command.php…np[c…nhN¤'phpunit/TextUI/DefaultResultPrinter.phpY7p[cY7}G(J¤&phpunit/TextUI/Exception/Exception.php¸p[c¸D{i¤0phpunit/TextUI/Exception/ReflectionException.php÷p[c÷ Y”¤-phpunit/TextUI/Exception/RuntimeException.phpßp[cß…žF¤;phpunit/TextUI/Exception/TestDirectoryNotFoundException.php p[c Õ̤6phpunit/TextUI/Exception/TestFileNotFoundException.php–p[c–™âpC¤phpunit/TextUI/Help.phpÝ.p[cÝ.„ª ‡¤ phpunit/TextUI/ResultPrinter.phppp[cp¢¥Ü¤phpunit/TextUI/TestRunner.phpêÁp[cêÁ©á&ˆ¤"phpunit/TextUI/TestSuiteMapper.phpü p[cü ¨È¤=phpunit/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.phpp[cr›¾™¤Aphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.phpÏp[cψc‹{¤Kphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php™p[c™Í‹êÁ¤Sphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php«p[c«¶šje¤=phpunit/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php¿p[c¿}Ýšƒ¤>phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php×p[c×=C¤Aphpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.phpÚp[cÚi­©ò¤>phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php™p[c™êGù¤<phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php£p[c£EûŸ6¤;phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Php.phpÔp[cÔpÚS¤<phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php¹p[c¹Kkw¤;phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.phpèp[cèÁ?Çu¤1phpunit/TextUI/XmlConfiguration/Configuration.php5p[c5Ëž¤-phpunit/TextUI/XmlConfiguration/Exception.phpóp[cóN€5+¤8phpunit/TextUI/XmlConfiguration/Filesystem/Directory.php–p[c–@–Áš¤Bphpunit/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.phpŸp[cŸylr:¤Jphpunit/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.phpop[co\†V¤3phpunit/TextUI/XmlConfiguration/Filesystem/File.php‘p[c‘Ô.P ¤=phpunit/TextUI/XmlConfiguration/Filesystem/FileCollection.phpFp[cF¬U5b¤Ephpunit/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php7p[c7óte7¤-phpunit/TextUI/XmlConfiguration/Generator.php¾p[c¾F𠜤/phpunit/TextUI/XmlConfiguration/Group/Group.php’p[c’­êÙ¤9phpunit/TextUI/XmlConfiguration/Group/GroupCollection.phpÄp[cÄß ™¤Aphpunit/TextUI/XmlConfiguration/Group/GroupCollectionIterator.phpAp[cA8§%‹¤0phpunit/TextUI/XmlConfiguration/Group/Groups.phpÜp[cܧ@—I¤*phpunit/TextUI/XmlConfiguration/Loader.phpÉ—p[cÉ—Õf—¤1phpunit/TextUI/XmlConfiguration/Logging/Junit.phpÊp[cÊcíiG¤3phpunit/TextUI/XmlConfiguration/Logging/Logging.phpà p[cà €“]Ù¤4phpunit/TextUI/XmlConfiguration/Logging/TeamCity.phpÍp[cÍ7Z鵤8phpunit/TextUI/XmlConfiguration/Logging/TestDox/Html.phpÑp[cÑÕV2ܤ8phpunit/TextUI/XmlConfiguration/Logging/TestDox/Text.phpÑp[cÑ‚ÏŽ´¤7phpunit/TextUI/XmlConfiguration/Logging/TestDox/Xml.phpÐp[cÐë÷t¤0phpunit/TextUI/XmlConfiguration/Logging/Text.phpÉp[cÉäŽCn¤>phpunit/TextUI/XmlConfiguration/Migration/MigrationBuilder.php# p[c# g©µ¤Gphpunit/TextUI/XmlConfiguration/Migration/MigrationBuilderException.phpp[cUWĤ@phpunit/TextUI/XmlConfiguration/Migration/MigrationException.phpüp[cü\Z¤Hphpunit/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php«p[c«hoÁe¤Ophpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.phpXp[cXijÁ¤Ophpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.phpœp[cœ$¯i'¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php©p[c©Õ„j‰¤Lphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.phpFp[cF‹£^Ó¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.phpªp[cªÇV_¤Lphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.phpKp[cK«È_ ¤Qphpunit/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.phpáp[cáUž¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.phpp[c»áU¤Bphpunit/TextUI/XmlConfiguration/Migration/Migrations/Migration.phpðp[cð'ˆžþ¤dphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php¬p[c¬U%5¸¤Yphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.phpCp[cCÿÅcF¤[phpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php¤p[c¤†踤Xphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php§p[c§ƒÖϤSphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.phpßp[cß‘w¾ ¤Jphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php{p[c{æK¤Gphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php&p[c&ùq3{¤Qphpunit/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.phpñp[cñ bJï¤6phpunit/TextUI/XmlConfiguration/Migration/Migrator.php×p[c×o$ŠV¤0phpunit/TextUI/XmlConfiguration/PHP/Constant.php7p[c7$‘Ò¤:phpunit/TextUI/XmlConfiguration/PHP/ConstantCollection.php0p[c0:‘ª²¤Bphpunit/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php_p[c_ô4V¿¤2phpunit/TextUI/XmlConfiguration/PHP/IniSetting.phpJp[cJÑOtÀ¤<phpunit/TextUI/XmlConfiguration/PHP/IniSettingCollection.phpPp[cP¯Ânœ¤Dphpunit/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.phpsp[csiBt ¤+phpunit/TextUI/XmlConfiguration/PHP/Php.phpp[c6žåƒ¤2phpunit/TextUI/XmlConfiguration/PHP/PhpHandler.phpwp[cw` - ö¤0phpunit/TextUI/XmlConfiguration/PHP/Variable.phpäp[cäNãâ¤:phpunit/TextUI/XmlConfiguration/PHP/VariableCollection.php0p[c0ï׈T¤Bphpunit/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php_p[c_¦ëK¤5phpunit/TextUI/XmlConfiguration/PHPUnit/Extension.php p[c Ú}¾Q¤?phpunit/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php»p[c»°1W¤Gphpunit/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.phpip[ciòoÐ(¤3phpunit/TextUI/XmlConfiguration/PHPUnit/PHPUnit.phplCp[clC¯Ñv©¤;phpunit/TextUI/XmlConfiguration/TestSuite/TestDirectory.phpCp[cC0ª¸‡¤Ephpunit/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php»p[c»ùâȤMphpunit/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.phpp[cyp¸¤6phpunit/TextUI/XmlConfiguration/TestSuite/TestFile.phpÌp[ċ?y¤@phpunit/TextUI/XmlConfiguration/TestSuite/TestFileCollection.phpbp[cbçÉͤHphpunit/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.phpGp[cGw¾ÒǤ7phpunit/TextUI/XmlConfiguration/TestSuite/TestSuite.phpp[cêª8w¤Aphpunit/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php–p[c–)èß2¤Iphpunit/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.phpip[ció #©¤$phpunit/Util/Annotation/DocBlock.phpAp[cAŸÓ:„¤$phpunit/Util/Annotation/Registry.phpZ -p[cZ -îD]X¤phpunit/Util/Blacklist.phpáp[cá­s«€¤phpunit/Util/Cloner.phpñp[cñ"Ɩܤphpunit/Util/Color.phpóp[cój­°?¤phpunit/Util/ErrorHandler.php†p[c†í=‡¤phpunit/Util/Exception.phpàp[cछ다phpunit/Util/ExcludeList.phpÄp[cĈ¤phpunit/Util/FileLoader.php£ p[c£ à'¤phpunit/Util/Filesystem.phpp[c¼äܤphpunit/Util/Filter.php© p[c© ®†Ä‡¤phpunit/Util/GlobalState.php>p[c>ph£Ç¤(phpunit/Util/InvalidDataSetException.phpîp[cî1 ¿¤phpunit/Util/Json.phpE p[cE û˜Ë!¤phpunit/Util/Log/JUnit.phpn*p[cn*)†LB¤phpunit/Util/Log/TeamCity.php&p[c&c¶µ±¤'phpunit/Util/PHP/AbstractPhpProcess.phpÂ&p[cÂ&%m˜•¤&phpunit/Util/PHP/DefaultPhpProcess.phpzp[cz˜ðCp¤*phpunit/Util/PHP/Template/PhptTestCase.tplØp[cب›€+phpunit/Util/PHP/Template/TestCaseClass.tplp p[cp 3 HÝ€,phpunit/Util/PHP/Template/TestCaseMethod.tpl¿ p[c¿ mÑD€&phpunit/Util/PHP/WindowsPhpProcess.phpðp[cðÄ)aB¤phpunit/Util/Printer.phpó p[có s¾¡h¤phpunit/Util/Reflection.php‹p[c‹W챤"phpunit/Util/RegularExpression.phpÞp[cÞ0uR)¤phpunit/Util/Test.phpÄ]p[cÄ]qço$¤*phpunit/Util/TestDox/CliTestDoxPrinter.php(*p[c(*@f©ÿ¤*phpunit/Util/TestDox/HtmlResultPrinter.phpñ -p[cñ -t&“¤'phpunit/Util/TestDox/NamePrettifier.php;"p[c;"45hÕ¤&phpunit/Util/TestDox/ResultPrinter.php"p[c"1Ïq$¤'phpunit/Util/TestDox/TestDoxPrinter.phpò)p[cò)KŸ¤Ì¤*phpunit/Util/TestDox/TextResultPrinter.php­p[c­ȹ!.¤)phpunit/Util/TestDox/XmlResultPrinter.phpÝp[cÝy¤%phpunit/Util/TextTestListRenderer.php6p[c6….š¤phpunit/Util/Type.php£p[c£ù|ä*phpunit/Util/VersionComparisonOperator.phpŒp[cŒ±b“¤,phpunit/Util/XdebugFilterScriptGenerator.phpwp[cw¡Øª¤phpunit/Util/Xml.php¶p[c¶[•¤phpunit/Util/Xml/Exception.phpäp[cä•û±Ó¤0phpunit/Util/Xml/FailedSchemaDetectionResult.phpðp[cðÖ#S˜¤phpunit/Util/Xml/Loader.php„ p[c„ ­,?µ¤*phpunit/Util/Xml/SchemaDetectionResult.phpµp[cµ4χz¤#phpunit/Util/Xml/SchemaDetector.php-p[c-ó´¤!phpunit/Util/Xml/SchemaFinder.php¡p[c¡9:š8¤%phpunit/Util/Xml/SnapshotNodeList.php p[c BÉ¢¤4phpunit/Util/Xml/SuccessfulSchemaDetectionResult.php'p[c'ð–ìg¤%phpunit/Util/Xml/ValidationResult.php•p[c•xv:€¤phpunit/Util/Xml/Validator.phpp[cVöˆŠ¤$phpunit/Util/XmlTestListRenderer.php -p[c -¤É8¤sbom.xml /p[c /¢B¿¤schema/8.5.xsd™Bp[c™Bè´…ª¤schema/9.2.xsdÕBp[cÕB„|l¤sebastian-cli-parser/LICENSEp[cÑÝu¤sebastian-cli-parser/Parser.phpŽp[cŽ•k®M¤<sebastian-cli-parser/exceptions/AmbiguousOptionException.phpFp[cFòm\¤-sebastian-cli-parser/exceptions/Exception.phpup[cuãÓ«¤Gsebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.php_p[c_|13¬¤Jsebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.phphp[ch‚CËê¤:sebastian-cli-parser/exceptions/UnknownOptionException.php?p[c?v¥¡D¤*sebastian-code-unit-reverse-lookup/LICENSEp[c3G (¤-sebastian-code-unit-reverse-lookup/Wizard.phpÞ p[cÞ }Z[¤'sebastian-code-unit/ClassMethodUnit.phpp[cÃ@[¤!sebastian-code-unit/ClassUnit.phpp[cù÷ÝF¤ sebastian-code-unit/CodeUnit.php~%p[c~%D){¬¤*sebastian-code-unit/CodeUnitCollection.phpp[cØý¯J¤2sebastian-code-unit/CodeUnitCollectionIterator.php;p[c;äLʤ$sebastian-code-unit/FunctionUnit.phpp[cþ`¹¤+sebastian-code-unit/InterfaceMethodUnit.phpp[cǦŽç¤%sebastian-code-unit/InterfaceUnit.phpp[c›c¸¤sebastian-code-unit/LICENSE p[c p”ˆð¤sebastian-code-unit/Mapper.phpÔ-p[cÔ-#øž¢¤'sebastian-code-unit/TraitMethodUnit.phpp[cq¸z¤!sebastian-code-unit/TraitUnit.phpp[cëXAé¤,sebastian-code-unit/exceptions/Exception.phpsp[cstg§¤;sebastian-code-unit/exceptions/InvalidCodeUnitException.php§p[c§Ë6þ-¤3sebastian-code-unit/exceptions/NoTraitException.phpŸp[cŸ“Q3¤6sebastian-code-unit/exceptions/ReflectionException.php¢p[c¢•„²$¤(sebastian-comparator/ArrayComparator.phpup[cuEmhf¤#sebastian-comparator/Comparator.php…p[c…tð„ž¤*sebastian-comparator/ComparisonFailure.phpÌ p[cÌ Ú%½¶¤*sebastian-comparator/DOMNodeComparator.php p[c 1iî¤+sebastian-comparator/DateTimeComparator.php± p[c± ¬µKQ¤)sebastian-comparator/DoubleComparator.phpîp[cî:Ín¤,sebastian-comparator/ExceptionComparator.phpÆp[cƆÓ1¤ sebastian-comparator/Factory.php™p[c™ž?§N¤sebastian-comparator/LICENSE p[c =(èã¤-sebastian-comparator/MockObjectComparator.phpÎp[c΃I½ˆ¤*sebastian-comparator/NumericComparator.php3 p[c3 i{’l¤)sebastian-comparator/ObjectComparator.phpX p[cX º»×Œ¤+sebastian-comparator/ResourceComparator.phpp[cJ”¤)sebastian-comparator/ScalarComparator.php/ p[c/ ¶dF¤3sebastian-comparator/SplObjectStorageComparator.phpýp[cý?Ñ/é¤'sebastian-comparator/TypeComparator.phpæp[cæcX\¤-sebastian-comparator/exceptions/Exception.phpvp[cvîEᵤ4sebastian-comparator/exceptions/RuntimeException.phpp[cV¬'¤#sebastian-complexity/Calculator.phpe p[ce (6œÀ¤.sebastian-complexity/Complexity/Complexity.phpQp[cQ‚l½¤8sebastian-complexity/Complexity/ComplexityCollection.phpØp[cØil¤@sebastian-complexity/Complexity/ComplexityCollectionIterator.php,p[c,úäe§¤,sebastian-complexity/Exception/Exception.phpvp[cv7ý®¤3sebastian-complexity/Exception/RuntimeException.phpp[cC†dW¤sebastian-complexity/LICENSEp[c=‘®Ý¤=sebastian-complexity/Visitor/ComplexityCalculatingVisitor.php• p[c• öO¤Gsebastian-complexity/Visitor/CyclomaticComplexityCalculatingVisitor.php p[c 7ÖY–¤sebastian-diff/Chunk.php_p[c_ÖÛv€¤sebastian-diff/Diff.phpjp[cjbXØA¤sebastian-diff/Differ.php $p[c $wk¿z¤3sebastian-diff/Exception/ConfigurationException.php=p[c=1/Ff¤&sebastian-diff/Exception/Exception.phpjp[cjÚ0îå¤5sebastian-diff/Exception/InvalidArgumentException.php‹p[c‹qÁ«¤sebastian-diff/LICENSE p[c a¸©1¤sebastian-diff/Line.phpLp[cL -óq¤5sebastian-diff/LongestCommonSubsequenceCalculator.phpñp[cñ}e7z¤Dsebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.phpŸp[cŸ9ù š¤4sebastian-diff/Output/AbstractChunkOutputBuilder.phpöp[cö˜ù\t¤/sebastian-diff/Output/DiffOnlyOutputBuilder.phpzp[czc·ò¤4sebastian-diff/Output/DiffOutputBuilderInterface.phpp[cVŽáå¤8sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.phpŠ(p[cŠ(kvƒ¤2sebastian-diff/Output/UnifiedDiffOutputBuilder.php>p[c>'q)¤sebastian-diff/Parser.phpš p[cš °åX{¤Bsebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.phpõp[cõæ¬tÙ¤!sebastian-environment/Console.phpp[c72e4¤sebastian-environment/LICENSEp[c®FyÙ¤)sebastian-environment/OperatingSystem.phpæp[cæÚÌ„¤!sebastian-environment/Runtime.phpp[c¶Y/¸¤sebastian-exporter/Exporter.phpx$p[cx$úˆ’õ¤sebastian-exporter/LICENSEp[c 5Ù¤'sebastian-global-state/CodeExporter.php– p[c– ¦·¸¤&sebastian-global-state/ExcludeList.php· -p[c· -RÕ{˜¤sebastian-global-state/LICENSEp[cØJ‚€¤#sebastian-global-state/Restorer.php›p[c›G‡J ¤#sebastian-global-state/Snapshot.php¿*p[c¿*X%·¤/sebastian-global-state/exceptions/Exception.phpyp[cyùJ¡¤6sebastian-global-state/exceptions/RuntimeException.phpp[c;¤#sebastian-lines-of-code/Counter.phpßp[cßH5è¤/sebastian-lines-of-code/Exception/Exception.phpzp[cz a×V¤>sebastian-lines-of-code/Exception/IllogicalValuesException.phpªp[cªëžG¤<sebastian-lines-of-code/Exception/NegativeValueException.php¼p[c¼«Ç -Ú¤6sebastian-lines-of-code/Exception/RuntimeException.php‘p[c‘§K¥¤sebastian-lines-of-code/LICENSEp[c÷bS~¤/sebastian-lines-of-code/LineCountingVisitor.phpŠp[cŠ˜“~A¤'sebastian-lines-of-code/LinesOfCode.phpñ p[cñ fŠöÓ¤*sebastian-object-enumerator/Enumerator.php›p[c›÷x}ƒ¤)sebastian-object-enumerator/Exception.phpƒp[cƒç}êȤ8sebastian-object-enumerator/InvalidArgumentException.php¤p[c¤÷â¤(sebastian-object-reflector/Exception.phpp[cЬۤ7sebastian-object-reflector/InvalidArgumentException.php¢p[c¢ -ÖâM¤.sebastian-object-reflector/ObjectReflector.php×p[c×ÓãÏ_¤'sebastian-recursion-context/Context.php×p[c×êaDy¤)sebastian-recursion-context/Exception.php…p[c…PFA¤8sebastian-recursion-context/InvalidArgumentException.php¬p[c¬b×21¤#sebastian-recursion-context/LICENSEp[c`Äó¤%sebastian-resource-operations/LICENSEp[c]<â¤4sebastian-resource-operations/ResourceOperations.phpß²p[cß²·¦¤sebastian-type/LICENSE p[c Ò&.ç¤sebastian-type/Parameter.phpp[c‚äý,¤#sebastian-type/ReflectionMapper.phppp[cp&õÑÞ¤sebastian-type/TypeName.php:p[c:n -é¤&sebastian-type/exception/Exception.phpjp[cjbᮧ¤-sebastian-type/exception/RuntimeException.phpp[cùŠò%¤$sebastian-type/type/CallableType.phpªp[cªŵ`£¤!sebastian-type/type/FalseType.phpbp[cb¼_&ë¤)sebastian-type/type/GenericObjectType.php<p[c<C¬hò¤(sebastian-type/type/IntersectionType.phpd -p[cd -énÑc¤$sebastian-type/type/IterableType.phpp[c†ùf•¤!sebastian-type/type/MixedType.php'p[c'êîo¶¤!sebastian-type/type/NeverType.php×p[c×FÒ¹ƒ¤ sebastian-type/type/NullType.php"p[c"¶9$F¤"sebastian-type/type/ObjectType.php]p[c]±’L&¤"sebastian-type/type/SimpleType.phpùp[cù¬]º¤"sebastian-type/type/StaticType.phpÆp[cÆj~£á¤ sebastian-type/type/TrueType.php]p[c]<iפsebastian-type/type/Type.phpÌp[cÌDj e¤!sebastian-type/type/UnionType.php$ p[c$ ¢)Ϥ#sebastian-type/type/UnknownType.phpp[c‘ÕÙǤ sebastian-type/type/VoidType.phpÓp[cÓɳ¤sebastian-version/LICENSEp[c­ZÌù¤sebastian-version/Version.php®p[c® ƪ¤theseer-tokenizer/Exception.phpnp[cn¹'Ǥtheseer-tokenizer/LICENSEüp[cüïR (¤"theseer-tokenizer/NamespaceUri.phpHp[cHê=C«¤+theseer-tokenizer/NamespaceUriException.phpyp[cy'Heå¤theseer-tokenizer/Token.php–p[c–4ê†ã¤%theseer-tokenizer/TokenCollection.php -p[c -ž¾aà¤.theseer-tokenizer/TokenCollectionException.php|p[c|`g«-¤theseer-tokenizer/Tokenizer.phpþ -p[cþ -z’l¬¤#theseer-tokenizer/XMLSerializer.phpèp[cè–g; ¤webmozart-assert/Assert.php³Ép[c³ÉYTä¤-webmozart-assert/InvalidArgumentException.phpbp[cbÙAþº¤webmozart-assert/LICENSE<p[c<tØ}õ¤webmozart-assert/Mixin.php.Õp[c.Õ› a¤.phpstorm.meta.php‘p[c‘Oßò¤sebastian-lines-of-code/Exception/IllogicalValuesException.php®êìf®Êårÿ¤/sebastian-lines-of-code/Exception/Exception.php~êìf~%>²ú¤ sebastian-code-unit/CodeUnit.phpk%êìfk%«Ê6¤!sebastian-code-unit/TraitUnit.phpêìfß•¤sebastian-code-unit/LICENSE êìf p”ˆð¤+sebastian-code-unit/InterfaceMethodUnit.php"êìf"_!_¤;sebastian-code-unit/exceptions/InvalidCodeUnitException.php«êìf«MvÔŠ¤6sebastian-code-unit/exceptions/ReflectionException.php¦êìf¦cÈQí¤3sebastian-code-unit/exceptions/NoTraitException.php£êìf£å]Ü5¤,sebastian-code-unit/exceptions/Exception.phpwêìfwž5ŒÇ¤2sebastian-code-unit/CodeUnitCollectionIterator.php:êìf:Ê,e¤*sebastian-code-unit/CodeUnitCollection.php}êìf}*ﬤ'sebastian-code-unit/TraitMethodUnit.phpêìf%E¾:¤$sebastian-code-unit/FunctionUnit.phpêìfÒô‹•¤sebastian-code-unit/Mapper.phpÈ-êìfÈ-®Ñó4¤!sebastian-code-unit/ClassUnit.phpêìfÖJk¤'sebastian-code-unit/ClassMethodUnit.phpêìf“v¤%sebastian-code-unit/InterfaceUnit.phpêìfš%¤php-timer/LICENSEêìfx™¸œ¤$php-timer/ResourceUsageFormatter.php©êìf©æXº¤/php-timer/exceptions/NoActiveTimerException.php êìf *®õ¤Ephp-timer/exceptions/TimeSinceStartOfRequestNotAvailableException.phpºêìfºÐ.ñ¤"php-timer/exceptions/Exception.phprêìfr˜›<¤php-timer/Timer.phpŠêìfŠ"Ѧ{¤php-timer/Duration.php +êìf +Çpüj¤ composer.lock5#êìf5#X·¤sebastian-version/LICENSEêìf­ZÌù¤sebastian-version/Version.php±êìf±VPÀM¤sebastian-diff/Diff.phpjêìfj2 1ø¤sebastian-diff/LICENSE êìf a¸©1¤sebastian-diff/Parser.phpƒ êìfƒ `TŽù¤Bsebastian-diff/TimeEfficientLongestCommonSubsequenceCalculator.phpûêìfûÙ·åq¤/sebastian-diff/Output/DiffOnlyOutputBuilder.phpêìf&cF¤4sebastian-diff/Output/DiffOutputBuilderInterface.phpêìfpmö¤2sebastian-diff/Output/UnifiedDiffOutputBuilder.phpCêìfCØÓÖ¤8sebastian-diff/Output/StrictUnifiedDiffOutputBuilder.php‘(êìf‘({¼ºM¤4sebastian-diff/Output/AbstractChunkOutputBuilder.phpùêìfùa=®á¤5sebastian-diff/LongestCommonSubsequenceCalculator.phpôêìfôep€6¤sebastian-diff/Chunk.php]êìf]9Ý0¤sebastian-diff/Differ.php$êìf$î›g¤sebastian-diff/Line.phpNêìfN–N +ͤ3sebastian-diff/Exception/ConfigurationException.phpBêìfB³Žw¤5sebastian-diff/Exception/InvalidArgumentException.phpêìfæ$y¤&sebastian-diff/Exception/Exception.phpnêìfnšÀ/\¤Dsebastian-diff/MemoryEfficientLongestCommonSubsequenceCalculator.phpþêìfþMR"¤myclabs-deep-copy/LICENSE5êìf5Ê­Ë„¤(myclabs-deep-copy/DeepCopy/deep_copy.php¥êìf¥¢WÈ•¤6myclabs-deep-copy/DeepCopy/Matcher/PropertyMatcher.phpºêìfºÝÀA^¤Dmyclabs-deep-copy/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php‹êìf‹ ‹3ä¤.myclabs-deep-copy/DeepCopy/Matcher/Matcher.phpáêìfáÈfËä:myclabs-deep-copy/DeepCopy/Matcher/PropertyNameMatcher.phpêìfÑì¡P¤:myclabs-deep-copy/DeepCopy/Matcher/PropertyTypeMatcher.php9êìf9Ge잤'myclabs-deep-copy/DeepCopy/DeepCopy.phpêìfâ˜Ý¤3myclabs-deep-copy/DeepCopy/Filter/ReplaceFilter.php¤êìf¤ÉT:¤0myclabs-deep-copy/DeepCopy/Filter/KeepFilter.phpêìfÿ7#¤5myclabs-deep-copy/DeepCopy/Filter/ChainableFilter.phpËêìfË–=(e¤Lmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.phpðêìfðŸï¡t¤Gmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.phpêìfJZEé¤Bmyclabs-deep-copy/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.phpªêìfªfQc_¤,myclabs-deep-copy/DeepCopy/Filter/Filter.phphêìfh¸ß½¤3myclabs-deep-copy/DeepCopy/Filter/SetNullFilter.phpùêìfùCôkì¤6myclabs-deep-copy/DeepCopy/TypeMatcher/TypeMatcher.phpÞêìfÞû×$¤7myclabs-deep-copy/DeepCopy/Exception/CloneException.phpŠêìfŠJDéȤ:myclabs-deep-copy/DeepCopy/Exception/PropertyException.phpƒêìfƒo‘¼#¤:myclabs-deep-copy/DeepCopy/Reflection/ReflectionHelper.php9êìf91•¦†¤7myclabs-deep-copy/DeepCopy/TypeFilter/ReplaceFilter.phpêìf»8;¤Gmyclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php*êìf*L-Ø ¤Amyclabs-deep-copy/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php¼êìf¼K픤?myclabs-deep-copy/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.phpðêìfð£Ø©¤Amyclabs-deep-copy/DeepCopy/TypeFilter/Date/DateIntervalFilter.php“êìf“[‚ã¤;myclabs-deep-copy/DeepCopy/TypeFilter/ShallowCopyFilter.phpëêìfëF_e ¤4myclabs-deep-copy/DeepCopy/TypeFilter/TypeFilter.phpÎêìfÎÔŠ‡¤ manifest.txt êìf Œrºå¤+phpdocumentor-reflection-common/Element.php êìf ©aoy¤2phpdocumentor-reflection-common/ProjectFactory.phpbêìfbÙy+R¤'phpdocumentor-reflection-common/LICENSE9êìf9*2Ȥ(phpdocumentor-reflection-common/File.php êìf ÌI„¶¤+phpdocumentor-reflection-common/Project.phpêìf‰Ò³¤)phpdocumentor-reflection-common/Fqsen.php¼êìf¼<Ú¨î¤,phpdocumentor-reflection-common/Location.php“êìf“¿®ã¤phpstan-phpdoc-parser/LICENSE.êìf.æ-¤%phpstan-phpdoc-parser/Lexer/Lexer.php‚êìf‚cg +²¤*phpstan-phpdoc-parser/Printer/DiffElem.php¸êìf¸=!Çs¤(phpstan-phpdoc-parser/Printer/Differ.phpbêìfb¤Ë÷°¤)phpstan-phpdoc-parser/Printer/Printer.php1†êìf1†NBWĤ0phpstan-phpdoc-parser/Parser/ParserException.phpx êìfx _ ÿƤ-phpstan-phpdoc-parser/Parser/PhpDocParser.phpc³êìfc³ù[¡Q¤0phpstan-phpdoc-parser/Parser/ConstExprParser.phpr&êìfr&‹¯†”¤0phpstan-phpdoc-parser/Parser/StringUnescaper.phpQ +êìfQ +Ƒᡤ+phpstan-phpdoc-parser/Parser/TypeParser.php(‘êìf(‘¤ +U¤.phpstan-phpdoc-parser/Parser/TokenIterator.php–#êìf–#¡ó&¤6phpstan-phpdoc-parser/Ast/PhpDoc/MixinTagValueNode.php¢êìf¢äüD%¤9phpstan-phpdoc-parser/Ast/PhpDoc/TemplateTagValueNode.phpRêìfR8\$¤7phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagValueNode.phprêìfr/͉¤7phpstan-phpdoc-parser/Ast/PhpDoc/ThrowsTagValueNode.php£êìf£¬û“¤Jphpstan-phpdoc-parser/Ast/PhpDoc/ParamLaterInvokedCallableTagValueNode.php§êìf§ôGŠì¤7phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagValueNode.php¶êìf¶í ç¤?phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagPropertyValueNode.phpñêìfñx=u;¤Bphpstan-phpdoc-parser/Ast/PhpDoc/RequireImplementsTagValueNode.php®êìf®8§¨;¤;phpstan-phpdoc-parser/Ast/PhpDoc/ImplementsTagValueNode.php¼êìf¼µ&X¤3phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTextNode.php¯êìf¯+µ¹ø¤/phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocNode.php¶+êìf¶+I脤Aphpstan-phpdoc-parser/Ast/PhpDoc/ParamClosureThisTagValueNode.php<êìf<»Ò«ˆ¤8phpstan-phpdoc-parser/Ast/PhpDoc/GenericTagValueNode.phpËêìfË­ª¤:phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasTagValueNode.phpyêìfyÔÀ°ï¤7phpstan-phpdoc-parser/Ast/PhpDoc/ReturnTagValueNode.php£êìf£Q-Û¤5phpstan-phpdoc-parser/Ast/PhpDoc/UsesTagValueNode.php¶êìf¶ÏŽÙ ¤@phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueParameterNode.phpnêìfn9Ê™F¤>phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArgument.phpÑêìfу’¤@phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineAnnotation.phpüêìfüÜrÅ—¤Bphpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineTagValueNode.phpìêìfì>´{¤?phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArrayItem.phpŸêìfŸI@Öˤ;phpstan-phpdoc-parser/Ast/PhpDoc/Doctrine/DoctrineArray.phpwêìfwÄFø¤8phpstan-phpdoc-parser/Ast/PhpDoc/InvalidTagValueNode.phpúêìfúYy:œ¤4phpstan-phpdoc-parser/Ast/PhpDoc/VarTagValueNode.phpDêìfD_ô)y¤2phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocTagNode.php êìf ·ç!D¤9phpstan-phpdoc-parser/Ast/PhpDoc/ParamOutTagValueNode.php4êìf4²„Á\¤>phpstan-phpdoc-parser/Ast/PhpDoc/TypelessParamTagValueNode.php÷êìf÷hÙ:4¤=phpstan-phpdoc-parser/Ast/PhpDoc/AssertTagMethodValueNode.phpçêìfçñ×n¤@phpstan-phpdoc-parser/Ast/PhpDoc/TypeAliasImportTagValueNode.php¤êìf¤²ô Î¤9phpstan-phpdoc-parser/Ast/PhpDoc/PropertyTagValueNode.php/êìf/¡‰¤Pphpstan-phpdoc-parser/Ast/PhpDoc/ParamImmediatelyInvokedCallableTagValueNode.php­êìf­5=¤4phpstan-phpdoc-parser/Ast/PhpDoc/PhpDocChildNode.php³êìf³§Cî¤8phpstan-phpdoc-parser/Ast/PhpDoc/ExtendsTagValueNode.php¹êìf¹¯•ï¤6phpstan-phpdoc-parser/Ast/PhpDoc/ParamTagValueNode.phpêìfœUô¤7phpstan-phpdoc-parser/Ast/PhpDoc/MethodTagValueNode.phpÚêìfÚî>3Þ¤8phpstan-phpdoc-parser/Ast/PhpDoc/SelfOutTagValueNode.php¦êìf¦~æü¤;phpstan-phpdoc-parser/Ast/PhpDoc/DeprecatedTagValueNode.phpêìf”‹¤?phpstan-phpdoc-parser/Ast/PhpDoc/RequireExtendsTagValueNode.php«êìf«‚|8¤6phpstan-phpdoc-parser/Ast/ConstExpr/ConstFetchNode.phpÈêìfÈEJQê¤Ephpstan-phpdoc-parser/Ast/ConstExpr/QuoteAwareConstExprStringNode.phpÕ êìfÕ ¼¡¤¤:phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayNode.php9êìf9 s­¤5phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNode.php´êìf´›7ö¹¤;phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprStringNode.phpºêìfº"öð«¤9phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprTrueNode.php.êìf.9îé:¤<phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprIntegerNode.php»êìf»öê¤:phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFalseNode.php0êìf0¿ÿa¤>phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprArrayItemNode.php½êìf½ Û¤9phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprNullNode.php.êìf.g,ƺ¤Cphpstan-phpdoc-parser/Ast/ConstExpr/DoctrineConstExprStringNode.phpfêìff Ks¤:phpstan-phpdoc-parser/Ast/ConstExpr/ConstExprFloatNode.php¹êìf¹%±Š¤)phpstan-phpdoc-parser/Ast/NodeVisitor.php¥ +êìf¥ +–x¼¤8phpstan-phpdoc-parser/Ast/NodeVisitor/CloningVisitor.phpùêìfù"þžl¤'phpstan-phpdoc-parser/Ast/Attribute.phpEêìfEhVX¤"phpstan-phpdoc-parser/Ast/Node.php€êìf€ÁDL¤0phpstan-phpdoc-parser/Ast/Type/UnionTypeNode.phpøêìføtšß¤7phpstan-phpdoc-parser/Ast/Type/IntersectionTypeNode.phpÿêìfÿÕŒ¤5phpstan-phpdoc-parser/Ast/Type/IdentifierTypeNode.phpªêìfªRè +Ž¤5phpstan-phpdoc-parser/Ast/Type/ArrayShapeItemNode.php{êìf{OÓYü¤0phpstan-phpdoc-parser/Ast/Type/ConstTypeNode.phpêìfæZF¤<phpstan-phpdoc-parser/Ast/Type/CallableTypeParameterNode.php»êìf»ø>º5¤3phpstan-phpdoc-parser/Ast/Type/CallableTypeNode.php‰êìf‰$“øê¤+phpstan-phpdoc-parser/Ast/Type/TypeNode.phpªêìfªÇ–×¹¤6phpstan-phpdoc-parser/Ast/Type/ObjectShapeItemNode.phpÿêìfÿI[Š¤/phpstan-phpdoc-parser/Ast/Type/ThisTypeNode.php êìf ÍÞ5¤2phpstan-phpdoc-parser/Ast/Type/ObjectShapeNode.phpEêìfE.À>ܤ2phpstan-phpdoc-parser/Ast/Type/InvalidTypeNode.phpVêìfVNO-¤7phpstan-phpdoc-parser/Ast/Type/OffsetAccessTypeNode.phpÛêìfÛŠkzì¤6phpstan-phpdoc-parser/Ast/Type/ConditionalTypeNode.phpÊêìfÊGœ§Ê¤=phpstan-phpdoc-parser/Ast/Type/ArrayShapeUnsealedTypeNode.phpêìfͧɤBphpstan-phpdoc-parser/Ast/Type/ConditionalTypeForParameterNode.phpÜêìfÜ9Ѥ3phpstan-phpdoc-parser/Ast/Type/NullableTypeNode.php²êìf²ïµ1Ù¤1phpstan-phpdoc-parser/Ast/Type/ArrayShapeNode.php‰êìf‰Ï™NR¤2phpstan-phpdoc-parser/Ast/Type/GenericTypeNode.php+êìf+þzýk¤0phpstan-phpdoc-parser/Ast/Type/ArrayTypeNode.phprêìfr|ŸïФ1phpstan-phpdoc-parser/Ast/AbstractNodeVisitor.phpêìf7À¤,phpstan-phpdoc-parser/Ast/NodeAttributes.php·êìf· Ÿ;¤+phpstan-phpdoc-parser/Ast/NodeTraverser.phpù)êìfù)É{¢¤object-enumerator/LICENSEêìf×y{¤(sebastian-comparator/ArrayComparator.phpyêìfy½}´×¤'sebastian-comparator/TypeComparator.phpêêìfê%Y›\¤ sebastian-comparator/Factory.php›êìf›p×öx¤+sebastian-comparator/ResourceComparator.php êìf äWꞤsebastian-comparator/LICENSE êìf =(èã¤-sebastian-comparator/MockObjectComparator.phpÒêìfÒ‚Ê]¤)sebastian-comparator/ObjectComparator.php\ êìf\ F„É«¤*sebastian-comparator/NumericComparator.php5 êìf5 c„¤4sebastian-comparator/exceptions/RuntimeException.php‘êìf‘€èõ_¤-sebastian-comparator/exceptions/Exception.phpzêìfz¶£Ï¤+sebastian-comparator/DateTimeComparator.php³ êìf³ çcöµ¤)sebastian-comparator/ScalarComparator.php3 êìf3 §îç¤,sebastian-comparator/ExceptionComparator.phpÊêìfÊÜ.L0¤#sebastian-comparator/Comparator.phpêìfú×$¤)sebastian-comparator/DoubleComparator.phpòêìfò¦ß&ë¤*sebastian-comparator/DOMNodeComparator.php# êìf# Ð@’µ¤*sebastian-comparator/ComparisonFailure.phpØ êìfØ yP‹Ù¤3sebastian-comparator/SplObjectStorageComparator.phpêìfÁ¨F¤+phar-io-version/VersionConstraintParser.phpN êìfN n­%ˤphar-io-version/LICENSE&êìf&Òª ¤4phar-io-version/constraints/AnyVersionConstraint.phpTêìfT¸v¤9phar-io-version/constraints/AbstractVersionConstraint.phpÁêìfÁ42ƒo¤1phar-io-version/constraints/VersionConstraint.phpøêìføï¾dã¤Ephar-io-version/constraints/GreaterThanOrEqualToVersionConstraint.php‰êìf‰©ÞÚ_¤8phar-io-version/constraints/OrVersionConstraintGroup.phpêìf£¥ƒ6¤9phar-io-version/constraints/AndVersionConstraintGroup.phpéêìfékO•¤6phar-io-version/constraints/ExactVersionConstraint.phpÖêìfÖgÉÐq¤>phar-io-version/constraints/SpecificMajorVersionConstraint.php êìf êÒé¤Fphar-io-version/constraints/SpecificMajorAndMinorVersionConstraint.phpÌêìfÌBº”,¤*phar-io-version/VersionConstraintValue.phpA +êìfA +²fi™¤!phar-io-version/BuildMetaData.phpãêìfã3A(*¤6phar-io-version/exceptions/InvalidVersionException.php¡êìf¡·ðy¤?phar-io-version/exceptions/InvalidPreReleaseSuffixException.php›êìf›Ë[–¤Dphar-io-version/exceptions/UnsupportedVersionConstraintException.phpßêìfߤ´æ¨¤:phar-io-version/exceptions/NoPreReleaseSuffixException.php–êìf–º"Ï÷¤7phar-io-version/exceptions/NoBuildMetaDataException.php“êìf“+${¡¤(phar-io-version/exceptions/Exception.php³êìf³ôÓ<²¤$phar-io-version/PreReleaseSuffix.phpêìf8^æ¤phar-io-version/Version.phpñêìfñ‘¬¤!phar-io-version/VersionNumber.phpµêìfµKp‘_¤#sebastian-global-state/Restorer.phpªêìfª¬B‰ß¤sebastian-global-state/LICENSEêìfØJ‚€¤'sebastian-global-state/CodeExporter.php• êìf• Xcä¤#sebastian-global-state/Snapshot.php¶*êìf¶*}Ä.¤6sebastian-global-state/exceptions/RuntimeException.php”êìf”#Ú™¤/sebastian-global-state/exceptions/Exception.php}êìf}¶µâ´¤&sebastian-global-state/ExcludeList.php³ +êìf³ +} +ª«¤phpspec-prophecy/LICENSE}êìf} ðߦ¤0phpspec-prophecy/Prophecy/Comparator/Factory.php™êìf™ZÕç>¤8phpspec-prophecy/Prophecy/Comparator/FactoryProvider.phpÐêìfÐH,æ¤:phpspec-prophecy/Prophecy/Comparator/ClosureComparator.phpüêìfüͤ—I¤;phpspec-prophecy/Prophecy/Comparator/ProphecyComparator.php'êìf'ÉvD¤&phpspec-prophecy/Prophecy/Argument.php]êìf]eQóã¤5phpspec-prophecy/Prophecy/Doubler/DoubleInterface.phpáêìfáBÿÛ¤0phpspec-prophecy/Prophecy/Doubler/LazyDouble.php¤êìf¤ß»|¤3phpspec-prophecy/Prophecy/Doubler/NameGenerator.phpºêìfºÜ^º¶¤-phpspec-prophecy/Prophecy/Doubler/Doubler.php¦êìf¦:T*¯¤<phpspec-prophecy/Prophecy/Doubler/Generator/ClassCreator.php]êìf]—£³¤Cphpspec-prophecy/Prophecy/Doubler/Generator/ReflectionInterface.phpñêìfñ Y¤Bphpspec-prophecy/Prophecy/Doubler/Generator/ClassCodeGenerator.phpÝ êìfÝ \Òkõ¤Aphpspec-prophecy/Prophecy/Doubler/Generator/TypeHintReference.php"êìf"&•¿¤;phpspec-prophecy/Prophecy/Doubler/Generator/ClassMirror.php„#êìf„#×Gâ¤Aphpspec-prophecy/Prophecy/Doubler/Generator/Node/ArgumentNode.phpêìf ¦½¤>phpspec-prophecy/Prophecy/Doubler/Generator/Node/ClassNode.phpwêìfw‹Ó`b¤?phpspec-prophecy/Prophecy/Doubler/Generator/Node/MethodNode.php¨êìf¨ÜÞ8)¤Ephpspec-prophecy/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php¸êìf¸¨ÌïˤCphpspec-prophecy/Prophecy/Doubler/Generator/Node/ReturnTypeNode.php˜êìf˜´®v¤Ephpspec-prophecy/Prophecy/Doubler/Generator/Node/TypeNodeAbstract.phpú êìfú J¨‡º¤3phpspec-prophecy/Prophecy/Doubler/CachedDoubler.phpÌêìfÌMÈ1“¤Aphpspec-prophecy/Prophecy/Doubler/ClassPatch/TraversablePatch.phpï êìfï ¾ô¦¤=phpspec-prophecy/Prophecy/Doubler/ClassPatch/KeywordPatch.php%êìf%h·I¤Dphpspec-prophecy/Prophecy/Doubler/ClassPatch/ClassPatchInterface.phphêìfhýq!ʤPphpspec-prophecy/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.phpÇêìfÇ +Š,¤Aphpspec-prophecy/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php8 êìf8 A£U5¤?phpspec-prophecy/Prophecy/Doubler/ClassPatch/ThrowablePatch.php êìf ö„I[¤Ephpspec-prophecy/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php êìf !¶Bü¤Hphpspec-prophecy/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.phpêìf,¾gé¤?phpspec-prophecy/Prophecy/Doubler/ClassPatch/MagicCallPatch.phpÁ êìfÁ üÛz ¤-phpspec-prophecy/Prophecy/Util/StringUtil.php– +êìf– +,QÞФ-phpspec-prophecy/Prophecy/Util/ExportUtil.phpcêìfcTgGϤ<phpspec-prophecy/Prophecy/Argument/Token/ArrayEntryToken.php˜êìf˜GÃn‡¤<phpspec-prophecy/Prophecy/Argument/Token/ExactValueToken.phpu êìfu äJ«ç¤<phpspec-prophecy/Prophecy/Argument/Token/LogicalAndToken.phpêìfÎ÷–¤;phpspec-prophecy/Prophecy/Argument/Token/AnyValuesToken.phpñêìfñÃ'Þ`¤9phpspec-prophecy/Prophecy/Argument/Token/InArrayToken.phpîêìfîß |­¤:phpspec-prophecy/Prophecy/Argument/Token/CallbackToken.phpÇêìfÇ'eÝФ@phpspec-prophecy/Prophecy/Argument/Token/IdenticalValueToken.phpêìf€Eýž¤6phpspec-prophecy/Prophecy/Argument/Token/TypeToken.php›êìf›…愤=phpspec-prophecy/Prophecy/Argument/Token/ObjectStateToken.php +êìf +DÖ¤:phpspec-prophecy/Prophecy/Argument/Token/AnyValueToken.phpÈêìfÈIZ%%¤<phpspec-prophecy/Prophecy/Argument/Token/NotInArrayToken.phpöêìfö t—¤;phpspec-prophecy/Prophecy/Argument/Token/TokenInterface.phpêìfáG6°¤<phpspec-prophecy/Prophecy/Argument/Token/LogicalNotToken.php@êìf@^C&«¤Aphpspec-prophecy/Prophecy/Argument/Token/ArrayEveryEntryToken.phpØêìfØ9*¤@phpspec-prophecy/Prophecy/Argument/Token/StringContainsToken.php*êìf*?ÆÔ¨¤<phpspec-prophecy/Prophecy/Argument/Token/ArrayCountToken.phpNêìfN‹Ò…¤Bphpspec-prophecy/Prophecy/Argument/Token/ApproximateValueToken.phpiêìfia¥‡Û¤8phpspec-prophecy/Prophecy/Argument/ArgumentsWildcard.phpŸ êìfŸ ϯM*¤%phpspec-prophecy/Prophecy/Prophet.php8êìf8䀤Gphpspec-prophecy/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php›êìf›ºQÿþ¤=phpspec-prophecy/Prophecy/PhpDocumentor/ClassTagRetriever.php¬êìf¬ö›:‚¤Iphpspec-prophecy/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php^êìf^)D»¤:phpspec-prophecy/Prophecy/Prediction/NoCallsPrediction.php9êìf9Çi)¤;phpspec-prophecy/Prophecy/Prediction/CallbackPrediction.phpêìf’P(þ¤7phpspec-prophecy/Prophecy/Prediction/CallPrediction.phpêìfe‡¤<phpspec-prophecy/Prophecy/Prediction/CallTimesPrediction.php= êìf= â1²¤<phpspec-prophecy/Prophecy/Prediction/PredictionInterface.phpéêìfé¿¥ßD¤-phpspec-prophecy/Prophecy/Call/CallCenter.phpÍêìfÍŸ¼æ¤'phpspec-prophecy/Prophecy/Call/Call.phpêìfnò ¤8phpspec-prophecy/Prophecy/Prophecy/RevealerInterface.phpGêìfG§WnZ¤5phpspec-prophecy/Prophecy/Prophecy/ObjectProphecy.phpêìf~LË)¤?phpspec-prophecy/Prophecy/Prophecy/ProphecySubjectInterface.phpêìfÄ¡Ar¤/phpspec-prophecy/Prophecy/Prophecy/Revealer.php²êìf²à$ïx¤5phpspec-prophecy/Prophecy/Prophecy/MethodProphecy.phpµ?êìfµ?WÕã¤8phpspec-prophecy/Prophecy/Prophecy/ProphecyInterface.phpqêìfqhRw¤6phpspec-prophecy/Prophecy/Promise/PromiseInterface.phpaêìfaĶ= +¤;phpspec-prophecy/Prophecy/Promise/ReturnArgumentPromise.phpBêìfBèQ¼½¤5phpspec-prophecy/Prophecy/Promise/CallbackPromise.phpêìfh¹¤$¤3phpspec-prophecy/Prophecy/Promise/ReturnPromise.phpsêìfsß|gƒ¤2phpspec-prophecy/Prophecy/Promise/ThrowPromise.php¯ +êìf¯ +j¢u¶¤Gphpspec-prophecy/Prophecy/Exception/Doubler/MethodNotFoundException.phpÒêìfÒÁ#kë¤Jphpspec-prophecy/Prophecy/Exception/Doubler/InterfaceNotFoundException.php!êìf!…¢R3¤Jphpspec-prophecy/Prophecy/Exception/Doubler/ReturnByReferenceException.phpïêìfïƒåL?¤@phpspec-prophecy/Prophecy/Exception/Doubler/DoublerException.php•êìf•hîú¤Ephpspec-prophecy/Prophecy/Exception/Doubler/ClassCreatorException.phpDêìfDæäyX¤?phpspec-prophecy/Prophecy/Exception/Doubler/DoubleException.phpÃêìfÃV”"^¤Fphpspec-prophecy/Prophecy/Exception/Doubler/ClassNotFoundException.phpêìf}¸—:¤Dphpspec-prophecy/Prophecy/Exception/Doubler/ClassMirrorException.phpdêìfd…v48¤Lphpspec-prophecy/Prophecy/Exception/Doubler/MethodNotExtendableException.phpÝêìfÝÐã[–¤Kphpspec-prophecy/Prophecy/Exception/Prediction/UnexpectedCallsException.phpêìf†Ñ»¤Pphpspec-prophecy/Prophecy/Exception/Prediction/UnexpectedCallsCountException.phpêìfLà]¤Fphpspec-prophecy/Prophecy/Exception/Prediction/PredictionException.php›êìf›R2ìͤLphpspec-prophecy/Prophecy/Exception/Prediction/FailedPredictionException.phpgêìfg3'}}¤Cphpspec-prophecy/Prophecy/Exception/Prediction/NoCallsException.php÷êìf÷ò½½Z¤Ephpspec-prophecy/Prophecy/Exception/Prediction/AggregateException.php9êìf9³}ñÛ¤@phpspec-prophecy/Prophecy/Exception/InvalidArgumentException.php¨êìf¨õ󱙤Dphpspec-prophecy/Prophecy/Exception/Call/UnexpectedCallException.phpÖêìfÖO¤Hphpspec-prophecy/Prophecy/Exception/Prophecy/MethodProphecyException.phpoêìfoÐ스Bphpspec-prophecy/Prophecy/Exception/Prophecy/ProphecyException.php—êìf—D¬7j¤Hphpspec-prophecy/Prophecy/Exception/Prophecy/ObjectProphecyException.php­êìf­gž6Ú¤1phpspec-prophecy/Prophecy/Exception/Exception.phpõêìfõxò•¤object-reflector/LICENSEêìf¢9v¤,phpdocumentor-type-resolver/TypeResolver.php~Uêìf~U³ç~ë¤0phpdocumentor-type-resolver/Types/Expression.php>êìf>Èàc¼¤-phpdocumentor-type-resolver/Types/Boolean.phpuêìfu;ZÓü¤-phpdocumentor-type-resolver/Types/Integer.phpqêìfqÉkQ¤+phpdocumentor-type-resolver/Types/Self_.phpÓêìfÓd »¤+phpdocumentor-type-resolver/Types/Void_.phpêìf¬Gï¤+phpdocumentor-type-resolver/Types/Null_.phpêìfwÁê¤/phpdocumentor-type-resolver/Types/Resource_.php†êìf†¥J’Y¤,phpdocumentor-type-resolver/Types/Float_.phpnêìfnç”ô¤-phpdocumentor-type-resolver/Types/Object_.phpòêìfòdø,¤-phpdocumentor-type-resolver/Types/String_.phpzêìfz.^|Ÿ¤.phpdocumentor-type-resolver/Types/Nullable.phpXêìfXˆËáv¤/phpdocumentor-type-resolver/Types/Callable_.php¹êìf¹í䔤5phpdocumentor-type-resolver/Types/InterfaceString.php¼êìf¼Vñý¤/phpdocumentor-type-resolver/Types/Iterable_.phpBêìfBuîQ¤7phpdocumentor-type-resolver/Types/CallableParameter.php¨êìf¨Û~o¼¤.phpdocumentor-type-resolver/Types/ArrayKey.php¦êìf¦ˆe£©¤,phpdocumentor-type-resolver/Types/Never_.phpêìf„}²¤-phpdocumentor-type-resolver/Types/Static_.php êìf ]üA%¤1phpdocumentor-type-resolver/Types/ClassString.phpPêìfPá8Bؤ-phpdocumentor-type-resolver/Types/Parent_.phpëêìfëG32¤,phpdocumentor-type-resolver/Types/Scalar.php»êìf»S›©ç¤-phpdocumentor-type-resolver/Types/Context.phpÎ êìfÎ ·wŒ¤2phpdocumentor-type-resolver/Types/AbstractList.phpzêìfzOÐúǤ0phpdocumentor-type-resolver/Types/Collection.phpªêìfªdÜ«¤2phpdocumentor-type-resolver/Types/Intersection.phpêìf·ô6פ4phpdocumentor-type-resolver/Types/ContextFactory.php7êìf7 O¤4phpdocumentor-type-resolver/Types/AggregatedType.php× +êìf× +§¡*.¤.phpdocumentor-type-resolver/Types/Compound.phpêìf݇9ü¤*phpdocumentor-type-resolver/Types/This.php`êìf`fµðr¤,phpdocumentor-type-resolver/Types/Array_.phpÙêìfÙŽ=y¤,phpdocumentor-type-resolver/Types/Mixed_.php‡êìf‡BIwæ¤$phpdocumentor-type-resolver/Type.phpßêìfßøñ ¤#phpdocumentor-type-resolver/LICENSE8êìf8á‰Ê¤-phpdocumentor-type-resolver/FqsenResolver.php êìf Ç»å}¤7phpdocumentor-type-resolver/PseudoTypes/StringValue.phpºêìfº5>q¤1phpdocumentor-type-resolver/PseudoTypes/List_.php²êìf²k«mP¤:phpdocumentor-type-resolver/PseudoTypes/NonEmptyString.phpoêìfoØ_Û¤8phpdocumentor-type-resolver/PseudoTypes/IntegerRange.php1êìf1aNÄÛ¤:phpdocumentor-type-resolver/PseudoTypes/CallableString.phpnêìfn›Ãã̤4phpdocumentor-type-resolver/PseudoTypes/Numeric_.phpêìfâ˜ð¤2phpdocumentor-type-resolver/PseudoTypes/False_.php‰êìf‰ÎMÉÞ¤7phpdocumentor-type-resolver/PseudoTypes/TraitString.phphêìfhX:¤6phpdocumentor-type-resolver/PseudoTypes/FloatValue.php–êìf–­°{ä¤9phpdocumentor-type-resolver/PseudoTypes/NumericString.phplêìflxã!¤=phpdocumentor-type-resolver/PseudoTypes/HtmlEscapedString.phpuêìfuüqè¤8phpdocumentor-type-resolver/PseudoTypes/IntegerValue.phpšêìfš&Jøg¤9phpdocumentor-type-resolver/PseudoTypes/LiteralString.phplêìfleððt¤8phpdocumentor-type-resolver/PseudoTypes/NonEmptyList.php×êìf×°mFA¤;phpdocumentor-type-resolver/PseudoTypes/ConstExpression.php¡êìf¡íQL¤6phpdocumentor-type-resolver/PseudoTypes/ArrayShape.php–êìf–ÌI}¤Cphpdocumentor-type-resolver/PseudoTypes/NonEmptyLowercaseString.php‚êìf‚ ãƒ3¤;phpdocumentor-type-resolver/PseudoTypes/LowercaseString.phppêìfp-ÿoפ1phpdocumentor-type-resolver/PseudoTypes/True_.php…êìf…žT¦1¤;phpdocumentor-type-resolver/PseudoTypes/NegativeInteger.phpiêìfixZÍǤ:phpdocumentor-type-resolver/PseudoTypes/ArrayShapeItem.phpùêìfùžRöö¤;phpdocumentor-type-resolver/PseudoTypes/PositiveInteger.phpiêìfi/=<¤*phpdocumentor-type-resolver/PseudoType.phpxêìfxoÏšV¤doctrine-deprecations/LICENSE)êìf)"¿ê0¤Jdoctrine-deprecations/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.phpåêìfå¡=ͤ;doctrine-deprecations/Doctrine/Deprecations/Deprecation.phpH$êìfH$ü&Ýä¤*nikic-php-parser/PhpParser/NameContext.phpˆ%êìfˆ%%•Ì¤2nikic-php-parser/PhpParser/NodeVisitorAbstract.phpÐêìfÐ8¯¤*nikic-php-parser/PhpParser/NodeVisitor.phpôêìfô.ÀJq¤-nikic-php-parser/PhpParser/BuilderHelpers.php$êìf$7a¤9nikic-php-parser/PhpParser/NodeVisitor/FindingVisitor.phpêìf€@­¤7nikic-php-parser/PhpParser/NodeVisitor/NameResolver.phpÚ%êìfÚ%h๤>nikic-php-parser/PhpParser/NodeVisitor/FirstFindingVisitor.php êìf bt ä¤9nikic-php-parser/PhpParser/NodeVisitor/CloningVisitor.phpêìfî"Û¤Bnikic-php-parser/PhpParser/NodeVisitor/ParentConnectingVisitor.phpêìfv`ƒô¤@nikic-php-parser/PhpParser/NodeVisitor/NodeConnectingVisitor.php–êìf–߬†¤%nikic-php-parser/PhpParser/Parser.php‚êìf‚v+¤;nikic-php-parser/PhpParser/ConstExprEvaluationException.phpcêìfc:€Ý»¤.nikic-php-parser/PhpParser/Lexer/Emulative.phpê"êìfê" ÃzɤDnikic-php-parser/PhpParser/Lexer/TokenEmulator/AttributeEmulator.phpãêìfãó>Ãl¤Bnikic-php-parser/PhpParser/Lexer/TokenEmulator/ReverseEmulator.phpçêìfç” +ð+¤Hnikic-php-parser/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php›êìf›ÞÜá¤Hnikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.phpPêìfP£p«¤Pnikic-php-parser/PhpParser/Lexer/TokenEmulator/ReadonlyFunctionTokenEmulator.phpèêìf蔚 R¤Bnikic-php-parser/PhpParser/Lexer/TokenEmulator/KeywordEmulator.phpÎêìfΨ ³¤Dnikic-php-parser/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php¯êìf¯B•=¤Rnikic-php-parser/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.phpEêìfEj^ÃפLnikic-php-parser/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.phpl êìfl ŒGƒ¤Bnikic-php-parser/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php²êìf²ýÛ§¤Lnikic-php-parser/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php êìf ¶^ĤHnikic-php-parser/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.phpÌêìfÌžXï’¤@nikic-php-parser/PhpParser/Lexer/TokenEmulator/TokenEmulator.phptêìft±Ý¤Enikic-php-parser/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php»êìf»(¤*nikic-php-parser/PhpParser/Comment/Doc.php€êìf€Í袤5nikic-php-parser/PhpParser/PrettyPrinter/Standard.phpæ¤êìfæ¤MÑ&¤&nikic-php-parser/PhpParser/Builder.php×êìf×’[ṳ1nikic-php-parser/PhpParser/ConstExprEvaluator.phpw%êìfw%´H®x¤0nikic-php-parser/PhpParser/Internal/DiffElem.php;êìf;+Àº'¤.nikic-php-parser/PhpParser/Internal/Differ.php0êìf0jÃ4÷¤Anikic-php-parser/PhpParser/Internal/PrintableNewAnonClassNode.php›êìf›ÌÐ á¤3nikic-php-parser/PhpParser/Internal/TokenStream.php}#êìf}#ËÇpí¤)nikic-php-parser/PhpParser/NodeDumper.phpnêìfn‘sÙ¤-nikic-php-parser/PhpParser/ParserAbstract.php\êìf\ü™¤,nikic-php-parser/PhpParser/ParserFactory.phpÊ +êìfÊ + ìW¤,nikic-php-parser/PhpParser/Parser/Tokens.php*êìf*Ë£–Õ¤.nikic-php-parser/PhpParser/Parser/Multiple.php¶êìf¶à›"7¤*nikic-php-parser/PhpParser/Parser/Php7.phpöTêìföTk šò¤*nikic-php-parser/PhpParser/Parser/Php5.phpõ+êìfõ+à›r¤+nikic-php-parser/PhpParser/NodeAbstract.phpNêìfN‘Z|ò¤#nikic-php-parser/PhpParser/Node.phpxêìfxübÚ¤4nikic-php-parser/PhpParser/ErrorHandler/Throwing.php’êìf’Ðzp™¤6nikic-php-parser/PhpParser/ErrorHandler/Collecting.phpžêìfž¤ÿº¤*nikic-php-parser/PhpParser/JsonDecoder.php êìf b$¤$nikic-php-parser/PhpParser/Error.php®êìf®мI¤&nikic-php-parser/PhpParser/Comment.php‰êìf‰)—å¤$nikic-php-parser/PhpParser/Lexer.phpZêìfZgyï–¤+nikic-php-parser/PhpParser/ErrorHandler.php3êìf3âcü—¤1nikic-php-parser/PhpParser/Node/Stmt/EnumCase.php¾êìf¾…®¤3nikic-php-parser/PhpParser/Node/Stmt/Expression.phpèêìfè+çø¤/nikic-php-parser/PhpParser/Node/Stmt/UseUse.phpmêìfmN 5¤0nikic-php-parser/PhpParser/Node/Stmt/Global_.php¾êìf¾“ñn¿¤3nikic-php-parser/PhpParser/Node/Stmt/Namespace_.phpÆêìfƨjò¤1nikic-php-parser/PhpParser/Node/Stmt/TraitUse.phpêìf.ôœ†¤Fnikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php`êìf`U‹¤Anikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.phpGêìfGa/.¤/nikic-php-parser/PhpParser/Node/Stmt/Catch_.php‡êìf‡<Ïî¤/nikic-php-parser/PhpParser/Node/Stmt/Class_.php{êìf{µœÏ¤/nikic-php-parser/PhpParser/Node/Stmt/Throw_.php´êìf´ìrèÞ¤9nikic-php-parser/PhpParser/Node/Stmt/PropertyProperty.phpäêìfäô00¼¤.nikic-php-parser/PhpParser/Node/Stmt/Label.phpôêìfô´j©c¤2nikic-php-parser/PhpParser/Node/Stmt/StaticVar.php¢êìf¢+¯¤.nikic-php-parser/PhpParser/Node/Stmt/Case_.phprêìfr':Þ$¤2nikic-php-parser/PhpParser/Node/Stmt/Continue_.phpàêìfà«;íì¤4nikic-php-parser/PhpParser/Node/Stmt/ClassMethod.phpüêìfü³‚6¤/nikic-php-parser/PhpParser/Node/Stmt/Unset_.php¶êìf¶¹/´Ò¤;nikic-php-parser/PhpParser/Node/Stmt/TraitUseAdaptation.php"êìf"›)éD¤1nikic-php-parser/PhpParser/Node/Stmt/Finally_.phpµêìfµÍDÚÛ¤3nikic-php-parser/PhpParser/Node/Stmt/Interface_.phpìêìfì_)®›¤.nikic-php-parser/PhpParser/Node/Stmt/Else_.php­êìf­½ï£ ¤/nikic-php-parser/PhpParser/Node/Stmt/While_.phpKêìfKwf9I¤5nikic-php-parser/PhpParser/Node/Stmt/HaltCompiler.php êìf Ûm¤7nikic-php-parser/PhpParser/Node/Stmt/DeclareDeclare.phpœêìfœŒlm¬¤.nikic-php-parser/PhpParser/Node/Stmt/Goto_.phpêìf¯¼\r¤0nikic-php-parser/PhpParser/Node/Stmt/Static_.phpËêìfËy—T?¤0nikic-php-parser/PhpParser/Node/Stmt/Return_.php½êìf½ Óé#¤1nikic-php-parser/PhpParser/Node/Stmt/TryCatch.php+êìf+6¤¡•¤.nikic-php-parser/PhpParser/Node/Stmt/Echo_.phpªêìfª†™î¤1nikic-php-parser/PhpParser/Node/Stmt/Declare_.phpêìfèÓ. ¤1nikic-php-parser/PhpParser/Node/Stmt/Property.php\ +êìf\ +Ê^Òï¤/nikic-php-parser/PhpParser/Node/Stmt/Break_.phpÑêìfÑ׊—s¤,nikic-php-parser/PhpParser/Node/Stmt/If_.php@êìf@&sØY¤/nikic-php-parser/PhpParser/Node/Stmt/Const_.phpÐêìfÐjob¸¤2nikic-php-parser/PhpParser/Node/Stmt/Function_.php2 +êìf2 +õ¦UŠ¤0nikic-php-parser/PhpParser/Node/Stmt/Switch_.php;êìf;!Ç]¤1nikic-php-parser/PhpParser/Node/Stmt/Foreach_.phpuêìfu2u¤-nikic-php-parser/PhpParser/Node/Stmt/For_.phpDêìfDd¦ *¤,nikic-php-parser/PhpParser/Node/Stmt/Do_.phpHêìfHs䦤1nikic-php-parser/PhpParser/Node/Stmt/GroupUse.phpêìfªeqq¤2nikic-php-parser/PhpParser/Node/Stmt/ClassLike.phpŸ êìfŸ /Ížž¤-nikic-php-parser/PhpParser/Node/Stmt/Use_.phprêìfr]I¯]¤3nikic-php-parser/PhpParser/Node/Stmt/InlineHTML.php¤êìf¤ô#ÁÞ¤3nikic-php-parser/PhpParser/Node/Stmt/ClassConst.php~ êìf~ dKn¤0nikic-php-parser/PhpParser/Node/Stmt/ElseIf_.phpOêìfOcz¿¤,nikic-php-parser/PhpParser/Node/Stmt/Nop.phpFêìfF$6¿Ø¤/nikic-php-parser/PhpParser/Node/Stmt/Trait_.php êìf ¢Ü¤.nikic-php-parser/PhpParser/Node/Stmt/Enum_.phpCêìfCÃoÂ'¤,nikic-php-parser/PhpParser/Node/MatchArm.php¸êìf¸þø¯(¤0nikic-php-parser/PhpParser/Node/NullableType.phpÙêìfÙ]@z¤.nikic-php-parser/PhpParser/Node/Identifier.phpíêìfí-$å·¤/nikic-php-parser/PhpParser/Node/ComplexType.php[êìf[š0Us¤)nikic-php-parser/PhpParser/Node/Param.phpiêìfiâûLè¤-nikic-php-parser/PhpParser/Node/Attribute.phpRêìfRU;¤1nikic-php-parser/PhpParser/Node/Expr/BinaryOp.phpuêìfuT»KѤ.nikic-php-parser/PhpParser/Node/Expr/List_.phpìêìfìâwd¤2nikic-php-parser/PhpParser/Node/Expr/ShellExec.phpÅêìfÅsôN¤3nikic-php-parser/PhpParser/Node/Expr/ConstFetch.phpËêìfËÏ`|Ϥ-nikic-php-parser/PhpParser/Node/Expr/Cast.phpHêìfH­é¤1nikic-php-parser/PhpParser/Node/Expr/Include_.php¨êìf¨íp8X¤<nikic-php-parser/PhpParser/Node/Expr/StaticPropertyFetch.php4êìf4ƒbF|¤1nikic-php-parser/PhpParser/Node/Expr/Variable.php›êìf›ÝO_ã¤/nikic-php-parser/PhpParser/Node/Expr/Print_.php”êìf”ªé¹Ù¤/nikic-php-parser/PhpParser/Node/Expr/PreInc.php‘êìf‘ÈöM"¤3nikic-php-parser/PhpParser/Node/Expr/StaticCall.phpzêìfzâP•Ê¤2nikic-php-parser/PhpParser/Node/Expr/YieldFrom.php®êìf®l× h¤0nikic-php-parser/PhpParser/Node/Expr/Closure.php® +êìf® +Áù¨\¤2nikic-php-parser/PhpParser/Node/Expr/Cast/Int_.phpêêìfêó,Íœ¤5nikic-php-parser/PhpParser/Node/Expr/Cast/Object_.phpðêìfð\­‘°¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Double.php¢êìf¢2!Ž&¤5nikic-php-parser/PhpParser/Node/Expr/Cast/String_.phpðêìfð*uÚ¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Unset_.phpîêìfîÉ”™Ô¤3nikic-php-parser/PhpParser/Node/Expr/Cast/Bool_.phpìêìf쪡>¤4nikic-php-parser/PhpParser/Node/Expr/Cast/Array_.phpîêìfîȯ¾š¤/nikic-php-parser/PhpParser/Node/Expr/Throw_.php®êìf®-¹s‘¤0nikic-php-parser/PhpParser/Node/Expr/PostDec.php”êìf”gc±¤3nikic-php-parser/PhpParser/Node/Expr/UnaryMinus.php êìf x³PX¤8nikic-php-parser/PhpParser/Node/Expr/ClassConstFetch.phpêìfC|Z¤3nikic-php-parser/PhpParser/Node/Expr/BitwiseNot.php êìf ’üEg¤6nikic-php-parser/PhpParser/Node/Expr/ErrorSuppress.phpªêìfªÐiO¤¤6nikic-php-parser/PhpParser/Node/Expr/ArrowFunction.php’ êìf’ ê8I7¤.nikic-php-parser/PhpParser/Node/Expr/Eval_.php‘êìf‘lrc¤>nikic-php-parser/PhpParser/Node/Expr/NullsafePropertyFetch.phpûêìfû(qT¤6nikic-php-parser/PhpParser/Node/Expr/ArrayDimFetch.phpTêìfT¦tž·¤1nikic-php-parser/PhpParser/Node/Expr/CallLike.php2êìf2:îÍ"¤3nikic-php-parser/PhpParser/Node/Expr/MethodCall.php`êìf`v/]¤6nikic-php-parser/PhpParser/Node/Expr/PropertyFetch.phpáêìfá ܺ/¤6nikic-php-parser/PhpParser/Node/Expr/AssignOp/Plus.phpûêìfûKÍã]¤<nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftRight.phpêìf®·íâ¤5nikic-php-parser/PhpParser/Node/Expr/AssignOp/Div.phpùêìfùÍÔ/¤5nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mod.phpùêìfùÃjŒ¤;nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseOr.phpêìf)Þñ¤7nikic-php-parser/PhpParser/Node/Expr/AssignOp/Minus.phpýêìfý¦„¶c¤5nikic-php-parser/PhpParser/Node/Expr/AssignOp/Pow.phpùêìfùߊÍA¤5nikic-php-parser/PhpParser/Node/Expr/AssignOp/Mul.phpùêìfùY:Å;¤8nikic-php-parser/PhpParser/Node/Expr/AssignOp/Concat.phpÿêìfÿGÅ3¤;nikic-php-parser/PhpParser/Node/Expr/AssignOp/ShiftLeft.phpêìf–(?¤<nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseXor.phpêìf&ÉTþ¤:nikic-php-parser/PhpParser/Node/Expr/AssignOp/Coalesce.phpêìf9˜·¤¤<nikic-php-parser/PhpParser/Node/Expr/AssignOp/BitwiseAnd.phpêìfÆ?Q¤6nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Plus.phpJêìfJcm¤9nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Greater.phpPêìfPX‡Š¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalOr.phpUêìfU-”š3¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Spaceship.phpVêìfVã”Ex¤9nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Smaller.phpPêìfPT—å¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftRight.phpWêìfWü;‘¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanOr.phpUêìfU‰¡G¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalAnd.phpXêìfXFü—=¤7nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Equal.phpMêìfMá$3¤>nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotIdentical.php\êìf\õc_¤@nikic-php-parser/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php_êìf_èJ³¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BooleanAnd.phpWêìfWú€Ýÿ¤5nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Div.phpHêìfH¨A+¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/LogicalXor.phpXêìfXÞÁŠé¤5nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mod.phpHêìfHÓ + +ñ¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseOr.phpTêìfTÝŸ¤7nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Minus.phpLêìfL"7®æ¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Identical.phpVêìfV´Ðã¤@nikic-php-parser/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php_êìf_³Âå ¤5nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Pow.phpIêìfI­Þ,ô¤5nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Mul.phpHêìfH œt¤8nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Concat.phpNêìfN¶€¤;nikic-php-parser/PhpParser/Node/Expr/BinaryOp/ShiftLeft.phpUêìfUC”Xe¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseXor.phpVêìfVà3$¶¤:nikic-php-parser/PhpParser/Node/Expr/BinaryOp/Coalesce.phpSêìfS¯/à¤:nikic-php-parser/PhpParser/Node/Expr/BinaryOp/NotEqual.phpSêìfS¨½£Í¤<nikic-php-parser/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.phpVêìfVNVD¤/nikic-php-parser/PhpParser/Node/Expr/Assign.phpêìfí/}¤0nikic-php-parser/PhpParser/Node/Expr/PostInc.php”êìf”^-^D¤.nikic-php-parser/PhpParser/Node/Expr/Error.phpêìfžØ–¥¤2nikic-php-parser/PhpParser/Node/Expr/UnaryPlus.phpªêìfª„š‡¤0nikic-php-parser/PhpParser/Node/Expr/Ternary.phpôêìfôîA€¤/nikic-php-parser/PhpParser/Node/Expr/Empty_.php”êìf”k¨¤-nikic-php-parser/PhpParser/Node/Expr/New_.phpœêìfœWA~¤/nikic-php-parser/PhpParser/Node/Expr/Yield_.phpdêìfd¼4Ž¤.nikic-php-parser/PhpParser/Node/Expr/Exit_.php êìf Ö6Œ¤1nikic-php-parser/PhpParser/Node/Expr/AssignOp.phpêêìfê,Jõ¤;nikic-php-parser/PhpParser/Node/Expr/NullsafeMethodCall.phpwêìfwû*Û¤4nikic-php-parser/PhpParser/Node/Expr/Instanceof_.phpkêìfkY8#¥¤1nikic-php-parser/PhpParser/Node/Expr/FuncCall.php<êìf<.Ýݤ3nikic-php-parser/PhpParser/Node/Expr/BooleanNot.php­êìf­Ñ©å¤/nikic-php-parser/PhpParser/Node/Expr/Clone_.php‘êìf‘4r¬¤/nikic-php-parser/PhpParser/Node/Expr/PreDec.php‘êìf‘=’%Ϥ/nikic-php-parser/PhpParser/Node/Expr/Match_.php´êìf´0„àB¤2nikic-php-parser/PhpParser/Node/Expr/ArrayItem.phpêìf/°^l¤/nikic-php-parser/PhpParser/Node/Expr/Array_.php>êìf>:˜Má¤2nikic-php-parser/PhpParser/Node/Expr/AssignRef.phpNêìfN2ø¢¤/nikic-php-parser/PhpParser/Node/Expr/Isset_.php•êìf•„›­–¤3nikic-php-parser/PhpParser/Node/Expr/ClosureUse.phpêìfd-Áû¤2nikic-php-parser/PhpParser/Node/AttributeGroup.php³êìf³U~aÔ¤(nikic-php-parser/PhpParser/Node/Expr.phpêìf|Å)¬¤*nikic-php-parser/PhpParser/Node/Scalar.phpoêìfo­¦þ=¤-nikic-php-parser/PhpParser/Node/UnionType.php¹êìf¹9ØW’¤*nikic-php-parser/PhpParser/Node/Const_.phpêêìfêJÖ`ä0nikic-php-parser/PhpParser/Node/FunctionLike.phpêìf¹õ3¡¤7nikic-php-parser/PhpParser/Node/VariadicPlaceholder.php êìf 6ŽY¤1nikic-php-parser/PhpParser/Node/Name/Relative.php¿êìf¿‰8½V¤7nikic-php-parser/PhpParser/Node/Name/FullyQualified.phpÂêìfÂø 2¤5nikic-php-parser/PhpParser/Node/VarLikeIdentifier.phpêìfy.¤4nikic-php-parser/PhpParser/Node/IntersectionType.phpÕêìfÕ!€úÞ¤(nikic-php-parser/PhpParser/Node/Name.php êìf ¯²†¤2nikic-php-parser/PhpParser/Node/Scalar/DNumber.phpýêìfýWr¤2nikic-php-parser/PhpParser/Node/Scalar/String_.php`êìf`’14¤@nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Namespace_.phpfêìff‹Ãq¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Class_.phpZêìfZÁÆÓ5¤9nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Dir.phpSêìfSrÙfɤ:nikic-php-parser/PhpParser/Node/Scalar/MagicConst/File.phpVêìfV6›Q¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Method.php\êìf\Ë2 N¤?nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Function_.phpcêìfc—5¤¤:nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Line.phpVêìfVèDEš¤<nikic-php-parser/PhpParser/Node/Scalar/MagicConst/Trait_.phpZêìfZ˵ݤ5nikic-php-parser/PhpParser/Node/Scalar/MagicConst.phpiêìfiQdj¤2nikic-php-parser/PhpParser/Node/Scalar/LNumber.phpµ êìfµ çÇÌ*¤=nikic-php-parser/PhpParser/Node/Scalar/EncapsedStringPart.phpìêìfì)IšY¤3nikic-php-parser/PhpParser/Node/Scalar/Encapsed.phpãêìfãÅß&`¤(nikic-php-parser/PhpParser/Node/Stmt.phpêìf«yþ¤'nikic-php-parser/PhpParser/Node/Arg.php;êìf;•yT¤)nikic-php-parser/PhpParser/NodeFinder.phpÁ êìfÁ aÛ…¤,nikic-php-parser/PhpParser/NodeTraverser.phpT'êìfT'ÌäL;¤/nikic-php-parser/PhpParser/Builder/EnumCase.phpuêìfulh¤1nikic-php-parser/PhpParser/Builder/Namespace_.phpMêìfM#ˆ…s¤/nikic-php-parser/PhpParser/Builder/TraitUse.phpjêìfjjàã¤-nikic-php-parser/PhpParser/Builder/Class_.php¼êìf¼&±Í¤,nikic-php-parser/PhpParser/Builder/Param.phpŠêìfŠˆ5"¤9nikic-php-parser/PhpParser/Builder/TraitUseAdaptation.phpšêìfšæï’Ö¤-nikic-php-parser/PhpParser/Builder/Method.php£êìf£ÝàãÚ¤1nikic-php-parser/PhpParser/Builder/Interface_.phpÝ êìfÝ ôÞ/[¤/nikic-php-parser/PhpParser/Builder/Property.php›êìf› L—õ¤2nikic-php-parser/PhpParser/Builder/Declaration.phpéêìféá¥ê»¤0nikic-php-parser/PhpParser/Builder/Function_.phpYêìfYùZ혤+nikic-php-parser/PhpParser/Builder/Use_.phpòêìfò%„6¤3nikic-php-parser/PhpParser/Builder/FunctionLike.phpôêìfô!ìHê¤1nikic-php-parser/PhpParser/Builder/ClassConst.phpôêìfôk¾O§¤-nikic-php-parser/PhpParser/Builder/Trait_.phpçêìfçWbðÙ¤,nikic-php-parser/PhpParser/Builder/Enum_.php¥ êìf¥ §–X¤4nikic-php-parser/PhpParser/PrettyPrinterAbstract.phpèêìfè)ÌŽâ¤5nikic-php-parser/PhpParser/NodeTraverserInterface.phpêìf›î[i¤-nikic-php-parser/PhpParser/BuilderFactory.php+êìf+£ÑѤnikic-php-parser/LICENSEðêìfð¥ä”*¤doctrine-instantiator/LICENSE$êìf$ +Í‚å¤<doctrine-instantiator/Doctrine/Instantiator/Instantiator.phpïêìfïØ##Û¤Edoctrine-instantiator/Doctrine/Instantiator/InstantiatorInterface.phpêìf1×sX¤Ldoctrine-instantiator/Doctrine/Instantiator/Exception/ExceptionInterface.phpËêìfËWÓ|\¤Rdoctrine-instantiator/Doctrine/Instantiator/Exception/UnexpectedValueException.php<êìf<Ю–¤Rdoctrine-instantiator/Doctrine/Instantiator/Exception/InvalidArgumentException.phpšêìfš qÛΤsbom.xml*2êìf*2”èO¤phar-io-manifest/LICENSE`êìf`÷þp¤!phar-io-manifest/values/Email.php¦êìf¦«S·¤1phar-io-manifest/values/PhpVersionRequirement.phpAêìfAÄñi‰¤'phar-io-manifest/values/Application.php êìf ;Äk¤9phar-io-manifest/values/RequirementCollectionIterator.phpÝêìfÝUŽ¤4phar-io-manifest/values/AuthorCollectionIterator.php¡êìf¡¨Ðªe¤ phar-io-manifest/values/Type.phpÔêìfÔܲ3«¤#phar-io-manifest/values/Library.phpêìf±ýžv¤+phar-io-manifest/values/ApplicationName.php…êìf…á”ù¤3phar-io-manifest/values/PhpExtensionRequirement.php¼êìf¼²Pη¤$phar-io-manifest/values/Manifest.php& +êìf& +¾øüú¤phar-io-manifest/values/Url.phpÁêìfÁëO©ƒ¤1phar-io-manifest/values/RequirementCollection.phpsêìfs6ý•M¤#phar-io-manifest/values/License.phpêìf4Êýç¤,phar-io-manifest/values/AuthorCollection.php-êìf-àÍá¤,phar-io-manifest/values/BundledComponent.phpdêìfd7õõ¤%phar-io-manifest/values/Extension.phpÅêìfÅF {¤>phar-io-manifest/values/BundledComponentCollectionIterator.phpêìf _»¤0phar-io-manifest/values/CopyrightInformation.phppêìfp‚“æP¤"phar-io-manifest/values/Author.phpêìf÷x•ü¤'phar-io-manifest/values/Requirement.php´êìf´ ŸïU¤6phar-io-manifest/values/BundledComponentCollection.php¹êìf¹·æߤ7phar-io-manifest/exceptions/ManifestLoaderException.phpäêìfäÍl +½¤7phar-io-manifest/exceptions/NoEmailAddressException.phpêìfáÁü¤9phar-io-manifest/exceptions/ManifestDocumentException.phpêìf/úï"¤?phar-io-manifest/exceptions/InvalidApplicationNameException.php<êìf<°°¯W¤?phar-io-manifest/exceptions/ManifestDocumentMapperException.phpêìfJ¯R1¤8phar-io-manifest/exceptions/ManifestElementException.phpêìfÌæ¤5phar-io-manifest/exceptions/InvalidEmailException.phpêìf)Ϫ}¤3phar-io-manifest/exceptions/InvalidUrlException.php êìf x᳤@phar-io-manifest/exceptions/ManifestDocumentLoadingException.php~êìf~H}»¤)phar-io-manifest/exceptions/Exception.phpÓêìfÓֽФ:phar-io-manifest/exceptions/ElementCollectionException.phpêìfIn‡¤(phar-io-manifest/xml/ContainsElement.phpŒêìfŒl8è¤'phar-io-manifest/xml/LicenseElement.phpêìfvâ/!¤)phar-io-manifest/xml/ComponentElement.php™êìf™”na¤#phar-io-manifest/xml/PhpElement.phpêìfYʤ-phar-io-manifest/xml/ExtElementCollection.phpDêìfDβSó¤&phar-io-manifest/xml/AuthorElement.phpðêìfðÎÊÂÚ¤*phar-io-manifest/xml/ElementCollection.phpÂêìfÂ<^ÉÞ¤)phar-io-manifest/xml/ManifestDocument.phpƒ êìfƒ ™Åi_¤'phar-io-manifest/xml/BundlesElement.phptêìft]Y´‹¤0phar-io-manifest/xml/AuthorElementCollection.phpMêìfMj£·¤3phar-io-manifest/xml/ComponentElementCollection.phpVêìfVú¥?¤)phar-io-manifest/xml/CopyrightElement.phpóêìfó¹hDp¤#phar-io-manifest/xml/ExtElement.php*êìf*^º×¤(phar-io-manifest/xml/RequiresElement.phpEêìfEdwʤ)phar-io-manifest/xml/ExtensionElement.phpêìf€ JŒ¤(phar-io-manifest/xml/ManifestElement.phpÝêìfÝ#¨=¤'phar-io-manifest/ManifestSerializer.phpÏêìfÏ?jª'¤#phar-io-manifest/ManifestLoader.phpÿêìfÿÙX©j¤+phar-io-manifest/ManifestDocumentMapper.phpëêìfë^DŒï¤#sebastian-recursion-context/LICENSEêìf¢ïÚ¤8sebastian-recursion-context/InvalidArgumentException.php®êìf®³ø»™¤'sebastian-recursion-context/Context.phpEêìfEAK¤)sebastian-recursion-context/Exception.php‡êìf‡Æð—¤schema/8.5.xsdÓBêìfÓB2A[­¤schema/9.1.xsdÕBêìfÕBßq'8¤schema/9.0.xsd4Bêìf4B•¨7w¤schema/9.2.xsdÜBêìfÜBc·Á-¤schema/9.3.xsd¼Eêìf¼E¿ùq¤schema/9.4.xsd +Fêìf +FDOFI¤schema/9.5.xsdDFêìfDFûùs|¤ phpunit/TextUI/ResultPrinter.phpnêìfnú±Š^¤'phpunit/TextUI/CliArguments/Builder.php²Têìf²T#„MM¤-phpunit/TextUI/CliArguments/Configuration.phpB²êìfB²4¢ñ»¤&phpunit/TextUI/CliArguments/Mapper.php*,êìf*,[ᤤ)phpunit/TextUI/CliArguments/Exception.phpïêìfï%ézE¤"phpunit/TextUI/TestSuiteMapper.phpù êìfù ƒÙ¤phpunit/TextUI/TestRunner.phpŸÁêìfŸÁ­*N¤phpunit/TextUI/Help.phpŒ1êìfŒ1B—•¤*phpunit/TextUI/XmlConfiguration/Loader.phpq˜êìfq˜SèýФ/phpunit/TextUI/XmlConfiguration/Group/Group.php‘êìf‘Ñ ¬Ž¤Aphpunit/TextUI/XmlConfiguration/Group/GroupCollectionIterator.phpkêìfkYE˜¤9phpunit/TextUI/XmlConfiguration/Group/GroupCollection.phpøêìfø=òm+¤0phpunit/TextUI/XmlConfiguration/Group/Groups.phpØêìfج5ùʤHphpunit/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.phptêìftqô ¤Aphpunit/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.phpÎêìfÎ „ƒï¤@phpunit/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php™êìf™'ñ¤7phpunit/TextUI/XmlConfiguration/TestSuite/TestSuite.phpêìfDÚÛ¤;phpunit/TextUI/XmlConfiguration/TestSuite/TestDirectory.php>êìf>U'øb¤Iphpunit/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php—êìf—–¥¾Z¤6phpunit/TextUI/XmlConfiguration/TestSuite/TestFile.phpÉêìfÉ槨¤Mphpunit/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php±êìf±°¶q¤Ephpunit/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php÷êìf÷] Ç°¤3phpunit/TextUI/XmlConfiguration/Filesystem/File.phpêìfÛXò¤8phpunit/TextUI/XmlConfiguration/Filesystem/Directory.php•êìf•Vj¤Ephpunit/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php`êìf`"ÙJ¤=phpunit/TextUI/XmlConfiguration/Filesystem/FileCollection.phpyêìfyCâWz¤Jphpunit/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.phpêìfjµ„¤Bphpunit/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php×êìf×½æñ¤1phpunit/TextUI/XmlConfiguration/Configuration.php)êìf)XN‘¤0phpunit/TextUI/XmlConfiguration/PHP/Constant.php6êìf6nèý¤2phpunit/TextUI/XmlConfiguration/PHP/PhpHandler.phpoêìfoRœ¾¤0phpunit/TextUI/XmlConfiguration/PHP/Variable.phpâêìfâlÐ ¤:phpunit/TextUI/XmlConfiguration/PHP/VariableCollection.phphêìfhÌÃͤBphpunit/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.phpŒêìfŒçÌ4¤:phpunit/TextUI/XmlConfiguration/PHP/ConstantCollection.phphêìfh§µî8¤<phpunit/TextUI/XmlConfiguration/PHP/IniSettingCollection.phpŠêìfŠ—h¤Bphpunit/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.phpŒêìfŒîQ·¤+phpunit/TextUI/XmlConfiguration/PHP/Php.php +êìf +IGƤ2phpunit/TextUI/XmlConfiguration/PHP/IniSetting.phpHêìfH- jD¤Dphpunit/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php¢êìf¢¯!f÷¤?phpunit/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.phpõêìfõ^ '¤3phpunit/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php2Cêìf2Cí©˜¤Gphpunit/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php—êìf—Fñ¤5phpunit/TextUI/XmlConfiguration/PHPUnit/Extension.php›êìf›ßÎGç¤=phpunit/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.phpuêìfuúò_¤Aphpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.phpÙêìfÙÐÕ¤>phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.phpÖêìfÖ™×ë¤;phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.phpçêìfçÃê¤<phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php êìf lÓ¶¤;phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Php.phpÓêìfÓ.žw¤<phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php¶êìf¶ g¥¤>phpunit/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php—êìf—ÕÔ_T¤Aphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.phpËêìfËc±æ–¤Sphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.phpÙêìfÙ¾µ¿¤Kphpunit/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.phpÒêìfÒþХǤ=phpunit/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.phpÂêìfÂ˸½¤-phpunit/TextUI/XmlConfiguration/Generator.php½êìf½nm©¡¤-phpunit/TextUI/XmlConfiguration/Exception.phpóêìfóN€5+¤@phpunit/TextUI/XmlConfiguration/Migration/MigrationException.php +êìf +¥pï¤Ophpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.phpšêìfšI›ÙO¤Hphpunit/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.phpªêìfªEÞ‚$¤Gphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.phpnêìfng;¡â¤Qphpunit/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.phpðêìfðò(¾x¤dphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php«êìf«éĉ¤Xphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php¦êìf¦ÅšY±¤Sphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.phpÞêìfÞ³UPŸ¤Lphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.phpDêìfDÒRYª¤Xphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistIncludesToCoverage.phpúêìfú(Ÿð¤Jphpunit/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.phpyêìfyJc²¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.phpˆêìfˆ—Ï|¤Yphpunit/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.phpBêìfBvD’´¤Lphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.phpIêìfIK¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php§êìf§°Dƒ°¤Qphpunit/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.phpàêìfà{ÎÛ¤Mphpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php¨êìf¨mi0_¤Ophpunit/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.phpVêìfV$sï¤Bphpunit/TextUI/XmlConfiguration/Migration/Migrations/Migration.phpïêìfïwg…¤Gphpunit/TextUI/XmlConfiguration/Migration/MigrationBuilderException.phpêìf–bs¤6phpunit/TextUI/XmlConfiguration/Migration/Migrator.phpÖêìfÖÎÕ•¤>phpunit/TextUI/XmlConfiguration/Migration/MigrationBuilder.php÷êìf÷×qn¤4phpunit/TextUI/XmlConfiguration/Logging/TeamCity.phpÌêìfÌa7è'¤7phpunit/TextUI/XmlConfiguration/Logging/TestDox/Xml.phpÏêìfÏ ­Íݤ8phpunit/TextUI/XmlConfiguration/Logging/TestDox/Html.phpÐêìfÐò+&ú¤8phpunit/TextUI/XmlConfiguration/Logging/TestDox/Text.phpÐêìfÐ „ ›¤1phpunit/TextUI/XmlConfiguration/Logging/Junit.phpÉêìfÉ2-_Ť3phpunit/TextUI/XmlConfiguration/Logging/Logging.phpÔ êìfÔ ÿôɤ0phpunit/TextUI/XmlConfiguration/Logging/Text.phpÈêìfÈK2õ6¤phpunit/TextUI/Command.phpxrêìfxrÃfФ'phpunit/TextUI/DefaultResultPrinter.phpC7êìfC7)sO¤0phpunit/TextUI/Exception/ReflectionException.php÷êìf÷ Y”¤-phpunit/TextUI/Exception/RuntimeException.phpßêìfß…žF¤;phpunit/TextUI/Exception/TestDirectoryNotFoundException.php êìf Õ̤6phpunit/TextUI/Exception/TestFileNotFoundException.php–êìf–™âpC¤&phpunit/TextUI/Exception/Exception.php¸êìf¸D{i¤"phpunit/Util/RegularExpression.phpßêìfßæ ´¤phpunit/Util/Type.php¢êìf¢ËW¤phpunit/Util/Json.php/ êìf/ l{k¤phpunit/Util/FileLoader.php  êìf  ÊT¤phpunit/Util/Filesystem.phpêìfDùÿâ¤phpunit/Util/Blacklist.phpÞêìfÞg죤phpunit/Util/Reflection.phpˆêìfˆ¤wèK¤phpunit/Util/Xml.php¤êìf¤T¾¤$phpunit/Util/Annotation/Registry.phpI +êìfI +t—íͤ$phpunit/Util/Annotation/DocBlock.php¯@êìf¯@Çc.¤&phpunit/Util/PHP/WindowsPhpProcess.phpìêìfì,«—¤'phpunit/Util/PHP/AbstractPhpProcess.phpã'êìfã'½‚U4¤,phpunit/Util/PHP/Template/TestCaseMethod.tpl2êìf2’Š?¤*phpunit/Util/PHP/Template/PhptTestCase.tplèêìfè׈«j¤+phpunit/Util/PHP/Template/TestCaseClass.tplã êìfã ¬Ív¤&phpunit/Util/PHP/DefaultPhpProcess.phptêìftŸdƒs¤phpunit/Util/Xml/Loader.php‚ êìf‚ 㪆J¤phpunit/Util/Xml/Validator.phpêìfõ¾šò¤%phpunit/Util/Xml/ValidationResult.php¢êìf¢<úaî¤*phpunit/Util/Xml/SchemaDetectionResult.phpêìfØÔÙm¤4phpunit/Util/Xml/SuccessfulSchemaDetectionResult.phpüêìfü@ +¤%phpunit/Util/Xml/SnapshotNodeList.phpEêìfE6­\ò¤0phpunit/Util/Xml/FailedSchemaDetectionResult.phpðêìfðÖ#S˜¤!phpunit/Util/Xml/SchemaFinder.phpÊêìfÊ:~~q¤phpunit/Util/Xml/Exception.phpäêìfä•û±Ó¤#phpunit/Util/Xml/SchemaDetector.phpvêìfvj×o#¤phpunit/Util/Cloner.phpðêìfðeÿ¡ ¤*phpunit/Util/VersionComparisonOperator.phpŠêìfŠ÷Ÿ‰¤phpunit/Util/Test.phpä]êìfä]+vˤphpunit/Util/GlobalState.php êìf !¦¥Ê¤phpunit/Util/Color.phpëêìfë#…”v¤&phpunit/Util/TestDox/ResultPrinter.phpGêìfG0H{ߤ*phpunit/Util/TestDox/HtmlResultPrinter.phpÀ êìfÀ ÉâLL¤*phpunit/Util/TestDox/TextResultPrinter.php©êìf©`O{¤)phpunit/Util/TestDox/XmlResultPrinter.phpëêìf벚ݤ*phpunit/Util/TestDox/CliTestDoxPrinter.phpO*êìfO*ˆ”5î¤'phpunit/Util/TestDox/NamePrettifier.php0"êìf0"U˜á>¤'phpunit/Util/TestDox/TestDoxPrinter.php))êìf))‚Ì{¤phpunit/Util/Filter.php¤ êìf¤ BnÕ¤$phpunit/Util/XmlTestListRenderer.php1 +êìf1 +æÍF¤(phpunit/Util/InvalidDataSetException.phpüêìfü,KO¤phpunit/Util/Log/TeamCity.php{&êìf{&!ˆ$¤phpunit/Util/Log/JUnit.phpT*êìfT*ÚÙú¤phpunit/Util/ErrorHandler.php‹êìf‹êƒÙÿ¤phpunit/Util/Exception.phpàêìfछ다phpunit/Util/Printer.phpñ êìfñ ­^1Ĥphpunit/Util/ExcludeList.php÷êìf÷¯?¨?¤,phpunit/Util/XdebugFilterScriptGenerator.phpuêìfu‡ø.G¤%phpunit/Util/TextTestListRenderer.php^êìf^‹ÜJ/¤"phpunit/Framework/TestListener.phphêìfhq¢Ž¤ phpunit/Framework/TestResult.phpÞ~êìfÞ~×Ú.¨¤.phpunit/Framework/ExecutionOrderDependency.phpúêìfúÔ¨2¤7phpunit/Framework/TestListenerDefaultImplementation.phpêìf÷4DJ¤'phpunit/Framework/TestSuiteIterator.php/êìf/î +¤phpunit/Framework/TestSuite.phpTdêìfTdáR¡¤$phpunit/Framework/SelfDescribing.php êìf ’]H4¤!phpunit/Framework/Reorderable.phpˆêìfˆ¾ø¸Œ¤$phpunit/Framework/IncompleteTest.php¼êìf¼,+Ѥ!phpunit/Framework/TestBuilder.phpêìf£ø ¤&phpunit/Framework/ExceptionWrapper.phpuêìfu;­²ù¤4phpunit/Framework/InvalidParameterGroupException.phpÒêìfÒ†©€¤&phpunit/Framework/Assert/Functions.phpÔŠêìfÔŠêÊ6ô¤+phpunit/Framework/DataProviderTestSuite.php7êìf7~¨¤#phpunit/Framework/ErrorTestCase.phpêìfÓ4ü¤phpunit/Framework/Assert.phpÉbêìfÉbÎ_ÏǤ!phpunit/Framework/SkippedTest.php¹êìf¹S±.¤phpunit/Framework/Test.php~êìf~Qºu¤*phpunit/Framework/MockObject/MockClass.php¾êìf¾î~m¤5phpunit/Framework/MockObject/MethodNameConstraint.phpêìfn~嵤+phpunit/Framework/MockObject/MockObject.php”êìf”Ý ‡Š¤)phpunit/Framework/MockObject/MockType.phpúêìfú–³ݤ+phpunit/Framework/MockObject/Invocation.php›êìf›zmn4¤,phpunit/Framework/MockObject/MockBuilder.phpY+êìfY+L× ¤.phpunit/Framework/MockObject/MockMethodSet.php5êìf5åv ®¤0phpunit/Framework/MockObject/Rule/MethodName.phpêìfX~$À¤;phpunit/Framework/MockObject/Rule/ConsecutiveParameters.phpV êìfV Ô61¤4phpunit/Framework/MockObject/Rule/ParametersRule.phpaêìfaêØ̤5phpunit/Framework/MockObject/Rule/InvocationOrder.phpÅêìfÅÖ4r–¤5phpunit/Framework/MockObject/Rule/AnyInvokedCount.phpfêìffVÅEL¤8phpunit/Framework/MockObject/Rule/InvokedAtLeastOnce.php)êìf)Bˆ“¤3phpunit/Framework/MockObject/Rule/AnyParameters.phpøêìføð^e¡¤8phpunit/Framework/MockObject/Rule/InvokedAtMostCount.php‡êìf‡U¾v-¤4phpunit/Framework/MockObject/Rule/InvokedAtIndex.php(êìf(VFÓ6¤9phpunit/Framework/MockObject/Rule/InvokedAtLeastCount.php’êìf’5`;¤0phpunit/Framework/MockObject/Rule/Parameters.phpQêìfQ£‰¾ˆ¤2phpunit/Framework/MockObject/Rule/InvokedCount.php¡ êìf¡ Þ8¹…¤8phpunit/Framework/MockObject/Generator/mocked_method.tplFêìfFŒK¤Fphpunit/Framework/MockObject/Generator/mocked_method_never_or_void.tplêìfßpç¤7phpunit/Framework/MockObject/Generator/mocked_class.tplêìf‚wZ¤6phpunit/Framework/MockObject/Generator/wsdl_method.tpl<êìf<¾Ði‰¤Gphpunit/Framework/MockObject/Generator/proxied_method_never_or_void.tplvêìfvÖÃT¤9phpunit/Framework/MockObject/Generator/proxied_method.tpl}êìf}@üÄ—¤7phpunit/Framework/MockObject/Generator/intersection.tplLêìfL®Ž-X¤5phpunit/Framework/MockObject/Generator/wsdl_class.tplÍêìfÍô’±¤6phpunit/Framework/MockObject/Generator/trait_class.tplQêìfQ÷<‹È¤6phpunit/Framework/MockObject/Generator/deprecation.tpl;êìf;O5øs¤?phpunit/Framework/MockObject/Generator/mocked_static_method.tplîêìfî 4éR¤3phpunit/Framework/MockObject/ConfigurableMethod.php‰êìf‰à +?ð¤(phpunit/Framework/MockObject/Matcher.phpåêìfåݽ_O¤0phpunit/Framework/MockObject/Stub/ReturnStub.phpëêìfë¹þH¤6phpunit/Framework/MockObject/Stub/ConsecutiveCalls.phpêìfëyø^¤4phpunit/Framework/MockObject/Stub/ReturnArgument.phpêìfX`. ¤5phpunit/Framework/MockObject/Stub/ReturnReference.phpêìfsâ殤4phpunit/Framework/MockObject/Stub/ReturnValueMap.phpüêìfü5Â÷3¤4phpunit/Framework/MockObject/Stub/ReturnCallback.phpêêìfêÐaÉ2¤0phpunit/Framework/MockObject/Stub/ReturnSelf.php3êìf3HÍÕ¤*phpunit/Framework/MockObject/Stub/Stub.php3êìf3>+œ¤/phpunit/Framework/MockObject/Stub/Exception.php*êìf*ð¥âQ¤+phpunit/Framework/MockObject/Api/Method.php¿êìf¿ÿ¡Ž¤(phpunit/Framework/MockObject/Api/Api.php© êìf© 7èâf¤%phpunit/Framework/MockObject/Stub.phpêìfQæA¤+phpunit/Framework/MockObject/MockMethod.phpw&êìfw&•Zʤ*phpunit/Framework/MockObject/Generator.phpüˆêìfüˆ£DtP¤2phpunit/Framework/MockObject/InvocationHandler.php3êìf3ЇÁ¤:phpunit/Framework/MockObject/Builder/InvocationStubber.phpÓêìfÓû Ƥ9phpunit/Framework/MockObject/Builder/InvocationMocker.php* êìf* CõÁפ8phpunit/Framework/MockObject/Builder/ParametersMatch.phpîêìfîï Úƒ¤1phpunit/Framework/MockObject/Builder/Identity.php’êìf’¨×¤-phpunit/Framework/MockObject/Builder/Stub.phpêìfáȉ¶¤8phpunit/Framework/MockObject/Builder/MethodNameMatch.php†êìf†ì8,è¤Hphpunit/Framework/MockObject/Exception/MatchBuilderNotFoundException.phpÂêìf£¤¤Lphpunit/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.phpºêìfºz®'ý¤Uphpunit/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.phpêìf r€¤Yphpunit/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php êìf É…¢W¤Fphpunit/Framework/MockObject/Exception/ClassAlreadyExistsException.php±êìf±‰Ý¤Gphpunit/Framework/MockObject/Exception/CannotUseAddMethodsException.php5êìf5ˆçƒ{¤Ophpunit/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php†êìf†ÓƤ>phpunit/Framework/MockObject/Exception/ReflectionException.phpêìf.Ø”¶¤Cphpunit/Framework/MockObject/Exception/DuplicateMethodException.phpÌêìfÌ‘y¿ž¤@phpunit/Framework/MockObject/Exception/UnknownClassException.php«êìf«5uþW¤;phpunit/Framework/MockObject/Exception/RuntimeException.php÷êìf÷ô¨_|¤Ephpunit/Framework/MockObject/Exception/InvalidMethodNameException.php¼êìf¼ ðÚܤKphpunit/Framework/MockObject/Exception/IncompatibleReturnValueException.phpîêìfî3d—f¤?phpunit/Framework/MockObject/Exception/UnknownTypeException.php­êìf­’~ùµ¤Yphpunit/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php¶êìf¶Ú©ûû¤Aphpunit/Framework/MockObject/Exception/BadMethodCallException.phpêìfΫýX¤@phpunit/Framework/MockObject/Exception/UnknownTraitException.php«êìf«qÂ¥—¤@phpunit/Framework/MockObject/Exception/ClassIsFinalException.phpÆêìfƆ(¸)¤Lphpunit/Framework/MockObject/Exception/MethodCannotBeConfiguredException.phpêìf}Q¡ˆ¤Cphpunit/Framework/MockObject/Exception/ClassIsReadonlyException.phpÌêìfÌÓOuX¤Hphpunit/Framework/MockObject/Exception/CannotUseOnlyMethodsException.phpEêìfEÀËî¤Kphpunit/Framework/MockObject/Exception/MethodNameNotConfiguredException.php~êìf~Þx1)¤Mphpunit/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php¥êìf¥©¿Šz¤Lphpunit/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php6êìf6?먙¤4phpunit/Framework/MockObject/Exception/Exception.phpÂêìfÂB¯Õ'¤+phpunit/Framework/MockObject/Verifiable.phpËêìfËhy¤*phpunit/Framework/MockObject/MockTrait.php„êìf„¦Ãì)¤#phpunit/Framework/Error/Warning.phpwêìfwÙãG¤!phpunit/Framework/Error/Error.phpmêìfmÚYgà¤"phpunit/Framework/Error/Notice.phpvêìfv¯úÂˤ&phpunit/Framework/Error/Deprecated.phpzêìfzñàV¤phpunit/Framework/TestCase.php·-êìf·-*HF¤'phpunit/Framework/Exception/Warning.php‹êìf‹NÎG[¤?phpunit/Framework/Exception/UnintentionallyCoveredCodeError.phpØêìfؼ£¤:phpunit/Framework/Exception/ExpectationFailedException.phpÒêìfÒÿÂ3ˤ5phpunit/Framework/Exception/SyntheticSkippedError.phpøêìfø£Ô—¤Sphpunit/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.phpjêìfjÓ°¤Uphpunit/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.phpQêìfQv —$¤Zphpunit/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php[êìf[MªFb¤5phpunit/Framework/Exception/SkippedTestSuiteError.phpþêìfþx«Ž¤+phpunit/Framework/Exception/OutputError.phpÊêìfÊ©¢¤3phpunit/Framework/Exception/IncompleteTestError.phpÿêìfÿגܤAphpunit/Framework/Exception/ActualValueIsNotAnObjectException.phpÀêìfÀC¥~¤.phpunit/Framework/Exception/RiskyTestError.phpÇêìfÇ*Ãy¤0phpunit/Framework/Exception/SkippedTestError.phpùêìfù O~¤.phpunit/Framework/Exception/SyntheticError.php2êìf2ü¼æ¤8phpunit/Framework/Exception/PHPTAssertionFailedError.php3êìf3âö¤5phpunit/Framework/Exception/CodeCoverageException.phpÃêìfõ£[è¤?phpunit/Framework/Exception/CoveredCodeNotExecutedException.phpØêìfØ8YÉФ8phpunit/Framework/Exception/InvalidArgumentException.php°êìf°k±û¤9phpunit/Framework/Exception/NoChildTestSuiteException.phpÍêìfÍPÚ$¤<phpunit/Framework/Exception/InvalidDataProviderException.phpÐêìfÐ.ڜɤ%phpunit/Framework/Exception/Error.php‰êìf‰Ï¦G¤Tphpunit/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.phpYêìfYÕz“…¤<phpunit/Framework/Exception/InvalidCoversTargetException.phpÜêìfÜo–苤Ephpunit/Framework/Exception/ComparisonMethodDoesNotExistException.php.êìf.5´è­¤@phpunit/Framework/Exception/MissingCoversAnnotationException.phpÙêìfÙ|î¤)phpunit/Framework/Exception/Exception.php° êìf° 8¸w¤4phpunit/Framework/Exception/AssertionFailedError.php’êìf’¶ÃÇæ¤%phpunit/Framework/WarningTestCase.php$êìf$º¨¤5phpunit/Framework/Constraint/Cardinality/LessThan.phpêìfŠS¯¤4phpunit/Framework/Constraint/Cardinality/IsEmpty.php»êìf»¼}â*¤2phpunit/Framework/Constraint/Cardinality/Count.phpe êìfe Fž¤5phpunit/Framework/Constraint/Cardinality/SameSize.php_êìf_uáËŤ8phpunit/Framework/Constraint/Cardinality/GreaterThan.php +êìf +)õÌ!¤+phpunit/Framework/Constraint/IsAnything.phpƒêìfƒ-%6$¤Iphpunit/Framework/Constraint/Traversable/TraversableContainsIdentical.php&êìf&)3‹¤Dphpunit/Framework/Constraint/Traversable/TraversableContainsOnly.phpN êìfN ‘øÞˤ8phpunit/Framework/Constraint/Traversable/ArrayHasKey.phpÀêìfÀÍ´‹¤@phpunit/Framework/Constraint/Traversable/TraversableContains.php êìf WÆ´¤Ephpunit/Framework/Constraint/Traversable/TraversableContainsEqual.php`êìf`ÌkÉ‹¤,phpunit/Framework/Constraint/JsonMatches.php^ êìf^ h {¤6phpunit/Framework/Constraint/Filesystem/IsReadable.phpbêìfb,jª’¤;phpunit/Framework/Constraint/Filesystem/DirectoryExists.phpgêìfgÞÊ,q¤6phpunit/Framework/Constraint/Filesystem/IsWritable.phpbêìfbD¤6phpunit/Framework/Constraint/Filesystem/FileExists.phpbêìfb®"çE¤+phpunit/Framework/Constraint/Math/IsNan.php¦êìf¦\ Lj¤0phpunit/Framework/Constraint/Math/IsInfinite.phpºêìfºWæÚ¤.phpunit/Framework/Constraint/Math/IsFinite.php²êìf²ï]"¤=phpunit/Framework/Constraint/Equality/IsEqualIgnoringCase.phpÕ +êìfÕ +moC¤:phpunit/Framework/Constraint/Equality/IsEqualWithDelta.php= +êìf= +ݬâ÷¤?phpunit/Framework/Constraint/Equality/IsEqualCanonicalizing.php× +êìf× +,Ïì¤1phpunit/Framework/Constraint/Equality/IsEqual.phpâ êìfâ ië¨L¤2phpunit/Framework/Constraint/Type/IsInstanceOf.php_êìf_”X¤,phpunit/Framework/Constraint/Type/IsType.php‚êìf‚:”±¤,phpunit/Framework/Constraint/Type/IsNull.php”êìf”Ž>û¤?phpunit/Framework/Constraint/Object/ClassHasStaticAttribute.php(êìf(P‚©¤9phpunit/Framework/Constraint/Object/ClassHasAttribute.php¯êìf¯Ål¤4phpunit/Framework/Constraint/Object/ObjectEquals.phpêìf\³Þ¤:phpunit/Framework/Constraint/Object/ObjectHasAttribute.php¥êìf¥Þ¼˜¤9phpunit/Framework/Constraint/Object/ObjectHasProperty.php˜êìf˜góŶ¤+phpunit/Framework/Constraint/Constraint.phpö!êìfö!7}ëB¤0phpunit/Framework/Constraint/Boolean/IsFalse.php˜êìf˜x*Ûº¤/phpunit/Framework/Constraint/Boolean/IsTrue.php•êìf•‹,v^¤,phpunit/Framework/Constraint/IsIdentical.phpÅ êìfÅ ½ÂþG¤@phpunit/Framework/Constraint/JsonMatchesErrorMessageProvider.php3êìf3 +æ¤9phpunit/Framework/Constraint/String/RegularExpression.php£êìf£éã=E¤8phpunit/Framework/Constraint/String/StringStartsWith.php$êìf$ô£î@¤.phpunit/Framework/Constraint/String/IsJson.phpÃêìf÷2‘.¤Fphpunit/Framework/Constraint/String/StringMatchesFormatDescription.php² +êìf² +z¤6phpunit/Framework/Constraint/String/StringContains.phpÓêìfÓÕsj¤6phpunit/Framework/Constraint/String/StringEndsWith.php¡êìf¡x‚ÎW¤Lphpunit/Framework/Constraint/Exception/ExceptionMessageRegularExpression.phpÀêìfÀôw4þ¤;phpunit/Framework/Constraint/Exception/ExceptionMessage.phpœêìfœ¸"¢³¤4phpunit/Framework/Constraint/Exception/Exception.phpýêìfý7¨Nž¤8phpunit/Framework/Constraint/Exception/ExceptionCode.phpçêìfç*1§#¤)phpunit/Framework/Constraint/Callback.php=êìf=JÅî:¤3phpunit/Framework/Constraint/Operator/LogicalOr.php÷êìf÷.cÙߤ4phpunit/Framework/Constraint/Operator/LogicalAnd.phpêìf»N(”¤4phpunit/Framework/Constraint/Operator/LogicalXor.php!êìf!{„ _¤2phpunit/Framework/Constraint/Operator/Operator.php!êìf!K-ÎV¤8phpunit/Framework/Constraint/Operator/BinaryOperator.php=êìf=qcð¤4phpunit/Framework/Constraint/Operator/LogicalNot.php1 êìf1 [vɤ7phpunit/Framework/Constraint/Operator/UnaryOperator.php+êìf+5üüo¤(phpunit/Framework/IncompleteTestCase.php³êìf³ÿ¬ Ž¤!phpunit/Framework/TestFailure.php‡êìf‡Îé%Ĥ%phpunit/Framework/SkippedTestCase.php­êìf­°.¤"phpunit/Runner/TestResultCache.phpÏêìfÏèf¾$¤'phpunit/Runner/Extension/PharLoader.php· êìf· z/t¤-phpunit/Runner/Extension/ExtensionHandler.php{ êìf{ ý šÿ¤!phpunit/Runner/BaseTestRunner.php¿ êìf¿ ç Ô¤'phpunit/Runner/ResultCacheExtension.php-êìf-ÿ[Τphpunit/Runner/PhptTestCase.phpŒVêìfŒV8 ¹h¤*phpunit/Runner/StandardTestSuiteLoader.php°êìf°6èÆí¤phpunit/Runner/Version.phpàêìfàZa¢ú¤"phpunit/Runner/TestSuiteLoader.php–êìf–Â3\ؤ)phpunit/Runner/DefaultTestResultCache.phpêìfm¨J/¤"phpunit/Runner/TestSuiteSorter.phpÄ+êìfÄ+ÁGVð¤!phpunit/Runner/Filter/Factory.php¬êìf¬Èu}¤4phpunit/Runner/Filter/IncludeGroupFilterIterator.phpqêìfqÜLm:¤-phpunit/Runner/Filter/GroupFilterIterator.php«êìf«‹¼Ç~¤,phpunit/Runner/Filter/NameFilterIterator.php¢ êìf¢ aÄ{¤4phpunit/Runner/Filter/ExcludeGroupFilterIterator.phprêìfru]á¤&phpunit/Runner/NullTestResultCache.php“êìf“zG¤phpunit/Runner/Exception.phpâêìfâzZÖ¤*phpunit/Runner/Hook/AfterRiskyTestHook.php"êìf"y¼DP¤,phpunit/Runner/Hook/AfterSkippedTestHook.php&êìf&ŽI»7¤*phpunit/Runner/Hook/AfterTestErrorHook.php"êìf"càwë¤phpunit/Runner/Hook/Hook.php–êìf–©.¤&phpunit/Runner/Hook/BeforeTestHook.phpüêìfü#?á¤+phpunit/Runner/Hook/TestListenerAdapter.php¼êìf¼ôK•¤,phpunit/Runner/Hook/AfterTestWarningHook.php&êìf&Žßüë¤ phpunit/Runner/Hook/TestHook.php·êìf·ÆZ_ +¤%phpunit/Runner/Hook/AfterTestHook.phpÐêìfÐDm [¤)phpunit/Runner/Hook/AfterLastTestHook.phpòêìfòOî÷*¤,phpunit/Runner/Hook/AfterTestFailureHook.php&êìf&@@ +¤+phpunit/Runner/Hook/BeforeFirstTestHook.phpöêìfölÄ“l¤/phpunit/Runner/Hook/AfterIncompleteTestHook.php,êìf,Œ«¤/phpunit/Runner/Hook/AfterSuccessfulTestHook.phpêìfphpunit/Exception.php­êìf­aµ•#¤ phpunit.xsdRFêìfRFAêg¤*sebastian-code-unit-reverse-lookup/LICENSEêìf3G (¤-sebastian-code-unit-reverse-lookup/Wizard.phpÞ êìfÞ †”¤.sebastian-object-reflector/ObjectReflector.phpªêìfªxA¤7sebastian-object-reflector/InvalidArgumentException.php¦êìf¦í[a¤(sebastian-object-reflector/Exception.php…êìf…×}dS¤php-text-template/LICENSEêìfu¹¤1php-text-template/exceptions/RuntimeException.php¹êìf¹Ö]Mp¤9php-text-template/exceptions/InvalidArgumentException.php¤êìf¤ô¼¸Â¤*php-text-template/exceptions/Exception.php}êìf}Áã`"¤php-text-template/Template.php( êìf( d&C»¤8sebastian-object-enumerator/InvalidArgumentException.php¨êìf¨ËÿæÁ¤*sebastian-object-enumerator/Enumerator.php§êìf§òø9Ϥ)sebastian-object-enumerator/Exception.php‡êìf‡†No¤"php-code-coverage/CodeCoverage.phpEEêìfEEcŠXµ¤php-code-coverage/LICENSEûêìfû-~yÖ¤%php-code-coverage/Util/Percentage.php„êìf„â´É¤%php-code-coverage/Util/Filesystem.php­êìf­(У|¤%php-code-coverage/Driver/Selector.php¡ êìf¡ €¦iH¤'php-code-coverage/Driver/PcovDriver.phpSêìfSØD¨¤#php-code-coverage/Driver/Driver.php°êìf°NÂÙë¤*php-code-coverage/Driver/Xdebug3Driver.php êìf °k{¤)php-code-coverage/Driver/PhpdbgDriver.phpb +êìfb +Hë.Y¤*php-code-coverage/Driver/Xdebug2Driver.phpH êìfH ‰^팤php-code-coverage/Version.phpÊêìfÊý ¤php-code-coverage/Filter.phpé êìfé ´´0¤;php-code-coverage/StaticAnalysis/CodeUnitFindingVisitor.phpd(êìfd(¼T«¤1php-code-coverage/StaticAnalysis/FileAnalyser.php»êìf»‚ ¤8php-code-coverage/StaticAnalysis/CachingFileAnalyser.php§êìf§ÖõƤ0php-code-coverage/StaticAnalysis/CacheWarmer.phpgêìfg¹][7¤Bphp-code-coverage/StaticAnalysis/ExecutableLinesFindingVisitor.phpì)êìfì)OlÐi¤?php-code-coverage/StaticAnalysis/IgnoredLinesFindingVisitor.php> êìf> 5“s¤8php-code-coverage/StaticAnalysis/ParsingFileAnalyser.phpÿêìfÿ•#x¤&php-code-coverage/Report/Cobertura.php”1êìf”1§‹8 ¤#php-code-coverage/Report/Clover.phpj(êìfj(?g¤4php-code-coverage/Report/Html/Renderer/Dashboard.phpM êìfM ¶ë·¤/php-code-coverage/Report/Html/Renderer/File.phpŽêìfŽ®1©P¤Cphp-code-coverage/Report/Html/Renderer/Template/dashboard.html.dist›êìf›×…D¤Lphp-code-coverage/Report/Html/Renderer/Template/method_item_branch.html.dist¥êìf¥yÄŽk¤>php-code-coverage/Report/Html/Renderer/Template/line.html.distÅêìfÅãç­{¤Fphp-code-coverage/Report/Html/Renderer/Template/coverage_bar.html.dist'êìf'õO}¤?php-code-coverage/Report/Html/Renderer/Template/lines.html.disteêìfedf ¤Ephp-code-coverage/Report/Html/Renderer/Template/css/bootstrap.min.cssØyêìfØyŽÄ¤>php-code-coverage/Report/Html/Renderer/Template/css/custom.cssêìf¤Aphp-code-coverage/Report/Html/Renderer/Template/css/nv.d3.min.cssX%êìfX%0,¤@php-code-coverage/Report/Html/Renderer/Template/css/octicons.cssXêìfX'#ï¤=php-code-coverage/Report/Html/Renderer/Template/css/style.css +êìf +ÝÐö¤>php-code-coverage/Report/Html/Renderer/Template/file.html.distP êìfP jƒî*¤Cphp-code-coverage/Report/Html/Renderer/Template/file_item.html.distrêìfréð/y¤Ephp-code-coverage/Report/Html/Renderer/Template/method_item.html.dist«êìf«‹jפ?php-code-coverage/Report/Html/Renderer/Template/js/nv.d3.min.jsÚRêìfÚRê¤(php-code-coverage/Report/Xml/Project.phpdêìfd—û ¨¤%php-code-coverage/Report/Xml/Node.php1êìf1yk£ ¤*php-code-coverage/Report/Xml/Directory.phpíêìfí ôFn¤)php-code-coverage/Report/Xml/Coverage.php1êìf1ÁåóW¤'php-code-coverage/Report/Xml/Source.php‰êìf‰’5À¤1php-code-coverage/Report/Xml/BuildInformation.phpë êìfë öµð¤'php-code-coverage/Report/Xml/Report.php êìf ¹dúö¤'php-code-coverage/Report/Xml/Facade.php("êìf("×YU~¤ php-code-coverage/Report/PHP.php&êìf&<ï +P¤!php-code-coverage/Report/Text.phpñ'êìfñ',È—¤#php-code-coverage/Report/Crap4j.phpMêìfM²§Æ½¤php-code-coverage/Node/File.php{Kêìf{KùWëÒ¤$php-code-coverage/Node/CrapIndex.phpñêìfñô!„¤"php-code-coverage/Node/Builder.phpêìfÁÆò¤'php-code-coverage/Node/AbstractNode.phpêìf³{“ò¤$php-code-coverage/Node/Directory.phpõ%êìfõ%ÇØ©±¤#php-code-coverage/Node/Iterator.php~êìf~rÿ9¤Iphp-code-coverage/Exception/StaticAnalysisCacheNotConfiguredException.phpÆêìfÆÛpé¤Cphp-code-coverage/Exception/UnintentionallyCoveredCodeException.php-êìf-äìŤCphp-code-coverage/Exception/DirectoryCouldNotBeCreatedException.phpÿêìfÿ<î6'¤:php-code-coverage/Exception/Xdebug2NotEnabledException.phpŠêìfŠç‚©¤/php-code-coverage/Exception/ParserException.php¬êìf¬pÏêÚ¤Jphp-code-coverage/Exception/BranchAndPathCoverageNotSupportedException.phpÇêìfÇz¤3php-code-coverage/Exception/ReflectionException.php°êìf°ö`¤;php-code-coverage/Exception/XdebugNotAvailableException.phpmêìfmí{F¤6php-code-coverage/Exception/TestIdMissingException.phpêìf3ÄOê¤]php-code-coverage/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.phpeêìfe®X3Ÿ¤;php-code-coverage/Exception/WrongXdebugVersionException.phpùêìfùµt!¤,php-code-coverage/Exception/XmlException.php©êìf©0)ƒR¤?php-code-coverage/Exception/ReportAlreadyFinalizedException.php>êìf>ÒmU=¤=php-code-coverage/Exception/WriteOperationFailedException.phpêìfu䶤:php-code-coverage/Exception/Xdebug3NotEnabledException.php´êìf´®ÕNä8php-code-coverage/Exception/InvalidArgumentException.php¨êìf¨lÕ~ФFphp-code-coverage/Exception/DeadCodeDetectionNotSupportedException.phpÃêìfÆožI¤Dphp-code-coverage/Exception/PathExistsButIsNotDirectoryException.php¥êìf¥ikd¤;php-code-coverage/Exception/PhpdbgNotAvailableException.phphêìfhÇ |=¤Fphp-code-coverage/Exception/NoCodeCoverageDriverAvailableException.php3êìf35oYC¤)php-code-coverage/Exception/Exception.phpêìf+’ËQ¤9php-code-coverage/Exception/PcovNotAvailableException.phpiêìfiÁq¤)php-code-coverage/RawCodeCoverageData.php!êìf!AÆv§¤/php-code-coverage/ProcessedCodeCoverageData.php $êìf $’ÍW»¤Dphp-invoker/exceptions/ProcessControlExtensionNotLoadedException.php»êìf»ÔþÓ¤$php-invoker/exceptions/Exception.phpvêìfv'P=¤+php-invoker/exceptions/TimeoutException.php¢êìf¢—tJï¤php-invoker/Invoker.php +êìf +QÀˤsebastian-exporter/LICENSEêìf 5Ù¤sebastian-exporter/Exporter.phpL$êìfL$âÞ'Ô¤4sebastian-resource-operations/ResourceOperations.php(³êìf(³Ž±5¤%sebastian-resource-operations/LICENSEêìf]<â¤php-file-iterator/Factory.phpÜêìfÜÒY÷ ¤php-file-iterator/LICENSEêìfo™:¤php-file-iterator/Iterator.phpX êìfX 춧ܤphp-file-iterator/Facade.php' +êìf' +š>â3¤!sebastian-environment/Runtime.phpêìf8éÕ¤)sebastian-environment/OperatingSystem.phpéêìfé.3Œj¤sebastian-environment/LICENSEêìf®FyÙ¤!sebastian-environment/Console.php¹êìf¹`Ë ¾¤theseer-tokenizer/Token.php—êìf—K•`¤theseer-tokenizer/LICENSEüêìfüïR (¤+theseer-tokenizer/NamespaceUriException.php}êìf}aÕ“¤.theseer-tokenizer/TokenCollectionException.php€êìf€5ɤ%theseer-tokenizer/TokenCollection.phpêìfN´}¤theseer-tokenizer/Tokenizer.php êìf !ŠøN¤#theseer-tokenizer/XMLSerializer.phpêêìfêu(Õ¤"theseer-tokenizer/NamespaceUri.phpJêìfJWç]¤theseer-tokenizer/Exception.phprêìfrÊÂmœ¤sebastian-cli-parser/LICENSEêìfÑÝu¤sebastian-cli-parser/Parser.phpŒêìfŒ_Èá"¤<sebastian-cli-parser/exceptions/AmbiguousOptionException.phpJêìfJkK*¤:sebastian-cli-parser/exceptions/UnknownOptionException.phpCêìfC€*tP¤Gsebastian-cli-parser/exceptions/OptionDoesNotAllowArgumentException.phpcêìfcŠRjY¤-sebastian-cli-parser/exceptions/Exception.phpyêìfy>€±¤Jsebastian-cli-parser/exceptions/RequiredOptionArgumentMissingException.phplêìflzQ¢¤sebastian-type/LICENSE êìf Ò&.ç¤#sebastian-type/ReflectionMapper.phpkêìfk’£ÿ8¤)sebastian-type/type/GenericObjectType.php<êìf<W0V¤"sebastian-type/type/SimpleType.phpøêìføú†­¤sebastian-type/type/Type.php»êìf»KCl¤ sebastian-type/type/NullType.php!êìf!ný6Ž¤"sebastian-type/type/ObjectType.php\êìf\÷4Ax¤$sebastian-type/type/CallableType.phprêìfrZÿø\¤!sebastian-type/type/UnionType.php êìf UÀ¤!sebastian-type/type/NeverType.php×êìf׳Ž×S¤"sebastian-type/type/StaticType.phpÄêìfĪ˜b‹¤#sebastian-type/type/UnknownType.phpêìfH´”¤ sebastian-type/type/TrueType.php]êìf]¬z¬¤ sebastian-type/type/VoidType.phpÓêìfÓ¾[Þÿ¤(sebastian-type/type/IntersectionType.phpŸ +êìfŸ +þÜÔa¤!sebastian-type/type/MixedType.php&êìf&ÔöºÔ¤$sebastian-type/type/IterableType.phpêìf" L¤!sebastian-type/type/FalseType.phpbêìfbnÞ…^¤sebastian-type/TypeName.php8êìf8Å=¿—¤-sebastian-type/exception/RuntimeException.php…êìf…¶;sÖ¤&sebastian-type/exception/Exception.phpnêìfnÑH3ç¤sebastian-type/Parameter.phpêìf!¼¹¤)phpdocumentor-reflection-docblock/LICENSE8êìf8á‰Ê¤5phpdocumentor-reflection-docblock/DocBlockFactory.phpÁ$êìfÁ$åwJ¤9phpdocumentor-reflection-docblock/DocBlock/Serializer.phpêìfè(L¤<phpdocumentor-reflection-docblock/DocBlock/ExampleFinder.php)êìf)ˈ¶O¤2phpdocumentor-reflection-docblock/DocBlock/Tag.php¦êìf¦m4?¤9phpdocumentor-reflection-docblock/DocBlock/TagFactory.phpŠêìfŠ–S…B¤Aphpdocumentor-reflection-docblock/DocBlock/DescriptionFactory.phpôêìfô\|H¤9phpdocumentor-reflection-docblock/DocBlock/Tags/Since.php^ +êìf^ +ÄÃhf¤Aphpdocumentor-reflection-docblock/DocBlock/Tags/PropertyWrite.phpó êìfó k»åå¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Link.php—êìf—•¤¤>phpdocumentor-reflection-docblock/DocBlock/Tags/InvalidTag.php,êìf,nyh¤;phpdocumentor-reflection-docblock/DocBlock/Tags/BaseTag.php•êìf•D=ó¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Var_.phpÞ êìfÞ =d±‚¤9phpdocumentor-reflection-docblock/DocBlock/Tags/Param.phpêìfžä理:phpdocumentor-reflection-docblock/DocBlock/Tags/Method.php§êìf§è! ¤=phpdocumentor-reflection-docblock/DocBlock/Tags/Formatter.php%êìf%êFŸ.¤8phpdocumentor-reflection-docblock/DocBlock/Tags/Uses.phpY +êìfY +{ÞOŽ¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Return_.php)êìf)Jwûô¤Rphpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/PassthroughFormatter.phpÄêìfÄî?¦¤Lphpdocumentor-reflection-docblock/DocBlock/Tags/Formatter/AlignFormatter.php|êìf|Y€‚ç¤@phpdocumentor-reflection-docblock/DocBlock/Tags/PropertyRead.phpõ êìfõ A'O¤<phpdocumentor-reflection-docblock/DocBlock/Tags/Property.phpç êìfç àõ7¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Version.php³ +êìf³ +êÚ9p¤7phpdocumentor-reflection-docblock/DocBlock/Tags/See.php- êìf- ›×{¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Generic.php êìf ëvò¤?phpdocumentor-reflection-docblock/DocBlock/Tags/TagWithType.php®êìf®KÊ Æ¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Source.phpÀ êìfÀ »Õ„¢¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Author.phpµ êìfµ ±Æ*k¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Throws.php*êìf*iT¾Õ¤Hphpdocumentor-reflection-docblock/DocBlock/Tags/Factory/StaticMethod.php"êìf"V`i¤Gphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Reference.php×êìf×ûõ„¤Aphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Url.phpÔêìfÔÿÛX¯¤Cphpdocumentor-reflection-docblock/DocBlock/Tags/Reference/Fqsen.php3êìf3Fíb³¤;phpdocumentor-reflection-docblock/DocBlock/Tags/Example.phpØêìfØi‡¤>phpdocumentor-reflection-docblock/DocBlock/Tags/Deprecated.phpò +êìfò +œ!Un¤:phpdocumentor-reflection-docblock/DocBlock/Tags/Covers.php‚ +êìf‚ +QÎ’ô¤Aphpdocumentor-reflection-docblock/DocBlock/StandardTagFactory.php51êìf51YÐÓ6¤:phpdocumentor-reflection-docblock/DocBlock/Description.phpÞ êìfÞ ¯Q_ø¤+phpdocumentor-reflection-docblock/Utils.phpÉ êìfÉ Yyî$¤>phpdocumentor-reflection-docblock/DocBlockFactoryInterface.php‹êìf‹F×ý¤.phpdocumentor-reflection-docblock/DocBlock.php—êìf—âTöP¤=phpdocumentor-reflection-docblock/Exception/PcreException.phpœêìfœxÊÄç¤webmozart-assert/LICENSE<êìf<tØ}õ¤webmozart-assert/Mixin.php2Õêìf2Õa ì¶¤-webmozart-assert/InvalidArgumentException.phpfêìffáÍ„‰¤webmozart-assert/Assert.phpæÉêìfæÉŒ™†`¤sebastian/complexity -use Throwable; -/** - * Base exception marker interface for the instantiator component - */ -interface ExceptionInterface extends Throwable -{ -} +Copyright (c) 2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Complexity; -use InvalidArgumentException as BaseInvalidArgumentException; -use ReflectionClass; -use function interface_exists; -use function sprintf; -use function trait_exists; /** - * Exception for invalid arguments provided to the instantiator + * @psalm-immutable */ -class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface +final class Complexity { - public static function fromNonExistingClass(string $className) : self - { - if (interface_exists($className)) { - return new self(sprintf('The provided type "%s" is an interface, and cannot be instantiated', $className)); - } - if (trait_exists($className)) { - return new self(sprintf('The provided type "%s" is a trait, and cannot be instantiated', $className)); - } - return new self(sprintf('The provided class "%s" does not exist', $className)); - } /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @template T of object + * @var string + */ + private $name; + /** + * @var int */ - public static function fromAbstractClass(ReflectionClass $reflectionClass) : self + private $cyclomaticComplexity; + public function __construct(string $name, int $cyclomaticComplexity) { - return new self(sprintf('The provided class "%s" is abstract, and cannot be instantiated', $reflectionClass->getName())); + $this->name = $name; + $this->cyclomaticComplexity = $cyclomaticComplexity; } - public static function fromEnum(string $className) : self + public function name(): string { - return new self(sprintf('The provided class "%s" is an enum, and cannot be instantiated', $className)); + return $this->name; + } + public function cyclomaticComplexity(): int + { + return $this->cyclomaticComplexity; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class UnexpectedValueException extends BaseUnexpectedValueException implements ExceptionInterface +namespace PHPUnitPHAR\SebastianBergmann\Complexity; + +use Iterator; +final class ComplexityCollectionIterator implements Iterator { /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @template T of object + * @psalm-var list */ - public static function fromSerializationTriggeredException(ReflectionClass $reflectionClass, Exception $exception) : self - { - return new self(sprintf('An exception was raised while trying to instantiate an instance of "%s" via un-serialization', $reflectionClass->getName()), 0, $exception); - } + private $items; /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @template T of object + * @var int */ - public static function fromUncleanUnSerialization(ReflectionClass $reflectionClass, string $errorString, int $errorCode, string $errorFile, int $errorLine) : self + private $position = 0; + public function __construct(ComplexityCollection $items) { - return new self(sprintf('Could not produce an instance of "%s" via un-serialization, since an error was triggered ' . 'in file "%s" at line "%d"', $reflectionClass->getName(), $errorFile, $errorLine), 0, new Exception($errorString, $errorCode)); + $this->items = $items->asArray(); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return isset($this->items[$this->position]); + } + public function key(): int + { + return $this->position; + } + public function current(): Complexity + { + return $this->items[$this->position]; + } + public function next(): void + { + $this->position++; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Complexity; -use ArrayIterator; -use PHPUnit\Doctrine\Instantiator\Exception\ExceptionInterface; -use PHPUnit\Doctrine\Instantiator\Exception\InvalidArgumentException; -use PHPUnit\Doctrine\Instantiator\Exception\UnexpectedValueException; -use Exception; -use ReflectionClass; -use ReflectionException; -use Serializable; -use function class_exists; -use function enum_exists; -use function is_subclass_of; -use function restore_error_handler; -use function set_error_handler; -use function sprintf; -use function strlen; -use function unserialize; -use const PHP_VERSION_ID; -final class Instantiator implements InstantiatorInterface +use function count; +use Countable; +use IteratorAggregate; +/** + * @psalm-immutable + */ +final class ComplexityCollection implements Countable, IteratorAggregate { /** - * Markers used internally by PHP to define whether {@see \unserialize} should invoke - * the method {@see \Serializable::unserialize()} when dealing with classes implementing - * the {@see \Serializable} interface. - */ - public const SERIALIZATION_FORMAT_USE_UNSERIALIZER = 'C'; - public const SERIALIZATION_FORMAT_AVOID_UNSERIALIZER = 'O'; - /** - * Used to instantiate specific classes, indexed by class name. - * - * @var callable[] - */ - private static $cachedInstantiators = []; - /** - * Array of objects that can directly be cloned, indexed by class name. - * - * @var object[] - */ - private static $cachedCloneables = []; - /** - * @param string $className - * @phpstan-param class-string $className - * - * @return object - * @phpstan-return T - * - * @throws ExceptionInterface - * - * @template T of object + * @psalm-var list */ - public function instantiate($className) + private $items = []; + public static function fromList(Complexity ...$items): self { - if (isset(self::$cachedCloneables[$className])) { - /** - * @phpstan-var T - */ - $cachedCloneable = self::$cachedCloneables[$className]; - return clone $cachedCloneable; - } - if (isset(self::$cachedInstantiators[$className])) { - $factory = self::$cachedInstantiators[$className]; - return $factory(); - } - return $this->buildAndCacheFromFactory($className); + return new self($items); } /** - * Builds the requested object and caches it in static properties for performance - * - * @phpstan-param class-string $className - * - * @return object - * @phpstan-return T - * - * @template T of object + * @psalm-param list $items */ - private function buildAndCacheFromFactory(string $className) + private function __construct(array $items) { - $factory = self::$cachedInstantiators[$className] = $this->buildFactory($className); - $instance = $factory(); - if ($this->isSafeToClone(new ReflectionClass($instance))) { - self::$cachedCloneables[$className] = clone $instance; - } - return $instance; + $this->items = $items; } /** - * Builds a callable capable of instantiating the given $className without - * invoking its constructor. - * - * @phpstan-param class-string $className - * - * @phpstan-return callable(): T - * - * @throws InvalidArgumentException - * @throws UnexpectedValueException - * @throws ReflectionException - * - * @template T of object + * @psalm-return list */ - private function buildFactory(string $className) : callable + public function asArray(): array { - $reflectionClass = $this->getReflectionClass($className); - if ($this->isInstantiableViaReflection($reflectionClass)) { - return [$reflectionClass, 'newInstanceWithoutConstructor']; - } - $serializedString = sprintf('%s:%d:"%s":0:{}', is_subclass_of($className, Serializable::class) ? self::SERIALIZATION_FORMAT_USE_UNSERIALIZER : self::SERIALIZATION_FORMAT_AVOID_UNSERIALIZER, strlen($className), $className); - $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString); - return static function () use($serializedString) { - return unserialize($serializedString); - }; + return $this->items; } - /** - * @phpstan-param class-string $className - * - * @phpstan-return ReflectionClass - * - * @throws InvalidArgumentException - * @throws ReflectionException - * - * @template T of object - */ - private function getReflectionClass(string $className) : ReflectionClass + public function getIterator(): ComplexityCollectionIterator { - if (!class_exists($className)) { - throw InvalidArgumentException::fromNonExistingClass($className); - } - if (PHP_VERSION_ID >= 80100 && enum_exists($className, \false)) { - throw InvalidArgumentException::fromEnum($className); - } - $reflection = new ReflectionClass($className); - if ($reflection->isAbstract()) { - throw InvalidArgumentException::fromAbstractClass($reflection); - } - return $reflection; + return new ComplexityCollectionIterator($this); } - /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @throws UnexpectedValueException - * - * @template T of object - */ - private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, string $serializedString) : void + public function count(): int { - set_error_handler(static function (int $code, string $message, string $file, int $line) use($reflectionClass, &$error) : bool { - $error = UnexpectedValueException::fromUncleanUnSerialization($reflectionClass, $message, $code, $file, $line); - return \true; - }); - try { - $this->attemptInstantiationViaUnSerialization($reflectionClass, $serializedString); - } finally { - restore_error_handler(); - } - if ($error) { - throw $error; - } + return count($this->items); } - /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @throws UnexpectedValueException - * - * @template T of object - */ - private function attemptInstantiationViaUnSerialization(ReflectionClass $reflectionClass, string $serializedString) : void + public function isEmpty(): bool { - try { - unserialize($serializedString); - } catch (Exception $exception) { - throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception); + return empty($this->items); + } + public function cyclomaticComplexity(): int + { + $cyclomaticComplexity = 0; + foreach ($this as $item) { + $cyclomaticComplexity += $item->cyclomaticComplexity(); } + return $cyclomaticComplexity; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Complexity; + +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\NodeTraverser; +use PHPUnitPHAR\PhpParser\NodeVisitor\NameResolver; +use PHPUnitPHAR\PhpParser\NodeVisitor\ParentConnectingVisitor; +use PHPUnitPHAR\PhpParser\ParserFactory; +final class Calculator +{ /** - * @phpstan-param ReflectionClass $reflectionClass - * - * @template T of object + * @throws RuntimeException */ - private function isInstantiableViaReflection(ReflectionClass $reflectionClass) : bool + public function calculateForSourceFile(string $sourceFile): ComplexityCollection { - return !($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal()); + return $this->calculateForSourceString(file_get_contents($sourceFile)); } /** - * Verifies whether the given class is to be considered internal - * - * @phpstan-param ReflectionClass $reflectionClass - * - * @template T of object + * @throws RuntimeException */ - private function hasInternalAncestors(ReflectionClass $reflectionClass) : bool + public function calculateForSourceString(string $source): ComplexityCollection { - do { - if ($reflectionClass->isInternal()) { - return \true; - } - $reflectionClass = $reflectionClass->getParentClass(); - } while ($reflectionClass); - return \false; + try { + $nodes = (new ParserFactory())->createForHostVersion()->parse($source); + assert($nodes !== null); + return $this->calculateForAbstractSyntaxTree($nodes); + // @codeCoverageIgnoreStart + } catch (Error $error) { + throw new RuntimeException($error->getMessage(), (int) $error->getCode(), $error); + } + // @codeCoverageIgnoreEnd } /** - * Checks if a class is cloneable - * - * Classes implementing `__clone` cannot be safely cloned, as that may cause side-effects. - * - * @phpstan-param ReflectionClass $reflectionClass + * @param Node[] $nodes * - * @template T of object + * @throws RuntimeException */ - private function isSafeToClone(ReflectionClass $reflectionClass) : bool + public function calculateForAbstractSyntaxTree(array $nodes): ComplexityCollection { - return $reflectionClass->isCloneable() && !$reflectionClass->hasMethod('__clone') && !$reflectionClass->isSubclassOf(ArrayIterator::class); + $traverser = new NodeTraverser(); + $complexityCalculatingVisitor = new ComplexityCalculatingVisitor(\true); + $traverser->addVisitor(new NameResolver()); + $traverser->addVisitor(new ParentConnectingVisitor()); + $traverser->addVisitor($complexityCalculatingVisitor); + try { + /* @noinspection UnusedFunctionResultInspection */ + $traverser->traverse($nodes); + // @codeCoverageIgnoreStart + } catch (Error $error) { + throw new RuntimeException($error->getMessage(), (int) $error->getCode(), $error); + } + // @codeCoverageIgnoreEnd + return $complexityCalculatingVisitor->result(); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -interface InstantiatorInterface +namespace PHPUnitPHAR\SebastianBergmann\Complexity; + +use function get_class; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp\BooleanAnd; +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp\BooleanOr; +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp\LogicalAnd; +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp\LogicalOr; +use PHPUnitPHAR\PhpParser\Node\Expr\Ternary; +use PHPUnitPHAR\PhpParser\Node\Stmt\Case_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Catch_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ElseIf_; +use PHPUnitPHAR\PhpParser\Node\Stmt\For_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Foreach_; +use PHPUnitPHAR\PhpParser\Node\Stmt\If_; +use PHPUnitPHAR\PhpParser\Node\Stmt\While_; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +final class CyclomaticComplexityCalculatingVisitor extends NodeVisitorAbstract { /** - * @param string $className - * @phpstan-param class-string $className - * - * @return object - * @phpstan-return T - * - * @throws ExceptionInterface - * - * @template T of object + * @var int */ - public function instantiate($className); + private $cyclomaticComplexity = 1; + public function enterNode(Node $node): void + { + /* @noinspection GetClassMissUseInspection */ + switch (get_class($node)) { + case BooleanAnd::class: + case BooleanOr::class: + case Case_::class: + case Catch_::class: + case ElseIf_::class: + case For_::class: + case Foreach_::class: + case If_::class: + case LogicalAnd::class: + case LogicalOr::class: + case Ternary::class: + case While_::class: + $this->cyclomaticComplexity++; + } + } + public function cyclomaticComplexity(): int + { + return $this->cyclomaticComplexity; + } } -Copyright (c) 2014 Doctrine Project - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -phpunit/phpunit: 9.5.26 -doctrine/instantiator: 1.4.1 -myclabs/deep-copy: 1.11.0 -nikic/php-parser: v4.15.1 -phar-io/manifest: 2.0.3 -phar-io/version: 3.2.1 -phpdocumentor/reflection-common: 2.2.0 -phpdocumentor/reflection-docblock: 5.3.0 -phpdocumentor/type-resolver: 1.6.1 -phpspec/prophecy: v1.15.0 -phpunit/php-code-coverage: 9.2.18 -phpunit/php-file-iterator: 3.0.6 -phpunit/php-invoker: 3.1.1 -phpunit/php-text-template: 2.0.4 -phpunit/php-timer: 5.0.3 -sebastian/cli-parser: 1.0.1 -sebastian/code-unit: 1.0.8 -sebastian/code-unit-reverse-lookup: 2.0.3 -sebastian/comparator: 4.0.8 -sebastian/complexity: 2.0.2 -sebastian/diff: 4.0.4 -sebastian/environment: 5.1.4 -sebastian/exporter: 4.0.5 -sebastian/global-state: 5.0.5 -sebastian/lines-of-code: 1.0.3 -sebastian/object-enumerator: 4.0.4 -sebastian/object-reflector: 2.0.4 -sebastian/recursion-context: 4.0.4 -sebastian/resource-operations: 3.0.3 -sebastian/type: 3.2.0 -sebastian/version: 3.0.2 -theseer/tokenizer: 1.2.1 -webmozart/assert: 1.11.0 + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class DeepCopy +namespace PHPUnitPHAR\SebastianBergmann\Complexity; + +use function assert; +use function is_array; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Stmt; +use PHPUnitPHAR\PhpParser\Node\Stmt\Class_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ClassMethod; +use PHPUnitPHAR\PhpParser\Node\Stmt\Function_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Trait_; +use PHPUnitPHAR\PhpParser\NodeTraverser; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +final class ComplexityCalculatingVisitor extends NodeVisitorAbstract { /** - * @var object[] List of objects copied. - */ - private $hashMap = []; - /** - * Filters to apply. - * - * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. - */ - private $filters = []; - /** - * Type Filters to apply. - * - * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. - */ - private $typeFilters = []; - /** - * @var bool + * @psalm-var list */ - private $skipUncloneable = \false; + private $result = []; /** * @var bool */ - private $useCloneMethod; - /** - * @param bool $useCloneMethod If set to true, when an object implements the __clone() function, it will be used - * instead of the regular deep cloning. - */ - public function __construct($useCloneMethod = \false) + private $shortCircuitTraversal; + public function __construct(bool $shortCircuitTraversal) { - $this->useCloneMethod = $useCloneMethod; - $this->addTypeFilter(new ArrayObjectFilter($this), new TypeMatcher(ArrayObject::class)); - $this->addTypeFilter(new DateIntervalFilter(), new TypeMatcher(DateInterval::class)); - $this->addTypeFilter(new SplDoublyLinkedListFilter($this), new TypeMatcher(SplDoublyLinkedList::class)); - } - /** - * If enabled, will not throw an exception when coming across an uncloneable property. - * - * @param $skipUncloneable - * - * @return $this - */ - public function skipUncloneable($skipUncloneable = \true) - { - $this->skipUncloneable = $skipUncloneable; - return $this; - } - /** - * Deep copies the given object. - * - * @param mixed $object - * - * @return mixed - */ - public function copy($object) - { - $this->hashMap = []; - return $this->recursiveCopy($object); - } - public function addFilter(Filter $filter, Matcher $matcher) - { - $this->filters[] = ['matcher' => $matcher, 'filter' => $filter]; - } - public function prependFilter(Filter $filter, Matcher $matcher) - { - \array_unshift($this->filters, ['matcher' => $matcher, 'filter' => $filter]); - } - public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) - { - $this->typeFilters[] = ['matcher' => $matcher, 'filter' => $filter]; + $this->shortCircuitTraversal = $shortCircuitTraversal; } - private function recursiveCopy($var) + public function enterNode(Node $node): ?int { - // Matches Type Filter - if ($filter = $this->getFirstMatchedTypeFilter($this->typeFilters, $var)) { - return $filter->apply($var); - } - // Resource - if (\is_resource($var)) { - return $var; - } - // Array - if (\is_array($var)) { - return $this->copyArray($var); + if (!$node instanceof ClassMethod && !$node instanceof Function_) { + return null; } - // Scalar - if (!\is_object($var)) { - return $var; + if ($node instanceof ClassMethod) { + $name = $this->classMethodName($node); + } else { + $name = $this->functionName($node); } - // Enum - if (\PHP_VERSION_ID >= 80100 && \enum_exists(\get_class($var))) { - return $var; + $statements = $node->getStmts(); + assert(is_array($statements)); + $this->result[] = new Complexity($name, $this->cyclomaticComplexity($statements)); + if ($this->shortCircuitTraversal) { + return NodeTraverser::DONT_TRAVERSE_CHILDREN; } - // Object - return $this->copyObject($var); + return null; } - /** - * Copy an array - * @param array $array - * @return array - */ - private function copyArray(array $array) + public function result(): ComplexityCollection { - foreach ($array as $key => $value) { - $array[$key] = $this->recursiveCopy($value); - } - return $array; + return ComplexityCollection::fromList(...$this->result); } /** - * Copies an object. - * - * @param object $object - * - * @throws CloneException - * - * @return object + * @param Stmt[] $statements */ - private function copyObject($object) - { - $objectHash = \spl_object_hash($object); - if (isset($this->hashMap[$objectHash])) { - return $this->hashMap[$objectHash]; - } - $reflectedObject = new ReflectionObject($object); - $isCloneable = $reflectedObject->isCloneable(); - if (\false === $isCloneable) { - if ($this->skipUncloneable) { - $this->hashMap[$objectHash] = $object; - return $object; - } - throw new CloneException(\sprintf('The class "%s" is not cloneable.', $reflectedObject->getName())); - } - $newObject = clone $object; - $this->hashMap[$objectHash] = $newObject; - if ($this->useCloneMethod && $reflectedObject->hasMethod('__clone')) { - return $newObject; - } - if ($newObject instanceof DateTimeInterface || $newObject instanceof DateTimeZone) { - return $newObject; - } - foreach (ReflectionHelper::getProperties($reflectedObject) as $property) { - $this->copyObjectProperty($newObject, $property); - } - return $newObject; - } - private function copyObjectProperty($object, ReflectionProperty $property) + private function cyclomaticComplexity(array $statements): int { - // Ignore static properties - if ($property->isStatic()) { - return; - } - // Apply the filters - foreach ($this->filters as $item) { - /** @var Matcher $matcher */ - $matcher = $item['matcher']; - /** @var Filter $filter */ - $filter = $item['filter']; - if ($matcher->matches($object, $property->getName())) { - $filter->apply($object, $property->getName(), function ($object) { - return $this->recursiveCopy($object); - }); - // If a filter matches, we stop processing this property - return; - } - } - $property->setAccessible(\true); - // Ignore uninitialized properties (for PHP >7.4) - if (\method_exists($property, 'isInitialized') && !$property->isInitialized($object)) { - return; - } - $propertyValue = $property->getValue($object); - // Copy the property - $property->setValue($object, $this->recursiveCopy($propertyValue)); + $traverser = new NodeTraverser(); + $cyclomaticComplexityCalculatingVisitor = new CyclomaticComplexityCalculatingVisitor(); + $traverser->addVisitor($cyclomaticComplexityCalculatingVisitor); + /* @noinspection UnusedFunctionResultInspection */ + $traverser->traverse($statements); + return $cyclomaticComplexityCalculatingVisitor->cyclomaticComplexity(); } - /** - * Returns first filter that matches variable, `null` if no such filter found. - * - * @param array $filterRecords Associative array with 2 members: 'filter' with value of type {@see TypeFilter} and - * 'matcher' with value of type {@see TypeMatcher} - * @param mixed $var - * - * @return TypeFilter|null - */ - private function getFirstMatchedTypeFilter(array $filterRecords, $var) + private function classMethodName(ClassMethod $node): string { - $matched = $this->first($filterRecords, function (array $record) use($var) { - /* @var TypeMatcher $matcher */ - $matcher = $record['matcher']; - return $matcher->matches($var); - }); - return isset($matched) ? $matched['filter'] : null; + $parent = $node->getAttribute('parent'); + assert($parent instanceof Class_ || $parent instanceof Trait_); + assert(isset($parent->namespacedName)); + assert($parent->namespacedName instanceof Name); + return $parent->namespacedName->toString() . '::' . $node->name->toString(); } - /** - * Returns first element that matches predicate, `null` if no such element found. - * - * @param array $elements Array of ['filter' => Filter, 'matcher' => Matcher] pairs. - * @param callable $predicate Predicate arguments are: element. - * - * @return array|null Associative array with 2 members: 'filter' with value of type {@see TypeFilter} and 'matcher' - * with value of type {@see TypeMatcher} or `null`. - */ - private function first(array $elements, callable $predicate) + private function functionName(Function_ $node): string { - foreach ($elements as $element) { - if (\call_user_func($predicate, $element)) { - return $element; - } - } - return null; + assert(isset($node->namespacedName)); + assert($node->namespacedName instanceof Name); + return $node->namespacedName->toString(); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Complexity; -use UnexpectedValueException; -class CloneException extends UnexpectedValueException +final class RuntimeException extends \RuntimeException implements Exception { } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Complexity; -use ReflectionException; -class PropertyException extends ReflectionException +use Throwable; +interface Exception extends Throwable { } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class DoctrineCollectionFilter implements Filter +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +use function array_merge; +use function array_unique; +use function count; +use PHPUnitPHAR\PhpParser\Comment; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +final class LineCountingVisitor extends NodeVisitorAbstract { /** - * Copies the object property doctrine collection. - * - * {@inheritdoc} + * @var int */ - public function apply($object, $property, $objectCopier) - { - $reflectionProperty = ReflectionHelper::getProperty($object, $property); - $reflectionProperty->setAccessible(\true); - $oldCollection = $reflectionProperty->getValue($object); - $newCollection = $oldCollection->map(function ($item) use($objectCopier) { - return $objectCopier($item); - }); - $reflectionProperty->setValue($object, $newCollection); - } -} -setAccessible(\true); - $reflectionProperty->setValue($object, new ArrayCollection()); + $this->linesOfCode = $linesOfCode; + } + public function enterNode(Node $node): void + { + $this->comments = array_merge($this->comments, $node->getComments()); + if (!$node instanceof Expr) { + return; + } + $this->linesWithStatements[] = $node->getStartLine(); + } + public function result(): LinesOfCode + { + $commentLinesOfCode = 0; + foreach ($this->comments() as $comment) { + $commentLinesOfCode += $comment->getEndLine() - $comment->getStartLine() + 1; + } + return new LinesOfCode($this->linesOfCode, $commentLinesOfCode, $this->linesOfCode - $commentLinesOfCode, count(array_unique($this->linesWithStatements))); } -} -__load(); + $comments = []; + foreach ($this->comments as $comment) { + $comments[$comment->getStartLine() . '_' . $comment->getStartTokenPos() . '_' . $comment->getEndLine() . '_' . $comment->getEndTokenPos()] = $comment; + } + return $comments; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; /** - * Filter to apply to a property while copying an object + * @psalm-immutable */ -interface Filter +final class LinesOfCode { /** - * Applies the filter to the object. - * - * @param object $object - * @param string $property - * @param callable $objectCopier + * @var int */ - public function apply($object, $property, $objectCopier); -} -linesOfCode = $linesOfCode; + $this->commentLinesOfCode = $commentLinesOfCode; + $this->nonCommentLinesOfCode = $nonCommentLinesOfCode; + $this->logicalLinesOfCode = $logicalLinesOfCode; + } + public function linesOfCode(): int + { + return $this->linesOfCode; + } + public function commentLinesOfCode(): int + { + return $this->commentLinesOfCode; + } + public function nonCommentLinesOfCode(): int + { + return $this->nonCommentLinesOfCode; + } + public function logicalLinesOfCode(): int + { + return $this->logicalLinesOfCode; + } + public function plus(self $other): self + { + return new self($this->linesOfCode() + $other->linesOfCode(), $this->commentLinesOfCode() + $other->commentLinesOfCode(), $this->nonCommentLinesOfCode() + $other->nonCommentLinesOfCode(), $this->logicalLinesOfCode() + $other->logicalLinesOfCode()); } } -. +All rights reserved. -use PHPUnit\DeepCopy\Reflection\ReflectionHelper; -/** - * @final +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class ReplaceFilter implements Filter +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +use function substr_count; +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\NodeTraverser; +use PHPUnitPHAR\PhpParser\ParserFactory; +final class Counter { /** - * @var callable - */ - protected $callback; - /** - * @param callable $callable Will be called to get the new value for each property to replace + * @throws RuntimeException */ - public function __construct(callable $callable) + public function countInSourceFile(string $sourceFile): LinesOfCode { - $this->callback = $callable; + return $this->countInSourceString(file_get_contents($sourceFile)); } /** - * Replaces the object property by the result of the callback called with the object property. - * - * {@inheritdoc} + * @throws RuntimeException */ - public function apply($object, $property, $objectCopier) + public function countInSourceString(string $source): LinesOfCode { - $reflectionProperty = ReflectionHelper::getProperty($object, $property); - $reflectionProperty->setAccessible(\true); - $value = \call_user_func($this->callback, $reflectionProperty->getValue($object)); - $reflectionProperty->setValue($object, $value); + $linesOfCode = substr_count($source, "\n"); + if ($linesOfCode === 0 && !empty($source)) { + $linesOfCode = 1; + } + try { + $nodes = (new ParserFactory())->createForHostVersion()->parse($source); + assert($nodes !== null); + return $this->countInAbstractSyntaxTree($linesOfCode, $nodes); + // @codeCoverageIgnoreStart + } catch (Error $error) { + throw new RuntimeException($error->getMessage(), (int) $error->getCode(), $error); + } + // @codeCoverageIgnoreEnd } -} -setAccessible(\true); - $reflectionProperty->setValue($object, null); + $traverser = new NodeTraverser(); + $visitor = new LineCountingVisitor($linesOfCode); + $traverser->addVisitor($visitor); + try { + /* @noinspection UnusedFunctionResultInspection */ + $traverser->traverse($nodes); + // @codeCoverageIgnoreStart + } catch (Error $error) { + throw new RuntimeException($error->getMessage(), (int) $error->getCode(), $error); + } + // @codeCoverageIgnoreEnd + return $visitor->result(); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class DoctrineProxyMatcher implements Matcher +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +final class RuntimeException extends \RuntimeException implements Exception { - /** - * Matches a Doctrine Proxy class. - * - * {@inheritdoc} - */ - public function matches($object, $property) - { - return $object instanceof Proxy; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +use InvalidArgumentException; +final class NegativeValueException extends InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +use LogicException; +final class IllogicalValuesException extends LogicException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\LinesOfCode; + +use Throwable; +interface Exception extends Throwable +{ } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; +use function range; +use function sprintf; +use ReflectionClass; +use ReflectionFunction; +use ReflectionMethod; /** - * @final + * @psalm-immutable */ -class PropertyMatcher implements Matcher +abstract class CodeUnit { /** * @var string */ - private $class; + private $name; /** * @var string */ - private $property; + private $sourceFileName; /** - * @param string $class Class name - * @param string $property Property name + * @var array + * @psalm-var list */ - public function __construct($class, $property) + private $sourceLines; + /** + * @psalm-param class-string $className + * + * @throws InvalidCodeUnitException + * @throws ReflectionException + */ + public static function forClass(string $className): ClassUnit { - $this->class = $class; - $this->property = $property; + self::ensureUserDefinedClass($className); + $reflector = self::reflectorForClass($className); + return new ClassUnit($className, $reflector->getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); } /** - * Matches a specific property of a specific class. + * @psalm-param class-string $className * - * {@inheritdoc} + * @throws InvalidCodeUnitException + * @throws ReflectionException */ - public function matches($object, $property) + public static function forClassMethod(string $className, string $methodName): ClassMethodUnit { - return $object instanceof $this->class && $property == $this->property; + self::ensureUserDefinedClass($className); + $reflector = self::reflectorForClassMethod($className, $methodName); + return new ClassMethodUnit($className . '::' . $methodName, $reflector->getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); } -} -getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); + } /** - * @param string $property Property name + * @psalm-param class-string $interfaceName + * + * @throws InvalidCodeUnitException + * @throws ReflectionException */ - public function __construct($property) + public static function forInterfaceMethod(string $interfaceName, string $methodName): InterfaceMethodUnit { - $this->property = $property; + self::ensureUserDefinedInterface($interfaceName); + $reflector = self::reflectorForClassMethod($interfaceName, $methodName); + return new InterfaceMethodUnit($interfaceName . '::' . $methodName, $reflector->getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); } /** - * Matches a property by its name. + * @psalm-param class-string $traitName * - * {@inheritdoc} + * @throws InvalidCodeUnitException + * @throws ReflectionException */ - public function matches($object, $property) + public static function forTrait(string $traitName): TraitUnit { - return $property == $this->property; + self::ensureUserDefinedTrait($traitName); + $reflector = self::reflectorForClass($traitName); + return new TraitUnit($traitName, $reflector->getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); } -} -getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); + } /** - * @param string $propertyType Property type + * @psalm-param callable-string $functionName + * + * @throws InvalidCodeUnitException + * @throws ReflectionException */ - public function __construct($propertyType) + public static function forFunction(string $functionName): FunctionUnit { - $this->propertyType = $propertyType; + $reflector = self::reflectorForFunction($functionName); + if (!$reflector->isUserDefined()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not a user-defined function', $functionName)); + } + return new FunctionUnit($functionName, $reflector->getFileName(), range($reflector->getStartLine(), $reflector->getEndLine())); } /** - * {@inheritdoc} + * @psalm-param list $sourceLines */ - public function matches($object, $property) + private function __construct(string $name, string $sourceFileName, array $sourceLines) { - try { - $reflectionProperty = ReflectionHelper::getProperty($object, $property); - } catch (ReflectionException $exception) { - return \false; - } - $reflectionProperty->setAccessible(\true); - // Uninitialized properties (for PHP >7.4) - if (\method_exists($reflectionProperty, 'isInitialized') && !$reflectionProperty->isInitialized($object)) { - // null instanceof $this->propertyType - return \false; - } - return $reflectionProperty->getValue($object) instanceof $this->propertyType; + $this->name = $name; + $this->sourceFileName = $sourceFileName; + $this->sourceLines = $sourceLines; + } + public function name(): string + { + return $this->name; + } + public function sourceFileName(): string + { + return $this->sourceFileName; } -} -getProperties() does not return private properties from ancestor classes. - * - * @author muratyaman@gmail.com - * @see http://php.net/manual/en/reflectionclass.getproperties.php - * - * @param ReflectionClass $ref + * @psalm-return list + */ + public function sourceLines(): array + { + return $this->sourceLines; + } + public function isClass(): bool + { + return \false; + } + public function isClassMethod(): bool + { + return \false; + } + public function isInterface(): bool + { + return \false; + } + public function isInterfaceMethod(): bool + { + return \false; + } + public function isTrait(): bool + { + return \false; + } + public function isTraitMethod(): bool + { + return \false; + } + public function isFunction(): bool + { + return \false; + } + /** + * @psalm-param class-string $className * - * @return ReflectionProperty[] + * @throws InvalidCodeUnitException */ - public static function getProperties(ReflectionClass $ref) + private static function ensureUserDefinedClass(string $className): void { - $props = $ref->getProperties(); - $propsArr = array(); - foreach ($props as $prop) { - $propertyName = $prop->getName(); - $propsArr[$propertyName] = $prop; - } - if ($parentClass = $ref->getParentClass()) { - $parentPropsArr = self::getProperties($parentClass); - foreach ($propsArr as $key => $property) { - $parentPropsArr[$key] = $property; + try { + $reflector = new ReflectionClass($className); + if ($reflector->isInterface()) { + throw new InvalidCodeUnitException(sprintf('"%s" is an interface and not a class', $className)); } - return $parentPropsArr; + if ($reflector->isTrait()) { + throw new InvalidCodeUnitException(sprintf('"%s" is a trait and not a class', $className)); + } + if (!$reflector->isUserDefined()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not a user-defined class', $className)); + } + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); } - return $propsArr; + // @codeCoverageIgnoreEnd } /** - * Retrieves property by name from object and all its ancestors. - * - * @param object|string $object - * @param string $name - * - * @throws PropertyException - * @throws ReflectionException + * @psalm-param class-string $interfaceName * - * @return ReflectionProperty + * @throws InvalidCodeUnitException */ - public static function getProperty($object, $name) + private static function ensureUserDefinedInterface(string $interfaceName): void { - $reflection = \is_object($object) ? new ReflectionObject($object) : new ReflectionClass($object); - if ($reflection->hasProperty($name)) { - return $reflection->getProperty($name); - } - if ($parentClass = $reflection->getParentClass()) { - return self::getProperty($parentClass->getName(), $name); + try { + $reflector = new ReflectionClass($interfaceName); + if (!$reflector->isInterface()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not an interface', $interfaceName)); + } + if (!$reflector->isUserDefined()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not a user-defined interface', $interfaceName)); + } + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); } - throw new PropertyException(\sprintf('The class "%s" doesn\'t have a property with the given name: "%s".', \is_object($object) ? \get_class($object) : $object, $name)); + // @codeCoverageIgnoreEnd } -} - $propertyValue) { - $copy->{$propertyName} = $propertyValue; + try { + $reflector = new ReflectionClass($traitName); + if (!$reflector->isTrait()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not a trait', $traitName)); + } + // @codeCoverageIgnoreStart + if (!$reflector->isUserDefined()) { + throw new InvalidCodeUnitException(sprintf('"%s" is not a user-defined trait', $traitName)); + } + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); } - return $copy; + // @codeCoverageIgnoreEnd } -} -getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } /** - * @param callable $callable Will be called to get the new value for each element to replace + * @psalm-param class-string $className + * + * @throws ReflectionException */ - public function __construct(callable $callable) + private static function reflectorForClassMethod(string $className, string $methodName): ReflectionMethod { - $this->callback = $callable; + try { + return new ReflectionMethod($className, $methodName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * {@inheritdoc} + * @psalm-param callable-string $functionName + * + * @throws ReflectionException */ - public function apply($element) + private static function reflectorForFunction(string $functionName): ReflectionFunction { - return \call_user_func($this->callback, $element); + try { + return new ReflectionFunction($functionName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; /** - * @final + * @psalm-immutable */ -class ShallowCopyFilter implements TypeFilter +final class TraitUnit extends CodeUnit { /** - * {@inheritdoc} + * @psalm-assert-if-true TraitUnit $this */ - public function apply($element) + public function isTrait(): bool { - return clone $element; + return \true; } } +sebastian/code-unit + +Copyright (c) 2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use PHPUnit\DeepCopy\DeepCopy; -use PHPUnit\DeepCopy\TypeFilter\TypeFilter; /** - * In PHP 7.4 the storage of an ArrayObject isn't returned as - * ReflectionProperty. So we deep copy its array copy. + * @psalm-immutable */ -final class ArrayObjectFilter implements TypeFilter +final class InterfaceMethodUnit extends CodeUnit { /** - * @var DeepCopy - */ - private $copier; - public function __construct(DeepCopy $copier) - { - $this->copier = $copier; - } - /** - * {@inheritdoc} + * @psalm-assert-if-true InterfaceMethod $this */ - public function apply($arrayObject) + public function isInterfaceMethod(): bool { - $clone = clone $arrayObject; - foreach ($arrayObject->getArrayCopy() as $k => $v) { - $clone->offsetSet($k, $this->copier->copy($v)); - } - return $clone; + return \true; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class SplDoublyLinkedList extends SplDoublyLinkedListFilter +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; + +use RuntimeException; +final class InvalidCodeUnitException extends RuntimeException implements Exception { } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class SplDoublyLinkedListFilter implements TypeFilter +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; + +use RuntimeException; +final class ReflectionException extends RuntimeException implements Exception { - private $copier; - public function __construct(DeepCopy $copier) - { - $this->copier = $copier; - } - /** - * {@inheritdoc} - */ - public function apply($element) - { - $newElement = clone $element; - $copy = $this->createCopyClosure(); - return $copy($newElement); - } - private function createCopyClosure() - { - $copier = $this->copier; - $copy = function (SplDoublyLinkedList $list) use($copier) { - // Replace each element in the list with a deep copy of itself - for ($i = 1; $i <= $list->count(); $i++) { - $copy = $copier->recursiveCopy($list->shift()); - $list->push($copy); - } - return $list; - }; - return Closure::bind($copy, null, DeepCopy::class); - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; + +use RuntimeException; +final class NoTraitException extends RuntimeException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; + +use Throwable; +interface Exception extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; + +use Iterator; +final class CodeUnitCollectionIterator implements Iterator { /** - * Applies the filter to the object. - * - * @param mixed $element + * @psalm-var list */ - public function apply($element); + private $codeUnits; + /** + * @var int + */ + private $position = 0; + public function __construct(CodeUnitCollection $collection) + { + $this->codeUnits = $collection->asArray(); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return isset($this->codeUnits[$this->position]); + } + public function key(): int + { + return $this->position; + } + public function current(): CodeUnit + { + return $this->codeUnits[$this->position]; + } + public function next(): void + { + $this->position++; + } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -class TypeMatcher +use function array_merge; +use function count; +use Countable; +use IteratorAggregate; +final class CodeUnitCollection implements Countable, IteratorAggregate { /** - * @var string + * @psalm-var list */ - private $type; + private $codeUnits = []; /** - * @param string $type + * @psalm-param list $items */ - public function __construct($type) + public static function fromArray(array $items): self + { + $collection = new self(); + foreach ($items as $item) { + $collection->add($item); + } + return $collection; + } + public static function fromList(CodeUnit ...$items): self + { + return self::fromArray($items); + } + private function __construct() { - $this->type = $type; } /** - * @param mixed $element - * - * @return boolean + * @psalm-return list */ - public function matches($element) + public function asArray(): array + { + return $this->codeUnits; + } + public function getIterator(): CodeUnitCollectionIterator + { + return new CodeUnitCollectionIterator($this); + } + public function count(): int + { + return count($this->codeUnits); + } + public function isEmpty(): bool + { + return empty($this->codeUnits); + } + public function mergeWith(self $other): self + { + return self::fromArray(array_merge($this->asArray(), $other->asArray())); + } + private function add(CodeUnit $item): void { - return \is_object($element) ? \is_a($element, $this->type) : \gettype($element) === $this->type; + $this->codeUnits[] = $item; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use function function_exists; -if (\false === function_exists('PHPUnit\\DeepCopy\\deep_copy')) { +/** + * @psalm-immutable + */ +final class TraitMethodUnit extends CodeUnit +{ /** - * Deep copies the given value. - * - * @param mixed $value - * @param bool $useCloneMethod - * - * @return mixed + * @psalm-assert-if-true TraitMethodUnit $this */ - function deep_copy($value, $useCloneMethod = \false) + public function isTraitMethod(): bool { - return (new DeepCopy($useCloneMethod))->copy($value); + return \true; } } -The MIT License (MIT) - -Copyright (c) 2013 My C-Sense - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -BSD 3-Clause License - -Copyright (c) 2011, Nikita Popov -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -interface Builder +/** + * @psalm-immutable + */ +final class FunctionUnit extends CodeUnit { /** - * Returns the built node. - * - * @return Node The built node + * @psalm-assert-if-true FunctionUnit $this */ - public function getNode() : Node; + public function isFunction(): bool + { + return \true; + } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Const_; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Stmt; -class ClassConst implements PhpParser\Builder +use function array_keys; +use function array_merge; +use function array_unique; +use function array_values; +use function class_exists; +use function explode; +use function function_exists; +use function interface_exists; +use function ksort; +use function method_exists; +use function sort; +use function sprintf; +use function str_replace; +use function strpos; +use function trait_exists; +use ReflectionClass; +use ReflectionFunction; +use ReflectionMethod; +final class Mapper { - protected $flags = 0; - protected $attributes = []; - protected $constants = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; /** - * Creates a class constant builder - * - * @param string|Identifier $name Name - * @param Node\Expr|bool|null|int|float|string|array $value Value + * @psalm-return array> */ - public function __construct($name, $value) + public function codeUnitsToSourceLines(CodeUnitCollection $codeUnits): array { - $this->constants = [new Const_($name, BuilderHelpers::normalizeValue($value))]; + $result = []; + foreach ($codeUnits as $codeUnit) { + $sourceFileName = $codeUnit->sourceFileName(); + if (!isset($result[$sourceFileName])) { + $result[$sourceFileName] = []; + } + $result[$sourceFileName] = array_merge($result[$sourceFileName], $codeUnit->sourceLines()); + } + foreach (array_keys($result) as $sourceFileName) { + $result[$sourceFileName] = array_values(array_unique($result[$sourceFileName])); + sort($result[$sourceFileName]); + } + ksort($result); + return $result; } /** - * Add another constant to const group - * - * @param string|Identifier $name Name - * @param Node\Expr|bool|null|int|float|string|array $value Value - * - * @return $this The builder instance (for fluid interface) + * @throws InvalidCodeUnitException + * @throws ReflectionException */ - public function addConst($name, $value) + public function stringToCodeUnits(string $unit): CodeUnitCollection { - $this->constants[] = new Const_($name, BuilderHelpers::normalizeValue($value)); - return $this; + if (strpos($unit, '::') !== \false) { + [$firstPart, $secondPart] = explode('::', $unit); + if (empty($firstPart) && $this->isUserDefinedFunction($secondPart)) { + return CodeUnitCollection::fromList(CodeUnit::forFunction($secondPart)); + } + if ($this->isUserDefinedClass($firstPart)) { + if ($secondPart === '') { + return $this->publicMethodsOfClass($firstPart); + } + if ($secondPart === '') { + return $this->protectedAndPrivateMethodsOfClass($firstPart); + } + if ($secondPart === '') { + return $this->protectedMethodsOfClass($firstPart); + } + if ($secondPart === '') { + return $this->publicAndPrivateMethodsOfClass($firstPart); + } + if ($secondPart === '') { + return $this->privateMethodsOfClass($firstPart); + } + if ($secondPart === '') { + return $this->publicAndProtectedMethodsOfClass($firstPart); + } + if ($this->isUserDefinedMethod($firstPart, $secondPart)) { + return CodeUnitCollection::fromList(CodeUnit::forClassMethod($firstPart, $secondPart)); + } + } + if ($this->isUserDefinedInterface($firstPart)) { + return CodeUnitCollection::fromList(CodeUnit::forInterfaceMethod($firstPart, $secondPart)); + } + if ($this->isUserDefinedTrait($firstPart)) { + return CodeUnitCollection::fromList(CodeUnit::forTraitMethod($firstPart, $secondPart)); + } + } else { + if ($this->isUserDefinedClass($unit)) { + $units = [CodeUnit::forClass($unit)]; + foreach ($this->reflectorForClass($unit)->getTraits() as $trait) { + if (!$trait->isUserDefined()) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $units[] = CodeUnit::forTrait($trait->getName()); + } + return CodeUnitCollection::fromArray($units); + } + if ($this->isUserDefinedInterface($unit)) { + return CodeUnitCollection::fromList(CodeUnit::forInterface($unit)); + } + if ($this->isUserDefinedTrait($unit)) { + return CodeUnitCollection::fromList(CodeUnit::forTrait($unit)); + } + if ($this->isUserDefinedFunction($unit)) { + return CodeUnitCollection::fromList(CodeUnit::forFunction($unit)); + } + $unit = str_replace('', '', $unit); + if ($this->isUserDefinedClass($unit)) { + return $this->classAndParentClassesAndTraits($unit); + } + } + throw new InvalidCodeUnitException(sprintf('"%s" is not a valid code unit', $unit)); } /** - * Makes the constant public. + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function makePublic() + private function publicMethodsOfClass(string $className): CodeUnitCollection { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PUBLIC); } /** - * Makes the constant protected. + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function makeProtected() + private function publicAndProtectedMethodsOfClass(string $className): CodeUnitCollection { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED); } /** - * Makes the constant private. + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function makePrivate() + private function publicAndPrivateMethodsOfClass(string $className): CodeUnitCollection { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PRIVATE); } /** - * Makes the constant final. + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function makeFinal() + private function protectedMethodsOfClass(string $className): CodeUnitCollection { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PROTECTED); } /** - * Sets doc comment for the constant. - * - * @param PhpParser\Comment\Doc|string $docComment Doc comment to set + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function setDocComment($docComment) + private function protectedAndPrivateMethodsOfClass(string $className): CodeUnitCollection { - $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PROTECTED | ReflectionMethod::IS_PRIVATE); } /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function addAttribute($attribute) + private function privateMethodsOfClass(string $className): CodeUnitCollection { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + return $this->methodsOfClass($className, ReflectionMethod::IS_PRIVATE); } /** - * Returns the built class node. + * @psalm-param class-string $className * - * @return Stmt\ClassConst The built constant node + * @throws ReflectionException */ - public function getNode() : PhpParser\Node + private function methodsOfClass(string $className, int $filter): CodeUnitCollection { - return new Stmt\ClassConst($this->constants, $this->flags, $this->attributes, $this->attributeGroups); + $units = []; + foreach ($this->reflectorForClass($className)->getMethods($filter) as $method) { + if (!$method->isUserDefined()) { + continue; + } + $units[] = CodeUnit::forClassMethod($className, $method->getName()); + } + return CodeUnitCollection::fromArray($units); } -} -name = $name; + $units = [CodeUnit::forClass($className)]; + $reflector = $this->reflectorForClass($className); + foreach ($this->reflectorForClass($className)->getTraits() as $trait) { + if (!$trait->isUserDefined()) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $units[] = CodeUnit::forTrait($trait->getName()); + } + while ($reflector = $reflector->getParentClass()) { + if (!$reflector->isUserDefined()) { + break; + } + $units[] = CodeUnit::forClass($reflector->getName()); + foreach ($reflector->getTraits() as $trait) { + if (!$trait->isUserDefined()) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $units[] = CodeUnit::forTrait($trait->getName()); + } + } + return CodeUnitCollection::fromArray($units); } /** - * Extends a class. - * - * @param Name|string $class Name of class to extend + * @psalm-param class-string $className * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function extend($class) + private function reflectorForClass(string $className): ReflectionClass { - $this->extends = BuilderHelpers::normalizeName($class); - return $this; + try { + return new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * Implements one or more interfaces. - * - * @param Name|string ...$interfaces Names of interfaces to implement - * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function implement(...$interfaces) + private function isUserDefinedFunction(string $functionName): bool { - foreach ($interfaces as $interface) { - $this->implements[] = BuilderHelpers::normalizeName($interface); + if (!function_exists($functionName)) { + return \false; } - return $this; + try { + return (new ReflectionFunction($functionName))->isUserDefined(); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * Makes the class abstract. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeAbstract() - { - $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_ABSTRACT); - return $this; - } - /** - * Makes the class final. - * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function makeFinal() - { - $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); - return $this; - } - public function makeReadonly() + private function isUserDefinedClass(string $className): bool { - $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_READONLY); - return $this; + if (!class_exists($className)) { + return \false; + } + try { + return (new ReflectionClass($className))->isUserDefined(); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * Adds a statement. - * - * @param Stmt|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function addStmt($stmt) + private function isUserDefinedInterface(string $interfaceName): bool { - $stmt = BuilderHelpers::normalizeNode($stmt); - $targets = [Stmt\TraitUse::class => &$this->uses, Stmt\ClassConst::class => &$this->constants, Stmt\Property::class => &$this->properties, Stmt\ClassMethod::class => &$this->methods]; - $class = \get_class($stmt); - if (!isset($targets[$class])) { - throw new \LogicException(\sprintf('Unexpected node of type "%s"', $stmt->getType())); + if (!interface_exists($interfaceName)) { + return \false; } - $targets[$class][] = $stmt; - return $this; + try { + return (new ReflectionClass($interfaceName))->isUserDefined(); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) + * @throws ReflectionException */ - public function addAttribute($attribute) + private function isUserDefinedTrait(string $traitName): bool { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + if (!trait_exists($traitName)) { + return \false; + } + try { + return (new ReflectionClass($traitName))->isUserDefined(); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } /** - * Returns the built class node. - * - * @return Stmt\Class_ The built class node + * @throws ReflectionException */ - public function getNode() : PhpParser\Node + private function isUserDefinedMethod(string $className, string $methodName): bool { - return new Stmt\Class_($this->name, ['flags' => $this->flags, 'extends' => $this->extends, 'implements' => $this->implements, 'stmts' => \array_merge($this->uses, $this->constants, $this->properties, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); + if (!class_exists($className)) { + // @codeCoverageIgnoreStart + return \false; + // @codeCoverageIgnoreEnd + } + if (!method_exists($className, $methodName)) { + // @codeCoverageIgnoreStart + return \false; + // @codeCoverageIgnoreEnd + } + try { + return (new ReflectionMethod($className, $methodName))->isUserDefined(); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -abstract class Declaration implements PhpParser\Builder +/** + * @psalm-immutable + */ +final class ClassUnit extends CodeUnit { - protected $attributes = []; - public abstract function addStmt($stmt); - /** - * Adds multiple statements. - * - * @param array $stmts The statements to add - * - * @return $this The builder instance (for fluid interface) - */ - public function addStmts(array $stmts) - { - foreach ($stmts as $stmt) { - $this->addStmt($stmt); - } - return $this; - } /** - * Sets doc comment for the declaration. - * - * @param PhpParser\Comment\Doc|string $docComment Doc comment to set - * - * @return $this The builder instance (for fluid interface) + * @psalm-assert-if-true ClassUnit $this */ - public function setDocComment($docComment) + public function isClass(): bool { - $this->attributes['comments'] = [BuilderHelpers::normalizeDocComment($docComment)]; - return $this; + return \true; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Stmt; -class EnumCase implements PhpParser\Builder +/** + * @psalm-immutable + */ +final class ClassMethodUnit extends CodeUnit { - protected $name; - protected $value = null; - protected $attributes = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; - /** - * Creates an enum case builder. - * - * @param string|Identifier $name Name - */ - public function __construct($name) - { - $this->name = $name; - } - /** - * Sets the value. - * - * @param Node\Expr|string|int $value - * - * @return $this - */ - public function setValue($value) - { - $this->value = BuilderHelpers::normalizeValue($value); - return $this; - } - /** - * Sets doc comment for the constant. - * - * @param PhpParser\Comment\Doc|string $docComment Doc comment to set - * - * @return $this The builder instance (for fluid interface) - */ - public function setDocComment($docComment) - { - $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; - return $this; - } - /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) - */ - public function addAttribute($attribute) - { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; - } /** - * Returns the built enum case node. - * - * @return Stmt\EnumCase The built constant node + * @psalm-assert-if-true ClassMethodUnit $this */ - public function getNode() : PhpParser\Node + public function isClassMethod(): bool { - return new Stmt\EnumCase($this->name, $this->value, $this->attributes, $this->attributeGroups); + return \true; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnit; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Stmt; -class Enum_ extends Declaration +/** + * @psalm-immutable + */ +final class InterfaceUnit extends CodeUnit { - protected $name; - protected $scalarType = null; - protected $implements = []; - protected $uses = []; - protected $enumCases = []; - protected $constants = []; - protected $methods = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; /** - * Creates an enum builder. - * - * @param string $name Name of the enum + * @psalm-assert-if-true InterfaceUnit $this */ - public function __construct(string $name) + public function isInterface(): bool { - $this->name = $name; + return \true; } +} +phpunit/php-timer + +Copyright (c) 2010-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; + +use function is_float; +use function memory_get_peak_usage; +use function microtime; +use function sprintf; +final class ResourceUsageFormatter +{ /** - * Sets the scalar type. - * - * @param string|Identifier $type - * - * @return $this + * @psalm-var array */ - public function setScalarType($scalarType) + private const SIZES = ['GB' => 1073741824, 'MB' => 1048576, 'KB' => 1024]; + public function resourceUsage(Duration $duration): string { - $this->scalarType = BuilderHelpers::normalizeType($scalarType); - return $this; + return sprintf('Time: %s, Memory: %s', $duration->asString(), $this->bytesToString(memory_get_peak_usage(\true))); } /** - * Implements one or more interfaces. - * - * @param Name|string ...$interfaces Names of interfaces to implement - * - * @return $this The builder instance (for fluid interface) + * @throws TimeSinceStartOfRequestNotAvailableException */ - public function implement(...$interfaces) + public function resourceUsageSinceStartOfRequest(): string { - foreach ($interfaces as $interface) { - $this->implements[] = BuilderHelpers::normalizeName($interface); + if (!isset($_SERVER['REQUEST_TIME_FLOAT'])) { + throw new TimeSinceStartOfRequestNotAvailableException('Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not available'); } - return $this; - } - /** - * Adds a statement. - * - * @param Stmt|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) - */ - public function addStmt($stmt) - { - $stmt = BuilderHelpers::normalizeNode($stmt); - $targets = [Stmt\TraitUse::class => &$this->uses, Stmt\EnumCase::class => &$this->enumCases, Stmt\ClassConst::class => &$this->constants, Stmt\ClassMethod::class => &$this->methods]; - $class = \get_class($stmt); - if (!isset($targets[$class])) { - throw new \LogicException(\sprintf('Unexpected node of type "%s"', $stmt->getType())); + if (!is_float($_SERVER['REQUEST_TIME_FLOAT'])) { + throw new TimeSinceStartOfRequestNotAvailableException('Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not of type float'); } - $targets[$class][] = $stmt; - return $this; - } - /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) - */ - public function addAttribute($attribute) - { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + return $this->resourceUsage(Duration::fromMicroseconds(1000000 * (microtime(\true) - $_SERVER['REQUEST_TIME_FLOAT']))); } - /** - * Returns the built class node. - * - * @return Stmt\Enum_ The built enum node - */ - public function getNode() : PhpParser\Node + private function bytesToString(int $bytes): string { - return new Stmt\Enum_($this->name, ['scalarType' => $this->scalarType, 'implements' => $this->implements, 'stmts' => \array_merge($this->uses, $this->enumCases, $this->constants, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); + foreach (self::SIZES as $unit => $value) { + if ($bytes >= $value) { + return sprintf('%.2f %s', $bytes >= 1024 ? $bytes / $value : $bytes, $unit); + } + } + // @codeCoverageIgnoreStart + return $bytes . ' byte' . ($bytes !== 1 ? 's' : ''); + // @codeCoverageIgnoreEnd } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -abstract class FunctionLike extends Declaration +use LogicException; +final class NoActiveTimerException extends LogicException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; + +use RuntimeException; +final class TimeSinceStartOfRequestNotAvailableException extends RuntimeException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; + +use Throwable; +interface Exception extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; + +use function array_pop; +use function hrtime; +final class Timer { - protected $returnByRef = \false; - protected $params = []; - /** @var string|Node\Name|Node\NullableType|null */ - protected $returnType = null; - /** - * Make the function return by reference. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeReturnByRef() - { - $this->returnByRef = \true; - return $this; - } /** - * Adds a parameter. - * - * @param Node\Param|Param $param The parameter to add - * - * @return $this The builder instance (for fluid interface) + * @psalm-var list */ - public function addParam($param) + private $startTimes = []; + public function start(): void { - $param = BuilderHelpers::normalizeNode($param); - if (!$param instanceof Node\Param) { - throw new \LogicException(\sprintf('Expected parameter node, got "%s"', $param->getType())); - } - $this->params[] = $param; - return $this; + $this->startTimes[] = (float) hrtime(\true); } /** - * Adds multiple parameters. - * - * @param array $params The parameters to add - * - * @return $this The builder instance (for fluid interface) + * @throws NoActiveTimerException */ - public function addParams(array $params) + public function stop(): Duration { - foreach ($params as $param) { - $this->addParam($param); + if (empty($this->startTimes)) { + throw new NoActiveTimerException('Timer::start() has to be called before Timer::stop()'); } - return $this; - } - /** - * Sets the return type for PHP 7. - * - * @param string|Node\Name|Node\Identifier|Node\ComplexType $type - * - * @return $this The builder instance (for fluid interface) - */ - public function setReturnType($type) - { - $this->returnType = BuilderHelpers::normalizeType($type); - return $this; + return Duration::fromNanoseconds((float) hrtime(\true) - array_pop($this->startTimes)); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Timer; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Stmt; -class Function_ extends FunctionLike +use function floor; +use function sprintf; +/** + * @psalm-immutable + */ +final class Duration { - protected $name; - protected $stmts = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; /** - * Creates a function builder. - * - * @param string $name Name of the function + * @var float */ - public function __construct(string $name) - { - $this->name = $name; - } + private $nanoseconds; /** - * Adds a statement. - * - * @param Node|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) + * @var int */ - public function addStmt($stmt) - { - $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); - return $this; - } + private $hours; /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) + * @var int */ - public function addAttribute($attribute) - { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; - } + private $minutes; /** - * Returns the built function node. - * - * @return Stmt\Function_ The built function node + * @var int + */ + private $seconds; + /** + * @var int */ - public function getNode() : Node + private $milliseconds; + public static function fromMicroseconds(float $microseconds): self { - return new Stmt\Function_($this->name, ['byRef' => $this->returnByRef, 'params' => $this->params, 'returnType' => $this->returnType, 'stmts' => $this->stmts, 'attrGroups' => $this->attributeGroups], $this->attributes); + return new self($microseconds * 1000); + } + public static function fromNanoseconds(float $nanoseconds): self + { + return new self($nanoseconds); + } + private function __construct(float $nanoseconds) + { + $this->nanoseconds = $nanoseconds; + $timeInMilliseconds = $nanoseconds / 1000000; + $hours = floor($timeInMilliseconds / 60 / 60 / 1000); + $hoursInMilliseconds = $hours * 60 * 60 * 1000; + $minutes = floor($timeInMilliseconds / 60 / 1000) % 60; + $minutesInMilliseconds = $minutes * 60 * 1000; + $seconds = floor(($timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds) / 1000); + $secondsInMilliseconds = $seconds * 1000; + $milliseconds = $timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds - $secondsInMilliseconds; + $this->hours = (int) $hours; + $this->minutes = $minutes; + $this->seconds = (int) $seconds; + $this->milliseconds = (int) $milliseconds; + } + public function asNanoseconds(): float + { + return $this->nanoseconds; } + public function asMicroseconds(): float + { + return $this->nanoseconds / 1000; + } + public function asMilliseconds(): float + { + return $this->nanoseconds / 1000000; + } + public function asSeconds(): float + { + return $this->nanoseconds / 1000000000; + } + public function asString(): string + { + $result = ''; + if ($this->hours > 0) { + $result = sprintf('%02d', $this->hours) . ':'; + } + $result .= sprintf('%02d', $this->minutes) . ':'; + $result .= sprintf('%02d', $this->seconds); + if ($this->milliseconds > 0) { + $result .= '.' . sprintf('%03d', $this->milliseconds); + } + return $result; + } +} +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "269b925354725db8c9bc648aa150c26d", + "packages": [ + { + "name": "doctrine/deprecations", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + }, + "time": "2024-01-30T19:34:25+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.16 || ^1", + "phpstan/phpstan": "^1.4", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.30 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.5.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2022-12-30T00:15:36+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-06-12T14:39:25+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.19.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b", + "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.1" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1" + }, + "time": "2024-03-17T08:10:35+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" + }, + "require-dev": { + "mockery/mockery": "~1.3.2", + "psalm/phar": "^4.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + }, + "time": "2021-10-19T17:43:47+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.8.2", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "153ae662783729388a584b4361f2545e4d841e3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c", + "reference": "153ae662783729388a584b4361f2545e4d841e3c", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.0", + "php": "^7.3 || ^8.0", + "phpdocumentor/reflection-common": "^2.0", + "phpstan/phpdoc-parser": "^1.13" + }, + "require-dev": { + "ext-tokenizer": "*", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^9.5", + "rector/rector": "^0.13.9", + "vimeo/psalm": "^4.25" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2" + }, + "time": "2024-02-23T11:10:43+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "v1.19.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2 || ^2.0", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", + "phpdocumentor/reflection-docblock": "^5.2", + "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0", + "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0 || ^7.0", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "dev", + "fake", + "mock", + "spy", + "stub" + ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.19.0" + }, + "time": "2024-02-29T11:52:51+00:00" + }, + { + "name": "phpstan/phpdoc-parser", + "version": "1.30.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "51b95ec8670af41009e2b2b56873bad96682413e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e", + "reference": "51b95ec8670af41009e2b2b56873bad96682413e", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1" + }, + "time": "2024-09-07T20:13:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "9.2.32", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5", + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.19.1 || ^5.1.0", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.6", + "phpunit/php-text-template": "^2.0.4", + "sebastian/code-unit-reverse-lookup": "^2.0.3", + "sebastian/complexity": "^2.0.3", + "sebastian/environment": "^5.1.5", + "sebastian/lines-of-code": "^1.0.4", + "sebastian/version": "^3.0.2", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.6" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.2.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-22T04:23:01+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-12-02T12:48:52+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:27:43+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:41:17+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:19:30+00:00" + }, + { + "name": "sebastian/diff", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc", + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:30:58+00:00" + }, + { + "name": "sebastian/environment", + "version": "5.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:03:51+00:00" + }, + { + "name": "sebastian/exporter", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:33:00+00:00" + }, + { + "name": "sebastian/global-state", + "version": "5.0.7", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:35:11+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:20:34+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:14:26+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:07:39+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "3.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-14T16:00:52+00:00" + }, + { + "name": "sebastian/type", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:13:03+00:00" + }, + { + "name": "sebastian/version", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": ">=7.3", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*" + }, + "platform-dev": [], + "platform-overrides": { + "php": "7.3.0" + }, + "plugin-api-version": "2.6.0" } +Version + +Copyright (c) 2013-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Stmt; -class Interface_ extends Declaration +final class Version { - protected $name; - protected $extends = []; - protected $constants = []; - protected $methods = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; /** - * Creates an interface builder. - * - * @param string $name Name of the interface + * @var string */ - public function __construct(string $name) - { - $this->name = $name; - } + private $path; /** - * Extends one or more interfaces. - * - * @param Name|string ...$interfaces Names of interfaces to extend - * - * @return $this The builder instance (for fluid interface) + * @var string */ - public function extend(...$interfaces) - { - foreach ($interfaces as $interface) { - $this->extends[] = BuilderHelpers::normalizeName($interface); - } - return $this; - } + private $release; /** - * Adds a statement. - * - * @param Stmt|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) + * @var string */ - public function addStmt($stmt) + private $version; + public function __construct(string $release, string $path) { - $stmt = BuilderHelpers::normalizeNode($stmt); - if ($stmt instanceof Stmt\ClassConst) { - $this->constants[] = $stmt; - } elseif ($stmt instanceof Stmt\ClassMethod) { - // we erase all statements in the body of an interface method - $stmt->stmts = null; - $this->methods[] = $stmt; - } else { - throw new \LogicException(\sprintf('Unexpected node of type "%s"', $stmt->getType())); - } - return $this; + $this->release = $release; + $this->path = $path; } - /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) - */ - public function addAttribute($attribute) + public function getVersion(): string { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + if ($this->version === null) { + if (\substr_count($this->release, '.') + 1 === 3) { + $this->version = $this->release; + } else { + $this->version = $this->release . '-dev'; + } + $git = $this->getGitInformation($this->path); + if ($git) { + if (\substr_count($this->release, '.') + 1 === 3) { + $this->version = $git; + } else { + $git = \explode('-', $git); + $this->version = $this->release . '-' . \end($git); + } + } + } + return $this->version; } /** - * Returns the built interface node. - * - * @return Stmt\Interface_ The built interface node + * @return bool|string */ - public function getNode() : PhpParser\Node + private function getGitInformation(string $path) { - return new Stmt\Interface_($this->name, ['extends' => $this->extends, 'stmts' => \array_merge($this->constants, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); + if (!\is_dir($path . \DIRECTORY_SEPARATOR . '.git')) { + return \false; + } + $process = \proc_open('git describe --tags', [1 => ['pipe', 'w'], 2 => ['pipe', 'w']], $pipes, $path); + if (!\is_resource($process)) { + return \false; + } + $result = \trim(\stream_get_contents($pipes[1])); + \fclose($pipes[1]); + \fclose($pipes[2]); + $returnCode = \proc_close($process); + if ($returnCode !== 0) { + return \false; + } + return $result; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Stmt; -class Method extends FunctionLike +final class Diff { - protected $name; - protected $flags = 0; - /** @var array|null */ - protected $stmts = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; - /** - * Creates a method builder. - * - * @param string $name Name of the method - */ - public function __construct(string $name) - { - $this->name = $name; - } - /** - * Makes the method public. - * - * @return $this The builder instance (for fluid interface) - */ - public function makePublic() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); - return $this; - } /** - * Makes the method protected. - * - * @return $this The builder instance (for fluid interface) + * @var string */ - public function makeProtected() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); - return $this; - } + private $from; /** - * Makes the method private. - * - * @return $this The builder instance (for fluid interface) + * @var string */ - public function makePrivate() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); - return $this; - } + private $to; /** - * Makes the method static. - * - * @return $this The builder instance (for fluid interface) + * @var Chunk[] */ - public function makeStatic() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC); - return $this; - } + private $chunks; /** - * Makes the method abstract. - * - * @return $this The builder instance (for fluid interface) + * @param Chunk[] $chunks */ - public function makeAbstract() + public function __construct(string $from, string $to, array $chunks = []) { - if (!empty($this->stmts)) { - throw new \LogicException('Cannot make method with statements abstract'); - } - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_ABSTRACT); - $this->stmts = null; - // abstract methods don't have statements - return $this; + $this->from = $from; + $this->to = $to; + $this->chunks = $chunks; } - /** - * Makes the method final. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeFinal() + public function getFrom(): string { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); - return $this; + return $this->from; } - /** - * Adds a statement. - * - * @param Node|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) - */ - public function addStmt($stmt) + public function getTo(): string { - if (null === $this->stmts) { - throw new \LogicException('Cannot add statements to an abstract method'); - } - $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); - return $this; + return $this->to; } /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) + * @return Chunk[] */ - public function addAttribute($attribute) + public function getChunks(): array { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + return $this->chunks; } /** - * Returns the built method node. - * - * @return Stmt\ClassMethod The built method node + * @param Chunk[] $chunks */ - public function getNode() : Node + public function setChunks(array $chunks): void { - return new Stmt\ClassMethod($this->name, ['flags' => $this->flags, 'byRef' => $this->returnByRef, 'params' => $this->params, 'returnType' => $this->returnType, 'stmts' => $this->stmts, 'attrGroups' => $this->attributeGroups], $this->attributes); + $this->chunks = $chunks; } } +sebastian/diff + +Copyright (c) 2002-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Stmt; -class Namespace_ extends Declaration +use function array_pop; +use function count; +use function max; +use function preg_match; +use function preg_split; +/** + * Unified diff parser. + */ +final class Parser { - private $name; - private $stmts = []; /** - * Creates a namespace builder. - * - * @param Node\Name|string|null $name Name of the namespace + * @return Diff[] */ - public function __construct($name) + public function parse(string $string): array { - $this->name = null !== $name ? BuilderHelpers::normalizeName($name) : null; - } - /** - * Adds a statement. - * - * @param Node|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) - */ - public function addStmt($stmt) - { - $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); - return $this; + $lines = preg_split('(\r\n|\r|\n)', $string); + if (!empty($lines) && $lines[count($lines) - 1] === '') { + array_pop($lines); + } + $lineCount = count($lines); + $diffs = []; + $diff = null; + $collected = []; + for ($i = 0; $i < $lineCount; ++$i) { + if (preg_match('#^---\h+"?(?P[^\v\t"]+)#', $lines[$i], $fromMatch) && preg_match('#^\+\+\+\h+"?(?P[^\v\t"]+)#', $lines[$i + 1], $toMatch)) { + if ($diff !== null) { + $this->parseFileDiff($diff, $collected); + $diffs[] = $diff; + $collected = []; + } + $diff = new Diff($fromMatch['file'], $toMatch['file']); + ++$i; + } else { + if (preg_match('/^(?:diff --git |index [\da-f\.]+|[+-]{3} [ab])/', $lines[$i])) { + continue; + } + $collected[] = $lines[$i]; + } + } + if ($diff !== null && count($collected)) { + $this->parseFileDiff($diff, $collected); + $diffs[] = $diff; + } + return $diffs; } - /** - * Returns the built node. - * - * @return Stmt\Namespace_ The built node - */ - public function getNode() : Node + private function parseFileDiff(Diff $diff, array $lines): void { - return new Stmt\Namespace_($this->name, $this->stmts, $this->attributes); + $chunks = []; + $chunk = null; + $diffLines = []; + foreach ($lines as $line) { + if (preg_match('/^@@\s+-(?P\d+)(?:,\s*(?P\d+))?\s+\+(?P\d+)(?:,\s*(?P\d+))?\s+@@/', $line, $match)) { + $chunk = new Chunk((int) $match['start'], isset($match['startrange']) ? max(1, (int) $match['startrange']) : 1, (int) $match['end'], isset($match['endrange']) ? max(1, (int) $match['endrange']) : 1); + $chunks[] = $chunk; + $diffLines = []; + continue; + } + if (preg_match('/^(?P[+ -])?(?P.*)/', $line, $match)) { + $type = Line::UNCHANGED; + if ($match['type'] === '+') { + $type = Line::ADDED; + } elseif ($match['type'] === '-') { + $type = Line::REMOVED; + } + $diffLines[] = new Line($type, $match['line']); + if (null !== $chunk) { + $chunk->setLines($diffLines); + } + } + } + $diff->setChunks($chunks); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -class Param implements PhpParser\Builder +use function array_reverse; +use function count; +use function max; +use SplFixedArray; +final class TimeEfficientLongestCommonSubsequenceCalculator implements LongestCommonSubsequenceCalculator { - protected $name; - protected $default = null; - /** @var Node\Identifier|Node\Name|Node\NullableType|null */ - protected $type = null; - protected $byRef = \false; - protected $variadic = \false; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; - /** - * Creates a parameter builder. - * - * @param string $name Name of the parameter - */ - public function __construct(string $name) - { - $this->name = $name; - } - /** - * Sets default value for the parameter. - * - * @param mixed $value Default value to use - * - * @return $this The builder instance (for fluid interface) - */ - public function setDefault($value) - { - $this->default = BuilderHelpers::normalizeValue($value); - return $this; - } /** - * Sets type for the parameter. - * - * @param string|Node\Name|Node\Identifier|Node\ComplexType $type Parameter type - * - * @return $this The builder instance (for fluid interface) + * {@inheritdoc} */ - public function setType($type) + public function calculate(array $from, array $to): array { - $this->type = BuilderHelpers::normalizeType($type); - if ($this->type == 'void') { - throw new \LogicException('Parameter type cannot be void'); + $common = []; + $fromLength = count($from); + $toLength = count($to); + $width = $fromLength + 1; + $matrix = new SplFixedArray($width * ($toLength + 1)); + for ($i = 0; $i <= $fromLength; ++$i) { + $matrix[$i] = 0; } - return $this; - } - /** - * Sets type for the parameter. - * - * @param string|Node\Name|Node\Identifier|Node\ComplexType $type Parameter type - * - * @return $this The builder instance (for fluid interface) - * - * @deprecated Use setType() instead - */ - public function setTypeHint($type) - { - return $this->setType($type); - } - /** - * Make the parameter accept the value by reference. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeByRef() - { - $this->byRef = \true; - return $this; - } - /** - * Make the parameter variadic - * - * @return $this The builder instance (for fluid interface) - */ - public function makeVariadic() - { - $this->variadic = \true; - return $this; - } - /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) - */ - public function addAttribute($attribute) - { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; - } - /** - * Returns the built parameter node. - * - * @return Node\Param The built parameter node - */ - public function getNode() : Node - { - return new Node\Param(new Node\Expr\Variable($this->name), $this->default, $this->type, $this->byRef, $this->variadic, [], 0, $this->attributeGroups); + for ($j = 0; $j <= $toLength; ++$j) { + $matrix[$j * $width] = 0; + } + for ($i = 1; $i <= $fromLength; ++$i) { + for ($j = 1; $j <= $toLength; ++$j) { + $o = $j * $width + $i; + // don't use max() to avoid function call overhead + $firstOrLast = $from[$i - 1] === $to[$j - 1] ? $matrix[$o - $width - 1] + 1 : 0; + if ($matrix[$o - 1] > $matrix[$o - $width]) { + if ($firstOrLast > $matrix[$o - 1]) { + $matrix[$o] = $firstOrLast; + } else { + $matrix[$o] = $matrix[$o - 1]; + } + } else if ($firstOrLast > $matrix[$o - $width]) { + $matrix[$o] = $firstOrLast; + } else { + $matrix[$o] = $matrix[$o - $width]; + } + } + } + $i = $fromLength; + $j = $toLength; + while ($i > 0 && $j > 0) { + if ($from[$i - 1] === $to[$j - 1]) { + $common[] = $from[$i - 1]; + --$i; + --$j; + } else { + $o = $j * $width + $i; + if ($matrix[$o - $width] > $matrix[$o - 1]) { + --$j; + } else { + --$i; + } + } + } + return array_reverse($common); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff\Output; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Stmt; -use PHPUnit\PhpParser\Node\ComplexType; -class Property implements PhpParser\Builder +use function fclose; +use function fopen; +use function fwrite; +use function stream_get_contents; +use function substr; +use PHPUnitPHAR\SebastianBergmann\Diff\Differ; +/** + * Builds a diff string representation in a loose unified diff format + * listing only changes lines. Does not include line numbers. + */ +final class DiffOnlyOutputBuilder implements DiffOutputBuilderInterface { - protected $name; - protected $flags = 0; - protected $default = null; - protected $attributes = []; - /** @var null|Identifier|Name|NullableType */ - protected $type; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; - /** - * Creates a property builder. - * - * @param string $name Name of the property - */ - public function __construct(string $name) - { - $this->name = $name; - } - /** - * Makes the property public. - * - * @return $this The builder instance (for fluid interface) - */ - public function makePublic() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); - return $this; - } - /** - * Makes the property protected. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeProtected() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); - return $this; - } - /** - * Makes the property private. - * - * @return $this The builder instance (for fluid interface) - */ - public function makePrivate() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); - return $this; - } - /** - * Makes the property static. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeStatic() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC); - return $this; - } - /** - * Makes the property readonly. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeReadonly() - { - $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_READONLY); - return $this; - } - /** - * Sets default value for the property. - * - * @param mixed $value Default value to use - * - * @return $this The builder instance (for fluid interface) - */ - public function setDefault($value) - { - $this->default = BuilderHelpers::normalizeValue($value); - return $this; - } - /** - * Sets doc comment for the property. - * - * @param PhpParser\Comment\Doc|string $docComment Doc comment to set - * - * @return $this The builder instance (for fluid interface) - */ - public function setDocComment($docComment) - { - $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; - return $this; - } - /** - * Sets the property type for PHP 7.4+. - * - * @param string|Name|Identifier|ComplexType $type - * - * @return $this - */ - public function setType($type) - { - $this->type = BuilderHelpers::normalizeType($type); - return $this; - } /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) + * @var string */ - public function addAttribute($attribute) + private $header; + public function __construct(string $header = "--- Original\n+++ New\n") { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + $this->header = $header; } - /** - * Returns the built class node. - * - * @return Stmt\Property The built property node - */ - public function getNode() : PhpParser\Node + public function getDiff(array $diff): string { - return new Stmt\Property($this->flags !== 0 ? $this->flags : Stmt\Class_::MODIFIER_PUBLIC, [new Stmt\PropertyProperty($this->name, $this->default)], $this->attributes, $this->type, $this->attributeGroups); + $buffer = fopen('php://memory', 'r+b'); + if ('' !== $this->header) { + fwrite($buffer, $this->header); + if ("\n" !== substr($this->header, -1, 1)) { + fwrite($buffer, "\n"); + } + } + foreach ($diff as $diffEntry) { + if ($diffEntry[1] === Differ::ADDED) { + fwrite($buffer, '+' . $diffEntry[0]); + } elseif ($diffEntry[1] === Differ::REMOVED) { + fwrite($buffer, '-' . $diffEntry[0]); + } elseif ($diffEntry[1] === Differ::DIFF_LINE_END_WARNING) { + fwrite($buffer, ' ' . $diffEntry[0]); + continue; + // Warnings should not be tested for line break, it will always be there + } else { + /* Not changed (old) 0 */ + continue; + // we didn't write the non changs line, so do not add a line break either + } + $lc = substr($diffEntry[0], -1); + if ($lc !== "\n" && $lc !== "\r") { + fwrite($buffer, "\n"); + // \No newline at end of file + } + } + $diff = stream_get_contents($buffer, -1, 0); + fclose($buffer); + return $diff; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff\Output; -use PHPUnit\PhpParser\Builder; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Stmt; -class TraitUse implements Builder +/** + * Defines how an output builder should take a generated + * diff array and return a string representation of that diff. + */ +interface DiffOutputBuilderInterface +{ + public function getDiff(array $diff): string; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff\Output; + +use function array_splice; +use function count; +use function fclose; +use function fopen; +use function fwrite; +use function max; +use function min; +use function stream_get_contents; +use function strlen; +use function substr; +use PHPUnitPHAR\SebastianBergmann\Diff\Differ; +/** + * Builds a diff string representation in unified diff format in chunks. + */ +final class UnifiedDiffOutputBuilder extends AbstractChunkOutputBuilder { - protected $traits = []; - protected $adaptations = []; /** - * Creates a trait use builder. - * - * @param Node\Name|string ...$traits Names of used traits + * @var bool */ - public function __construct(...$traits) - { - foreach ($traits as $trait) { - $this->and($trait); - } - } + private $collapseRanges = \true; /** - * Adds used trait. - * - * @param Node\Name|string $trait Trait name - * - * @return $this The builder instance (for fluid interface) + * @var int >= 0 */ - public function and($trait) - { - $this->traits[] = BuilderHelpers::normalizeName($trait); - return $this; - } + private $commonLineThreshold = 6; /** - * Adds trait adaptation. - * - * @param Stmt\TraitUseAdaptation|Builder\TraitUseAdaptation $adaptation Trait adaptation - * - * @return $this The builder instance (for fluid interface) + * @var int >= 0 */ - public function with($adaptation) - { - $adaptation = BuilderHelpers::normalizeNode($adaptation); - if (!$adaptation instanceof Stmt\TraitUseAdaptation) { - throw new \LogicException('Adaptation must have type TraitUseAdaptation'); - } - $this->adaptations[] = $adaptation; - return $this; - } + private $contextLines = 3; /** - * Returns the built node. - * - * @return Node The built node + * @var string */ - public function getNode() : Node - { - return new Stmt\TraitUse($this->traits, $this->adaptations); - } -} -type = self::TYPE_UNDEFINED; - $this->trait = \is_null($trait) ? null : BuilderHelpers::normalizeName($trait); - $this->method = BuilderHelpers::normalizeIdentifier($method); + $this->header = $header; + $this->addLineNumbers = $addLineNumbers; } - /** - * Sets alias of method. - * - * @param Node\Identifier|string $alias Alias for adaptated method - * - * @return $this The builder instance (for fluid interface) - */ - public function as($alias) + public function getDiff(array $diff): string { - if ($this->type === self::TYPE_UNDEFINED) { - $this->type = self::TYPE_ALIAS; + $buffer = fopen('php://memory', 'r+b'); + if ('' !== $this->header) { + fwrite($buffer, $this->header); + if ("\n" !== substr($this->header, -1, 1)) { + fwrite($buffer, "\n"); + } } - if ($this->type !== self::TYPE_ALIAS) { - throw new \LogicException('Cannot set alias for not alias adaptation buider'); + if (0 !== count($diff)) { + $this->writeDiffHunks($buffer, $diff); } - $this->alias = $alias; - return $this; - } - /** - * Sets adaptated method public. - * - * @return $this The builder instance (for fluid interface) - */ - public function makePublic() - { - $this->setModifier(Stmt\Class_::MODIFIER_PUBLIC); - return $this; - } - /** - * Sets adaptated method protected. - * - * @return $this The builder instance (for fluid interface) - */ - public function makeProtected() - { - $this->setModifier(Stmt\Class_::MODIFIER_PROTECTED); - return $this; - } - /** - * Sets adaptated method private. - * - * @return $this The builder instance (for fluid interface) - */ - public function makePrivate() - { - $this->setModifier(Stmt\Class_::MODIFIER_PRIVATE); - return $this; + $diff = stream_get_contents($buffer, -1, 0); + fclose($buffer); + // If the diff is non-empty and last char is not a linebreak: add it. + // This might happen when both the `from` and `to` do not have a trailing linebreak + $last = substr($diff, -1); + return 0 !== strlen($diff) && "\n" !== $last && "\r" !== $last ? $diff . "\n" : $diff; } - /** - * Adds overwritten traits. - * - * @param Node\Name|string ...$traits Traits for overwrite - * - * @return $this The builder instance (for fluid interface) - */ - public function insteadof(...$traits) + private function writeDiffHunks($output, array $diff): void { - if ($this->type === self::TYPE_UNDEFINED) { - if (\is_null($this->trait)) { - throw new \LogicException('Precedence adaptation must have trait'); + // detect "No newline at end of file" and insert into `$diff` if needed + $upperLimit = count($diff); + if (0 === $diff[$upperLimit - 1][1]) { + $lc = substr($diff[$upperLimit - 1][0], -1); + if ("\n" !== $lc) { + array_splice($diff, $upperLimit, 0, [["\n\\ No newline at end of file\n", Differ::NO_LINE_END_EOF_WARNING]]); + } + } else { + // search back for the last `+` and `-` line, + // check if has trailing linebreak, else add under it warning under it + $toFind = [1 => \true, 2 => \true]; + for ($i = $upperLimit - 1; $i >= 0; --$i) { + if (isset($toFind[$diff[$i][1]])) { + unset($toFind[$diff[$i][1]]); + $lc = substr($diff[$i][0], -1); + if ("\n" !== $lc) { + array_splice($diff, $i + 1, 0, [["\n\\ No newline at end of file\n", Differ::NO_LINE_END_EOF_WARNING]]); + } + if (!count($toFind)) { + break; + } + } } - $this->type = self::TYPE_PRECEDENCE; } - if ($this->type !== self::TYPE_PRECEDENCE) { - throw new \LogicException('Cannot add overwritten traits for not precedence adaptation buider'); + // write hunks to output buffer + $cutOff = max($this->commonLineThreshold, $this->contextLines); + $hunkCapture = \false; + $sameCount = $toRange = $fromRange = 0; + $toStart = $fromStart = 1; + $i = 0; + /** @var int $i */ + foreach ($diff as $i => $entry) { + if (0 === $entry[1]) { + // same + if (\false === $hunkCapture) { + ++$fromStart; + ++$toStart; + continue; + } + ++$sameCount; + ++$toRange; + ++$fromRange; + if ($sameCount === $cutOff) { + $contextStartOffset = $hunkCapture - $this->contextLines < 0 ? $hunkCapture : $this->contextLines; + // note: $contextEndOffset = $this->contextLines; + // + // because we never go beyond the end of the diff. + // with the cutoff/contextlines here the follow is never true; + // + // if ($i - $cutOff + $this->contextLines + 1 > \count($diff)) { + // $contextEndOffset = count($diff) - 1; + // } + // + // ; that would be true for a trailing incomplete hunk case which is dealt with after this loop + $this->writeHunk($diff, $hunkCapture - $contextStartOffset, $i - $cutOff + $this->contextLines + 1, $fromStart - $contextStartOffset, $fromRange - $cutOff + $contextStartOffset + $this->contextLines, $toStart - $contextStartOffset, $toRange - $cutOff + $contextStartOffset + $this->contextLines, $output); + $fromStart += $fromRange; + $toStart += $toRange; + $hunkCapture = \false; + $sameCount = $toRange = $fromRange = 0; + } + continue; + } + $sameCount = 0; + if ($entry[1] === Differ::NO_LINE_END_EOF_WARNING) { + continue; + } + if (\false === $hunkCapture) { + $hunkCapture = $i; + } + if (Differ::ADDED === $entry[1]) { + ++$toRange; + } + if (Differ::REMOVED === $entry[1]) { + ++$fromRange; + } } - foreach ($traits as $trait) { - $this->insteadof[] = BuilderHelpers::normalizeName($trait); + if (\false === $hunkCapture) { + return; } - return $this; + // we end here when cutoff (commonLineThreshold) was not reached, but we where capturing a hunk, + // do not render hunk till end automatically because the number of context lines might be less than the commonLineThreshold + $contextStartOffset = $hunkCapture - $this->contextLines < 0 ? $hunkCapture : $this->contextLines; + // prevent trying to write out more common lines than there are in the diff _and_ + // do not write more than configured through the context lines + $contextEndOffset = min($sameCount, $this->contextLines); + $fromRange -= $sameCount; + $toRange -= $sameCount; + $this->writeHunk($diff, $hunkCapture - $contextStartOffset, $i - $sameCount + $contextEndOffset + 1, $fromStart - $contextStartOffset, $fromRange + $contextStartOffset + $contextEndOffset, $toStart - $contextStartOffset, $toRange + $contextStartOffset + $contextEndOffset, $output); } - protected function setModifier(int $modifier) + private function writeHunk(array $diff, int $diffStartIndex, int $diffEndIndex, int $fromStart, int $fromRange, int $toStart, int $toRange, $output): void { - if ($this->type === self::TYPE_UNDEFINED) { - $this->type = self::TYPE_ALIAS; - } - if ($this->type !== self::TYPE_ALIAS) { - throw new \LogicException('Cannot set access modifier for not alias adaptation buider'); - } - if (\is_null($this->modifier)) { - $this->modifier = $modifier; + if ($this->addLineNumbers) { + fwrite($output, '@@ -' . $fromStart); + if (!$this->collapseRanges || 1 !== $fromRange) { + fwrite($output, ',' . $fromRange); + } + fwrite($output, ' +' . $toStart); + if (!$this->collapseRanges || 1 !== $toRange) { + fwrite($output, ',' . $toRange); + } + fwrite($output, " @@\n"); } else { - throw new \LogicException('Multiple access type modifiers are not allowed'); + fwrite($output, "@@ @@\n"); } - } - /** - * Returns the built node. - * - * @return Node The built node - */ - public function getNode() : Node - { - switch ($this->type) { - case self::TYPE_ALIAS: - return new Stmt\TraitUseAdaptation\Alias($this->trait, $this->method, $this->modifier, $this->alias); - case self::TYPE_PRECEDENCE: - return new Stmt\TraitUseAdaptation\Precedence($this->trait, $this->method, $this->insteadof); - default: - throw new \LogicException('Type of adaptation is not defined'); + for ($i = $diffStartIndex; $i < $diffEndIndex; ++$i) { + if ($diff[$i][1] === Differ::ADDED) { + fwrite($output, '+' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::REMOVED) { + fwrite($output, '-' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::OLD) { + fwrite($output, ' ' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::NO_LINE_END_EOF_WARNING) { + fwrite($output, "\n"); + // $diff[$i][0] + } else { + /* Not changed (old) Differ::OLD or Warning Differ::DIFF_LINE_END_WARNING */ + fwrite($output, ' ' . $diff[$i][0]); + } } } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff\Output; -use PHPUnit\PhpParser; -use PHPUnit\PhpParser\BuilderHelpers; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Stmt; -class Trait_ extends Declaration +use function array_merge; +use function array_splice; +use function count; +use function fclose; +use function fopen; +use function fwrite; +use function is_bool; +use function is_int; +use function is_string; +use function max; +use function min; +use function sprintf; +use function stream_get_contents; +use function substr; +use PHPUnitPHAR\SebastianBergmann\Diff\ConfigurationException; +use PHPUnitPHAR\SebastianBergmann\Diff\Differ; +/** + * Strict Unified diff output builder. + * + * Generates (strict) Unified diff's (unidiffs) with hunks. + */ +final class StrictUnifiedDiffOutputBuilder implements DiffOutputBuilderInterface { - protected $name; - protected $uses = []; - protected $properties = []; - protected $methods = []; - /** @var Node\AttributeGroup[] */ - protected $attributeGroups = []; + private static $default = [ + 'collapseRanges' => \true, + // ranges of length one are rendered with the trailing `,1` + 'commonLineThreshold' => 6, + // number of same lines before ending a new hunk and creating a new one (if needed) + 'contextLines' => 3, + // like `diff: -u, -U NUM, --unified[=NUM]`, for patch/git apply compatibility best to keep at least @ 3 + 'fromFile' => null, + 'fromFileDate' => null, + 'toFile' => null, + 'toFileDate' => null, + ]; /** - * Creates an interface builder. - * - * @param string $name Name of the interface + * @var bool */ - public function __construct(string $name) - { - $this->name = $name; - } + private $changed; /** - * Adds a statement. - * - * @param Stmt|PhpParser\Builder $stmt The statement to add - * - * @return $this The builder instance (for fluid interface) + * @var bool */ - public function addStmt($stmt) + private $collapseRanges; + /** + * @var int >= 0 + */ + private $commonLineThreshold; + /** + * @var string + */ + private $header; + /** + * @var int >= 0 + */ + private $contextLines; + public function __construct(array $options = []) { - $stmt = BuilderHelpers::normalizeNode($stmt); - if ($stmt instanceof Stmt\Property) { - $this->properties[] = $stmt; - } elseif ($stmt instanceof Stmt\ClassMethod) { - $this->methods[] = $stmt; - } elseif ($stmt instanceof Stmt\TraitUse) { - $this->uses[] = $stmt; - } else { - throw new \LogicException(\sprintf('Unexpected node of type "%s"', $stmt->getType())); + $options = array_merge(self::$default, $options); + if (!is_bool($options['collapseRanges'])) { + throw new ConfigurationException('collapseRanges', 'a bool', $options['collapseRanges']); } - return $this; + if (!is_int($options['contextLines']) || $options['contextLines'] < 0) { + throw new ConfigurationException('contextLines', 'an int >= 0', $options['contextLines']); + } + if (!is_int($options['commonLineThreshold']) || $options['commonLineThreshold'] <= 0) { + throw new ConfigurationException('commonLineThreshold', 'an int > 0', $options['commonLineThreshold']); + } + $this->assertString($options, 'fromFile'); + $this->assertString($options, 'toFile'); + $this->assertStringOrNull($options, 'fromFileDate'); + $this->assertStringOrNull($options, 'toFileDate'); + $this->header = sprintf("--- %s%s\n+++ %s%s\n", $options['fromFile'], null === $options['fromFileDate'] ? '' : "\t" . $options['fromFileDate'], $options['toFile'], null === $options['toFileDate'] ? '' : "\t" . $options['toFileDate']); + $this->collapseRanges = $options['collapseRanges']; + $this->commonLineThreshold = $options['commonLineThreshold']; + $this->contextLines = $options['contextLines']; } - /** - * Adds an attribute group. - * - * @param Node\Attribute|Node\AttributeGroup $attribute - * - * @return $this The builder instance (for fluid interface) - */ - public function addAttribute($attribute) + public function getDiff(array $diff): string { - $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); - return $this; + if (0 === count($diff)) { + return ''; + } + $this->changed = \false; + $buffer = fopen('php://memory', 'r+b'); + fwrite($buffer, $this->header); + $this->writeDiffHunks($buffer, $diff); + if (!$this->changed) { + fclose($buffer); + return ''; + } + $diff = stream_get_contents($buffer, -1, 0); + fclose($buffer); + // If the last char is not a linebreak: add it. + // This might happen when both the `from` and `to` do not have a trailing linebreak + $last = substr($diff, -1); + return "\n" !== $last && "\r" !== $last ? $diff . "\n" : $diff; } - /** - * Returns the built trait node. - * - * @return Stmt\Trait_ The built interface node - */ - public function getNode() : PhpParser\Node + private function writeDiffHunks($output, array $diff): void { - return new Stmt\Trait_($this->name, ['stmts' => \array_merge($this->uses, $this->properties, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); + // detect "No newline at end of file" and insert into `$diff` if needed + $upperLimit = count($diff); + if (0 === $diff[$upperLimit - 1][1]) { + $lc = substr($diff[$upperLimit - 1][0], -1); + if ("\n" !== $lc) { + array_splice($diff, $upperLimit, 0, [["\n\\ No newline at end of file\n", Differ::NO_LINE_END_EOF_WARNING]]); + } + } else { + // search back for the last `+` and `-` line, + // check if has trailing linebreak, else add under it warning under it + $toFind = [1 => \true, 2 => \true]; + for ($i = $upperLimit - 1; $i >= 0; --$i) { + if (isset($toFind[$diff[$i][1]])) { + unset($toFind[$diff[$i][1]]); + $lc = substr($diff[$i][0], -1); + if ("\n" !== $lc) { + array_splice($diff, $i + 1, 0, [["\n\\ No newline at end of file\n", Differ::NO_LINE_END_EOF_WARNING]]); + } + if (!count($toFind)) { + break; + } + } + } + } + // write hunks to output buffer + $cutOff = max($this->commonLineThreshold, $this->contextLines); + $hunkCapture = \false; + $sameCount = $toRange = $fromRange = 0; + $toStart = $fromStart = 1; + $i = 0; + /** @var int $i */ + foreach ($diff as $i => $entry) { + if (0 === $entry[1]) { + // same + if (\false === $hunkCapture) { + ++$fromStart; + ++$toStart; + continue; + } + ++$sameCount; + ++$toRange; + ++$fromRange; + if ($sameCount === $cutOff) { + $contextStartOffset = $hunkCapture - $this->contextLines < 0 ? $hunkCapture : $this->contextLines; + // note: $contextEndOffset = $this->contextLines; + // + // because we never go beyond the end of the diff. + // with the cutoff/contextlines here the follow is never true; + // + // if ($i - $cutOff + $this->contextLines + 1 > \count($diff)) { + // $contextEndOffset = count($diff) - 1; + // } + // + // ; that would be true for a trailing incomplete hunk case which is dealt with after this loop + $this->writeHunk($diff, $hunkCapture - $contextStartOffset, $i - $cutOff + $this->contextLines + 1, $fromStart - $contextStartOffset, $fromRange - $cutOff + $contextStartOffset + $this->contextLines, $toStart - $contextStartOffset, $toRange - $cutOff + $contextStartOffset + $this->contextLines, $output); + $fromStart += $fromRange; + $toStart += $toRange; + $hunkCapture = \false; + $sameCount = $toRange = $fromRange = 0; + } + continue; + } + $sameCount = 0; + if ($entry[1] === Differ::NO_LINE_END_EOF_WARNING) { + continue; + } + $this->changed = \true; + if (\false === $hunkCapture) { + $hunkCapture = $i; + } + if (Differ::ADDED === $entry[1]) { + // added + ++$toRange; + } + if (Differ::REMOVED === $entry[1]) { + // removed + ++$fromRange; + } + } + if (\false === $hunkCapture) { + return; + } + // we end here when cutoff (commonLineThreshold) was not reached, but we where capturing a hunk, + // do not render hunk till end automatically because the number of context lines might be less than the commonLineThreshold + $contextStartOffset = $hunkCapture - $this->contextLines < 0 ? $hunkCapture : $this->contextLines; + // prevent trying to write out more common lines than there are in the diff _and_ + // do not write more than configured through the context lines + $contextEndOffset = min($sameCount, $this->contextLines); + $fromRange -= $sameCount; + $toRange -= $sameCount; + $this->writeHunk($diff, $hunkCapture - $contextStartOffset, $i - $sameCount + $contextEndOffset + 1, $fromStart - $contextStartOffset, $fromRange + $contextStartOffset + $contextEndOffset, $toStart - $contextStartOffset, $toRange + $contextStartOffset + $contextEndOffset, $output); } -} -name = BuilderHelpers::normalizeName($name); - $this->type = $type; + fwrite($output, '@@ -' . $fromStart); + if (!$this->collapseRanges || 1 !== $fromRange) { + fwrite($output, ',' . $fromRange); + } + fwrite($output, ' +' . $toStart); + if (!$this->collapseRanges || 1 !== $toRange) { + fwrite($output, ',' . $toRange); + } + fwrite($output, " @@\n"); + for ($i = $diffStartIndex; $i < $diffEndIndex; ++$i) { + if ($diff[$i][1] === Differ::ADDED) { + $this->changed = \true; + fwrite($output, '+' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::REMOVED) { + $this->changed = \true; + fwrite($output, '-' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::OLD) { + fwrite($output, ' ' . $diff[$i][0]); + } elseif ($diff[$i][1] === Differ::NO_LINE_END_EOF_WARNING) { + $this->changed = \true; + fwrite($output, $diff[$i][0]); + } + //} elseif ($diff[$i][1] === Differ::DIFF_LINE_END_WARNING) { // custom comment inserted by PHPUnit/diff package + // skip + //} else { + // unknown/invalid + //} + } } - /** - * Sets alias for used name. - * - * @param string $alias Alias to use (last component of full name by default) - * - * @return $this The builder instance (for fluid interface) - */ - public function as(string $alias) + private function assertString(array $options, string $option): void { - $this->alias = $alias; - return $this; + if (!is_string($options[$option])) { + throw new ConfigurationException($option, 'a string', $options[$option]); + } } - /** - * Returns the built node. - * - * @return Stmt\Use_ The built node - */ - public function getNode() : Node + private function assertStringOrNull(array $options, string $option): void { - return new Stmt\Use_([new Stmt\UseUse($this->name, $this->alias)], $this->type); + if (null !== $options[$option] && !is_string($options[$option])) { + throw new ConfigurationException($option, 'a string or ', $options[$option]); + } } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff\Output; -use PHPUnit\PhpParser\Node\Arg; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Expr\BinaryOp\Concat; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Scalar\String_; -use PHPUnit\PhpParser\Node\Stmt\Use_; -class BuilderFactory +use function count; +abstract class AbstractChunkOutputBuilder implements DiffOutputBuilderInterface { /** - * Creates an attribute node. - * - * @param string|Name $name Name of the attribute - * @param array $args Attribute named arguments - * - * @return Node\Attribute - */ - public function attribute($name, array $args = []) : Node\Attribute - { - return new Node\Attribute(BuilderHelpers::normalizeName($name), $this->args($args)); - } - /** - * Creates a namespace builder. - * - * @param null|string|Node\Name $name Name of the namespace - * - * @return Builder\Namespace_ The created namespace builder + * Takes input of the diff array and returns the common parts. + * Iterates through diff line by line. */ - public function namespace($name) : Builder\Namespace_ + protected function getCommonChunks(array $diff, int $lineThreshold = 5): array { - return new Builder\Namespace_($name); - } - /** - * Creates a class builder. - * - * @param string $name Name of the class - * - * @return Builder\Class_ The created class builder - */ - public function class(string $name) : Builder\Class_ - { - return new Builder\Class_($name); - } - /** - * Creates an interface builder. - * - * @param string $name Name of the interface - * - * @return Builder\Interface_ The created interface builder - */ - public function interface(string $name) : Builder\Interface_ - { - return new Builder\Interface_($name); + $diffSize = count($diff); + $capturing = \false; + $chunkStart = 0; + $chunkSize = 0; + $commonChunks = []; + for ($i = 0; $i < $diffSize; ++$i) { + if ($diff[$i][1] === 0) { + if ($capturing === \false) { + $capturing = \true; + $chunkStart = $i; + $chunkSize = 0; + } else { + ++$chunkSize; + } + } elseif ($capturing !== \false) { + if ($chunkSize >= $lineThreshold) { + $commonChunks[$chunkStart] = $chunkStart + $chunkSize; + } + $capturing = \false; + } + } + if ($capturing !== \false && $chunkSize >= $lineThreshold) { + $commonChunks[$chunkStart] = $chunkStart + $chunkSize; + } + return $commonChunks; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +interface LongestCommonSubsequenceCalculator +{ /** - * Creates a trait builder. - * - * @param string $name Name of the trait - * - * @return Builder\Trait_ The created trait builder + * Calculates the longest common subsequence of two arrays. */ - public function trait(string $name) : Builder\Trait_ - { - return new Builder\Trait_($name); - } + public function calculate(array $from, array $to): array; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +final class Chunk +{ /** - * Creates an enum builder. - * - * @param string $name Name of the enum - * - * @return Builder\Enum_ The created enum builder + * @var int */ - public function enum(string $name) : Builder\Enum_ - { - return new Builder\Enum_($name); - } + private $start; /** - * Creates a trait use builder. - * - * @param Node\Name|string ...$traits Trait names - * - * @return Builder\TraitUse The create trait use builder + * @var int */ - public function useTrait(...$traits) : Builder\TraitUse - { - return new Builder\TraitUse(...$traits); - } + private $startRange; /** - * Creates a trait use adaptation builder. - * - * @param Node\Name|string|null $trait Trait name - * @param Node\Identifier|string $method Method name - * - * @return Builder\TraitUseAdaptation The create trait use adaptation builder + * @var int */ - public function traitUseAdaptation($trait, $method = null) : Builder\TraitUseAdaptation - { - if ($method === null) { - $method = $trait; - $trait = null; - } - return new Builder\TraitUseAdaptation($trait, $method); - } + private $end; /** - * Creates a method builder. - * - * @param string $name Name of the method - * - * @return Builder\Method The created method builder + * @var int */ - public function method(string $name) : Builder\Method - { - return new Builder\Method($name); - } + private $endRange; /** - * Creates a parameter builder. - * - * @param string $name Name of the parameter - * - * @return Builder\Param The created parameter builder + * @var Line[] */ - public function param(string $name) : Builder\Param + private $lines; + public function __construct(int $start = 0, int $startRange = 1, int $end = 0, int $endRange = 1, array $lines = []) { - return new Builder\Param($name); + $this->start = $start; + $this->startRange = $startRange; + $this->end = $end; + $this->endRange = $endRange; + $this->lines = $lines; } - /** - * Creates a property builder. - * - * @param string $name Name of the property - * - * @return Builder\Property The created property builder - */ - public function property(string $name) : Builder\Property + public function getStart(): int { - return new Builder\Property($name); + return $this->start; } - /** - * Creates a function builder. - * - * @param string $name Name of the function - * - * @return Builder\Function_ The created function builder - */ - public function function(string $name) : Builder\Function_ + public function getStartRange(): int { - return new Builder\Function_($name); + return $this->startRange; } - /** - * Creates a namespace/class use builder. - * - * @param Node\Name|string $name Name of the entity (namespace or class) to alias - * - * @return Builder\Use_ The created use builder - */ - public function use($name) : Builder\Use_ + public function getEnd(): int { - return new Builder\Use_($name, Use_::TYPE_NORMAL); + return $this->end; } - /** - * Creates a function use builder. - * - * @param Node\Name|string $name Name of the function to alias - * - * @return Builder\Use_ The created use function builder - */ - public function useFunction($name) : Builder\Use_ + public function getEndRange(): int { - return new Builder\Use_($name, Use_::TYPE_FUNCTION); + return $this->endRange; } /** - * Creates a constant use builder. - * - * @param Node\Name|string $name Name of the const to alias - * - * @return Builder\Use_ The created use const builder + * @return Line[] */ - public function useConst($name) : Builder\Use_ + public function getLines(): array { - return new Builder\Use_($name, Use_::TYPE_CONSTANT); + return $this->lines; } /** - * Creates a class constant builder. - * - * @param string|Identifier $name Name - * @param Node\Expr|bool|null|int|float|string|array $value Value - * - * @return Builder\ClassConst The created use const builder + * @param Line[] $lines */ - public function classConst($name, $value) : Builder\ClassConst + public function setLines(array $lines): void { - return new Builder\ClassConst($name, $value); + foreach ($lines as $line) { + if (!$line instanceof Line) { + throw new InvalidArgumentException(); + } + } + $this->lines = $lines; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +use const PHP_INT_SIZE; +use const PREG_SPLIT_DELIM_CAPTURE; +use const PREG_SPLIT_NO_EMPTY; +use function array_shift; +use function array_unshift; +use function array_values; +use function count; +use function current; +use function end; +use function get_class; +use function gettype; +use function is_array; +use function is_object; +use function is_string; +use function key; +use function min; +use function preg_split; +use function prev; +use function reset; +use function sprintf; +use function substr; +use PHPUnitPHAR\SebastianBergmann\Diff\Output\DiffOutputBuilderInterface; +use PHPUnitPHAR\SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder; +final class Differ +{ + public const OLD = 0; + public const ADDED = 1; + public const REMOVED = 2; + public const DIFF_LINE_END_WARNING = 3; + public const NO_LINE_END_EOF_WARNING = 4; /** - * Creates an enum case builder. - * - * @param string|Identifier $name Name - * - * @return Builder\EnumCase The created use const builder + * @var DiffOutputBuilderInterface */ - public function enumCase($name) : Builder\EnumCase - { - return new Builder\EnumCase($name); - } + private $outputBuilder; /** - * Creates node a for a literal value. - * - * @param Expr|bool|null|int|float|string|array $value $value + * @param DiffOutputBuilderInterface $outputBuilder * - * @return Expr + * @throws InvalidArgumentException */ - public function val($value) : Expr + public function __construct($outputBuilder = null) { - return BuilderHelpers::normalizeValue($value); + if ($outputBuilder instanceof DiffOutputBuilderInterface) { + $this->outputBuilder = $outputBuilder; + } elseif (null === $outputBuilder) { + $this->outputBuilder = new UnifiedDiffOutputBuilder(); + } elseif (is_string($outputBuilder)) { + // PHPUnit 6.1.4, 6.2.0, 6.2.1, 6.2.2, and 6.2.3 support + // @see https://github.com/sebastianbergmann/phpunit/issues/2734#issuecomment-314514056 + // @deprecated + $this->outputBuilder = new UnifiedDiffOutputBuilder($outputBuilder); + } else { + throw new InvalidArgumentException(sprintf('Expected builder to be an instance of DiffOutputBuilderInterface, or a string, got %s.', is_object($outputBuilder) ? 'instance of "' . get_class($outputBuilder) . '"' : gettype($outputBuilder) . ' "' . $outputBuilder . '"')); + } } /** - * Creates variable node. - * - * @param string|Expr $name Name + * Returns the diff between two arrays or strings as string. * - * @return Expr\Variable + * @param array|string $from + * @param array|string $to */ - public function var($name) : Expr\Variable + public function diff($from, $to, ?LongestCommonSubsequenceCalculator $lcs = null): string { - if (!\is_string($name) && !$name instanceof Expr) { - throw new \LogicException('Variable name must be string or Expr'); - } - return new Expr\Variable($name); + $diff = $this->diffToArray($this->normalizeDiffInput($from), $this->normalizeDiffInput($to), $lcs); + return $this->outputBuilder->getDiff($diff); } /** - * Normalizes an argument list. + * Returns the diff between two arrays or strings as array. * - * Creates Arg nodes for all arguments and converts literal values to expressions. + * Each array element contains two elements: + * - [0] => mixed $token + * - [1] => 2|1|0 * - * @param array $args List of arguments to normalize + * - 2: REMOVED: $token was removed from $from + * - 1: ADDED: $token was added to $from + * - 0: OLD: $token is not changed in $to * - * @return Arg[] + * @param array|string $from + * @param array|string $to + * @param LongestCommonSubsequenceCalculator $lcs */ - public function args(array $args) : array + public function diffToArray($from, $to, ?LongestCommonSubsequenceCalculator $lcs = null): array { - $normalizedArgs = []; - foreach ($args as $key => $arg) { - if (!$arg instanceof Arg) { - $arg = new Arg(BuilderHelpers::normalizeValue($arg)); + if (is_string($from)) { + $from = $this->splitStringByLines($from); + } elseif (!is_array($from)) { + throw new InvalidArgumentException('"from" must be an array or string.'); + } + if (is_string($to)) { + $to = $this->splitStringByLines($to); + } elseif (!is_array($to)) { + throw new InvalidArgumentException('"to" must be an array or string.'); + } + [$from, $to, $start, $end] = self::getArrayDiffParted($from, $to); + if ($lcs === null) { + $lcs = $this->selectLcsImplementation($from, $to); + } + $common = $lcs->calculate(array_values($from), array_values($to)); + $diff = []; + foreach ($start as $token) { + $diff[] = [$token, self::OLD]; + } + reset($from); + reset($to); + foreach ($common as $token) { + while (($fromToken = reset($from)) !== $token) { + $diff[] = [array_shift($from), self::REMOVED]; } - if (\is_string($key)) { - $arg->name = BuilderHelpers::normalizeIdentifier($key); + while (($toToken = reset($to)) !== $token) { + $diff[] = [array_shift($to), self::ADDED]; } - $normalizedArgs[] = $arg; + $diff[] = [$token, self::OLD]; + array_shift($from); + array_shift($to); } - return $normalizedArgs; - } - /** - * Creates a function call node. - * - * @param string|Name|Expr $name Function name - * @param array $args Function arguments - * - * @return Expr\FuncCall - */ - public function funcCall($name, array $args = []) : Expr\FuncCall - { - return new Expr\FuncCall(BuilderHelpers::normalizeNameOrExpr($name), $this->args($args)); - } - /** - * Creates a method call node. - * - * @param Expr $var Variable the method is called on - * @param string|Identifier|Expr $name Method name - * @param array $args Method arguments - * - * @return Expr\MethodCall - */ - public function methodCall(Expr $var, $name, array $args = []) : Expr\MethodCall - { - return new Expr\MethodCall($var, BuilderHelpers::normalizeIdentifierOrExpr($name), $this->args($args)); - } - /** - * Creates a static method call node. - * - * @param string|Name|Expr $class Class name - * @param string|Identifier|Expr $name Method name - * @param array $args Method arguments - * - * @return Expr\StaticCall - */ - public function staticCall($class, $name, array $args = []) : Expr\StaticCall - { - return new Expr\StaticCall(BuilderHelpers::normalizeNameOrExpr($class), BuilderHelpers::normalizeIdentifierOrExpr($name), $this->args($args)); + while (($token = array_shift($from)) !== null) { + $diff[] = [$token, self::REMOVED]; + } + while (($token = array_shift($to)) !== null) { + $diff[] = [$token, self::ADDED]; + } + foreach ($end as $token) { + $diff[] = [$token, self::OLD]; + } + if ($this->detectUnmatchedLineEndings($diff)) { + array_unshift($diff, ["#Warning: Strings contain different line endings!\n", self::DIFF_LINE_END_WARNING]); + } + return $diff; } /** - * Creates an object creation node. - * - * @param string|Name|Expr $class Class name - * @param array $args Constructor arguments + * Casts variable to string if it is not a string or array. * - * @return Expr\New_ + * @return array|string */ - public function new($class, array $args = []) : Expr\New_ + private function normalizeDiffInput($input) { - return new Expr\New_(BuilderHelpers::normalizeNameOrExpr($class), $this->args($args)); + if (!is_array($input) && !is_string($input)) { + return (string) $input; + } + return $input; } /** - * Creates a constant fetch node. - * - * @param string|Name $name Constant name - * - * @return Expr\ConstFetch + * Checks if input is string, if so it will split it line-by-line. */ - public function constFetch($name) : Expr\ConstFetch + private function splitStringByLines(string $input): array { - return new Expr\ConstFetch(BuilderHelpers::normalizeName($name)); + return preg_split('/(.*\R)/', $input, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); } - /** - * Creates a property fetch node. - * - * @param Expr $var Variable holding object - * @param string|Identifier|Expr $name Property name - * - * @return Expr\PropertyFetch - */ - public function propertyFetch(Expr $var, $name) : Expr\PropertyFetch + private function selectLcsImplementation(array $from, array $to): LongestCommonSubsequenceCalculator { - return new Expr\PropertyFetch($var, BuilderHelpers::normalizeIdentifierOrExpr($name)); + // We do not want to use the time-efficient implementation if its memory + // footprint will probably exceed this value. Note that the footprint + // calculation is only an estimation for the matrix and the LCS method + // will typically allocate a bit more memory than this. + $memoryLimit = 100 * 1024 * 1024; + if ($this->calculateEstimatedFootprint($from, $to) > $memoryLimit) { + return new MemoryEfficientLongestCommonSubsequenceCalculator(); + } + return new TimeEfficientLongestCommonSubsequenceCalculator(); } /** - * Creates a class constant fetch node. - * - * @param string|Name|Expr $class Class name - * @param string|Identifier $name Constant name + * Calculates the estimated memory footprint for the DP-based method. * - * @return Expr\ClassConstFetch + * @return float|int */ - public function classConstFetch($class, $name) : Expr\ClassConstFetch + private function calculateEstimatedFootprint(array $from, array $to) { - return new Expr\ClassConstFetch(BuilderHelpers::normalizeNameOrExpr($class), BuilderHelpers::normalizeIdentifier($name)); + $itemSize = PHP_INT_SIZE === 4 ? 76 : 144; + return $itemSize * min(count($from), count($to)) ** 2; } /** - * Creates nested Concat nodes from a list of expressions. - * - * @param Expr|string ...$exprs Expressions or literal strings - * - * @return Concat + * Returns true if line ends don't match in a diff. */ - public function concat(...$exprs) : Concat + private function detectUnmatchedLineEndings(array $diff): bool { - $numExprs = \count($exprs); - if ($numExprs < 2) { - throw new \LogicException('Expected at least two expressions'); + $newLineBreaks = ['' => \true]; + $oldLineBreaks = ['' => \true]; + foreach ($diff as $entry) { + if (self::OLD === $entry[1]) { + $ln = $this->getLinebreak($entry[0]); + $oldLineBreaks[$ln] = \true; + $newLineBreaks[$ln] = \true; + } elseif (self::ADDED === $entry[1]) { + $newLineBreaks[$this->getLinebreak($entry[0])] = \true; + } elseif (self::REMOVED === $entry[1]) { + $oldLineBreaks[$this->getLinebreak($entry[0])] = \true; + } } - $lastConcat = $this->normalizeStringExpr($exprs[0]); - for ($i = 1; $i < $numExprs; $i++) { - $lastConcat = new Concat($lastConcat, $this->normalizeStringExpr($exprs[$i])); + // if either input or output is a single line without breaks than no warning should be raised + if (['' => \true] === $newLineBreaks || ['' => \true] === $oldLineBreaks) { + return \false; } - return $lastConcat; - } - /** - * @param string|Expr $expr - * @return Expr - */ - private function normalizeStringExpr($expr) : Expr - { - if ($expr instanceof Expr) { - return $expr; + // two way compare + foreach ($newLineBreaks as $break => $set) { + if (!isset($oldLineBreaks[$break])) { + return \true; + } } - if (\is_string($expr)) { - return new String_($expr); + foreach ($oldLineBreaks as $break => $set) { + if (!isset($newLineBreaks[$break])) { + return \true; + } } - throw new \LogicException('Expected string or Expr'); + return \false; } -} -getNode(); + if (!is_string($line)) { + return ''; } - if ($node instanceof Node) { - return $node; + $lc = substr($line, -1); + if ("\r" === $lc) { + return "\r"; } - throw new \LogicException('Expected node or builder object'); + if ("\n" !== $lc) { + return ''; + } + if ("\r\n" === substr($line, -2)) { + return "\r\n"; + } + return "\n"; } - /** - * Normalizes a node to a statement. - * - * Expressions are wrapped in a Stmt\Expression node. - * - * @param Node|Builder $node The node to normalize - * - * @return Stmt The normalized statement node - */ - public static function normalizeStmt($node) : Stmt + private static function getArrayDiffParted(array &$from, array &$to): array { - $node = self::normalizeNode($node); - if ($node instanceof Stmt) { - return $node; - } - if ($node instanceof Expr) { - return new Stmt\Expression($node); + $start = []; + $end = []; + reset($to); + foreach ($from as $k => $v) { + $toK = key($to); + if ($toK === $k && $v === $to[$k]) { + $start[$k] = $v; + unset($from[$k], $to[$k]); + } else { + break; + } } - throw new \LogicException('Expected statement or expression node'); + end($from); + end($to); + do { + $fromK = key($from); + $toK = key($to); + if (null === $fromK || null === $toK || current($from) !== current($to)) { + break; + } + prev($from); + prev($to); + $end = [$fromK => $from[$fromK]] + $end; + unset($from[$fromK], $to[$toK]); + } while (\true); + return [$from, $to, $start, $end]; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +final class Line +{ + public const ADDED = 1; + public const REMOVED = 2; + public const UNCHANGED = 3; /** - * Normalizes strings to Identifier. - * - * @param string|Identifier $name The identifier to normalize - * - * @return Identifier The normalized identifier + * @var int */ - public static function normalizeIdentifier($name) : Identifier - { - if ($name instanceof Identifier) { - return $name; - } - if (\is_string($name)) { - return new Identifier($name); - } - throw new \LogicException('PHPUnit\\Expected string or instance of Node\\Identifier'); - } + private $type; /** - * Normalizes strings to Identifier, also allowing expressions. - * - * @param string|Identifier|Expr $name The identifier to normalize - * - * @return Identifier|Expr The normalized identifier or expression + * @var string */ - public static function normalizeIdentifierOrExpr($name) + private $content; + public function __construct(int $type = self::UNCHANGED, string $content = '') { - if ($name instanceof Identifier || $name instanceof Expr) { - return $name; - } - if (\is_string($name)) { - return new Identifier($name); - } - throw new \LogicException('PHPUnit\\Expected string or instance of Node\\Identifier or Node\\Expr'); + $this->type = $type; + $this->content = $content; } - /** - * Normalizes a name: Converts string names to Name nodes. - * - * @param Name|string $name The name to normalize - * - * @return Name The normalized name - */ - public static function normalizeName($name) : Name + public function getContent(): string { - if ($name instanceof Name) { - return $name; - } - if (\is_string($name)) { - if (!$name) { - throw new \LogicException('Name cannot be empty'); - } - if ($name[0] === '\\') { - return new Name\FullyQualified(\substr($name, 1)); - } - if (0 === \strpos($name, 'namespace\\')) { - return new Name\Relative(\substr($name, \strlen('namespace\\'))); - } - return new Name($name); - } - throw new \LogicException('PHPUnit\\Name must be a string or an instance of Node\\Name'); + return $this->content; } - /** - * Normalizes a name: Converts string names to Name nodes, while also allowing expressions. - * - * @param Expr|Name|string $name The name to normalize - * - * @return Name|Expr The normalized name or expression - */ - public static function normalizeNameOrExpr($name) + public function getType(): int { - if ($name instanceof Expr) { - return $name; - } - if (!\is_string($name) && !$name instanceof Name) { - throw new \LogicException('PHPUnit\\Name must be a string or an instance of Node\\Name or Node\\Expr'); - } - return self::normalizeName($name); + return $this->type; } - /** - * Normalizes a type: Converts plain-text type names into proper AST representation. - * - * In particular, builtin types become Identifiers, custom types become Names and nullables - * are wrapped in NullableType nodes. - * - * @param string|Name|Identifier|ComplexType $type The type to normalize - * - * @return Name|Identifier|ComplexType The normalized type - */ - public static function normalizeType($type) +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +use function get_class; +use function gettype; +use function is_object; +use function sprintf; +use Exception; +final class ConfigurationException extends InvalidArgumentException +{ + public function __construct(string $option, string $expected, $value, int $code = 0, ?Exception $previous = null) { - if (!\is_string($type)) { - if (!$type instanceof Name && !$type instanceof Identifier && !$type instanceof ComplexType) { - throw new \LogicException('Type must be a string, or an instance of Name, Identifier or ComplexType'); - } - return $type; - } - $nullable = \false; - if (\strlen($type) > 0 && $type[0] === '?') { - $nullable = \true; - $type = \substr($type, 1); - } - $builtinTypes = ['array', 'callable', 'bool', 'int', 'float', 'string', 'iterable', 'void', 'object', 'null', 'false', 'mixed', 'never', 'true']; - $lowerType = \strtolower($type); - if (\in_array($lowerType, $builtinTypes)) { - $type = new Identifier($lowerType); - } else { - $type = self::normalizeName($type); - } - $notNullableTypes = ['void', 'mixed', 'never']; - if ($nullable && \in_array((string) $type, $notNullableTypes)) { - throw new \LogicException(\sprintf('%s type cannot be nullable', $type)); - } - return $nullable ? new NullableType($type) : $type; + parent::__construct(sprintf('Option "%s" must be %s, got "%s".', $option, $expected, is_object($value) ? get_class($value) : (null === $value ? '' : gettype($value) . '#' . $value)), $code, $previous); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +class InvalidArgumentException extends \InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +use Throwable; +interface Exception extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Diff; + +use function array_fill; +use function array_merge; +use function array_reverse; +use function array_slice; +use function count; +use function in_array; +use function max; +final class MemoryEfficientLongestCommonSubsequenceCalculator implements LongestCommonSubsequenceCalculator +{ /** - * Normalizes a value: Converts nulls, booleans, integers, - * floats, strings and arrays into their respective nodes - * - * @param Node\Expr|bool|null|int|float|string|array $value The value to normalize - * - * @return Expr The normalized value + * {@inheritdoc} */ - public static function normalizeValue($value) : Expr + public function calculate(array $from, array $to): array { - if ($value instanceof Node\Expr) { - return $value; - } - if (\is_null($value)) { - return new Expr\ConstFetch(new Name('null')); - } - if (\is_bool($value)) { - return new Expr\ConstFetch(new Name($value ? 'true' : 'false')); - } - if (\is_int($value)) { - return new Scalar\LNumber($value); + $cFrom = count($from); + $cTo = count($to); + if ($cFrom === 0) { + return []; } - if (\is_float($value)) { - return new Scalar\DNumber($value); + if ($cFrom === 1) { + if (in_array($from[0], $to, \true)) { + return [$from[0]]; + } + return []; } - if (\is_string($value)) { - return new Scalar\String_($value); + $i = (int) ($cFrom / 2); + $fromStart = array_slice($from, 0, $i); + $fromEnd = array_slice($from, $i); + $llB = $this->length($fromStart, $to); + $llE = $this->length(array_reverse($fromEnd), array_reverse($to)); + $jMax = 0; + $max = 0; + for ($j = 0; $j <= $cTo; $j++) { + $m = $llB[$j] + $llE[$cTo - $j]; + if ($m >= $max) { + $max = $m; + $jMax = $j; + } } - if (\is_array($value)) { - $items = []; - $lastKey = -1; - foreach ($value as $itemKey => $itemValue) { - // for consecutive, numeric keys don't generate keys - if (null !== $lastKey && ++$lastKey === $itemKey) { - $items[] = new Expr\ArrayItem(self::normalizeValue($itemValue)); + $toStart = array_slice($to, 0, $jMax); + $toEnd = array_slice($to, $jMax); + return array_merge($this->calculate($fromStart, $toStart), $this->calculate($fromEnd, $toEnd)); + } + private function length(array $from, array $to): array + { + $current = array_fill(0, count($to) + 1, 0); + $cFrom = count($from); + $cTo = count($to); + for ($i = 0; $i < $cFrom; $i++) { + $prev = $current; + for ($j = 0; $j < $cTo; $j++) { + if ($from[$i] === $to[$j]) { + $current[$j + 1] = $prev[$j] + 1; + } else if ($current[$j] > $prev[$j + 1]) { + $current[$j + 1] = $current[$j]; } else { - $lastKey = null; - $items[] = new Expr\ArrayItem(self::normalizeValue($itemValue), self::normalizeValue($itemKey)); + $current[$j + 1] = $prev[$j + 1]; } } - return new Expr\Array_($items); } - throw new \LogicException('Invalid value'); + return $current; } +} +The MIT License (MIT) + +Copyright (c) 2013 My C-Sense + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +copy($value); } +} +class = $class; + $this->property = $property; } /** - * Adds a modifier and returns new modifier bitmask. - * @return int New modifiers + * Matches a specific property of a specific class. + * + * {@inheritdoc} */ - public static function addClassModifier(int $existingModifiers, int $modifierToSet) : int + public function matches($object, $property) { - Stmt\Class_::verifyClassModifier($existingModifiers, $modifierToSet); - return $existingModifiers | $modifierToSet; + return $object instanceof $this->class && $property == $this->property; } } text = $text; - $this->startLine = $startLine; - $this->startFilePos = $startFilePos; - $this->startTokenPos = $startTokenPos; - $this->endLine = $endLine; - $this->endFilePos = $endFilePos; - $this->endTokenPos = $endTokenPos; + return $object instanceof Proxy; } +} +text; - } + public function matches($object, $property); +} +startLine; - } + private $property; /** - * Gets the file offset the comment started on. - * - * @return int File offset (or -1 if not available) + * @param string $property Property name */ - public function getStartFilePos() : int + public function __construct($property) { - return $this->startFilePos; + $this->property = $property; } /** - * Gets the token offset the comment started on. + * Matches a property by its name. * - * @return int Token offset (or -1 if not available) + * {@inheritdoc} */ - public function getStartTokenPos() : int + public function matches($object, $property) { - return $this->startTokenPos; + return $property == $this->property; } +} +endLine; - } + private $propertyType; /** - * Gets the file offset the comment ends on. - * - * @return int File offset (or -1 if not available) + * @param string $propertyType Property type */ - public function getEndFilePos() : int + public function __construct($propertyType) { - return $this->endFilePos; + $this->propertyType = $propertyType; } /** - * Gets the token offset the comment ends on. - * - * @return int Token offset (or -1 if not available) + * {@inheritdoc} */ - public function getEndTokenPos() : int + public function matches($object, $property) { - return $this->endTokenPos; - } - /** - * Gets the line number the comment started on. - * - * @deprecated Use getStartLine() instead - * - * @return int Line number - */ - public function getLine() : int - { - return $this->startLine; + try { + $reflectionProperty = ReflectionHelper::getProperty($object, $property); + } catch (ReflectionException $exception) { + return \false; + } + $reflectionProperty->setAccessible(\true); + // Uninitialized properties (for PHP >7.4) + if (method_exists($reflectionProperty, 'isInitialized') && !$reflectionProperty->isInitialized($object)) { + // null instanceof $this->propertyType + return \false; + } + return $reflectionProperty->getValue($object) instanceof $this->propertyType; } +} + Filter, 'matcher' => Matcher] pairs. + */ + private $filters = []; + /** + * Type Filters to apply. * - * @return int File offset + * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. */ - public function getFilePos() : int + private $typeFilters = []; + /** + * @var bool + */ + private $skipUncloneable = \false; + /** + * @var bool + */ + private $useCloneMethod; + /** + * @param bool $useCloneMethod If set to true, when an object implements the __clone() function, it will be used + * instead of the regular deep cloning. + */ + public function __construct($useCloneMethod = \false) { - return $this->startFilePos; + $this->useCloneMethod = $useCloneMethod; + $this->addTypeFilter(new ArrayObjectFilter($this), new TypeMatcher(ArrayObject::class)); + $this->addTypeFilter(new DateIntervalFilter(), new TypeMatcher(DateInterval::class)); + $this->addTypeFilter(new SplDoublyLinkedListFilter($this), new TypeMatcher(SplDoublyLinkedList::class)); } /** - * Gets the token offset the comment started on. + * If enabled, will not throw an exception when coming across an uncloneable property. * - * @deprecated Use getStartTokenPos() instead + * @param $skipUncloneable * - * @return int Token offset + * @return $this */ - public function getTokenPos() : int + public function skipUncloneable($skipUncloneable = \true) { - return $this->startTokenPos; + $this->skipUncloneable = $skipUncloneable; + return $this; } /** - * Gets the comment text. + * Deep copies the given object. * - * @return string The comment text (including comment delimiters like /*) + * @param mixed $object + * + * @return mixed */ - public function __toString() : string + public function copy($object) { - return $this->text; + $this->hashMap = []; + return $this->recursiveCopy($object); + } + public function addFilter(Filter $filter, Matcher $matcher) + { + $this->filters[] = ['matcher' => $matcher, 'filter' => $filter]; + } + public function prependFilter(Filter $filter, Matcher $matcher) + { + array_unshift($this->filters, ['matcher' => $matcher, 'filter' => $filter]); + } + public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) + { + $this->typeFilters[] = ['matcher' => $matcher, 'filter' => $filter]; + } + private function recursiveCopy($var) + { + // Matches Type Filter + if ($filter = $this->getFirstMatchedTypeFilter($this->typeFilters, $var)) { + return $filter->apply($var); + } + // Resource + if (is_resource($var)) { + return $var; + } + // Array + if (is_array($var)) { + return $this->copyArray($var); + } + // Scalar + if (!is_object($var)) { + return $var; + } + // Enum + if (\PHP_VERSION_ID >= 80100 && enum_exists(get_class($var))) { + return $var; + } + // Object + return $this->copyObject($var); } /** - * Gets the reformatted comment text. + * Copy an array + * @param array $array + * @return array + */ + private function copyArray(array $array) + { + foreach ($array as $key => $value) { + $array[$key] = $this->recursiveCopy($value); + } + return $array; + } + /** + * Copies an object. * - * "Reformatted" here means that we try to clean up the whitespace at the - * starts of the lines. This is necessary because we receive the comments - * without trailing whitespace on the first line, but with trailing whitespace - * on all subsequent lines. + * @param object $object * - * @return mixed|string + * @throws CloneException + * + * @return object */ - public function getReformattedText() + private function copyObject($object) { - $text = \trim($this->text); - $newlinePos = \strpos($text, "\n"); - if (\false === $newlinePos) { - // Single line comments don't need further processing - return $text; - } elseif (\preg_match('((*BSR_ANYCRLF)(*ANYCRLF)^.*(?:\\R\\s+\\*.*)+$)', $text)) { - // Multi line comment of the type - // - // /* - // * Some text. - // * Some more text. - // */ - // - // is handled by replacing the whitespace sequences before the * by a single space - return \preg_replace('(^\\s+\\*)m', ' *', $this->text); - } elseif (\preg_match('(^/\\*\\*?\\s*[\\r\\n])', $text) && \preg_match('(\\n(\\s*)\\*/$)', $text, $matches)) { - // Multi line comment of the type - // - // /* - // Some text. - // Some more text. - // */ - // - // is handled by removing the whitespace sequence on the line before the closing - // */ on all lines. So if the last line is " */", then " " is removed at the - // start of all lines. - return \preg_replace('(^' . \preg_quote($matches[1]) . ')m', '', $text); - } elseif (\preg_match('(^/\\*\\*?\\s*(?!\\s))', $text, $matches)) { - // Multi line comment of the type - // - // /* Some text. - // Some more text. - // Indented text. - // Even more text. */ - // - // is handled by removing the difference between the shortest whitespace prefix on all - // lines and the length of the "/* " opening sequence. - $prefixLen = $this->getShortestWhitespacePrefixLen(\substr($text, $newlinePos + 1)); - $removeLen = $prefixLen - \strlen($matches[0]); - return \preg_replace('(^\\s{' . $removeLen . '})m', '', $text); + $objectHash = spl_object_hash($object); + if (isset($this->hashMap[$objectHash])) { + return $this->hashMap[$objectHash]; } - // No idea how to format this comment, so simply return as is - return $text; + $reflectedObject = new ReflectionObject($object); + $isCloneable = $reflectedObject->isCloneable(); + if (\false === $isCloneable) { + if ($this->skipUncloneable) { + $this->hashMap[$objectHash] = $object; + return $object; + } + throw new CloneException(sprintf('The class "%s" is not cloneable.', $reflectedObject->getName())); + } + $newObject = clone $object; + $this->hashMap[$objectHash] = $newObject; + if ($this->useCloneMethod && $reflectedObject->hasMethod('__clone')) { + return $newObject; + } + if ($newObject instanceof DateTimeInterface || $newObject instanceof DateTimeZone) { + return $newObject; + } + foreach (ReflectionHelper::getProperties($reflectedObject) as $property) { + $this->copyObjectProperty($newObject, $property); + } + return $newObject; + } + private function copyObjectProperty($object, ReflectionProperty $property) + { + // Ignore static properties + if ($property->isStatic()) { + return; + } + // Ignore readonly properties + if (method_exists($property, 'isReadOnly') && $property->isReadOnly()) { + return; + } + // Apply the filters + foreach ($this->filters as $item) { + /** @var Matcher $matcher */ + $matcher = $item['matcher']; + /** @var Filter $filter */ + $filter = $item['filter']; + if ($matcher->matches($object, $property->getName())) { + $filter->apply($object, $property->getName(), function ($object) { + return $this->recursiveCopy($object); + }); + if ($filter instanceof ChainableFilter) { + continue; + } + // If a filter matches, we stop processing this property + return; + } + } + $property->setAccessible(\true); + // Ignore uninitialized properties (for PHP >7.4) + if (method_exists($property, 'isInitialized') && !$property->isInitialized($object)) { + return; + } + $propertyValue = $property->getValue($object); + // Copy the property + $property->setValue($object, $this->recursiveCopy($propertyValue)); } /** - * Get length of shortest whitespace prefix (at the start of a line). + * Returns first filter that matches variable, `null` if no such filter found. * - * If there is a line with no prefix whitespace, 0 is a valid return value. + * @param array $filterRecords Associative array with 2 members: 'filter' with value of type {@see TypeFilter} and + * 'matcher' with value of type {@see TypeMatcher} + * @param mixed $var * - * @param string $str String to check - * @return int Length in characters. Tabs count as single characters. + * @return TypeFilter|null + */ + private function getFirstMatchedTypeFilter(array $filterRecords, $var) + { + $matched = $this->first($filterRecords, function (array $record) use ($var) { + /* @var TypeMatcher $matcher */ + $matcher = $record['matcher']; + return $matcher->matches($var); + }); + return isset($matched) ? $matched['filter'] : null; + } + /** + * Returns first element that matches predicate, `null` if no such element found. + * + * @param array $elements Array of ['filter' => Filter, 'matcher' => Matcher] pairs. + * @param callable $predicate Predicate arguments are: element. + * + * @return array|null Associative array with 2 members: 'filter' with value of type {@see TypeFilter} and 'matcher' + * with value of type {@see TypeMatcher} or `null`. */ - private function getShortestWhitespacePrefixLen(string $str) : int + private function first(array $elements, callable $predicate) { - $lines = \explode("\n", $str); - $shortestPrefixLen = \INF; - foreach ($lines as $line) { - \preg_match('(^\\s*)', $line, $matches); - $prefixLen = \strlen($matches[0]); - if ($prefixLen < $shortestPrefixLen) { - $shortestPrefixLen = $prefixLen; + foreach ($elements as $element) { + if (call_user_func($predicate, $element)) { + return $element; } } - return $shortestPrefixLen; + return null; + } +} +callback = $callable; } /** - * @return array - * @psalm-return array{nodeType:string, text:mixed, line:mixed, filePos:mixed} + * Replaces the object property by the result of the callback called with the object property. + * + * {@inheritdoc} */ - public function jsonSerialize() : array + public function apply($object, $property, $objectCopier) { - // Technically not a node, but we make it look like one anyway - $type = $this instanceof Comment\Doc ? 'Comment_Doc' : 'Comment'; - return [ - 'nodeType' => $type, - 'text' => $this->text, - // TODO: Rename these to include "start". - 'line' => $this->startLine, - 'filePos' => $this->startFilePos, - 'tokenPos' => $this->startTokenPos, - 'endLine' => $this->endLine, - 'endFilePos' => $this->endFilePos, - 'endTokenPos' => $this->endTokenPos, - ]; + $reflectionProperty = ReflectionHelper::getProperty($object, $property); + $reflectionProperty->setAccessible(\true); + $value = call_user_func($this->callback, $reflectionProperty->getValue($object)); + $reflectionProperty->setValue($object, $value); } } filter = $filter; + } + public function apply($object, $property, $objectCopier) + { + $this->filter->apply($object, $property, $objectCopier); + } } fallbackEvaluator = $fallbackEvaluator ?? function (Expr $expr) { - throw new ConstExprEvaluationException("Expression of type {$expr->getType()} cannot be evaluated"); - }; + $reflectionProperty = ReflectionHelper::getProperty($object, $property); + $reflectionProperty->setAccessible(\true); + $reflectionProperty->setValue($object, new ArrayCollection()); } +} +setAccessible(\true); + $oldCollection = $reflectionProperty->getValue($object); + $newCollection = $oldCollection->map(function ($item) use ($objectCopier) { + return $objectCopier($item); }); - try { - return $this->evaluate($expr); - } catch (\Throwable $e) { - if (!$e instanceof ConstExprEvaluationException) { - $e = new ConstExprEvaluationException("An error occurred during constant expression evaluation", 0, $e); - } - throw $e; - } finally { - \restore_error_handler(); - } + $reflectionProperty->setValue($object, $newCollection); } +} +__load(); + } +} +evaluate($expr); + $reflectionProperty = ReflectionHelper::getProperty($object, $property); + $reflectionProperty->setAccessible(\true); + $reflectionProperty->setValue($object, null); } - private function evaluate(Expr $expr) +} +value; - } - if ($expr instanceof Expr\Array_) { - return $this->evaluateArray($expr); - } - // Unary operators - if ($expr instanceof Expr\UnaryPlus) { - return +$this->evaluate($expr->expr); - } - if ($expr instanceof Expr\UnaryMinus) { - return -$this->evaluate($expr->expr); - } - if ($expr instanceof Expr\BooleanNot) { - return !$this->evaluate($expr->expr); - } - if ($expr instanceof Expr\BitwiseNot) { - return ~$this->evaluate($expr->expr); - } - if ($expr instanceof Expr\BinaryOp) { - return $this->evaluateBinaryOp($expr); - } - if ($expr instanceof Expr\Ternary) { - return $this->evaluateTernary($expr); - } - if ($expr instanceof Expr\ArrayDimFetch && null !== $expr->dim) { - return $this->evaluate($expr->var)[$this->evaluate($expr->dim)]; - } - if ($expr instanceof Expr\ConstFetch) { - return $this->evaluateConstFetch($expr); - } - return ($this->fallbackEvaluator)($expr); + $this->type = $type; } - private function evaluateArray(Expr\Array_ $expr) - { - $array = []; - foreach ($expr->items as $item) { - if (null !== $item->key) { - $array[$this->evaluate($item->key)] = $this->evaluate($item->value); - } elseif ($item->unpack) { - $array = array_merge($array, $this->evaluate($item->value)); - } else { - $array[] = $this->evaluate($item->value); - } - } - return $array; - } - private function evaluateTernary(Expr\Ternary $expr) - { - if (null === $expr->if) { - return $this->evaluate($expr->cond) ?: $this->evaluate($expr->else); - } - return $this->evaluate($expr->cond) ? $this->evaluate($expr->if) : $this->evaluate($expr->else); - } - private function evaluateBinaryOp(Expr\BinaryOp $expr) - { - if ($expr instanceof Expr\BinaryOp\Coalesce && $expr->left instanceof Expr\ArrayDimFetch) { - // This needs to be special cased to respect BP_VAR_IS fetch semantics - return $this->evaluate($expr->left->var)[$this->evaluate($expr->left->dim)] ?? $this->evaluate($expr->right); - } - // The evaluate() calls are repeated in each branch, because some of the operators are - // short-circuiting and evaluating the RHS in advance may be illegal in that case - $l = $expr->left; - $r = $expr->right; - switch ($expr->getOperatorSigil()) { - case '&': - return $this->evaluate($l) & $this->evaluate($r); - case '|': - return $this->evaluate($l) | $this->evaluate($r); - case '^': - return $this->evaluate($l) ^ $this->evaluate($r); - case '&&': - return $this->evaluate($l) && $this->evaluate($r); - case '||': - return $this->evaluate($l) || $this->evaluate($r); - case '??': - return $this->evaluate($l) ?? $this->evaluate($r); - case '.': - return $this->evaluate($l) . $this->evaluate($r); - case '/': - return $this->evaluate($l) / $this->evaluate($r); - case '==': - return $this->evaluate($l) == $this->evaluate($r); - case '>': - return $this->evaluate($l) > $this->evaluate($r); - case '>=': - return $this->evaluate($l) >= $this->evaluate($r); - case '===': - return $this->evaluate($l) === $this->evaluate($r); - case 'and': - return $this->evaluate($l) and $this->evaluate($r); - case 'or': - return $this->evaluate($l) or $this->evaluate($r); - case 'xor': - return $this->evaluate($l) xor $this->evaluate($r); - case '-': - return $this->evaluate($l) - $this->evaluate($r); - case '%': - return $this->evaluate($l) % $this->evaluate($r); - case '*': - return $this->evaluate($l) * $this->evaluate($r); - case '!=': - return $this->evaluate($l) != $this->evaluate($r); - case '!==': - return $this->evaluate($l) !== $this->evaluate($r); - case '+': - return $this->evaluate($l) + $this->evaluate($r); - case '**': - return $this->evaluate($l) ** $this->evaluate($r); - case '<<': - return $this->evaluate($l) << $this->evaluate($r); - case '>>': - return $this->evaluate($l) >> $this->evaluate($r); - case '<': - return $this->evaluate($l) < $this->evaluate($r); - case '<=': - return $this->evaluate($l) <= $this->evaluate($r); - case '<=>': - return $this->evaluate($l) <=> $this->evaluate($r); - } - throw new \Exception('Should not happen'); - } - private function evaluateConstFetch(Expr\ConstFetch $expr) + /** + * @param mixed $element + * + * @return boolean + */ + public function matches($element) { - $name = $expr->name->toLowerString(); - switch ($name) { - case 'null': - return null; - case 'false': - return \false; - case 'true': - return \true; - } - return ($this->fallbackEvaluator)($expr); + return is_object($element) ? is_a($element, $this->type) : gettype($element) === $this->type; } } getProperties() does not return private properties from ancestor classes. + * + * @author muratyaman@gmail.com + * @see http://php.net/manual/en/reflectionclass.getproperties.php + * + * @param ReflectionClass $ref + * + * @return ReflectionProperty[] */ - public function __construct(string $message, $attributes = []) + public static function getProperties(ReflectionClass $ref) { - $this->rawMessage = $message; - if (\is_array($attributes)) { - $this->attributes = $attributes; - } else { - $this->attributes = ['startLine' => $attributes]; + $props = $ref->getProperties(); + $propsArr = array(); + foreach ($props as $prop) { + $propertyName = $prop->getName(); + $propsArr[$propertyName] = $prop; } - $this->updateMessage(); + if ($parentClass = $ref->getParentClass()) { + $parentPropsArr = self::getProperties($parentClass); + foreach ($propsArr as $key => $property) { + $parentPropsArr[$key] = $property; + } + return $parentPropsArr; + } + return $propsArr; } /** - * Gets the error message + * Retrieves property by name from object and all its ancestors. * - * @return string Error message - */ - public function getRawMessage() : string - { - return $this->rawMessage; - } - /** - * Gets the line the error starts in. + * @param object|string $object + * @param string $name * - * @return int Error start line - */ - public function getStartLine() : int - { - return $this->attributes['startLine'] ?? -1; - } - /** - * Gets the line the error ends in. + * @throws PropertyException + * @throws ReflectionException * - * @return int Error end line + * @return ReflectionProperty */ - public function getEndLine() : int + public static function getProperty($object, $name) { - return $this->attributes['endLine'] ?? -1; + $reflection = is_object($object) ? new ReflectionObject($object) : new ReflectionClass($object); + if ($reflection->hasProperty($name)) { + return $reflection->getProperty($name); + } + if ($parentClass = $reflection->getParentClass()) { + return self::getProperty($parentClass->getName(), $name); + } + throw new PropertyException(sprintf('The class "%s" doesn\'t have a property with the given name: "%s".', is_object($object) ? get_class($object) : $object, $name)); } +} +attributes; - } + protected $callback; /** - * Sets the attributes of the node/token the error occurred at. - * - * @param array $attributes + * @param callable $callable Will be called to get the new value for each element to replace */ - public function setAttributes(array $attributes) + public function __construct(callable $callable) { - $this->attributes = $attributes; - $this->updateMessage(); + $this->callback = $callable; } /** - * Sets the line of the PHP file the error occurred in. - * - * @param string $message Error message + * {@inheritdoc} */ - public function setRawMessage(string $message) + public function apply($element) { - $this->rawMessage = $message; - $this->updateMessage(); + return call_user_func($this->callback, $element); } - /** - * Sets the line the error starts in. - * - * @param int $line Error start line - */ - public function setStartLine(int $line) +} +attributes['startLine'] = $line; - $this->updateMessage(); + $this->copier = $copier; } /** - * Returns whether the error has start and end column information. - * - * For column information enable the startFilePos and endFilePos in the lexer options. - * - * @return bool + * {@inheritdoc} */ - public function hasColumnInfo() : bool + public function apply($element) { - return isset($this->attributes['startFilePos'], $this->attributes['endFilePos']); + $newElement = clone $element; + $copy = $this->createCopyClosure(); + return $copy($newElement); } - /** - * Gets the start column (1-based) into the line where the error started. - * - * @param string $code Source code of the file - * @return int - */ - public function getStartColumn(string $code) : int + private function createCopyClosure() { - if (!$this->hasColumnInfo()) { - throw new \RuntimeException('Error does not have column information'); - } - return $this->toColumn($code, $this->attributes['startFilePos']); + $copier = $this->copier; + $copy = function (SplDoublyLinkedList $list) use ($copier) { + // Replace each element in the list with a deep copy of itself + for ($i = 1; $i <= $list->count(); $i++) { + $copy = $copier->recursiveCopy($list->shift()); + $list->push($copy); + } + return $list; + }; + return Closure::bind($copy, null, DeepCopy::class); } +} +hasColumnInfo()) { - throw new \RuntimeException('Error does not have column information'); - } - return $this->toColumn($code, $this->attributes['endFilePos']); + $this->copier = $copier; } /** - * Formats message including line and column information. - * - * @param string $code Source code associated with the error, for calculation of the columns - * - * @return string Formatted message + * {@inheritdoc} */ - public function getMessageWithColumnInfo(string $code) : string + public function apply($arrayObject) { - return \sprintf('%s from %d:%d to %d:%d', $this->getRawMessage(), $this->getStartLine(), $this->getStartColumn($code), $this->getEndLine(), $this->getEndColumn($code)); + $clone = clone $arrayObject; + foreach ($arrayObject->getArrayCopy() as $k => $v) { + $clone->offsetSet($k, $this->copier->copy($v)); + } + return $clone; } +} + \strlen($code)) { - throw new \RuntimeException('Invalid position information'); - } - $lineStartPos = \strrpos($code, "\n", $pos - \strlen($code)); - if (\false === $lineStartPos) { - $lineStartPos = -1; + $copy = new DateInterval('P0D'); + foreach ($element as $propertyName => $propertyValue) { + $copy->{$propertyName} = $propertyValue; } - return $pos - $lineStartPos; + return $copy; } +} +message = $this->rawMessage; - if (-1 === $this->getStartLine()) { - $this->message .= ' on unknown line'; - } else { - $this->message .= ' on line ' . $this->getStartLine(); - } + return clone $element; } } errors[] = $error; - } - /** - * Get collected errors. - * - * @return Error[] - */ - public function getErrors() : array - { - return $this->errors; - } /** - * Check whether there are any errors. - * - * @return bool + * Returns the Fqsen of the element. */ - public function hasErrors() : bool - { - return !empty($this->errors); - } + public function getFqsen(): Fqsen; /** - * Reset/clear collected errors. + * Returns the name of the element. */ - public function clearErrors() - { - $this->errors = []; - } + public function getName(): string; } type = $type; - $this->old = $old; - $this->new = $new; - } + /** + * Creates a project from the set of files. + * + * @param File[] $files + */ + public function create(string $name, array $files): Project; } +The MIT License (MIT) + +Copyright (c) 2015 phpDocumentor + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + fqsen = $fqsen; + if (isset($matches[2])) { + $this->name = $matches[2]; + } else { + $matches = explode('\\', $fqsen); + $name = end($matches); + assert(is_string($name)); + $this->name = trim($name, '()'); + } + } + /** + * converts this class to string. + */ + public function __toString(): string + { + return $this->fqsen; + } + /** + * Returns the name of the element without path. + */ + public function getName(): string + { + return $this->name; + } +} +lineNumber = $lineNumber; + $this->columnNumber = $columnNumber; + } + /** + * Returns the line number that is covered by this location. + */ + public function getLineNumber(): int + { + return $this->lineNumber; + } + /** + * Returns the column number (character position on a line) for this location object. + */ + public function getColumnNumber(): int + { + return $this->columnNumber; + } +} +MIT License + +Copyright (c) 2016 OndÅ™ej Mirtes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. '\'&\'', self::TOKEN_UNION => '\'|\'', self::TOKEN_INTERSECTION => '\'&\'', self::TOKEN_NULLABLE => '\'?\'', self::TOKEN_NEGATED => '\'!\'', self::TOKEN_OPEN_PARENTHESES => '\'(\'', self::TOKEN_CLOSE_PARENTHESES => '\')\'', self::TOKEN_OPEN_ANGLE_BRACKET => '\'<\'', self::TOKEN_CLOSE_ANGLE_BRACKET => '\'>\'', self::TOKEN_OPEN_SQUARE_BRACKET => '\'[\'', self::TOKEN_CLOSE_SQUARE_BRACKET => '\']\'', self::TOKEN_OPEN_CURLY_BRACKET => '\'{\'', self::TOKEN_CLOSE_CURLY_BRACKET => '\'}\'', self::TOKEN_COMMA => '\',\'', self::TOKEN_COLON => '\':\'', self::TOKEN_VARIADIC => '\'...\'', self::TOKEN_DOUBLE_COLON => '\'::\'', self::TOKEN_DOUBLE_ARROW => '\'=>\'', self::TOKEN_ARROW => '\'->\'', self::TOKEN_EQUAL => '\'=\'', self::TOKEN_OPEN_PHPDOC => '\'/**\'', self::TOKEN_CLOSE_PHPDOC => '\'*/\'', self::TOKEN_PHPDOC_TAG => 'TOKEN_PHPDOC_TAG', self::TOKEN_DOCTRINE_TAG => 'TOKEN_DOCTRINE_TAG', self::TOKEN_PHPDOC_EOL => 'TOKEN_PHPDOC_EOL', self::TOKEN_FLOAT => 'TOKEN_FLOAT', self::TOKEN_INTEGER => 'TOKEN_INTEGER', self::TOKEN_SINGLE_QUOTED_STRING => 'TOKEN_SINGLE_QUOTED_STRING', self::TOKEN_DOUBLE_QUOTED_STRING => 'TOKEN_DOUBLE_QUOTED_STRING', self::TOKEN_DOCTRINE_ANNOTATION_STRING => 'TOKEN_DOCTRINE_ANNOTATION_STRING', self::TOKEN_IDENTIFIER => 'type', self::TOKEN_THIS_VARIABLE => '\'$this\'', self::TOKEN_VARIABLE => 'variable', self::TOKEN_HORIZONTAL_WS => 'TOKEN_HORIZONTAL_WS', self::TOKEN_OTHER => 'TOKEN_OTHER', self::TOKEN_END => 'TOKEN_END', self::TOKEN_WILDCARD => '*']; + public const VALUE_OFFSET = 0; + public const TYPE_OFFSET = 1; + public const LINE_OFFSET = 2; + /** @var bool */ + private $parseDoctrineAnnotations; + /** @var string|null */ + private $regexp; + public function __construct(bool $parseDoctrineAnnotations = \false) + { + $this->parseDoctrineAnnotations = $parseDoctrineAnnotations; + } + /** + * @return list + */ + public function tokenize(string $s): array + { + if ($this->regexp === null) { + $this->regexp = $this->generateRegexp(); + } + preg_match_all($this->regexp, $s, $matches, PREG_SET_ORDER); + $tokens = []; + $line = 1; + foreach ($matches as $match) { + $type = (int) $match['MARK']; + $tokens[] = [$match[0], $type, $line]; + if ($type !== self::TOKEN_PHPDOC_EOL) { + continue; + } + $line++; + } + $tokens[] = ['', self::TOKEN_END, $line]; + return $tokens; + } + private function generateRegexp(): string + { + $patterns = [ + self::TOKEN_HORIZONTAL_WS => '[\x09\x20]++', + self::TOKEN_IDENTIFIER => '(?:[\\\\]?+[a-z_\x80-\xFF][0-9a-z_\x80-\xFF-]*+)++', + self::TOKEN_THIS_VARIABLE => '\$this(?![0-9a-z_\x80-\xFF])', + self::TOKEN_VARIABLE => '\$[a-z_\x80-\xFF][0-9a-z_\x80-\xFF]*+', + // '&' followed by TOKEN_VARIADIC, TOKEN_VARIABLE, TOKEN_EQUAL, TOKEN_EQUAL or TOKEN_CLOSE_PARENTHESES + self::TOKEN_REFERENCE => '&(?=\s*+(?:[.,=)]|(?:\$(?!this(?![0-9a-z_\x80-\xFF])))))', + self::TOKEN_UNION => '\|', + self::TOKEN_INTERSECTION => '&', + self::TOKEN_NULLABLE => '\?', + self::TOKEN_NEGATED => '!', + self::TOKEN_OPEN_PARENTHESES => '\(', + self::TOKEN_CLOSE_PARENTHESES => '\)', + self::TOKEN_OPEN_ANGLE_BRACKET => '<', + self::TOKEN_CLOSE_ANGLE_BRACKET => '>', + self::TOKEN_OPEN_SQUARE_BRACKET => '\[', + self::TOKEN_CLOSE_SQUARE_BRACKET => '\]', + self::TOKEN_OPEN_CURLY_BRACKET => '\{', + self::TOKEN_CLOSE_CURLY_BRACKET => '\}', + self::TOKEN_COMMA => ',', + self::TOKEN_VARIADIC => '\.\.\.', + self::TOKEN_DOUBLE_COLON => '::', + self::TOKEN_DOUBLE_ARROW => '=>', + self::TOKEN_ARROW => '->', + self::TOKEN_EQUAL => '=', + self::TOKEN_COLON => ':', + self::TOKEN_OPEN_PHPDOC => '/\*\*(?=\s)\x20?+', + self::TOKEN_CLOSE_PHPDOC => '\*/', + self::TOKEN_PHPDOC_TAG => '@(?:[a-z][a-z0-9-\\\\]+:)?[a-z][a-z0-9-\\\\]*+', + self::TOKEN_PHPDOC_EOL => '\r?+\n[\x09\x20]*+(?:\*(?!/)\x20?+)?', + self::TOKEN_FLOAT => '[+\-]?(?:(?:[0-9]++(_[0-9]++)*\.[0-9]*+(_[0-9]++)*(?:e[+\-]?[0-9]++(_[0-9]++)*)?)|(?:[0-9]*+(_[0-9]++)*\.[0-9]++(_[0-9]++)*(?:e[+\-]?[0-9]++(_[0-9]++)*)?)|(?:[0-9]++(_[0-9]++)*e[+\-]?[0-9]++(_[0-9]++)*))', + self::TOKEN_INTEGER => '[+\-]?(?:(?:0b[0-1]++(_[0-1]++)*)|(?:0o[0-7]++(_[0-7]++)*)|(?:0x[0-9a-f]++(_[0-9a-f]++)*)|(?:[0-9]++(_[0-9]++)*))', + self::TOKEN_SINGLE_QUOTED_STRING => '\'(?:\\\\[^\r\n]|[^\'\r\n\\\\])*+\'', + self::TOKEN_DOUBLE_QUOTED_STRING => '"(?:\\\\[^\r\n]|[^"\r\n\\\\])*+"', + self::TOKEN_WILDCARD => '\*', + ]; + if ($this->parseDoctrineAnnotations) { + $patterns[self::TOKEN_DOCTRINE_TAG] = '@[a-z_\\\\][a-z0-9_\:\\\\]*[a-z_][a-z0-9_]*'; + $patterns[self::TOKEN_DOCTRINE_ANNOTATION_STRING] = '"(?:""|[^"])*+"'; + } + // anything but TOKEN_CLOSE_PHPDOC or TOKEN_HORIZONTAL_WS or TOKEN_EOL + $patterns[self::TOKEN_OTHER] = '(?:(?!\*/)[^\s])++'; + foreach ($patterns as $type => &$pattern) { + $pattern = '(?:' . $pattern . ')(*MARK:' . $type . ')'; + } + return '~' . implode('|', $patterns) . '~Asi'; + } +} +type = $type; + $this->old = $old; + $this->new = $new; + } +} +calculateTrace($old, $new); + [$trace, $x, $y] = $this->calculateTrace($old, $new); return $this->extractDiff($trace, $x, $y, $old, $new); } /** @@ -6508,19 +9590,24 @@ class Differ * If a sequence of remove operations is followed by the same number of add operations, these * will be coalesced into replace operations. * - * @param array $old Original array - * @param array $new New array + * @param T[] $old Original array + * @param T[] $new New array * * @return DiffElem[] Diff (edit script), including replace operations */ - public function diffWithReplacements(array $old, array $new) + public function diffWithReplacements(array $old, array $new): array { return $this->coalesceReplacements($this->diff($old, $new)); } - private function calculateTrace(array $a, array $b) + /** + * @param T[] $old + * @param T[] $new + * @return array{array>, int, int} + */ + private function calculateTrace(array $old, array $new): array { - $n = \count($a); - $m = \count($b); + $n = count($old); + $m = count($new); $max = $n + $m; $v = [1 => 0]; $trace = []; @@ -6533,7 +9620,7 @@ class Differ $x = $v[$k - 1] + 1; } $y = $x - $k; - while ($x < $n && $y < $m && ($this->isEqual)($a[$x], $b[$y])) { + while ($x < $n && $y < $m && ($this->isEqual)($old[$x], $new[$y])) { $x++; $y++; } @@ -6543,12 +9630,18 @@ class Differ } } } - throw new \Exception('Should not happen'); + throw new Exception('Should not happen'); } - private function extractDiff(array $trace, int $x, int $y, array $a, array $b) + /** + * @param array> $trace + * @param T[] $old + * @param T[] $new + * @return DiffElem[] + */ + private function extractDiff(array $trace, int $x, int $y, array $old, array $new): array { $result = []; - for ($d = \count($trace) - 1; $d >= 0; $d--) { + for ($d = count($trace) - 1; $d >= 0; $d--) { $v = $trace[$d]; $k = $x - $y; if ($k === -$d || $k !== $d && $v[$k - 1] < $v[$k + 1]) { @@ -6559,7 +9652,7 @@ class Differ $prevX = $v[$prevK]; $prevY = $prevX - $prevK; while ($x > $prevX && $y > $prevY) { - $result[] = new DiffElem(DiffElem::TYPE_KEEP, $a[$x - 1], $b[$y - 1]); + $result[] = new DiffElem(DiffElem::TYPE_KEEP, $old[$x - 1], $new[$y - 1]); $x--; $y--; } @@ -6567,15 +9660,15 @@ class Differ break; } while ($x > $prevX) { - $result[] = new DiffElem(DiffElem::TYPE_REMOVE, $a[$x - 1], null); + $result[] = new DiffElem(DiffElem::TYPE_REMOVE, $old[$x - 1], null); $x--; } while ($y > $prevY) { - $result[] = new DiffElem(DiffElem::TYPE_ADD, null, $b[$y - 1]); + $result[] = new DiffElem(DiffElem::TYPE_ADD, null, $new[$y - 1]); $y--; } } - return \array_reverse($result); + return array_reverse($result); } /** * Coalesce equal-length sequences of remove+add into a replace operation. @@ -6583,10 +9676,10 @@ class Differ * @param DiffElem[] $diff * @return DiffElem[] */ - private function coalesceReplacements(array $diff) + private function coalesceReplacements(array $diff): array { $newDiff = []; - $c = \count($diff); + $c = count($diff); for ($i = 0; $i < $c; $i++) { $diffType = $diff[$i]->type; if ($diffType !== DiffElem::TYPE_REMOVE) { @@ -6619,45425 +9712,46260 @@ class Differ attrGroups = $attrGroups; - $this->args = $args; - $this->extends = $extends; - $this->implements = $implements; - $this->stmts = $stmts; - } - public static function fromNewNode(Expr\New_ $newNode) - { - $class = $newNode->class; - \assert($class instanceof Node\Stmt\Class_); - // We don't assert that $class->name is null here, to allow consumers to assign unique names - // to anonymous classes for their own purposes. We simplify ignore the name here. - return new self($class->attrGroups, $newNode->args, $class->extends, $class->implements, $class->stmts, $newNode->getAttributes()); - } - public function getType() : string - { - return 'Expr_PrintableNewAnonClass'; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'args', 'extends', 'implements', 'stmts']; - } -} -tokens = $tokens; - $this->indentMap = $this->calcIndentMap(); - } - /** - * Whether the given position is immediately surrounded by parenthesis. - * - * @param int $startPos Start position - * @param int $endPos End position - * - * @return bool - */ - public function haveParens(int $startPos, int $endPos) : bool - { - return $this->haveTokenImmediatelyBefore($startPos, '(') && $this->haveTokenImmediatelyAfter($endPos, ')'); - } + /** @var Differ */ + private $differ; /** - * Whether the given position is immediately surrounded by braces. - * - * @param int $startPos Start position - * @param int $endPos End position + * Map From "{$class}->{$subNode}" to string that should be inserted + * between elements of this list subnode * - * @return bool + * @var array */ - public function haveBraces(int $startPos, int $endPos) : bool - { - return ($this->haveTokenImmediatelyBefore($startPos, '{') || $this->haveTokenImmediatelyBefore($startPos, \T_CURLY_OPEN)) && $this->haveTokenImmediatelyAfter($endPos, '}'); - } + private $listInsertionMap = [PhpDocNode::class . '->children' => "\n * ", UnionTypeNode::class . '->types' => '|', IntersectionTypeNode::class . '->types' => '&', ArrayShapeNode::class . '->items' => ', ', ObjectShapeNode::class . '->items' => ', ', CallableTypeNode::class . '->parameters' => ', ', CallableTypeNode::class . '->templateTypes' => ', ', GenericTypeNode::class . '->genericTypes' => ', ', ConstExprArrayNode::class . '->items' => ', ', MethodTagValueNode::class . '->parameters' => ', ', DoctrineArray::class . '->items' => ', ', DoctrineAnnotation::class . '->arguments' => ', ']; /** - * Check whether the position is directly preceded by a certain token type. - * - * During this check whitespace and comments are skipped. + * [$find, $extraLeft, $extraRight] * - * @param int $pos Position before which the token should occur - * @param int|string $expectedTokenType Token to check for - * - * @return bool Whether the expected token was found + * @var array */ - public function haveTokenImmediatelyBefore(int $pos, $expectedTokenType) : bool + private $emptyListInsertionMap = [CallableTypeNode::class . '->parameters' => ['(', '', ''], ArrayShapeNode::class . '->items' => ['{', '', ''], ObjectShapeNode::class . '->items' => ['{', '', ''], DoctrineArray::class . '->items' => ['{', '', ''], DoctrineAnnotation::class . '->arguments' => ['(', '', '']]; + /** @var array>> */ + private $parenthesesMap = [CallableTypeNode::class . '->returnType' => [CallableTypeNode::class, UnionTypeNode::class, IntersectionTypeNode::class], ArrayTypeNode::class . '->type' => [CallableTypeNode::class, UnionTypeNode::class, IntersectionTypeNode::class, ConstTypeNode::class, NullableTypeNode::class], OffsetAccessTypeNode::class . '->type' => [CallableTypeNode::class, UnionTypeNode::class, IntersectionTypeNode::class, NullableTypeNode::class]]; + /** @var array>> */ + private $parenthesesListMap = [IntersectionTypeNode::class . '->types' => [IntersectionTypeNode::class, UnionTypeNode::class, NullableTypeNode::class], UnionTypeNode::class . '->types' => [IntersectionTypeNode::class, UnionTypeNode::class, NullableTypeNode::class]]; + public function printFormatPreserving(PhpDocNode $node, PhpDocNode $originalNode, TokenIterator $originalTokens): string { - $tokens = $this->tokens; - $pos--; - for (; $pos >= 0; $pos--) { - $tokenType = $tokens[$pos][0]; - if ($tokenType === $expectedTokenType) { - return \true; - } - if ($tokenType !== \T_WHITESPACE && $tokenType !== \T_COMMENT && $tokenType !== \T_DOC_COMMENT) { - break; + $this->differ = new Differ(static function ($a, $b) { + if ($a instanceof Node && $b instanceof Node) { + return $a === $b->getAttribute(Attribute::ORIGINAL_NODE); } + return \false; + }); + $tokenIndex = 0; + $result = $this->printArrayFormatPreserving($node->children, $originalNode->children, $originalTokens, $tokenIndex, PhpDocNode::class, 'children'); + if ($result !== null) { + return $result . $originalTokens->getContentBetween($tokenIndex, $originalTokens->getTokenCount()); + } + return $this->print($node); + } + public function print(Node $node): string + { + if ($node instanceof PhpDocNode) { + return "/**\n *" . implode("\n *", array_map(function (PhpDocChildNode $child): string { + $s = $this->print($child); + return $s === '' ? '' : ' ' . $s; + }, $node->children)) . "\n */"; + } + if ($node instanceof PhpDocTextNode) { + return $node->text; + } + if ($node instanceof PhpDocTagNode) { + if ($node->value instanceof DoctrineTagValueNode) { + return $this->print($node->value); + } + return trim(sprintf('%s %s', $node->name, $this->print($node->value))); + } + if ($node instanceof PhpDocTagValueNode) { + return $this->printTagValue($node); + } + if ($node instanceof TypeNode) { + return $this->printType($node); + } + if ($node instanceof ConstExprNode) { + return $this->printConstExpr($node); + } + if ($node instanceof MethodTagValueParameterNode) { + $type = $node->type !== null ? $this->print($node->type) . ' ' : ''; + $isReference = $node->isReference ? '&' : ''; + $isVariadic = $node->isVariadic ? '...' : ''; + $default = $node->defaultValue !== null ? ' = ' . $this->print($node->defaultValue) : ''; + return "{$type}{$isReference}{$isVariadic}{$node->parameterName}{$default}"; + } + if ($node instanceof CallableTypeParameterNode) { + $type = $this->print($node->type) . ' '; + $isReference = $node->isReference ? '&' : ''; + $isVariadic = $node->isVariadic ? '...' : ''; + $isOptional = $node->isOptional ? '=' : ''; + return trim("{$type}{$isReference}{$isVariadic}{$node->parameterName}") . $isOptional; + } + if ($node instanceof ArrayShapeUnsealedTypeNode) { + if ($node->keyType !== null) { + return sprintf('<%s, %s>', $this->printType($node->keyType), $this->printType($node->valueType)); + } + return sprintf('<%s>', $this->printType($node->valueType)); + } + if ($node instanceof DoctrineAnnotation) { + return (string) $node; + } + if ($node instanceof DoctrineArgument) { + return (string) $node; + } + if ($node instanceof DoctrineArray) { + return (string) $node; + } + if ($node instanceof DoctrineArrayItem) { + return (string) $node; + } + throw new LogicException(sprintf('Unknown node type %s', get_class($node))); + } + private function printTagValue(PhpDocTagValueNode $node): string + { + // only nodes that contain another node are handled here + // the rest falls back on (string) $node + if ($node instanceof AssertTagMethodValueNode) { + $isNegated = $node->isNegated ? '!' : ''; + $isEquality = $node->isEquality ? '=' : ''; + $type = $this->printType($node->type); + return trim("{$isNegated}{$isEquality}{$type} {$node->parameter}->{$node->method}() {$node->description}"); } - return \false; - } - /** - * Check whether the position is directly followed by a certain token type. - * - * During this check whitespace and comments are skipped. - * - * @param int $pos Position after which the token should occur - * @param int|string $expectedTokenType Token to check for - * - * @return bool Whether the expected token was found - */ - public function haveTokenImmediatelyAfter(int $pos, $expectedTokenType) : bool - { - $tokens = $this->tokens; - $pos++; - for (; $pos < \count($tokens); $pos++) { - $tokenType = $tokens[$pos][0]; - if ($tokenType === $expectedTokenType) { - return \true; + if ($node instanceof AssertTagPropertyValueNode) { + $isNegated = $node->isNegated ? '!' : ''; + $isEquality = $node->isEquality ? '=' : ''; + $type = $this->printType($node->type); + return trim("{$isNegated}{$isEquality}{$type} {$node->parameter}->{$node->property} {$node->description}"); + } + if ($node instanceof AssertTagValueNode) { + $isNegated = $node->isNegated ? '!' : ''; + $isEquality = $node->isEquality ? '=' : ''; + $type = $this->printType($node->type); + return trim("{$isNegated}{$isEquality}{$type} {$node->parameter} {$node->description}"); + } + if ($node instanceof ExtendsTagValueNode || $node instanceof ImplementsTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof MethodTagValueNode) { + $static = $node->isStatic ? 'static ' : ''; + $returnType = $node->returnType !== null ? $this->printType($node->returnType) . ' ' : ''; + $parameters = implode(', ', array_map(function (MethodTagValueParameterNode $parameter): string { + return $this->print($parameter); + }, $node->parameters)); + $description = $node->description !== '' ? " {$node->description}" : ''; + $templateTypes = count($node->templateTypes) > 0 ? '<' . implode(', ', array_map(function (TemplateTagValueNode $templateTag): string { + return $this->print($templateTag); + }, $node->templateTypes)) . '>' : ''; + return "{$static}{$returnType}{$node->methodName}{$templateTypes}({$parameters}){$description}"; + } + if ($node instanceof MixinTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof RequireExtendsTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof RequireImplementsTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof ParamOutTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->parameterName} {$node->description}"); + } + if ($node instanceof ParamTagValueNode) { + $reference = $node->isReference ? '&' : ''; + $variadic = $node->isVariadic ? '...' : ''; + $type = $this->printType($node->type); + return trim("{$type} {$reference}{$variadic}{$node->parameterName} {$node->description}"); + } + if ($node instanceof ParamImmediatelyInvokedCallableTagValueNode) { + return trim("{$node->parameterName} {$node->description}"); + } + if ($node instanceof ParamLaterInvokedCallableTagValueNode) { + return trim("{$node->parameterName} {$node->description}"); + } + if ($node instanceof ParamClosureThisTagValueNode) { + return trim("{$node->type} {$node->parameterName} {$node->description}"); + } + if ($node instanceof PropertyTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->propertyName} {$node->description}"); + } + if ($node instanceof ReturnTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof SelfOutTagValueNode) { + $type = $this->printType($node->type); + return trim($type . ' ' . $node->description); + } + if ($node instanceof TemplateTagValueNode) { + $bound = $node->bound !== null ? ' of ' . $this->printType($node->bound) : ''; + $default = $node->default !== null ? ' = ' . $this->printType($node->default) : ''; + return trim("{$node->name}{$bound}{$default} {$node->description}"); + } + if ($node instanceof ThrowsTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof TypeAliasImportTagValueNode) { + return trim("{$node->importedAlias} from " . $this->printType($node->importedFrom) . ($node->importedAs !== null ? " as {$node->importedAs}" : '')); + } + if ($node instanceof TypeAliasTagValueNode) { + $type = $this->printType($node->type); + return trim("{$node->alias} {$type}"); + } + if ($node instanceof UsesTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} {$node->description}"); + } + if ($node instanceof VarTagValueNode) { + $type = $this->printType($node->type); + return trim("{$type} " . trim("{$node->variableName} {$node->description}")); + } + return (string) $node; + } + private function printType(TypeNode $node): string + { + if ($node instanceof ArrayShapeNode) { + $items = array_map(function (ArrayShapeItemNode $item): string { + return $this->printType($item); + }, $node->items); + if (!$node->sealed) { + $items[] = '...' . ($node->unsealedType === null ? '' : $this->print($node->unsealedType)); } - if ($tokenType !== \T_WHITESPACE && $tokenType !== \T_COMMENT && $tokenType !== \T_DOC_COMMENT) { - break; + return $node->kind . '{' . implode(', ', $items) . '}'; + } + if ($node instanceof ArrayShapeItemNode) { + if ($node->keyName !== null) { + return sprintf('%s%s: %s', $this->print($node->keyName), $node->optional ? '?' : '', $this->printType($node->valueType)); } + return $this->printType($node->valueType); } - return \false; - } - public function skipLeft(int $pos, $skipTokenType) - { - $tokens = $this->tokens; - $pos = $this->skipLeftWhitespace($pos); - if ($skipTokenType === \T_WHITESPACE) { - return $pos; + if ($node instanceof ArrayTypeNode) { + return $this->printOffsetAccessType($node->type) . '[]'; + } + if ($node instanceof CallableTypeNode) { + if ($node->returnType instanceof CallableTypeNode || $node->returnType instanceof UnionTypeNode || $node->returnType instanceof IntersectionTypeNode) { + $returnType = $this->wrapInParentheses($node->returnType); + } else { + $returnType = $this->printType($node->returnType); + } + $template = $node->templateTypes !== [] ? '<' . implode(', ', array_map(function (TemplateTagValueNode $templateNode): string { + return $this->print($templateNode); + }, $node->templateTypes)) . '>' : ''; + $parameters = implode(', ', array_map(function (CallableTypeParameterNode $parameterNode): string { + return $this->print($parameterNode); + }, $node->parameters)); + return "{$node->identifier}{$template}({$parameters}): {$returnType}"; + } + if ($node instanceof ConditionalTypeForParameterNode) { + return sprintf('(%s %s %s ? %s : %s)', $node->parameterName, $node->negated ? 'is not' : 'is', $this->printType($node->targetType), $this->printType($node->if), $this->printType($node->else)); + } + if ($node instanceof ConditionalTypeNode) { + return sprintf('(%s %s %s ? %s : %s)', $this->printType($node->subjectType), $node->negated ? 'is not' : 'is', $this->printType($node->targetType), $this->printType($node->if), $this->printType($node->else)); + } + if ($node instanceof ConstTypeNode) { + return $this->printConstExpr($node->constExpr); + } + if ($node instanceof GenericTypeNode) { + $genericTypes = []; + foreach ($node->genericTypes as $index => $type) { + $variance = $node->variances[$index] ?? GenericTypeNode::VARIANCE_INVARIANT; + if ($variance === GenericTypeNode::VARIANCE_INVARIANT) { + $genericTypes[] = $this->printType($type); + } elseif ($variance === GenericTypeNode::VARIANCE_BIVARIANT) { + $genericTypes[] = '*'; + } else { + $genericTypes[] = sprintf('%s %s', $variance, $this->print($type)); + } + } + return $node->type . '<' . implode(', ', $genericTypes) . '>'; } - if ($tokens[$pos][0] !== $skipTokenType) { - // Shouldn't happen. The skip token MUST be there - throw new \Exception('Encountered unexpected token'); + if ($node instanceof IdentifierTypeNode) { + return $node->name; } - $pos--; - return $this->skipLeftWhitespace($pos); - } - public function skipRight(int $pos, $skipTokenType) - { - $tokens = $this->tokens; - $pos = $this->skipRightWhitespace($pos); - if ($skipTokenType === \T_WHITESPACE) { - return $pos; + if ($node instanceof IntersectionTypeNode || $node instanceof UnionTypeNode) { + $items = []; + foreach ($node->types as $type) { + if ($type instanceof IntersectionTypeNode || $type instanceof UnionTypeNode || $type instanceof NullableTypeNode) { + $items[] = $this->wrapInParentheses($type); + continue; + } + $items[] = $this->printType($type); + } + return implode($node instanceof IntersectionTypeNode ? '&' : '|', $items); } - if ($tokens[$pos][0] !== $skipTokenType) { - // Shouldn't happen. The skip token MUST be there - throw new \Exception('Encountered unexpected token'); + if ($node instanceof InvalidTypeNode) { + return (string) $node; } - $pos++; - return $this->skipRightWhitespace($pos); - } - /** - * Return first non-whitespace token position smaller or equal to passed position. - * - * @param int $pos Token position - * @return int Non-whitespace token position - */ - public function skipLeftWhitespace(int $pos) - { - $tokens = $this->tokens; - for (; $pos >= 0; $pos--) { - $type = $tokens[$pos][0]; - if ($type !== \T_WHITESPACE && $type !== \T_COMMENT && $type !== \T_DOC_COMMENT) { - break; + if ($node instanceof NullableTypeNode) { + if ($node->type instanceof IntersectionTypeNode || $node->type instanceof UnionTypeNode) { + return '?(' . $this->printType($node->type) . ')'; } + return '?' . $this->printType($node->type); } - return $pos; - } - /** - * Return first non-whitespace position greater or equal to passed position. - * - * @param int $pos Token position - * @return int Non-whitespace token position - */ - public function skipRightWhitespace(int $pos) - { - $tokens = $this->tokens; - for ($count = \count($tokens); $pos < $count; $pos++) { - $type = $tokens[$pos][0]; - if ($type !== \T_WHITESPACE && $type !== \T_COMMENT && $type !== \T_DOC_COMMENT) { - break; + if ($node instanceof ObjectShapeNode) { + $items = array_map(function (ObjectShapeItemNode $item): string { + return $this->printType($item); + }, $node->items); + return 'object{' . implode(', ', $items) . '}'; + } + if ($node instanceof ObjectShapeItemNode) { + if ($node->keyName !== null) { + return sprintf('%s%s: %s', $this->print($node->keyName), $node->optional ? '?' : '', $this->printType($node->valueType)); } + return $this->printType($node->valueType); } - return $pos; + if ($node instanceof OffsetAccessTypeNode) { + return $this->printOffsetAccessType($node->type) . '[' . $this->printType($node->offset) . ']'; + } + if ($node instanceof ThisTypeNode) { + return (string) $node; + } + throw new LogicException(sprintf('Unknown node type %s', get_class($node))); } - public function findRight(int $pos, $findTokenType) + private function wrapInParentheses(TypeNode $node): string { - $tokens = $this->tokens; - for ($count = \count($tokens); $pos < $count; $pos++) { - $type = $tokens[$pos][0]; - if ($type === $findTokenType) { - return $pos; - } - } - return -1; + return '(' . $this->printType($node) . ')'; } - /** - * Whether the given position range contains a certain token type. - * - * @param int $startPos Starting position (inclusive) - * @param int $endPos Ending position (exclusive) - * @param int|string $tokenType Token type to look for - * @return bool Whether the token occurs in the given range - */ - public function haveTokenInRange(int $startPos, int $endPos, $tokenType) + private function printOffsetAccessType(TypeNode $type): string { - $tokens = $this->tokens; - for ($pos = $startPos; $pos < $endPos; $pos++) { - if ($tokens[$pos][0] === $tokenType) { - return \true; - } + if ($type instanceof CallableTypeNode || $type instanceof UnionTypeNode || $type instanceof IntersectionTypeNode || $type instanceof NullableTypeNode) { + return $this->wrapInParentheses($type); } - return \false; + return $this->printType($type); } - public function haveBracesInRange(int $startPos, int $endPos) + private function printConstExpr(ConstExprNode $node): string { - return $this->haveTokenInRange($startPos, $endPos, '{') || $this->haveTokenInRange($startPos, $endPos, \T_CURLY_OPEN) || $this->haveTokenInRange($startPos, $endPos, '}'); + // this is fine - ConstExprNode classes do not contain nodes that need smart printer logic + return (string) $node; } /** - * Get indentation before token position. - * - * @param int $pos Token position - * - * @return int Indentation depth (in spaces) - */ - public function getIndentationBefore(int $pos) : int - { - return $this->indentMap[$pos]; - } - /** - * Get the code corresponding to a token offset range, optionally adjusted for indentation. - * - * @param int $from Token start position (inclusive) - * @param int $to Token end position (exclusive) - * @param int $indent By how much the code should be indented (can be negative as well) - * - * @return string Code corresponding to token range, adjusted for indentation + * @param Node[] $nodes + * @param Node[] $originalNodes */ - public function getTokenCode(int $from, int $to, int $indent) : string + private function printArrayFormatPreserving(array $nodes, array $originalNodes, TokenIterator $originalTokens, int &$tokenIndex, string $parentNodeClass, string $subNodeName): ?string { - $tokens = $this->tokens; + $diff = $this->differ->diffWithReplacements($originalNodes, $nodes); + $mapKey = $parentNodeClass . '->' . $subNodeName; + $insertStr = $this->listInsertionMap[$mapKey] ?? null; $result = ''; - for ($pos = $from; $pos < $to; $pos++) { - $token = $tokens[$pos]; - if (\is_array($token)) { - $type = $token[0]; - $content = $token[1]; - if ($type === \T_CONSTANT_ENCAPSED_STRING || $type === \T_ENCAPSED_AND_WHITESPACE) { - $result .= $content; + $beforeFirstKeepOrReplace = \true; + $delayedAdd = []; + $insertNewline = \false; + [$isMultiline, $beforeAsteriskIndent, $afterAsteriskIndent] = $this->isMultiline($tokenIndex, $originalNodes, $originalTokens); + if ($insertStr === "\n * ") { + $insertStr = sprintf('%s%s*%s', $originalTokens->getDetectedNewline() ?? "\n", $beforeAsteriskIndent, $afterAsteriskIndent); + } + foreach ($diff as $i => $diffElem) { + $diffType = $diffElem->type; + $newNode = $diffElem->new; + $originalNode = $diffElem->old; + if ($diffType === DiffElem::TYPE_KEEP || $diffType === DiffElem::TYPE_REPLACE) { + $beforeFirstKeepOrReplace = \false; + if (!$newNode instanceof Node || !$originalNode instanceof Node) { + return null; + } + $itemStartPos = $originalNode->getAttribute(Attribute::START_INDEX); + $itemEndPos = $originalNode->getAttribute(Attribute::END_INDEX); + if ($itemStartPos < 0 || $itemEndPos < 0 || $itemStartPos < $tokenIndex) { + throw new LogicException(); + } + $result .= $originalTokens->getContentBetween($tokenIndex, $itemStartPos); + if (count($delayedAdd) > 0) { + foreach ($delayedAdd as $delayedAddNode) { + $parenthesesNeeded = isset($this->parenthesesListMap[$mapKey]) && in_array(get_class($delayedAddNode), $this->parenthesesListMap[$mapKey], \true); + if ($parenthesesNeeded) { + $result .= '('; + } + $result .= $this->printNodeFormatPreserving($delayedAddNode, $originalTokens); + if ($parenthesesNeeded) { + $result .= ')'; + } + if ($insertNewline) { + $result .= $insertStr . sprintf('%s%s*%s', $originalTokens->getDetectedNewline() ?? "\n", $beforeAsteriskIndent, $afterAsteriskIndent); + } else { + $result .= $insertStr; + } + } + $delayedAdd = []; + } + $parenthesesNeeded = isset($this->parenthesesListMap[$mapKey]) && in_array(get_class($newNode), $this->parenthesesListMap[$mapKey], \true) && !in_array(get_class($originalNode), $this->parenthesesListMap[$mapKey], \true); + $addParentheses = $parenthesesNeeded && !$originalTokens->hasParentheses($itemStartPos, $itemEndPos); + if ($addParentheses) { + $result .= '('; + } + $result .= $this->printNodeFormatPreserving($newNode, $originalTokens); + if ($addParentheses) { + $result .= ')'; + } + $tokenIndex = $itemEndPos + 1; + } elseif ($diffType === DiffElem::TYPE_ADD) { + if ($insertStr === null) { + return null; + } + if (!$newNode instanceof Node) { + return null; + } + if ($insertStr === ', ' && $isMultiline) { + $insertStr = ','; + $insertNewline = \true; + } + if ($beforeFirstKeepOrReplace) { + // Will be inserted at the next "replace" or "keep" element + $delayedAdd[] = $newNode; + continue; + } + $itemEndPos = $tokenIndex - 1; + if ($insertNewline) { + $result .= $insertStr . sprintf('%s%s*%s', $originalTokens->getDetectedNewline() ?? "\n", $beforeAsteriskIndent, $afterAsteriskIndent); } else { - // TODO Handle non-space indentation - if ($indent < 0) { - $result .= \str_replace("\n" . \str_repeat(" ", -$indent), "\n", $content); - } elseif ($indent > 0) { - $result .= \str_replace("\n", "\n" . \str_repeat(" ", $indent), $content); - } else { - $result .= $content; + $result .= $insertStr; + } + $parenthesesNeeded = isset($this->parenthesesListMap[$mapKey]) && in_array(get_class($newNode), $this->parenthesesListMap[$mapKey], \true); + if ($parenthesesNeeded) { + $result .= '('; + } + $result .= $this->printNodeFormatPreserving($newNode, $originalTokens); + if ($parenthesesNeeded) { + $result .= ')'; + } + $tokenIndex = $itemEndPos + 1; + } elseif ($diffType === DiffElem::TYPE_REMOVE) { + if (!$originalNode instanceof Node) { + return null; + } + $itemStartPos = $originalNode->getAttribute(Attribute::START_INDEX); + $itemEndPos = $originalNode->getAttribute(Attribute::END_INDEX); + if ($itemStartPos < 0 || $itemEndPos < 0) { + throw new LogicException(); + } + if ($i === 0) { + // If we're removing from the start, keep the tokens before the node and drop those after it, + // instead of the other way around. + $originalTokensArray = $originalTokens->getTokens(); + for ($j = $tokenIndex; $j < $itemStartPos; $j++) { + if ($originalTokensArray[$j][Lexer::TYPE_OFFSET] === Lexer::TOKEN_PHPDOC_EOL) { + break; + } + $result .= $originalTokensArray[$j][Lexer::VALUE_OFFSET]; } } - } else { - $result .= $token; + $tokenIndex = $itemEndPos + 1; + } + } + if (count($delayedAdd) > 0) { + if (!isset($this->emptyListInsertionMap[$mapKey])) { + return null; + } + [$findToken, $extraLeft, $extraRight] = $this->emptyListInsertionMap[$mapKey]; + if ($findToken !== null) { + $originalTokensArray = $originalTokens->getTokens(); + for (; $tokenIndex < count($originalTokensArray); $tokenIndex++) { + $result .= $originalTokensArray[$tokenIndex][Lexer::VALUE_OFFSET]; + if ($originalTokensArray[$tokenIndex][Lexer::VALUE_OFFSET] !== $findToken) { + continue; + } + $tokenIndex++; + break; + } + } + $first = \true; + $result .= $extraLeft; + foreach ($delayedAdd as $delayedAddNode) { + if (!$first) { + $result .= $insertStr; + if ($insertNewline) { + $result .= sprintf('%s%s*%s', $originalTokens->getDetectedNewline() ?? "\n", $beforeAsteriskIndent, $afterAsteriskIndent); + } + } + $result .= $this->printNodeFormatPreserving($delayedAddNode, $originalTokens); + $first = \false; } + $result .= $extraRight; } return $result; } /** - * Precalculate the indentation at every token position. - * - * @return int[] Token position to indentation map + * @param Node[] $nodes + * @return array{bool, string, string} */ - private function calcIndentMap() + private function isMultiline(int $initialIndex, array $nodes, TokenIterator $originalTokens): array { - $indentMap = []; - $indent = 0; - foreach ($this->tokens as $token) { - $indentMap[] = $indent; - if ($token[0] === \T_WHITESPACE) { - $content = $token[1]; - $newlinePos = \strrpos($content, "\n"); - if (\false !== $newlinePos) { - $indent = \strlen($content) - $newlinePos - 1; + $isMultiline = count($nodes) > 1; + $pos = $initialIndex; + $allText = ''; + /** @var Node|null $node */ + foreach ($nodes as $node) { + if (!$node instanceof Node) { + continue; + } + $endPos = $node->getAttribute(Attribute::END_INDEX) + 1; + $text = $originalTokens->getContentBetween($pos, $endPos); + $allText .= $text; + if (strpos($text, "\n") === \false) { + // We require that a newline is present between *every* item. If the formatting + // is inconsistent, with only some items having newlines, we don't consider it + // as multiline + $isMultiline = \false; + } + $pos = $endPos; + } + $c = preg_match_all('~\n(?[\x09\x20]*)\*(?\x20*)~', $allText, $matches, PREG_SET_ORDER); + if ($c === 0) { + return [$isMultiline, '', '']; + } + $before = ''; + $after = ''; + foreach ($matches as $match) { + if (strlen($match['before']) > strlen($before)) { + $before = $match['before']; + } + if (strlen($match['after']) <= strlen($after)) { + continue; + } + $after = $match['after']; + } + return [$isMultiline, $before, $after]; + } + private function printNodeFormatPreserving(Node $node, TokenIterator $originalTokens): string + { + /** @var Node|null $originalNode */ + $originalNode = $node->getAttribute(Attribute::ORIGINAL_NODE); + if ($originalNode === null) { + return $this->print($node); + } + $class = get_class($node); + if ($class !== get_class($originalNode)) { + throw new LogicException(); + } + $startPos = $originalNode->getAttribute(Attribute::START_INDEX); + $endPos = $originalNode->getAttribute(Attribute::END_INDEX); + if ($startPos < 0 || $endPos < 0) { + throw new LogicException(); + } + $result = ''; + $pos = $startPos; + $subNodeNames = array_keys(get_object_vars($node)); + foreach ($subNodeNames as $subNodeName) { + $subNode = $node->{$subNodeName}; + $origSubNode = $originalNode->{$subNodeName}; + if (!$subNode instanceof Node && $subNode !== null || !$origSubNode instanceof Node && $origSubNode !== null) { + if ($subNode === $origSubNode) { + // Unchanged, can reuse old code + continue; + } + if (is_array($subNode) && is_array($origSubNode)) { + // Array subnode changed, we might be able to reconstruct it + $listResult = $this->printArrayFormatPreserving($subNode, $origSubNode, $originalTokens, $pos, $class, $subNodeName); + if ($listResult === null) { + return $this->print($node); + } + $result .= $listResult; + continue; + } + return $this->print($node); + } + if ($origSubNode === null) { + if ($subNode === null) { + // Both null, nothing to do + continue; } + return $this->print($node); } + $subStartPos = $origSubNode->getAttribute(Attribute::START_INDEX); + $subEndPos = $origSubNode->getAttribute(Attribute::END_INDEX); + if ($subStartPos < 0 || $subEndPos < 0) { + throw new LogicException(); + } + if ($subEndPos < $subStartPos) { + return $this->print($node); + } + if ($subNode === null) { + return $this->print($node); + } + $result .= $originalTokens->getContentBetween($pos, $subStartPos); + $mapKey = get_class($node) . '->' . $subNodeName; + $parenthesesNeeded = isset($this->parenthesesMap[$mapKey]) && in_array(get_class($subNode), $this->parenthesesMap[$mapKey], \true); + if ($subNode->getAttribute(Attribute::ORIGINAL_NODE) !== null) { + $parenthesesNeeded = $parenthesesNeeded && !in_array(get_class($subNode->getAttribute(Attribute::ORIGINAL_NODE)), $this->parenthesesMap[$mapKey], \true); + } + $addParentheses = $parenthesesNeeded && !$originalTokens->hasParentheses($subStartPos, $subEndPos); + if ($addParentheses) { + $result .= '('; + } + $result .= $this->printNodeFormatPreserving($subNode, $originalTokens); + if ($addParentheses) { + $result .= ')'; + } + $pos = $subEndPos + 1; } - // Add a sentinel for one past end of the file - $indentMap[] = $indent; - return $indentMap; + return $result . $originalTokens->getContentBetween($pos, $endPos + 1); } } decodeRecursive($value); + $this->currentTokenValue = $currentTokenValue; + $this->currentTokenType = $currentTokenType; + $this->currentOffset = $currentOffset; + $this->expectedTokenType = $expectedTokenType; + $this->expectedTokenValue = $expectedTokenValue; + $this->currentTokenLine = $currentTokenLine; + parent::__construct(sprintf('Unexpected token %s, expected %s%s at offset %d%s', $this->formatValue($currentTokenValue), Lexer::TOKEN_LABELS[$expectedTokenType], $expectedTokenValue !== null ? sprintf(' (%s)', $this->formatValue($expectedTokenValue)) : '', $currentOffset, $currentTokenLine === null ? '' : sprintf(' on line %d', $currentTokenLine))); } - private function decodeRecursive($value) + public function getCurrentTokenValue(): string { - if (\is_array($value)) { - if (isset($value['nodeType'])) { - if ($value['nodeType'] === 'Comment' || $value['nodeType'] === 'Comment_Doc') { - return $this->decodeComment($value); - } - return $this->decodeNode($value); - } - return $this->decodeArray($value); - } - return $value; + return $this->currentTokenValue; } - private function decodeArray(array $array) : array + public function getCurrentTokenType(): int { - $decodedArray = []; - foreach ($array as $key => $value) { - $decodedArray[$key] = $this->decodeRecursive($value); - } - return $decodedArray; + return $this->currentTokenType; } - private function decodeNode(array $value) : Node + public function getCurrentOffset(): int { - $nodeType = $value['nodeType']; - if (!\is_string($nodeType)) { - throw new \RuntimeException('Node type must be a string'); - } - $reflectionClass = $this->reflectionClassFromNodeType($nodeType); - /** @var Node $node */ - $node = $reflectionClass->newInstanceWithoutConstructor(); - if (isset($value['attributes'])) { - if (!\is_array($value['attributes'])) { - throw new \RuntimeException('Attributes must be an array'); - } - $node->setAttributes($this->decodeArray($value['attributes'])); - } - foreach ($value as $name => $subNode) { - if ($name === 'nodeType' || $name === 'attributes') { - continue; - } - $node->{$name} = $this->decodeRecursive($subNode); - } - return $node; + return $this->currentOffset; } - private function decodeComment(array $value) : Comment + public function getExpectedTokenType(): int { - $className = $value['nodeType'] === 'Comment' ? Comment::class : Comment\Doc::class; - if (!isset($value['text'])) { - throw new \RuntimeException('Comment must have text'); - } - return new $className($value['text'], $value['line'] ?? -1, $value['filePos'] ?? -1, $value['tokenPos'] ?? -1, $value['endLine'] ?? -1, $value['endFilePos'] ?? -1, $value['endTokenPos'] ?? -1); + return $this->expectedTokenType; } - private function reflectionClassFromNodeType(string $nodeType) : \ReflectionClass + public function getExpectedTokenValue(): ?string { - if (!isset($this->reflectionClassCache[$nodeType])) { - $className = $this->classNameFromNodeType($nodeType); - $this->reflectionClassCache[$nodeType] = new \ReflectionClass($className); - } - return $this->reflectionClassCache[$nodeType]; + return $this->expectedTokenValue; } - private function classNameFromNodeType(string $nodeType) : string + public function getCurrentTokenLine(): ?int { - $className = 'PhpParser\\Node\\' . \strtr($nodeType, '_', '\\'); - if (\class_exists($className)) { - return $className; - } - $className .= '_'; - if (\class_exists($className)) { - return $className; - } - throw new \RuntimeException("Unknown node type \"{$nodeType}\""); + return $this->currentTokenLine; + } + private function formatValue(string $value): string + { + $json = json_encode($value, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_INVALID_UTF8_SUBSTITUTE); + assert($json !== \false); + return $json; } } defineCompatibilityTokens(); - $this->tokenMap = $this->createTokenMap(); - $this->identifierTokens = $this->createIdentifierTokenMap(); - // map of tokens to drop while lexing (the map is only used for isset lookup, - // that's why the value is simply set to 1; the value is never actually used.) - $this->dropTokens = \array_fill_keys([\T_WHITESPACE, \T_OPEN_TAG, \T_COMMENT, \T_DOC_COMMENT, \T_BAD_CHARACTER], 1); - $defaultAttributes = ['comments', 'startLine', 'endLine']; - $usedAttributes = \array_fill_keys($options['usedAttributes'] ?? $defaultAttributes, \true); - // Create individual boolean properties to make these checks faster. - $this->attributeStartLineUsed = isset($usedAttributes['startLine']); - $this->attributeEndLineUsed = isset($usedAttributes['endLine']); - $this->attributeStartTokenPosUsed = isset($usedAttributes['startTokenPos']); - $this->attributeEndTokenPosUsed = isset($usedAttributes['endTokenPos']); - $this->attributeStartFilePosUsed = isset($usedAttributes['startFilePos']); - $this->attributeEndFilePosUsed = isset($usedAttributes['endFilePos']); - $this->attributeCommentsUsed = isset($usedAttributes['comments']); - } - /** - * Initializes the lexer for lexing the provided source code. - * - * This function does not throw if lexing errors occur. Instead, errors may be retrieved using - * the getErrors() method. - * - * @param string $code The source code to lex - * @param ErrorHandler|null $errorHandler Error handler to use for lexing errors. Defaults to - * ErrorHandler\Throwing - */ - public function startLexing(string $code, ErrorHandler $errorHandler = null) - { - if (null === $errorHandler) { - $errorHandler = new ErrorHandler\Throwing(); + private const DISALLOWED_DESCRIPTION_START_TOKENS = [Lexer::TOKEN_UNION, Lexer::TOKEN_INTERSECTION]; + /** @var TypeParser */ + private $typeParser; + /** @var ConstExprParser */ + private $constantExprParser; + /** @var ConstExprParser */ + private $doctrineConstantExprParser; + /** @var bool */ + private $requireWhitespaceBeforeDescription; + /** @var bool */ + private $preserveTypeAliasesWithInvalidTypes; + /** @var bool */ + private $parseDoctrineAnnotations; + /** @var bool */ + private $useLinesAttributes; + /** @var bool */ + private $useIndexAttributes; + /** @var bool */ + private $textBetweenTagsBelongsToDescription; + /** + * @param array{lines?: bool, indexes?: bool} $usedAttributes + */ + public function __construct(TypeParser $typeParser, ConstExprParser $constantExprParser, bool $requireWhitespaceBeforeDescription = \false, bool $preserveTypeAliasesWithInvalidTypes = \false, array $usedAttributes = [], bool $parseDoctrineAnnotations = \false, bool $textBetweenTagsBelongsToDescription = \false) + { + $this->typeParser = $typeParser; + $this->constantExprParser = $constantExprParser; + $this->doctrineConstantExprParser = $constantExprParser->toDoctrine(); + $this->requireWhitespaceBeforeDescription = $requireWhitespaceBeforeDescription; + $this->preserveTypeAliasesWithInvalidTypes = $preserveTypeAliasesWithInvalidTypes; + $this->parseDoctrineAnnotations = $parseDoctrineAnnotations; + $this->useLinesAttributes = $usedAttributes['lines'] ?? \false; + $this->useIndexAttributes = $usedAttributes['indexes'] ?? \false; + $this->textBetweenTagsBelongsToDescription = $textBetweenTagsBelongsToDescription; + } + public function parse(TokenIterator $tokens): Ast\PhpDoc\PhpDocNode + { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_PHPDOC); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $children = []; + if ($this->parseDoctrineAnnotations) { + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + $lastChild = $this->parseChild($tokens); + $children[] = $lastChild; + while (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + if ($lastChild instanceof Ast\PhpDoc\PhpDocTagNode && ($lastChild->value instanceof Doctrine\DoctrineTagValueNode || $lastChild->value instanceof Ast\PhpDoc\GenericTagValueNode)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + break; + } + $lastChild = $this->parseChild($tokens); + $children[] = $lastChild; + continue; + } + if (!$tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL)) { + break; + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + break; + } + $lastChild = $this->parseChild($tokens); + $children[] = $lastChild; + } + } + } else if (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + $children[] = $this->parseChild($tokens); + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL) && !$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + $children[] = $this->parseChild($tokens); + } } - $this->code = $code; - // keep the code around for __halt_compiler() handling - $this->pos = -1; - $this->line = 1; - $this->filePos = 0; - // If inline HTML occurs without preceding code, treat it as if it had a leading newline. - // This ensures proper composability, because having a newline is the "safe" assumption. - $this->prevCloseTagHasNewline = \true; - $scream = \ini_set('xdebug.scream', '0'); - $this->tokens = @\token_get_all($code); - $this->postprocessTokens($errorHandler); - if (\false !== $scream) { - \ini_set('xdebug.scream', $scream); + try { + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PHPDOC); + } catch (ParserException $e) { + $name = ''; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if (count($children) > 0) { + $lastChild = $children[count($children) - 1]; + if ($lastChild instanceof Ast\PhpDoc\PhpDocTagNode) { + $name = $lastChild->name; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + } + } + $tag = new Ast\PhpDoc\PhpDocTagNode($name, $this->enrichWithAttributes($tokens, new Ast\PhpDoc\InvalidTagValueNode($e->getMessage(), $e), $startLine, $startIndex)); + $tokens->forwardToTheEnd(); + return $this->enrichWithAttributes($tokens, new Ast\PhpDoc\PhpDocNode([$this->enrichWithAttributes($tokens, $tag, $startLine, $startIndex)]), 1, 0); } + return $this->enrichWithAttributes($tokens, new Ast\PhpDoc\PhpDocNode(array_values($children)), 1, 0); } - private function handleInvalidCharacterRange($start, $end, $line, ErrorHandler $errorHandler) + /** @phpstan-impure */ + private function parseChild(TokenIterator $tokens): Ast\PhpDoc\PhpDocChildNode { - $tokens = []; - for ($i = $start; $i < $end; $i++) { - $chr = $this->code[$i]; - if ($chr === "\x00") { - // PHP cuts error message after null byte, so need special case - $errorMsg = 'Unexpected null byte'; - } else { - $errorMsg = \sprintf('Unexpected character "%s" (ASCII %d)', $chr, \ord($chr)); - } - $tokens[] = [\T_BAD_CHARACTER, $chr, $line]; - $errorHandler->handleError(new Error($errorMsg, ['startLine' => $line, 'endLine' => $line, 'startFilePos' => $i, 'endFilePos' => $i])); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG)) { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + return $this->enrichWithAttributes($tokens, $this->parseTag($tokens), $startLine, $startIndex); } - return $tokens; + if ($tokens->isCurrentTokenType(Lexer::TOKEN_DOCTRINE_TAG)) { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $tag = $tokens->currentTokenValue(); + $tokens->next(); + $tagStartLine = $tokens->currentTokenLine(); + $tagStartIndex = $tokens->currentTokenIndex(); + return $this->enrichWithAttributes($tokens, new Ast\PhpDoc\PhpDocTagNode($tag, $this->enrichWithAttributes($tokens, $this->parseDoctrineTagValue($tokens, $tag), $tagStartLine, $tagStartIndex)), $startLine, $startIndex); + } + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $text = $this->parseText($tokens); + return $this->enrichWithAttributes($tokens, $text, $startLine, $startIndex); } /** - * Check whether comment token is unterminated. - * - * @return bool + * @template T of Ast\Node + * @param T $tag + * @return T */ - private function isUnterminatedComment($token) : bool + private function enrichWithAttributes(TokenIterator $tokens, Ast\Node $tag, int $startLine, int $startIndex): Ast\Node { - return ($token[0] === \T_COMMENT || $token[0] === \T_DOC_COMMENT) && \substr($token[1], 0, 2) === '/*' && \substr($token[1], -2) !== '*/'; + if ($this->useLinesAttributes) { + $tag->setAttribute(Ast\Attribute::START_LINE, $startLine); + $tag->setAttribute(Ast\Attribute::END_LINE, $tokens->currentTokenLine()); + } + if ($this->useIndexAttributes) { + $tag->setAttribute(Ast\Attribute::START_INDEX, $startIndex); + $tag->setAttribute(Ast\Attribute::END_INDEX, $tokens->endIndexOfLastRelevantToken()); + } + return $tag; } - protected function postprocessTokens(ErrorHandler $errorHandler) + private function parseText(TokenIterator $tokens): Ast\PhpDoc\PhpDocTextNode { - // PHP's error handling for token_get_all() is rather bad, so if we want detailed - // error information we need to compute it ourselves. Invalid character errors are - // detected by finding "gaps" in the token array. Unterminated comments are detected - // by checking if a trailing comment has a "*/" at the end. - // - // Additionally, we perform a number of canonicalizations here: - // * Use the PHP 8.0 comment format, which does not include trailing whitespace anymore. - // * Use PHP 8.0 T_NAME_* tokens. - // * Use PHP 8.1 T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG and - // T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG tokens used to disambiguate intersection types. - $filePos = 0; - $line = 1; - $numTokens = \count($this->tokens); - for ($i = 0; $i < $numTokens; $i++) { - $token = $this->tokens[$i]; - // Since PHP 7.4 invalid characters are represented by a T_BAD_CHARACTER token. - // In this case we only need to emit an error. - if ($token[0] === \T_BAD_CHARACTER) { - $this->handleInvalidCharacterRange($filePos, $filePos + 1, $line, $errorHandler); + $text = ''; + $endTokens = [Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END]; + if ($this->textBetweenTagsBelongsToDescription) { + $endTokens = [Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END]; + } + $savepoint = \false; + // if the next token is EOL, everything below is skipped and empty string is returned + while ($this->textBetweenTagsBelongsToDescription || !$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL)) { + $tmpText = $tokens->getSkippedHorizontalWhiteSpaceIfAny() . $tokens->joinUntil(Lexer::TOKEN_PHPDOC_EOL, ...$endTokens); + $text .= $tmpText; + // stop if we're not at EOL - meaning it's the end of PHPDoc + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC)) { + break; } - if ($token[0] === \T_COMMENT && \substr($token[1], 0, 2) !== '/*' && \preg_match('/(\\r\\n|\\n|\\r)$/D', $token[1], $matches)) { - $trailingNewline = $matches[0]; - $token[1] = \substr($token[1], 0, -\strlen($trailingNewline)); - $this->tokens[$i] = $token; - if (isset($this->tokens[$i + 1]) && $this->tokens[$i + 1][0] === \T_WHITESPACE) { - // Move trailing newline into following T_WHITESPACE token, if it already exists. - $this->tokens[$i + 1][1] = $trailingNewline . $this->tokens[$i + 1][1]; - $this->tokens[$i + 1][2]--; - } else { - // Otherwise, we need to create a new T_WHITESPACE token. - \array_splice($this->tokens, $i + 1, 0, [[\T_WHITESPACE, $trailingNewline, $line]]); - $numTokens++; + if ($this->textBetweenTagsBelongsToDescription) { + if (!$savepoint) { + $tokens->pushSavePoint(); + $savepoint = \true; + } elseif ($tmpText !== '') { + $tokens->dropSavePoint(); + $tokens->pushSavePoint(); } } - // Emulate PHP 8 T_NAME_* tokens, by combining sequences of T_NS_SEPARATOR and T_STRING - // into a single token. - if (\is_array($token) && ($token[0] === \T_NS_SEPARATOR || isset($this->identifierTokens[$token[0]]))) { - $lastWasSeparator = $token[0] === \T_NS_SEPARATOR; - $text = $token[1]; - for ($j = $i + 1; isset($this->tokens[$j]); $j++) { - if ($lastWasSeparator) { - if (!isset($this->identifierTokens[$this->tokens[$j][0]])) { + $tokens->pushSavePoint(); + $tokens->next(); + // if we're at EOL, check what's next + // if next is a PHPDoc tag, EOL, or end of PHPDoc, stop + if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG, Lexer::TOKEN_DOCTRINE_TAG, ...$endTokens)) { + $tokens->rollback(); + break; + } + // otherwise if the next is text, continue building the description string + $tokens->dropSavePoint(); + $text .= $tokens->getDetectedNewline() ?? "\n"; + } + if ($savepoint) { + $tokens->rollback(); + $text = rtrim($text, $tokens->getDetectedNewline() ?? "\n"); + } + return new Ast\PhpDoc\PhpDocTextNode(trim($text, " \t")); + } + private function parseOptionalDescriptionAfterDoctrineTag(TokenIterator $tokens): string + { + $text = ''; + $endTokens = [Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END]; + if ($this->textBetweenTagsBelongsToDescription) { + $endTokens = [Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END]; + } + $savepoint = \false; + // if the next token is EOL, everything below is skipped and empty string is returned + while ($this->textBetweenTagsBelongsToDescription || !$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL)) { + $tmpText = $tokens->getSkippedHorizontalWhiteSpaceIfAny() . $tokens->joinUntil(Lexer::TOKEN_PHPDOC_TAG, Lexer::TOKEN_DOCTRINE_TAG, Lexer::TOKEN_PHPDOC_EOL, ...$endTokens); + $text .= $tmpText; + // stop if we're not at EOL - meaning it's the end of PHPDoc + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC)) { + if (!$tokens->isPrecededByHorizontalWhitespace()) { + return trim($text . $this->parseText($tokens)->text, " \t"); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG)) { + $tokens->pushSavePoint(); + $child = $this->parseChild($tokens); + if ($child instanceof Ast\PhpDoc\PhpDocTagNode) { + if ($child->value instanceof Ast\PhpDoc\GenericTagValueNode || $child->value instanceof Doctrine\DoctrineTagValueNode) { + $tokens->rollback(); break; } - $lastWasSeparator = \false; - } else { - if ($this->tokens[$j][0] !== \T_NS_SEPARATOR) { - break; + if ($child->value instanceof Ast\PhpDoc\InvalidTagValueNode) { + $tokens->rollback(); + $tokens->pushSavePoint(); + $tokens->next(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $tokens->rollback(); + break; + } + $tokens->rollback(); + return trim($text . $this->parseText($tokens)->text, " \t"); } - $lastWasSeparator = \true; } - $text .= $this->tokens[$j][1]; + $tokens->rollback(); + return trim($text . $this->parseText($tokens)->text, " \t"); } - if ($lastWasSeparator) { - // Trailing separator is not part of the name. - $j--; - $text = \substr($text, 0, -1); + break; + } + if ($this->textBetweenTagsBelongsToDescription) { + if (!$savepoint) { + $tokens->pushSavePoint(); + $savepoint = \true; + } elseif ($tmpText !== '') { + $tokens->dropSavePoint(); + $tokens->pushSavePoint(); } - if ($j > $i + 1) { - if ($token[0] === \T_NS_SEPARATOR) { - $type = \T_NAME_FULLY_QUALIFIED; - } else { - if ($token[0] === \T_NAMESPACE) { - $type = \T_NAME_RELATIVE; + } + $tokens->pushSavePoint(); + $tokens->next(); + // if we're at EOL, check what's next + // if next is a PHPDoc tag, EOL, or end of PHPDoc, stop + if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG, Lexer::TOKEN_DOCTRINE_TAG, ...$endTokens)) { + $tokens->rollback(); + break; + } + // otherwise if the next is text, continue building the description string + $tokens->dropSavePoint(); + $text .= $tokens->getDetectedNewline() ?? "\n"; + } + if ($savepoint) { + $tokens->rollback(); + $text = rtrim($text, $tokens->getDetectedNewline() ?? "\n"); + } + return trim($text, " \t"); + } + public function parseTag(TokenIterator $tokens): Ast\PhpDoc\PhpDocTagNode + { + $tag = $tokens->currentTokenValue(); + $tokens->next(); + $value = $this->parseTagValue($tokens, $tag); + return new Ast\PhpDoc\PhpDocTagNode($tag, $value); + } + public function parseTagValue(TokenIterator $tokens, string $tag): Ast\PhpDoc\PhpDocTagValueNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + try { + $tokens->pushSavePoint(); + switch ($tag) { + case '@param': + case '@phpstan-param': + case '@psalm-param': + case '@phan-param': + $tagValue = $this->parseParamTagValue($tokens); + break; + case '@param-immediately-invoked-callable': + case '@phpstan-param-immediately-invoked-callable': + $tagValue = $this->parseParamImmediatelyInvokedCallableTagValue($tokens); + break; + case '@param-later-invoked-callable': + case '@phpstan-param-later-invoked-callable': + $tagValue = $this->parseParamLaterInvokedCallableTagValue($tokens); + break; + case '@param-closure-this': + case '@phpstan-param-closure-this': + $tagValue = $this->parseParamClosureThisTagValue($tokens); + break; + case '@var': + case '@phpstan-var': + case '@psalm-var': + case '@phan-var': + $tagValue = $this->parseVarTagValue($tokens); + break; + case '@return': + case '@phpstan-return': + case '@psalm-return': + case '@phan-return': + case '@phan-real-return': + $tagValue = $this->parseReturnTagValue($tokens); + break; + case '@throws': + case '@phpstan-throws': + $tagValue = $this->parseThrowsTagValue($tokens); + break; + case '@mixin': + case '@phan-mixin': + $tagValue = $this->parseMixinTagValue($tokens); + break; + case '@psalm-require-extends': + case '@phpstan-require-extends': + $tagValue = $this->parseRequireExtendsTagValue($tokens); + break; + case '@psalm-require-implements': + case '@phpstan-require-implements': + $tagValue = $this->parseRequireImplementsTagValue($tokens); + break; + case '@deprecated': + $tagValue = $this->parseDeprecatedTagValue($tokens); + break; + case '@property': + case '@property-read': + case '@property-write': + case '@phpstan-property': + case '@phpstan-property-read': + case '@phpstan-property-write': + case '@psalm-property': + case '@psalm-property-read': + case '@psalm-property-write': + case '@phan-property': + case '@phan-property-read': + case '@phan-property-write': + $tagValue = $this->parsePropertyTagValue($tokens); + break; + case '@method': + case '@phpstan-method': + case '@psalm-method': + case '@phan-method': + $tagValue = $this->parseMethodTagValue($tokens); + break; + case '@template': + case '@phpstan-template': + case '@psalm-template': + case '@phan-template': + case '@template-covariant': + case '@phpstan-template-covariant': + case '@psalm-template-covariant': + case '@template-contravariant': + case '@phpstan-template-contravariant': + case '@psalm-template-contravariant': + $tagValue = $this->typeParser->parseTemplateTagValue($tokens, function ($tokens) { + return $this->parseOptionalDescription($tokens); + }); + break; + case '@extends': + case '@phpstan-extends': + case '@phan-extends': + case '@phan-inherits': + case '@template-extends': + $tagValue = $this->parseExtendsTagValue('@extends', $tokens); + break; + case '@implements': + case '@phpstan-implements': + case '@template-implements': + $tagValue = $this->parseExtendsTagValue('@implements', $tokens); + break; + case '@use': + case '@phpstan-use': + case '@template-use': + $tagValue = $this->parseExtendsTagValue('@use', $tokens); + break; + case '@phpstan-type': + case '@psalm-type': + case '@phan-type': + $tagValue = $this->parseTypeAliasTagValue($tokens); + break; + case '@phpstan-import-type': + case '@psalm-import-type': + $tagValue = $this->parseTypeAliasImportTagValue($tokens); + break; + case '@phpstan-assert': + case '@phpstan-assert-if-true': + case '@phpstan-assert-if-false': + case '@psalm-assert': + case '@psalm-assert-if-true': + case '@psalm-assert-if-false': + case '@phan-assert': + case '@phan-assert-if-true': + case '@phan-assert-if-false': + $tagValue = $this->parseAssertTagValue($tokens); + break; + case '@phpstan-this-out': + case '@phpstan-self-out': + case '@psalm-this-out': + case '@psalm-self-out': + $tagValue = $this->parseSelfOutTagValue($tokens); + break; + case '@param-out': + case '@phpstan-param-out': + case '@psalm-param-out': + $tagValue = $this->parseParamOutTagValue($tokens); + break; + default: + if ($this->parseDoctrineAnnotations) { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $tagValue = $this->parseDoctrineTagValue($tokens, $tag); } else { - $type = \T_NAME_QUALIFIED; + $tagValue = new Ast\PhpDoc\GenericTagValueNode($this->parseOptionalDescriptionAfterDoctrineTag($tokens)); } + break; } - $token = [$type, $text, $line]; - \array_splice($this->tokens, $i, $j - $i, [$token]); - $numTokens -= $j - $i - 1; - } + $tagValue = new Ast\PhpDoc\GenericTagValueNode($this->parseOptionalDescription($tokens)); + break; } - if ($token === '&') { - $next = $i + 1; - while (isset($this->tokens[$next]) && $this->tokens[$next][0] === \T_WHITESPACE) { - $next++; + $tokens->dropSavePoint(); + } catch (ParserException $e) { + $tokens->rollback(); + $tagValue = new Ast\PhpDoc\InvalidTagValueNode($this->parseOptionalDescription($tokens), $e); + } + return $this->enrichWithAttributes($tokens, $tagValue, $startLine, $startIndex); + } + private function parseDoctrineTagValue(TokenIterator $tokens, string $tag): Ast\PhpDoc\PhpDocTagValueNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + return new Doctrine\DoctrineTagValueNode($this->enrichWithAttributes($tokens, new Doctrine\DoctrineAnnotation($tag, $this->parseDoctrineArguments($tokens, \false)), $startLine, $startIndex), $this->parseOptionalDescriptionAfterDoctrineTag($tokens)); + } + /** + * @return list + */ + private function parseDoctrineArguments(TokenIterator $tokens, bool $deep): array + { + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + return []; + } + if (!$deep) { + $tokens->addEndOfLineToSkippedTokens(); + } + $arguments = []; + try { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES); + do { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PARENTHESES)) { + break; } - $followedByVarOrVarArg = isset($this->tokens[$next]) && ($this->tokens[$next][0] === \T_VARIABLE || $this->tokens[$next][0] === \T_ELLIPSIS); - $this->tokens[$i] = $token = [$followedByVarOrVarArg ? \T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG : \T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG, '&', $line]; - } - $tokenValue = \is_string($token) ? $token : $token[1]; - $tokenLen = \strlen($tokenValue); - if (\substr($this->code, $filePos, $tokenLen) !== $tokenValue) { - // Something is missing, must be an invalid character - $nextFilePos = \strpos($this->code, $tokenValue, $filePos); - $badCharTokens = $this->handleInvalidCharacterRange($filePos, $nextFilePos, $line, $errorHandler); - $filePos = (int) $nextFilePos; - \array_splice($this->tokens, $i, 0, $badCharTokens); - $numTokens += \count($badCharTokens); - $i += \count($badCharTokens); + $arguments[] = $this->parseDoctrineArgument($tokens); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)); + } finally { + if (!$deep) { + $tokens->removeEndOfLineFromSkippedTokens(); } - $filePos += $tokenLen; - $line += \substr_count($tokenValue, "\n"); } - if ($filePos !== \strlen($this->code)) { - if (\substr($this->code, $filePos, 2) === '/*') { - // Unlike PHP, HHVM will drop unterminated comments entirely - $comment = \substr($this->code, $filePos); - $errorHandler->handleError(new Error('Unterminated comment', ['startLine' => $line, 'endLine' => $line + \substr_count($comment, "\n"), 'startFilePos' => $filePos, 'endFilePos' => $filePos + \strlen($comment)])); - // Emulate the PHP behavior - $isDocComment = isset($comment[3]) && $comment[3] === '*'; - $this->tokens[] = [$isDocComment ? \T_DOC_COMMENT : \T_COMMENT, $comment, $line]; - } else { - // Invalid characters at the end of the input - $badCharTokens = $this->handleInvalidCharacterRange($filePos, \strlen($this->code), $line, $errorHandler); - $this->tokens = \array_merge($this->tokens, $badCharTokens); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + return $arguments; + } + private function parseDoctrineArgument(TokenIterator $tokens): Doctrine\DoctrineArgument + { + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_IDENTIFIER)) { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArgument(null, $this->parseDoctrineArgumentValue($tokens)), $startLine, $startIndex); + } + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + try { + $tokens->pushSavePoint(); + $currentValue = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $key = $this->enrichWithAttributes($tokens, new IdentifierTypeNode($currentValue), $startLine, $startIndex); + $tokens->consumeTokenType(Lexer::TOKEN_EQUAL); + $value = $this->parseDoctrineArgumentValue($tokens); + $tokens->dropSavePoint(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArgument($key, $value), $startLine, $startIndex); + } catch (ParserException $e) { + $tokens->rollback(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArgument(null, $this->parseDoctrineArgumentValue($tokens)), $startLine, $startIndex); + } + } + /** + * @return DoctrineValueType + */ + private function parseDoctrineArgumentValue(TokenIterator $tokens) + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG, Lexer::TOKEN_DOCTRINE_TAG)) { + $name = $tokens->currentTokenValue(); + $tokens->next(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineAnnotation($name, $this->parseDoctrineArguments($tokens, \true)), $startLine, $startIndex); + } + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_CURLY_BRACKET)) { + $items = []; + do { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET)) { + break; + } + $items[] = $this->parseDoctrineArrayItem($tokens); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArray($items), $startLine, $startIndex); + } + $currentTokenValue = $tokens->currentTokenValue(); + $tokens->pushSavePoint(); + // because of ConstFetchNode + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_IDENTIFIER)) { + $identifier = $this->enrichWithAttributes($tokens, new Ast\Type\IdentifierTypeNode($currentTokenValue), $startLine, $startIndex); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_COLON)) { + $tokens->dropSavePoint(); + return $identifier; + } + $tokens->rollback(); + // because of ConstFetchNode + } else { + $tokens->dropSavePoint(); + // because of ConstFetchNode + } + $currentTokenValue = $tokens->currentTokenValue(); + $currentTokenType = $tokens->currentTokenType(); + $currentTokenOffset = $tokens->currentTokenOffset(); + $currentTokenLine = $tokens->currentTokenLine(); + try { + $constExpr = $this->doctrineConstantExprParser->parse($tokens, \true); + if ($constExpr instanceof Ast\ConstExpr\ConstExprArrayNode) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); } - return; + return $constExpr; + } catch (LogicException $e) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); } - if (\count($this->tokens) > 0) { - // Check for unterminated comment - $lastToken = $this->tokens[\count($this->tokens) - 1]; - if ($this->isUnterminatedComment($lastToken)) { - $errorHandler->handleError(new Error('Unterminated comment', ['startLine' => $line - \substr_count($lastToken[1], "\n"), 'endLine' => $line, 'startFilePos' => $filePos - \strlen($lastToken[1]), 'endFilePos' => $filePos])); + } + private function parseDoctrineArrayItem(TokenIterator $tokens): Doctrine\DoctrineArrayItem + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + try { + $tokens->pushSavePoint(); + $key = $this->parseDoctrineArrayKey($tokens); + if (!$tokens->tryConsumeTokenType(Lexer::TOKEN_EQUAL)) { + if (!$tokens->tryConsumeTokenType(Lexer::TOKEN_COLON)) { + $tokens->consumeTokenType(Lexer::TOKEN_EQUAL); + // will throw exception + } } + $value = $this->parseDoctrineArgumentValue($tokens); + $tokens->dropSavePoint(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArrayItem($key, $value), $startLine, $startIndex); + } catch (ParserException $e) { + $tokens->rollback(); + return $this->enrichWithAttributes($tokens, new Doctrine\DoctrineArrayItem(null, $this->parseDoctrineArgumentValue($tokens)), $startLine, $startIndex); } } /** - * Fetches the next token. - * - * The available attributes are determined by the 'usedAttributes' option, which can - * be specified in the constructor. The following attributes are supported: - * - * * 'comments' => Array of PhpParser\Comment or PhpParser\Comment\Doc instances, - * representing all comments that occurred between the previous - * non-discarded token and the current one. - * * 'startLine' => Line in which the node starts. - * * 'endLine' => Line in which the node ends. - * * 'startTokenPos' => Offset into the token array of the first token in the node. - * * 'endTokenPos' => Offset into the token array of the last token in the node. - * * 'startFilePos' => Offset into the code string of the first character that is part of the node. - * * 'endFilePos' => Offset into the code string of the last character that is part of the node. - * - * @param mixed $value Variable to store token content in - * @param mixed $startAttributes Variable to store start attributes in - * @param mixed $endAttributes Variable to store end attributes in - * - * @return int Token id + * @return ConstExprIntegerNode|ConstExprStringNode|IdentifierTypeNode|ConstFetchNode */ - public function getNextToken(&$value = null, &$startAttributes = null, &$endAttributes = null) : int + private function parseDoctrineArrayKey(TokenIterator $tokens) { - $startAttributes = []; - $endAttributes = []; - while (1) { - if (isset($this->tokens[++$this->pos])) { - $token = $this->tokens[$this->pos]; - } else { - // EOF token with ID 0 - $token = "\x00"; - } - if ($this->attributeStartLineUsed) { - $startAttributes['startLine'] = $this->line; - } - if ($this->attributeStartTokenPosUsed) { - $startAttributes['startTokenPos'] = $this->pos; - } - if ($this->attributeStartFilePosUsed) { - $startAttributes['startFilePos'] = $this->filePos; - } - if (\is_string($token)) { - $value = $token; - if (isset($token[1])) { - // bug in token_get_all - $this->filePos += 2; - $id = \ord('"'); - } else { - $this->filePos += 1; - $id = \ord($token); - } - } elseif (!isset($this->dropTokens[$token[0]])) { - $value = $token[1]; - $id = $this->tokenMap[$token[0]]; - if (\T_CLOSE_TAG === $token[0]) { - $this->prevCloseTagHasNewline = \false !== \strpos($token[1], "\n") || \false !== \strpos($token[1], "\r"); - } elseif (\T_INLINE_HTML === $token[0]) { - $startAttributes['hasLeadingNewline'] = $this->prevCloseTagHasNewline; - } - $this->line += \substr_count($value, "\n"); - $this->filePos += \strlen($value); - } else { - $origLine = $this->line; - $origFilePos = $this->filePos; - $this->line += \substr_count($token[1], "\n"); - $this->filePos += \strlen($token[1]); - if (\T_COMMENT === $token[0] || \T_DOC_COMMENT === $token[0]) { - if ($this->attributeCommentsUsed) { - $comment = \T_DOC_COMMENT === $token[0] ? new Comment\Doc($token[1], $origLine, $origFilePos, $this->pos, $this->line, $this->filePos - 1, $this->pos) : new Comment($token[1], $origLine, $origFilePos, $this->pos, $this->line, $this->filePos - 1, $this->pos); - $startAttributes['comments'][] = $comment; - } - } - continue; - } - if ($this->attributeEndLineUsed) { - $endAttributes['endLine'] = $this->line; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_INTEGER)) { + $key = new Ast\ConstExpr\ConstExprIntegerNode(str_replace('_', '', $tokens->currentTokenValue())); + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_DOCTRINE_ANNOTATION_STRING)) { + $key = new Ast\ConstExpr\DoctrineConstExprStringNode(Ast\ConstExpr\DoctrineConstExprStringNode::unescape($tokens->currentTokenValue())); + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_QUOTED_STRING)) { + $value = $tokens->currentTokenValue(); + $tokens->next(); + $key = $this->doctrineConstantExprParser->parseDoctrineString($value, $tokens); + } else { + $currentTokenValue = $tokens->currentTokenValue(); + $tokens->pushSavePoint(); + // because of ConstFetchNode + if (!$tokens->tryConsumeTokenType(Lexer::TOKEN_IDENTIFIER)) { + $tokens->dropSavePoint(); + throw new ParserException($tokens->currentTokenValue(), $tokens->currentTokenType(), $tokens->currentTokenOffset(), Lexer::TOKEN_IDENTIFIER, null, $tokens->currentTokenLine()); } - if ($this->attributeEndTokenPosUsed) { - $endAttributes['endTokenPos'] = $this->pos; + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_COLON)) { + $tokens->dropSavePoint(); + return $this->enrichWithAttributes($tokens, new IdentifierTypeNode($currentTokenValue), $startLine, $startIndex); } - if ($this->attributeEndFilePosUsed) { - $endAttributes['endFilePos'] = $this->filePos - 1; + $tokens->rollback(); + $constExpr = $this->doctrineConstantExprParser->parse($tokens, \true); + if (!$constExpr instanceof Ast\ConstExpr\ConstFetchNode) { + throw new ParserException($tokens->currentTokenValue(), $tokens->currentTokenType(), $tokens->currentTokenOffset(), Lexer::TOKEN_IDENTIFIER, null, $tokens->currentTokenLine()); } - return $id; + return $constExpr; } - throw new \RuntimeException('Reached end of lexer loop'); + return $this->enrichWithAttributes($tokens, $key, $startLine, $startIndex); } /** - * Returns the token array for current code. - * - * The token array is in the same format as provided by the - * token_get_all() function and does not discard tokens (i.e. - * whitespace and comments are included). The token position - * attributes are against this token array. - * - * @return array Array of tokens in token_get_all() format + * @return Ast\PhpDoc\ParamTagValueNode|Ast\PhpDoc\TypelessParamTagValueNode */ - public function getTokens() : array + private function parseParamTagValue(TokenIterator $tokens): Ast\PhpDoc\PhpDocTagValueNode { - return $this->tokens; + if ($tokens->isCurrentTokenType(Lexer::TOKEN_REFERENCE, Lexer::TOKEN_VARIADIC, Lexer::TOKEN_VARIABLE)) { + $type = null; + } else { + $type = $this->typeParser->parse($tokens); + } + $isReference = $tokens->tryConsumeTokenType(Lexer::TOKEN_REFERENCE); + $isVariadic = $tokens->tryConsumeTokenType(Lexer::TOKEN_VARIADIC); + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + if ($type !== null) { + return new Ast\PhpDoc\ParamTagValueNode($type, $isVariadic, $parameterName, $description, $isReference); + } + return new Ast\PhpDoc\TypelessParamTagValueNode($isVariadic, $parameterName, $description, $isReference); } - /** - * Handles __halt_compiler() by returning the text after it. - * - * @return string Remaining text - */ - public function handleHaltCompiler() : string + private function parseParamImmediatelyInvokedCallableTagValue(TokenIterator $tokens): Ast\PhpDoc\ParamImmediatelyInvokedCallableTagValueNode { - // text after T_HALT_COMPILER, still including (); - $textAfter = \substr($this->code, $this->filePos); - // ensure that it is followed by (); - // this simplifies the situation, by not allowing any comments - // in between of the tokens. - if (!\preg_match('~^\\s*\\(\\s*\\)\\s*(?:;|\\?>\\r?\\n?)~', $textAfter, $matches)) { - throw new Error('__HALT_COMPILER must be followed by "();"'); - } - // prevent the lexer from returning any further tokens - $this->pos = \count($this->tokens); - // return with (); removed - return \substr($textAfter, \strlen($matches[0])); + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\ParamImmediatelyInvokedCallableTagValueNode($parameterName, $description); } - private function defineCompatibilityTokens() + private function parseParamLaterInvokedCallableTagValue(TokenIterator $tokens): Ast\PhpDoc\ParamLaterInvokedCallableTagValueNode { - static $compatTokensDefined = \false; - if ($compatTokensDefined) { - return; - } - $compatTokens = [ - // PHP 7.4 - 'T_BAD_CHARACTER', - 'T_FN', - 'T_COALESCE_EQUAL', - // PHP 8.0 - 'T_NAME_QUALIFIED', - 'T_NAME_FULLY_QUALIFIED', - 'T_NAME_RELATIVE', - 'T_MATCH', - 'T_NULLSAFE_OBJECT_OPERATOR', - 'T_ATTRIBUTE', - // PHP 8.1 - 'T_ENUM', - 'T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG', - 'T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG', - 'T_READONLY', - ]; - // PHP-Parser might be used together with another library that also emulates some or all - // of these tokens. Perform a sanity-check that all already defined tokens have been - // assigned a unique ID. - $usedTokenIds = []; - foreach ($compatTokens as $token) { - if (\defined($token)) { - $tokenId = \constant($token); - $clashingToken = $usedTokenIds[$tokenId] ?? null; - if ($clashingToken !== null) { - throw new \Error(\sprintf('Token %s has same ID as token %s, ' . 'you may be using a library with broken token emulation', $token, $clashingToken)); - } - $usedTokenIds[$tokenId] = $token; - } - } - // Now define any tokens that have not yet been emulated. Try to assign IDs from -1 - // downwards, but skip any IDs that may already be in use. - $newTokenId = -1; - foreach ($compatTokens as $token) { - if (!\defined($token)) { - while (isset($usedTokenIds[$newTokenId])) { - $newTokenId--; - } - \define($token, $newTokenId); - $newTokenId--; - } - } - $compatTokensDefined = \true; + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\ParamLaterInvokedCallableTagValueNode($parameterName, $description); } - /** - * Creates the token map. - * - * The token map maps the PHP internal token identifiers - * to the identifiers used by the Parser. Additionally it - * maps T_OPEN_TAG_WITH_ECHO to T_ECHO and T_CLOSE_TAG to ';'. - * - * @return array The token map - */ - protected function createTokenMap() : array + private function parseParamClosureThisTagValue(TokenIterator $tokens): Ast\PhpDoc\ParamClosureThisTagValueNode { - $tokenMap = []; - // 256 is the minimum possible token number, as everything below - // it is an ASCII value - for ($i = 256; $i < 1000; ++$i) { - if (\T_DOUBLE_COLON === $i) { - // T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM - $tokenMap[$i] = Tokens::T_PAAMAYIM_NEKUDOTAYIM; - } elseif (\T_OPEN_TAG_WITH_ECHO === $i) { - // T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO - $tokenMap[$i] = Tokens::T_ECHO; - } elseif (\T_CLOSE_TAG === $i) { - // T_CLOSE_TAG is equivalent to ';' - $tokenMap[$i] = \ord(';'); - } elseif ('UNKNOWN' !== ($name = \token_name($i))) { - if ('T_HASHBANG' === $name) { - // HHVM uses a special token for #! hashbang lines - $tokenMap[$i] = Tokens::T_INLINE_HTML; - } elseif (\defined($name = Tokens::class . '::' . $name)) { - // Other tokens can be mapped directly - $tokenMap[$i] = \constant($name); - } - } - } - // HHVM uses a special token for numbers that overflow to double - if (\defined('PHPUnit\\T_ONUMBER')) { - $tokenMap[\PHPUnit\T_ONUMBER] = Tokens::T_DNUMBER; - } - // HHVM also has a separate token for the __COMPILER_HALT_OFFSET__ constant - if (\defined('PHPUnit\\T_COMPILER_HALT_OFFSET')) { - $tokenMap[\PHPUnit\T_COMPILER_HALT_OFFSET] = Tokens::T_STRING; - } - // Assign tokens for which we define compatibility constants, as token_name() does not know them. - $tokenMap[\T_FN] = Tokens::T_FN; - $tokenMap[\T_COALESCE_EQUAL] = Tokens::T_COALESCE_EQUAL; - $tokenMap[\T_NAME_QUALIFIED] = Tokens::T_NAME_QUALIFIED; - $tokenMap[\T_NAME_FULLY_QUALIFIED] = Tokens::T_NAME_FULLY_QUALIFIED; - $tokenMap[\T_NAME_RELATIVE] = Tokens::T_NAME_RELATIVE; - $tokenMap[\T_MATCH] = Tokens::T_MATCH; - $tokenMap[\T_NULLSAFE_OBJECT_OPERATOR] = Tokens::T_NULLSAFE_OBJECT_OPERATOR; - $tokenMap[\T_ATTRIBUTE] = Tokens::T_ATTRIBUTE; - $tokenMap[\T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG] = Tokens::T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG; - $tokenMap[\T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG] = Tokens::T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG; - $tokenMap[\T_ENUM] = Tokens::T_ENUM; - $tokenMap[\T_READONLY] = Tokens::T_READONLY; - return $tokenMap; + $type = $this->typeParser->parse($tokens); + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\ParamClosureThisTagValueNode($type, $parameterName, $description); } - private function createIdentifierTokenMap() : array + private function parseVarTagValue(TokenIterator $tokens): Ast\PhpDoc\VarTagValueNode { - // Based on semi_reserved production. - return \array_fill_keys([\T_STRING, \T_STATIC, \T_ABSTRACT, \T_FINAL, \T_PRIVATE, \T_PROTECTED, \T_PUBLIC, \T_READONLY, \T_INCLUDE, \T_INCLUDE_ONCE, \T_EVAL, \T_REQUIRE, \T_REQUIRE_ONCE, \T_LOGICAL_OR, \T_LOGICAL_XOR, \T_LOGICAL_AND, \T_INSTANCEOF, \T_NEW, \T_CLONE, \T_EXIT, \T_IF, \T_ELSEIF, \T_ELSE, \T_ENDIF, \T_ECHO, \T_DO, \T_WHILE, \T_ENDWHILE, \T_FOR, \T_ENDFOR, \T_FOREACH, \T_ENDFOREACH, \T_DECLARE, \T_ENDDECLARE, \T_AS, \T_TRY, \T_CATCH, \T_FINALLY, \T_THROW, \T_USE, \T_INSTEADOF, \T_GLOBAL, \T_VAR, \T_UNSET, \T_ISSET, \T_EMPTY, \T_CONTINUE, \T_GOTO, \T_FUNCTION, \T_CONST, \T_RETURN, \T_PRINT, \T_YIELD, \T_LIST, \T_SWITCH, \T_ENDSWITCH, \T_CASE, \T_DEFAULT, \T_BREAK, \T_ARRAY, \T_CALLABLE, \T_EXTENDS, \T_IMPLEMENTS, \T_NAMESPACE, \T_TRAIT, \T_INTERFACE, \T_CLASS, \T_CLASS_C, \T_TRAIT_C, \T_FUNC_C, \T_METHOD_C, \T_LINE, \T_FILE, \T_DIR, \T_NS_C, \T_HALT_COMPILER, \T_FN, \T_MATCH], \true); + $type = $this->typeParser->parse($tokens); + $variableName = $this->parseOptionalVariableName($tokens); + $description = $this->parseOptionalDescription($tokens, $variableName === ''); + return new Ast\PhpDoc\VarTagValueNode($type, $variableName, $description); } -} -targetPhpVersion = $options['phpVersion'] ?? Emulative::PHP_8_1; - unset($options['phpVersion']); - parent::__construct($options); - $emulators = [new FlexibleDocStringEmulator(), new FnTokenEmulator(), new MatchTokenEmulator(), new CoaleseEqualTokenEmulator(), new NumericLiteralSeparatorEmulator(), new NullsafeTokenEmulator(), new AttributeEmulator(), new EnumTokenEmulator(), new ReadonlyTokenEmulator(), new ExplicitOctalEmulator()]; - // Collect emulators that are relevant for the PHP version we're running - // and the PHP version we're targeting for emulation. - foreach ($emulators as $emulator) { - $emulatorPhpVersion = $emulator->getPhpVersion(); - if ($this->isForwardEmulationNeeded($emulatorPhpVersion)) { - $this->emulators[] = $emulator; - } else { - if ($this->isReverseEmulationNeeded($emulatorPhpVersion)) { - $this->emulators[] = new ReverseEmulator($emulator); - } - } - } + $type = $this->typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens, \true); + return new Ast\PhpDoc\ReturnTagValueNode($type, $description); } - public function startLexing(string $code, ErrorHandler $errorHandler = null) + private function parseThrowsTagValue(TokenIterator $tokens): Ast\PhpDoc\ThrowsTagValueNode { - $emulators = \array_filter($this->emulators, function ($emulator) use($code) { - return $emulator->isEmulationNeeded($code); - }); - if (empty($emulators)) { - // Nothing to emulate, yay - parent::startLexing($code, $errorHandler); - return; - } - $this->patches = []; - foreach ($emulators as $emulator) { - $code = $emulator->preprocessCode($code, $this->patches); - } - $collector = new ErrorHandler\Collecting(); - parent::startLexing($code, $collector); - $this->sortPatches(); - $this->fixupTokens(); - $errors = $collector->getErrors(); - if (!empty($errors)) { - $this->fixupErrors($errors); - foreach ($errors as $error) { - $errorHandler->handleError($error); - } - } - foreach ($emulators as $emulator) { - $this->tokens = $emulator->emulate($code, $this->tokens); - } + $type = $this->typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens, \true); + return new Ast\PhpDoc\ThrowsTagValueNode($type, $description); } - private function isForwardEmulationNeeded(string $emulatorPhpVersion) : bool + private function parseMixinTagValue(TokenIterator $tokens): Ast\PhpDoc\MixinTagValueNode { - return \version_compare(\PHP_VERSION, $emulatorPhpVersion, '<') && \version_compare($this->targetPhpVersion, $emulatorPhpVersion, '>='); + $type = $this->typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens, \true); + return new Ast\PhpDoc\MixinTagValueNode($type, $description); } - private function isReverseEmulationNeeded(string $emulatorPhpVersion) : bool + private function parseRequireExtendsTagValue(TokenIterator $tokens): Ast\PhpDoc\RequireExtendsTagValueNode { - return \version_compare(\PHP_VERSION, $emulatorPhpVersion, '>=') && \version_compare($this->targetPhpVersion, $emulatorPhpVersion, '<'); + $type = $this->typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens, \true); + return new Ast\PhpDoc\RequireExtendsTagValueNode($type, $description); } - private function sortPatches() + private function parseRequireImplementsTagValue(TokenIterator $tokens): Ast\PhpDoc\RequireImplementsTagValueNode { - // Patches may be contributed by different emulators. - // Make sure they are sorted by increasing patch position. - \usort($this->patches, function ($p1, $p2) { - return $p1[0] <=> $p2[0]; - }); + $type = $this->typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens, \true); + return new Ast\PhpDoc\RequireImplementsTagValueNode($type, $description); } - private function fixupTokens() + private function parseDeprecatedTagValue(TokenIterator $tokens): Ast\PhpDoc\DeprecatedTagValueNode { - if (\count($this->patches) === 0) { - return; + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\DeprecatedTagValueNode($description); + } + private function parsePropertyTagValue(TokenIterator $tokens): Ast\PhpDoc\PropertyTagValueNode + { + $type = $this->typeParser->parse($tokens); + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\PropertyTagValueNode($type, $parameterName, $description); + } + private function parseMethodTagValue(TokenIterator $tokens): Ast\PhpDoc\MethodTagValueNode + { + $staticKeywordOrReturnTypeOrMethodName = $this->typeParser->parse($tokens); + if ($staticKeywordOrReturnTypeOrMethodName instanceof Ast\Type\IdentifierTypeNode && $staticKeywordOrReturnTypeOrMethodName->name === 'static') { + $isStatic = \true; + $returnTypeOrMethodName = $this->typeParser->parse($tokens); + } else { + $isStatic = \false; + $returnTypeOrMethodName = $staticKeywordOrReturnTypeOrMethodName; } - // Load first patch - $patchIdx = 0; - list($patchPos, $patchType, $patchText) = $this->patches[$patchIdx]; - // We use a manual loop over the tokens, because we modify the array on the fly - $pos = 0; - for ($i = 0, $c = \count($this->tokens); $i < $c; $i++) { - $token = $this->tokens[$i]; - if (\is_string($token)) { - if ($patchPos === $pos) { - // Only support replacement for string tokens. - \assert($patchType === 'replace'); - $this->tokens[$i] = $patchText; - // Fetch the next patch - $patchIdx++; - if ($patchIdx >= \count($this->patches)) { - // No more patches, we're done - return; - } - list($patchPos, $patchType, $patchText) = $this->patches[$patchIdx]; - } - $pos += \strlen($token); - continue; - } - $len = \strlen($token[1]); - $posDelta = 0; - while ($patchPos >= $pos && $patchPos < $pos + $len) { - $patchTextLen = \strlen($patchText); - if ($patchType === 'remove') { - if ($patchPos === $pos && $patchTextLen === $len) { - // Remove token entirely - \array_splice($this->tokens, $i, 1, []); - $i--; - $c--; - } else { - // Remove from token string - $this->tokens[$i][1] = \substr_replace($token[1], '', $patchPos - $pos + $posDelta, $patchTextLen); - $posDelta -= $patchTextLen; - } - } elseif ($patchType === 'add') { - // Insert into the token string - $this->tokens[$i][1] = \substr_replace($token[1], $patchText, $patchPos - $pos + $posDelta, 0); - $posDelta += $patchTextLen; - } else { - if ($patchType === 'replace') { - // Replace inside the token string - $this->tokens[$i][1] = \substr_replace($token[1], $patchText, $patchPos - $pos + $posDelta, $patchTextLen); - } else { - \assert(\false); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_IDENTIFIER)) { + $returnType = $returnTypeOrMethodName; + $methodName = $tokens->currentTokenValue(); + $tokens->next(); + } elseif ($returnTypeOrMethodName instanceof Ast\Type\IdentifierTypeNode) { + $returnType = $isStatic ? $staticKeywordOrReturnTypeOrMethodName : null; + $methodName = $returnTypeOrMethodName->name; + $isStatic = \false; + } else { + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + // will throw exception + exit; + } + $templateTypes = []; + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)) { + do { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $templateTypes[] = $this->enrichWithAttributes($tokens, $this->typeParser->parseTemplateTagValue($tokens), $startLine, $startIndex); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET); + } + $parameters = []; + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PARENTHESES)) { + $parameters[] = $this->parseMethodTagValueParameter($tokens); + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)) { + $parameters[] = $this->parseMethodTagValueParameter($tokens); + } + } + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\MethodTagValueNode($isStatic, $returnType, $methodName, $parameters, $description, $templateTypes); + } + private function parseMethodTagValueParameter(TokenIterator $tokens): Ast\PhpDoc\MethodTagValueParameterNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + switch ($tokens->currentTokenType()) { + case Lexer::TOKEN_IDENTIFIER: + case Lexer::TOKEN_OPEN_PARENTHESES: + case Lexer::TOKEN_NULLABLE: + $parameterType = $this->typeParser->parse($tokens); + break; + default: + $parameterType = null; + } + $isReference = $tokens->tryConsumeTokenType(Lexer::TOKEN_REFERENCE); + $isVariadic = $tokens->tryConsumeTokenType(Lexer::TOKEN_VARIADIC); + $parameterName = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_VARIABLE); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_EQUAL)) { + $defaultValue = $this->constantExprParser->parse($tokens); + } else { + $defaultValue = null; + } + return $this->enrichWithAttributes($tokens, new Ast\PhpDoc\MethodTagValueParameterNode($parameterType, $isReference, $isVariadic, $parameterName, $defaultValue), $startLine, $startIndex); + } + private function parseExtendsTagValue(string $tagName, TokenIterator $tokens): Ast\PhpDoc\PhpDocTagValueNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $baseType = new IdentifierTypeNode($tokens->currentTokenValue()); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $type = $this->typeParser->parseGeneric($tokens, $this->typeParser->enrichWithAttributes($tokens, $baseType, $startLine, $startIndex)); + $description = $this->parseOptionalDescription($tokens); + switch ($tagName) { + case '@extends': + return new Ast\PhpDoc\ExtendsTagValueNode($type, $description); + case '@implements': + return new Ast\PhpDoc\ImplementsTagValueNode($type, $description); + case '@use': + return new Ast\PhpDoc\UsesTagValueNode($type, $description); + } + throw new ShouldNotHappenException(); + } + private function parseTypeAliasTagValue(TokenIterator $tokens): Ast\PhpDoc\TypeAliasTagValueNode + { + $alias = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + // support phan-type/psalm-type syntax + $tokens->tryConsumeTokenType(Lexer::TOKEN_EQUAL); + if ($this->preserveTypeAliasesWithInvalidTypes) { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + try { + $type = $this->typeParser->parse($tokens); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PHPDOC)) { + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL)) { + throw new ParserException($tokens->currentTokenValue(), $tokens->currentTokenType(), $tokens->currentTokenOffset(), Lexer::TOKEN_PHPDOC_EOL, null, $tokens->currentTokenLine()); } } - // Fetch the next patch - $patchIdx++; - if ($patchIdx >= \count($this->patches)) { - // No more patches, we're done - return; - } - list($patchPos, $patchType, $patchText) = $this->patches[$patchIdx]; - // Multiple patches may apply to the same token. Reload the current one to check - // If the new patch applies - $token = $this->tokens[$i]; + return new Ast\PhpDoc\TypeAliasTagValueNode($alias, $type); + } catch (ParserException $e) { + $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\TypeAliasTagValueNode($alias, $this->enrichWithAttributes($tokens, new Ast\Type\InvalidTypeNode($e), $startLine, $startIndex)); } - $pos += $len; } - // A patch did not apply - \assert(\false); + $type = $this->typeParser->parse($tokens); + return new Ast\PhpDoc\TypeAliasTagValueNode($alias, $type); + } + private function parseTypeAliasImportTagValue(TokenIterator $tokens): Ast\PhpDoc\TypeAliasImportTagValueNode + { + $importedAlias = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $tokens->consumeTokenValue(Lexer::TOKEN_IDENTIFIER, 'from'); + $identifierStartLine = $tokens->currentTokenLine(); + $identifierStartIndex = $tokens->currentTokenIndex(); + $importedFrom = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $importedFromType = $this->enrichWithAttributes($tokens, new IdentifierTypeNode($importedFrom), $identifierStartLine, $identifierStartIndex); + $importedAs = null; + if ($tokens->tryConsumeTokenValue('as')) { + $importedAs = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + } + return new Ast\PhpDoc\TypeAliasImportTagValueNode($importedAlias, $importedFromType, $importedAs); } /** - * Fixup line and position information in errors. - * - * @param Error[] $errors + * @return Ast\PhpDoc\AssertTagValueNode|Ast\PhpDoc\AssertTagPropertyValueNode|Ast\PhpDoc\AssertTagMethodValueNode */ - private function fixupErrors(array $errors) + private function parseAssertTagValue(TokenIterator $tokens): Ast\PhpDoc\PhpDocTagValueNode { - foreach ($errors as $error) { - $attrs = $error->getAttributes(); - $posDelta = 0; - $lineDelta = 0; - foreach ($this->patches as $patch) { - list($patchPos, $patchType, $patchText) = $patch; - if ($patchPos >= $attrs['startFilePos']) { - // No longer relevant - break; - } - if ($patchType === 'add') { - $posDelta += \strlen($patchText); - $lineDelta += \substr_count($patchText, "\n"); - } else { - if ($patchType === 'remove') { - $posDelta -= \strlen($patchText); - $lineDelta -= \substr_count($patchText, "\n"); - } - } + $isNegated = $tokens->tryConsumeTokenType(Lexer::TOKEN_NEGATED); + $isEquality = $tokens->tryConsumeTokenType(Lexer::TOKEN_EQUAL); + $type = $this->typeParser->parse($tokens); + $parameter = $this->parseAssertParameter($tokens); + $description = $this->parseOptionalDescription($tokens); + if (array_key_exists('method', $parameter)) { + return new Ast\PhpDoc\AssertTagMethodValueNode($type, $parameter['parameter'], $parameter['method'], $isNegated, $description, $isEquality); + } elseif (array_key_exists('property', $parameter)) { + return new Ast\PhpDoc\AssertTagPropertyValueNode($type, $parameter['parameter'], $parameter['property'], $isNegated, $description, $isEquality); + } + return new Ast\PhpDoc\AssertTagValueNode($type, $parameter['parameter'], $isNegated, $description, $isEquality); + } + /** + * @return array{parameter: string}|array{parameter: string, property: string}|array{parameter: string, method: string} + */ + private function parseAssertParameter(TokenIterator $tokens): array + { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_THIS_VARIABLE)) { + $parameter = '$this'; + $tokens->next(); + } else { + $parameter = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_VARIABLE); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_ARROW)) { + $tokens->consumeTokenType(Lexer::TOKEN_ARROW); + $propertyOrMethod = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + return ['parameter' => $parameter, 'method' => $propertyOrMethod]; } - $attrs['startFilePos'] += $posDelta; - $attrs['endFilePos'] += $posDelta; - $attrs['startLine'] += $lineDelta; - $attrs['endLine'] += $lineDelta; - $error->setAttributes($attrs); + return ['parameter' => $parameter, 'property' => $propertyOrMethod]; } + return ['parameter' => $parameter]; } -} -typeParser->parse($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\SelfOutTagValueNode($type, $description); } - public function isEmulationNeeded(string $code) : bool + private function parseParamOutTagValue(TokenIterator $tokens): Ast\PhpDoc\ParamOutTagValueNode { - return \strpos($code, '#[') !== \false; + $type = $this->typeParser->parse($tokens); + $parameterName = $this->parseRequiredVariableName($tokens); + $description = $this->parseOptionalDescription($tokens); + return new Ast\PhpDoc\ParamOutTagValueNode($type, $parameterName, $description); } - public function emulate(string $code, array $tokens) : array + private function parseOptionalVariableName(TokenIterator $tokens): string { - // We need to manually iterate and manage a count because we'll change - // the tokens array on the way. - $line = 1; - for ($i = 0, $c = \count($tokens); $i < $c; ++$i) { - if ($tokens[$i] === '#' && isset($tokens[$i + 1]) && $tokens[$i + 1] === '[') { - \array_splice($tokens, $i, 2, [[\T_ATTRIBUTE, '#[', $line]]); - $c--; - continue; - } - if (\is_array($tokens[$i])) { - $line += \substr_count($tokens[$i][1], "\n"); - } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_VARIABLE)) { + $parameterName = $tokens->currentTokenValue(); + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_THIS_VARIABLE)) { + $parameterName = '$this'; + $tokens->next(); + } else { + $parameterName = ''; } - return $tokens; + return $parameterName; } - public function reverseEmulate(string $code, array $tokens) : array + private function parseRequiredVariableName(TokenIterator $tokens): string { - // TODO - return $tokens; + $parameterName = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_VARIABLE); + return $parameterName; } - public function preprocessCode(string $code, array &$patches) : string + private function parseOptionalDescription(TokenIterator $tokens, bool $limitStartToken = \false): string { - $pos = 0; - while (\false !== ($pos = \strpos($code, '#[', $pos))) { - // Replace #[ with %[ - $code[$pos] = '%'; - $patches[] = [$pos, 'replace', '#']; - $pos += 2; + if ($limitStartToken) { + foreach (self::DISALLOWED_DESCRIPTION_START_TOKENS as $disallowedStartToken) { + if (!$tokens->isCurrentTokenType($disallowedStartToken)) { + continue; + } + $tokens->consumeTokenType(Lexer::TOKEN_OTHER); + // will throw exception + } + if ($this->requireWhitespaceBeforeDescription && !$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END) && !$tokens->isPrecededByHorizontalWhitespace()) { + $tokens->consumeTokenType(Lexer::TOKEN_HORIZONTAL_WS); + // will throw exception + } } - return $code; + return $this->parseText($tokens)->text; } } unescapeStrings = $unescapeStrings; + $this->quoteAwareConstExprString = $quoteAwareConstExprString; + $this->useLinesAttributes = $usedAttributes['lines'] ?? \false; + $this->useIndexAttributes = $usedAttributes['indexes'] ?? \false; + $this->parseDoctrineStrings = \false; } - public function isEmulationNeeded(string $code) : bool + /** + * @internal + */ + public function toDoctrine(): self { - return \strpos($code, '??=') !== \false; + $self = new self($this->unescapeStrings, $this->quoteAwareConstExprString, ['lines' => $this->useLinesAttributes, 'indexes' => $this->useIndexAttributes]); + $self->parseDoctrineStrings = \true; + return $self; } - public function emulate(string $code, array $tokens) : array + public function parse(TokenIterator $tokens, bool $trimStrings = \false): Ast\ConstExpr\ConstExprNode { - // We need to manually iterate and manage a count because we'll change - // the tokens array on the way - $line = 1; - for ($i = 0, $c = \count($tokens); $i < $c; ++$i) { - if (isset($tokens[$i + 1])) { - if ($tokens[$i][0] === \T_COALESCE && $tokens[$i + 1] === '=') { - \array_splice($tokens, $i, 2, [[\T_COALESCE_EQUAL, '??=', $line]]); - $c--; - continue; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_FLOAT)) { + $value = $tokens->currentTokenValue(); + $tokens->next(); + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprFloatNode(str_replace('_', '', $value)), $startLine, $startIndex); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_INTEGER)) { + $value = $tokens->currentTokenValue(); + $tokens->next(); + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprIntegerNode(str_replace('_', '', $value)), $startLine, $startIndex); + } + if ($this->parseDoctrineStrings && $tokens->isCurrentTokenType(Lexer::TOKEN_DOCTRINE_ANNOTATION_STRING)) { + $value = $tokens->currentTokenValue(); + $tokens->next(); + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\DoctrineConstExprStringNode(Ast\ConstExpr\DoctrineConstExprStringNode::unescape($value)), $startLine, $startIndex); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_SINGLE_QUOTED_STRING, Lexer::TOKEN_DOUBLE_QUOTED_STRING)) { + if ($this->parseDoctrineStrings) { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_SINGLE_QUOTED_STRING)) { + throw new ParserException($tokens->currentTokenValue(), $tokens->currentTokenType(), $tokens->currentTokenOffset(), Lexer::TOKEN_DOUBLE_QUOTED_STRING, null, $tokens->currentTokenLine()); + } + $value = $tokens->currentTokenValue(); + $tokens->next(); + return $this->enrichWithAttributes($tokens, $this->parseDoctrineString($value, $tokens), $startLine, $startIndex); + } + $value = $tokens->currentTokenValue(); + $type = $tokens->currentTokenType(); + if ($trimStrings) { + if ($this->unescapeStrings) { + $value = StringUnescaper::unescapeString($value); + } else { + $value = substr($value, 1, -1); } } - if (\is_array($tokens[$i])) { - $line += \substr_count($tokens[$i][1], "\n"); + $tokens->next(); + if ($this->quoteAwareConstExprString) { + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\QuoteAwareConstExprStringNode($value, $type === Lexer::TOKEN_SINGLE_QUOTED_STRING ? Ast\ConstExpr\QuoteAwareConstExprStringNode::SINGLE_QUOTED : Ast\ConstExpr\QuoteAwareConstExprStringNode::DOUBLE_QUOTED), $startLine, $startIndex); + } + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprStringNode($value), $startLine, $startIndex); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_IDENTIFIER)) { + $identifier = $tokens->currentTokenValue(); + $tokens->next(); + switch (strtolower($identifier)) { + case 'true': + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprTrueNode(), $startLine, $startIndex); + case 'false': + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprFalseNode(), $startLine, $startIndex); + case 'null': + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprNullNode(), $startLine, $startIndex); + case 'array': + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES); + return $this->parseArray($tokens, Lexer::TOKEN_CLOSE_PARENTHESES, $startIndex); + } + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_DOUBLE_COLON)) { + $classConstantName = ''; + $lastType = null; + while (\true) { + if ($lastType !== Lexer::TOKEN_IDENTIFIER && $tokens->currentTokenType() === Lexer::TOKEN_IDENTIFIER) { + $classConstantName .= $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $lastType = Lexer::TOKEN_IDENTIFIER; + continue; + } + if ($lastType !== Lexer::TOKEN_WILDCARD && $tokens->tryConsumeTokenType(Lexer::TOKEN_WILDCARD)) { + $classConstantName .= '*'; + $lastType = Lexer::TOKEN_WILDCARD; + if ($tokens->getSkippedHorizontalWhiteSpaceIfAny() !== '') { + break; + } + continue; + } + if ($lastType === null) { + // trigger parse error if nothing valid was consumed + $tokens->consumeTokenType(Lexer::TOKEN_WILDCARD); + } + break; + } + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstFetchNode($identifier, $classConstantName), $startLine, $startIndex); } + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstFetchNode('', $identifier), $startLine, $startIndex); + } elseif ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + return $this->parseArray($tokens, Lexer::TOKEN_CLOSE_SQUARE_BRACKET, $startIndex); } - return $tokens; - } - public function reverseEmulate(string $code, array $tokens) : array - { - // ??= was not valid code previously, don't bother. - return $tokens; + throw new ParserException($tokens->currentTokenValue(), $tokens->currentTokenType(), $tokens->currentTokenOffset(), Lexer::TOKEN_IDENTIFIER, null, $tokens->currentTokenLine()); } -} -currentTokenLine(); + if (!$tokens->tryConsumeTokenType($endToken)) { + do { + $items[] = $this->parseArrayItem($tokens); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA) && !$tokens->isCurrentTokenType($endToken)); + $tokens->consumeTokenType($endToken); + } + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprArrayNode($items), $startLine, $startIndex); } - public function getKeywordString() : string + /** + * This method is supposed to be called with TokenIterator after reading TOKEN_DOUBLE_QUOTED_STRING and shifting + * to the next token. + */ + public function parseDoctrineString(string $text, TokenIterator $tokens): Ast\ConstExpr\DoctrineConstExprStringNode { - return 'enum'; + // Because of how Lexer works, a valid Doctrine string + // can consist of a sequence of TOKEN_DOUBLE_QUOTED_STRING and TOKEN_DOCTRINE_ANNOTATION_STRING + while ($tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_QUOTED_STRING, Lexer::TOKEN_DOCTRINE_ANNOTATION_STRING)) { + $text .= $tokens->currentTokenValue(); + $tokens->next(); + } + return new Ast\ConstExpr\DoctrineConstExprStringNode(Ast\ConstExpr\DoctrineConstExprStringNode::unescape($text)); } - public function getKeywordToken() : int + private function parseArrayItem(TokenIterator $tokens): Ast\ConstExpr\ConstExprArrayItemNode { - return \T_ENUM; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $expr = $this->parse($tokens); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_DOUBLE_ARROW)) { + $key = $expr; + $value = $this->parse($tokens); + } else { + $key = null; + $value = $expr; + } + return $this->enrichWithAttributes($tokens, new Ast\ConstExpr\ConstExprArrayItemNode($key, $value), $startLine, $startIndex); } - protected function isKeywordContext(array $tokens, int $pos) : bool + /** + * @template T of Ast\ConstExpr\ConstExprNode + * @param T $node + * @return T + */ + private function enrichWithAttributes(TokenIterator $tokens, Ast\ConstExpr\ConstExprNode $node, int $startLine, int $startIndex): Ast\ConstExpr\ConstExprNode { - return parent::isKeywordContext($tokens, $pos) && isset($tokens[$pos + 2]) && $tokens[$pos + 1][0] === \T_WHITESPACE && $tokens[$pos + 2][0] === \T_STRING; + if ($this->useLinesAttributes) { + $node->setAttribute(Ast\Attribute::START_LINE, $startLine); + $node->setAttribute(Ast\Attribute::END_LINE, $tokens->currentTokenLine()); + } + if ($this->useIndexAttributes) { + $node->setAttribute(Ast\Attribute::START_INDEX, $startIndex); + $node->setAttribute(Ast\Attribute::END_INDEX, $tokens->endIndexOfLastRelevantToken()); + } + return $node; } } '\\', 'n' => "\n", 'r' => "\r", 't' => "\t", 'f' => "\f", 'v' => "\v", 'e' => "\x1b"]; + public static function unescapeString(string $string): string { - return \strpos($code, '0o') !== \false || \strpos($code, '0O') !== \false; - } - public function emulate(string $code, array $tokens) : array - { - for ($i = 0, $c = \count($tokens); $i < $c; ++$i) { - if ($tokens[$i][0] == \T_LNUMBER && $tokens[$i][1] === '0' && isset($tokens[$i + 1]) && $tokens[$i + 1][0] == \T_STRING && \preg_match('/[oO][0-7]+(?:_[0-7]+)*/', $tokens[$i + 1][1])) { - $tokenKind = $this->resolveIntegerOrFloatToken($tokens[$i + 1][1]); - \array_splice($tokens, $i, 2, [[$tokenKind, '0' . $tokens[$i + 1][1], $tokens[$i][2]]]); - $c--; - } + $quote = $string[0]; + if ($quote === '\'') { + return str_replace(['\\\\', '\\\''], ['\\', '\''], substr($string, 1, -1)); } - return $tokens; + return self::parseEscapeSequences(substr($string, 1, -1), '"'); } - private function resolveIntegerOrFloatToken(string $str) : int + /** + * Implementation based on https://github.com/nikic/PHP-Parser/blob/b0edd4c41111042d43bb45c6c657b2e0db367d9e/lib/PhpParser/Node/Scalar/String_.php#L90-L130 + */ + private static function parseEscapeSequences(string $str, string $quote): string { - $str = \substr($str, 1); - $str = \str_replace('_', '', $str); - $num = \octdec($str); - return \is_float($num) ? \T_DNUMBER : \T_LNUMBER; + $str = str_replace('\\' . $quote, $quote, $str); + return preg_replace_callback('~\\\\([\\\\nrtfve]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3}|u\{([0-9a-fA-F]+)\})~', static function ($matches) { + $str = $matches[1]; + if (isset(self::REPLACEMENTS[$str])) { + return self::REPLACEMENTS[$str]; + } + if ($str[0] === 'x' || $str[0] === 'X') { + return chr((int) hexdec(substr($str, 1))); + } + if ($str[0] === 'u') { + if (!isset($matches[2])) { + throw new ShouldNotHappenException(); + } + return self::codePointToUtf8((int) hexdec($matches[2])); + } + return chr((int) octdec($str)); + }, $str); } - public function reverseEmulate(string $code, array $tokens) : array + /** + * Implementation based on https://github.com/nikic/PHP-Parser/blob/b0edd4c41111042d43bb45c6c657b2e0db367d9e/lib/PhpParser/Node/Scalar/String_.php#L132-L154 + */ + private static function codePointToUtf8(int $num): string { - // Explicit octals were not legal code previously, don't bother. - return $tokens; + if ($num <= 0x7f) { + return chr($num); + } + if ($num <= 0x7ff) { + return chr(($num >> 6) + 0xc0) . chr(($num & 0x3f) + 0x80); + } + if ($num <= 0xffff) { + return chr(($num >> 12) + 0xe0) . chr(($num >> 6 & 0x3f) + 0x80) . chr(($num & 0x3f) + 0x80); + } + if ($num <= 0x1fffff) { + return chr(($num >> 18) + 0xf0) . chr(($num >> 12 & 0x3f) + 0x80) . chr(($num >> 6 & 0x3f) + 0x80) . chr(($num & 0x3f) + 0x80); + } + // Invalid UTF-8 codepoint escape sequence: Codepoint too large + return "�"; } } \h*)\2(?![a-zA-Z0-9_\x80-\xff])(?(?:;?[\r\n])?)/x -REGEX; - public function getPhpVersion() : string +use LogicException; +use PHPUnitPHAR\PHPStan\PhpDocParser\Ast; +use PHPUnitPHAR\PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode; +use PHPUnitPHAR\PHPStan\PhpDocParser\Lexer\Lexer; +use function in_array; +use function str_replace; +use function strlen; +use function strpos; +use function substr_compare; +use function trim; +class TypeParser +{ + /** @var ConstExprParser|null */ + private $constExprParser; + /** @var bool */ + private $quoteAwareConstExprString; + /** @var bool */ + private $useLinesAttributes; + /** @var bool */ + private $useIndexAttributes; + /** + * @param array{lines?: bool, indexes?: bool} $usedAttributes + */ + public function __construct(?ConstExprParser $constExprParser = null, bool $quoteAwareConstExprString = \false, array $usedAttributes = []) { - return Emulative::PHP_7_3; + $this->constExprParser = $constExprParser; + $this->quoteAwareConstExprString = $quoteAwareConstExprString; + $this->useLinesAttributes = $usedAttributes['lines'] ?? \false; + $this->useIndexAttributes = $usedAttributes['indexes'] ?? \false; } - public function isEmulationNeeded(string $code) : bool + /** @phpstan-impure */ + public function parse(TokenIterator $tokens): Ast\Type\TypeNode { - return \strpos($code, '<<<') !== \false; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_NULLABLE)) { + $type = $this->parseNullable($tokens); + } else { + $type = $this->parseAtomic($tokens); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_UNION)) { + $type = $this->parseUnion($tokens, $type); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_INTERSECTION)) { + $type = $this->parseIntersection($tokens, $type); + } + } + return $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); } - public function emulate(string $code, array $tokens) : array + /** + * @internal + * @template T of Ast\Node + * @param T $type + * @return T + */ + public function enrichWithAttributes(TokenIterator $tokens, Ast\Node $type, int $startLine, int $startIndex): Ast\Node { - // Handled by preprocessing + fixup. - return $tokens; + if ($this->useLinesAttributes) { + $type->setAttribute(Ast\Attribute::START_LINE, $startLine); + $type->setAttribute(Ast\Attribute::END_LINE, $tokens->currentTokenLine()); + } + if ($this->useIndexAttributes) { + $type->setAttribute(Ast\Attribute::START_INDEX, $startIndex); + $type->setAttribute(Ast\Attribute::END_INDEX, $tokens->endIndexOfLastRelevantToken()); + } + return $type; } - public function reverseEmulate(string $code, array $tokens) : array + /** @phpstan-impure */ + private function subParse(TokenIterator $tokens): Ast\Type\TypeNode { - // Not supported. - return $tokens; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_NULLABLE)) { + $type = $this->parseNullable($tokens); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_VARIABLE)) { + $type = $this->parseConditionalForParameter($tokens, $tokens->currentTokenValue()); + } else { + $type = $this->parseAtomic($tokens); + if ($tokens->isCurrentTokenValue('is')) { + $type = $this->parseConditional($tokens, $type); + } else { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_UNION)) { + $type = $this->subParseUnion($tokens, $type); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_INTERSECTION)) { + $type = $this->subParseIntersection($tokens, $type); + } + } + } + return $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + /** @phpstan-impure */ + private function parseAtomic(TokenIterator $tokens): Ast\Type\TypeNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $type = $this->subParse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + return $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_THIS_VARIABLE)) { + $type = $this->enrichWithAttributes($tokens, new Ast\Type\ThisTypeNode(), $startLine, $startIndex); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + return $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + $currentTokenValue = $tokens->currentTokenValue(); + $tokens->pushSavePoint(); + // because of ConstFetchNode + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_IDENTIFIER)) { + $type = $this->enrichWithAttributes($tokens, new Ast\Type\IdentifierTypeNode($currentTokenValue), $startLine, $startIndex); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_COLON)) { + $tokens->dropSavePoint(); + // because of ConstFetchNode + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)) { + $tokens->pushSavePoint(); + $isHtml = $this->isHtml($tokens); + $tokens->rollback(); + if ($isHtml) { + return $type; + } + $origType = $type; + $type = $this->tryParseCallable($tokens, $type, \true); + if ($type === $origType) { + $type = $this->parseGeneric($tokens, $type); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + } + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $type = $this->tryParseCallable($tokens, $type, \false); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } elseif (in_array($type->name, ['array', 'list', 'object'], \true) && $tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_CURLY_BRACKET) && !$tokens->isPrecededByHorizontalWhitespace()) { + if ($type->name === 'object') { + $type = $this->parseObjectShape($tokens); + } else { + $type = $this->parseArrayShape($tokens, $type, $type->name); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + } + } + return $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } else { + $tokens->rollback(); + // because of ConstFetchNode + } + } else { + $tokens->dropSavePoint(); + // because of ConstFetchNode + } + $currentTokenValue = $tokens->currentTokenValue(); + $currentTokenType = $tokens->currentTokenType(); + $currentTokenOffset = $tokens->currentTokenOffset(); + $currentTokenLine = $tokens->currentTokenLine(); + if ($this->constExprParser === null) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } + try { + $constExpr = $this->constExprParser->parse($tokens, \true); + if ($constExpr instanceof Ast\ConstExpr\ConstExprArrayNode) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } + $type = $this->enrichWithAttributes($tokens, new Ast\Type\ConstTypeNode($constExpr), $startLine, $startIndex); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + return $type; + } catch (LogicException $e) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } + } + /** @phpstan-impure */ + private function parseUnion(TokenIterator $tokens, Ast\Type\TypeNode $type): Ast\Type\TypeNode + { + $types = [$type]; + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_UNION)) { + $types[] = $this->parseAtomic($tokens); + } + return new Ast\Type\UnionTypeNode($types); + } + /** @phpstan-impure */ + private function subParseUnion(TokenIterator $tokens, Ast\Type\TypeNode $type): Ast\Type\TypeNode + { + $types = [$type]; + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_UNION)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $types[] = $this->parseAtomic($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } + return new Ast\Type\UnionTypeNode($types); + } + /** @phpstan-impure */ + private function parseIntersection(TokenIterator $tokens, Ast\Type\TypeNode $type): Ast\Type\TypeNode + { + $types = [$type]; + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_INTERSECTION)) { + $types[] = $this->parseAtomic($tokens); + } + return new Ast\Type\IntersectionTypeNode($types); + } + /** @phpstan-impure */ + private function subParseIntersection(TokenIterator $tokens, Ast\Type\TypeNode $type): Ast\Type\TypeNode + { + $types = [$type]; + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_INTERSECTION)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $types[] = $this->parseAtomic($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } + return new Ast\Type\IntersectionTypeNode($types); + } + /** @phpstan-impure */ + private function parseConditional(TokenIterator $tokens, Ast\Type\TypeNode $subjectType): Ast\Type\TypeNode + { + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + $negated = \false; + if ($tokens->isCurrentTokenValue('not')) { + $negated = \true; + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + } + $targetType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_NULLABLE); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $ifType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_COLON); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $elseType = $this->subParse($tokens); + return new Ast\Type\ConditionalTypeNode($subjectType, $targetType, $ifType, $elseType, $negated); + } + /** @phpstan-impure */ + private function parseConditionalForParameter(TokenIterator $tokens, string $parameterName): Ast\Type\TypeNode + { + $tokens->consumeTokenType(Lexer::TOKEN_VARIABLE); + $tokens->consumeTokenValue(Lexer::TOKEN_IDENTIFIER, 'is'); + $negated = \false; + if ($tokens->isCurrentTokenValue('not')) { + $negated = \true; + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + } + $targetType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_NULLABLE); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $ifType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_COLON); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $elseType = $this->subParse($tokens); + return new Ast\Type\ConditionalTypeForParameterNode($parameterName, $targetType, $ifType, $elseType, $negated); + } + /** @phpstan-impure */ + private function parseNullable(TokenIterator $tokens): Ast\Type\TypeNode + { + $tokens->consumeTokenType(Lexer::TOKEN_NULLABLE); + $type = $this->parseAtomic($tokens); + return new Ast\Type\NullableTypeNode($type); + } + /** @phpstan-impure */ + public function isHtml(TokenIterator $tokens): bool + { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_IDENTIFIER)) { + return \false; + } + $htmlTagName = $tokens->currentTokenValue(); + $tokens->next(); + if (!$tokens->tryConsumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET)) { + return \false; + } + $endTag = ''; + $endTagSearchOffset = -strlen($endTag); + while (!$tokens->isCurrentTokenType(Lexer::TOKEN_END)) { + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET) && strpos($tokens->currentTokenValue(), '/' . $htmlTagName . '>') !== \false || substr_compare($tokens->currentTokenValue(), $endTag, $endTagSearchOffset) === 0) { + return \true; + } + $tokens->next(); + } + return \false; + } + /** @phpstan-impure */ + public function parseGeneric(TokenIterator $tokens, Ast\Type\IdentifierTypeNode $baseType): Ast\Type\GenericTypeNode + { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET); + $startLine = $baseType->getAttribute(Ast\Attribute::START_LINE); + $startIndex = $baseType->getAttribute(Ast\Attribute::START_INDEX); + $genericTypes = []; + $variances = []; + $isFirst = \true; + while ($isFirst || $tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + // trailing comma case + if (!$isFirst && $tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET)) { + break; + } + $isFirst = \false; + [$genericTypes[], $variances[]] = $this->parseGenericTypeArgument($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } + $type = new Ast\Type\GenericTypeNode($baseType, $genericTypes, $variances); + if ($startLine !== null && $startIndex !== null) { + $type = $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET); + return $type; } - public function preprocessCode(string $code, array &$patches) : string + /** + * @phpstan-impure + * @return array{Ast\Type\TypeNode, Ast\Type\GenericTypeNode::VARIANCE_*} + */ + public function parseGenericTypeArgument(TokenIterator $tokens): array { - if (!\preg_match_all(self::FLEXIBLE_DOC_STRING_REGEX, $code, $matches, \PREG_SET_ORDER | \PREG_OFFSET_CAPTURE)) { - // No heredoc/nowdoc found - return $code; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_WILDCARD)) { + return [$this->enrichWithAttributes($tokens, new Ast\Type\IdentifierTypeNode('mixed'), $startLine, $startIndex), Ast\Type\GenericTypeNode::VARIANCE_BIVARIANT]; } - // Keep track of how much we need to adjust string offsets due to the modifications we - // already made - $posDelta = 0; - foreach ($matches as $match) { - $indentation = $match['indentation'][0]; - $indentationStart = $match['indentation'][1]; - $separator = $match['separator'][0]; - $separatorStart = $match['separator'][1]; - if ($indentation === '' && $separator !== '') { - // Ordinary heredoc/nowdoc - continue; - } - if ($indentation !== '') { - // Remove indentation - $indentationLen = \strlen($indentation); - $code = \substr_replace($code, '', $indentationStart + $posDelta, $indentationLen); - $patches[] = [$indentationStart + $posDelta, 'add', $indentation]; - $posDelta -= $indentationLen; + if ($tokens->tryConsumeTokenValue('contravariant')) { + $variance = Ast\Type\GenericTypeNode::VARIANCE_CONTRAVARIANT; + } elseif ($tokens->tryConsumeTokenValue('covariant')) { + $variance = Ast\Type\GenericTypeNode::VARIANCE_COVARIANT; + } else { + $variance = Ast\Type\GenericTypeNode::VARIANCE_INVARIANT; + } + $type = $this->parse($tokens); + return [$type, $variance]; + } + /** + * @throws ParserException + * @param ?callable(TokenIterator): string $parseDescription + */ + public function parseTemplateTagValue(TokenIterator $tokens, ?callable $parseDescription = null): TemplateTagValueNode + { + $name = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); + if ($tokens->tryConsumeTokenValue('of') || $tokens->tryConsumeTokenValue('as')) { + $bound = $this->parse($tokens); + } else { + $bound = null; + } + if ($tokens->tryConsumeTokenValue('=')) { + $default = $this->parse($tokens); + } else { + $default = null; + } + if ($parseDescription !== null) { + $description = $parseDescription($tokens); + } else { + $description = ''; + } + if ($name === '') { + throw new LogicException('Template tag name cannot be empty.'); + } + return new Ast\PhpDoc\TemplateTagValueNode($name, $bound, $description, $default); + } + /** @phpstan-impure */ + private function parseCallable(TokenIterator $tokens, Ast\Type\IdentifierTypeNode $identifier, bool $hasTemplate): Ast\Type\TypeNode + { + $templates = $hasTemplate ? $this->parseCallableTemplates($tokens) : []; + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $parameters = []; + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PARENTHESES)) { + $parameters[] = $this->parseCallableParameter($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_PARENTHESES)) { + break; + } + $parameters[] = $this->parseCallableParameter($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); } - if ($separator === '') { - // Insert newline as separator - $code = \substr_replace($code, "\n", $separatorStart + $posDelta, 0); - $patches[] = [$separatorStart + $posDelta, 'remove', "\n"]; - $posDelta += 1; + } + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + $tokens->consumeTokenType(Lexer::TOKEN_COLON); + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $returnType = $this->enrichWithAttributes($tokens, $this->parseCallableReturnType($tokens), $startLine, $startIndex); + return new Ast\Type\CallableTypeNode($identifier, $parameters, $returnType, $templates); + } + /** + * @return Ast\PhpDoc\TemplateTagValueNode[] + * + * @phpstan-impure + */ + private function parseCallableTemplates(TokenIterator $tokens): array + { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET); + $templates = []; + $isFirst = \true; + while ($isFirst || $tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + // trailing comma case + if (!$isFirst && $tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET)) { + break; } + $isFirst = \false; + $templates[] = $this->parseCallableTemplateArgument($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); } - return $code; + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET); + return $templates; } -} -currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + return $this->enrichWithAttributes($tokens, $this->parseTemplateTagValue($tokens), $startLine, $startIndex); } - public function getKeywordString() : string + /** @phpstan-impure */ + private function parseCallableParameter(TokenIterator $tokens): Ast\Type\CallableTypeParameterNode { - return 'fn'; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $type = $this->parse($tokens); + $isReference = $tokens->tryConsumeTokenType(Lexer::TOKEN_REFERENCE); + $isVariadic = $tokens->tryConsumeTokenType(Lexer::TOKEN_VARIADIC); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_VARIABLE)) { + $parameterName = $tokens->currentTokenValue(); + $tokens->consumeTokenType(Lexer::TOKEN_VARIABLE); + } else { + $parameterName = ''; + } + $isOptional = $tokens->tryConsumeTokenType(Lexer::TOKEN_EQUAL); + return $this->enrichWithAttributes($tokens, new Ast\Type\CallableTypeParameterNode($type, $isReference, $isVariadic, $parameterName, $isOptional), $startLine, $startIndex); } - public function getKeywordToken() : int + /** @phpstan-impure */ + private function parseCallableReturnType(TokenIterator $tokens): Ast\Type\TypeNode { - return \T_FN; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_NULLABLE)) { + return $this->parseNullable($tokens); + } elseif ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) { + $type = $this->subParse($tokens); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + return $type; + } elseif ($tokens->tryConsumeTokenType(Lexer::TOKEN_THIS_VARIABLE)) { + $type = new Ast\Type\ThisTypeNode(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + } + return $type; + } else { + $currentTokenValue = $tokens->currentTokenValue(); + $tokens->pushSavePoint(); + // because of ConstFetchNode + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_IDENTIFIER)) { + $type = new Ast\Type\IdentifierTypeNode($currentTokenValue); + if (!$tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_COLON)) { + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)) { + $type = $this->parseGeneric($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + } + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + } elseif (in_array($type->name, ['array', 'list', 'object'], \true) && $tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_CURLY_BRACKET) && !$tokens->isPrecededByHorizontalWhitespace()) { + if ($type->name === 'object') { + $type = $this->parseObjectShape($tokens); + } else { + $type = $this->parseArrayShape($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex), $type->name); + } + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex)); + } + } + return $type; + } else { + $tokens->rollback(); + // because of ConstFetchNode + } + } else { + $tokens->dropSavePoint(); + // because of ConstFetchNode + } + } + $currentTokenValue = $tokens->currentTokenValue(); + $currentTokenType = $tokens->currentTokenType(); + $currentTokenOffset = $tokens->currentTokenOffset(); + $currentTokenLine = $tokens->currentTokenLine(); + if ($this->constExprParser === null) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } + try { + $constExpr = $this->constExprParser->parse($tokens, \true); + if ($constExpr instanceof Ast\ConstExpr\ConstExprArrayNode) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } + $type = $this->enrichWithAttributes($tokens, new Ast\Type\ConstTypeNode($constExpr), $startLine, $startIndex); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $type = $this->tryParseArrayOrOffsetAccess($tokens, $type); + } + return $type; + } catch (LogicException $e) { + throw new ParserException($currentTokenValue, $currentTokenType, $currentTokenOffset, Lexer::TOKEN_IDENTIFIER, null, $currentTokenLine); + } } -} -getKeywordString()) !== \false; + try { + $tokens->pushSavePoint(); + $type = $this->parseCallable($tokens, $identifier, $hasTemplate); + $tokens->dropSavePoint(); + } catch (ParserException $e) { + $tokens->rollback(); + $type = $identifier; + } + return $type; } - protected function isKeywordContext(array $tokens, int $pos) : bool + /** @phpstan-impure */ + private function tryParseArrayOrOffsetAccess(TokenIterator $tokens, Ast\Type\TypeNode $type): Ast\Type\TypeNode { - $previousNonSpaceToken = $this->getPreviousNonSpaceToken($tokens, $pos); - return $previousNonSpaceToken === null || $previousNonSpaceToken[0] !== \T_OBJECT_OPERATOR; + $startLine = $type->getAttribute(Ast\Attribute::START_LINE); + $startIndex = $type->getAttribute(Ast\Attribute::START_INDEX); + try { + while ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) { + $tokens->pushSavePoint(); + $canBeOffsetAccessType = !$tokens->isPrecededByHorizontalWhitespace(); + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET); + if ($canBeOffsetAccessType && !$tokens->isCurrentTokenType(Lexer::TOKEN_CLOSE_SQUARE_BRACKET)) { + $offset = $this->parse($tokens); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_SQUARE_BRACKET); + $tokens->dropSavePoint(); + $type = new Ast\Type\OffsetAccessTypeNode($type, $offset); + if ($startLine !== null && $startIndex !== null) { + $type = $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + } else { + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_SQUARE_BRACKET); + $tokens->dropSavePoint(); + $type = new Ast\Type\ArrayTypeNode($type); + if ($startLine !== null && $startIndex !== null) { + $type = $this->enrichWithAttributes($tokens, $type, $startLine, $startIndex); + } + } + } + } catch (ParserException $e) { + $tokens->rollback(); + } + return $type; } - public function emulate(string $code, array $tokens) : array + /** + * @phpstan-impure + * @param Ast\Type\ArrayShapeNode::KIND_* $kind + */ + private function parseArrayShape(TokenIterator $tokens, Ast\Type\TypeNode $type, string $kind): Ast\Type\ArrayShapeNode { - $keywordString = $this->getKeywordString(); - foreach ($tokens as $i => $token) { - if ($token[0] === \T_STRING && \strtolower($token[1]) === $keywordString && $this->isKeywordContext($tokens, $i)) { - $tokens[$i][0] = $this->getKeywordToken(); + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_CURLY_BRACKET); + $items = []; + $sealed = \true; + $unsealedType = null; + do { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET)) { + return new Ast\Type\ArrayShapeNode($items, \true, $kind); + } + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_VARIADIC)) { + $sealed = \false; + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)) { + if ($kind === Ast\Type\ArrayShapeNode::KIND_ARRAY) { + $unsealedType = $this->parseArrayShapeUnsealedType($tokens); + } else { + $unsealedType = $this->parseListShapeUnsealedType($tokens); + } + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } + $tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA); + break; } + $items[] = $this->parseArrayShapeItem($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET); + return new Ast\Type\ArrayShapeNode($items, $sealed, $kind, $unsealedType); + } + /** @phpstan-impure */ + private function parseArrayShapeItem(TokenIterator $tokens): Ast\Type\ArrayShapeItemNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + try { + $tokens->pushSavePoint(); + $key = $this->parseArrayShapeKey($tokens); + $optional = $tokens->tryConsumeTokenType(Lexer::TOKEN_NULLABLE); + $tokens->consumeTokenType(Lexer::TOKEN_COLON); + $value = $this->parse($tokens); + $tokens->dropSavePoint(); + return $this->enrichWithAttributes($tokens, new Ast\Type\ArrayShapeItemNode($key, $optional, $value), $startLine, $startIndex); + } catch (ParserException $e) { + $tokens->rollback(); + $value = $this->parse($tokens); + return $this->enrichWithAttributes($tokens, new Ast\Type\ArrayShapeItemNode(null, \false, $value), $startLine, $startIndex); } - return $tokens; } /** - * @param mixed[] $tokens - * @return array|string|null + * @phpstan-impure + * @return Ast\ConstExpr\ConstExprIntegerNode|Ast\ConstExpr\ConstExprStringNode|Ast\Type\IdentifierTypeNode */ - private function getPreviousNonSpaceToken(array $tokens, int $start) + private function parseArrayShapeKey(TokenIterator $tokens) { - for ($i = $start - 1; $i >= 0; --$i) { - if ($tokens[$i][0] === \T_WHITESPACE) { - continue; + $startIndex = $tokens->currentTokenIndex(); + $startLine = $tokens->currentTokenLine(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_INTEGER)) { + $key = new Ast\ConstExpr\ConstExprIntegerNode(str_replace('_', '', $tokens->currentTokenValue())); + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_SINGLE_QUOTED_STRING)) { + if ($this->quoteAwareConstExprString) { + $key = new Ast\ConstExpr\QuoteAwareConstExprStringNode(StringUnescaper::unescapeString($tokens->currentTokenValue()), Ast\ConstExpr\QuoteAwareConstExprStringNode::SINGLE_QUOTED); + } else { + $key = new Ast\ConstExpr\ConstExprStringNode(trim($tokens->currentTokenValue(), "'")); } - return $tokens[$i]; + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_QUOTED_STRING)) { + if ($this->quoteAwareConstExprString) { + $key = new Ast\ConstExpr\QuoteAwareConstExprStringNode(StringUnescaper::unescapeString($tokens->currentTokenValue()), Ast\ConstExpr\QuoteAwareConstExprStringNode::DOUBLE_QUOTED); + } else { + $key = new Ast\ConstExpr\ConstExprStringNode(trim($tokens->currentTokenValue(), '"')); + } + $tokens->next(); + } else { + $key = new Ast\Type\IdentifierTypeNode($tokens->currentTokenValue()); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); } - return null; + return $this->enrichWithAttributes($tokens, $key, $startLine, $startIndex); } - public function reverseEmulate(string $code, array $tokens) : array + /** + * @phpstan-impure + */ + private function parseArrayShapeUnsealedType(TokenIterator $tokens): Ast\Type\ArrayShapeUnsealedTypeNode { - $keywordToken = $this->getKeywordToken(); - foreach ($tokens as $i => $token) { - if ($token[0] === $keywordToken) { - $tokens[$i][0] = \T_STRING; + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $valueType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $keyType = null; + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)) { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $keyType = $valueType; + $valueType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET); + return $this->enrichWithAttributes($tokens, new Ast\Type\ArrayShapeUnsealedTypeNode($valueType, $keyType), $startLine, $startIndex); + } + /** + * @phpstan-impure + */ + private function parseListShapeUnsealedType(TokenIterator $tokens): Ast\Type\ArrayShapeUnsealedTypeNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $valueType = $this->parse($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_ANGLE_BRACKET); + return $this->enrichWithAttributes($tokens, new Ast\Type\ArrayShapeUnsealedTypeNode($valueType, null), $startLine, $startIndex); + } + /** + * @phpstan-impure + */ + private function parseObjectShape(TokenIterator $tokens): Ast\Type\ObjectShapeNode + { + $tokens->consumeTokenType(Lexer::TOKEN_OPEN_CURLY_BRACKET); + $items = []; + do { + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + if ($tokens->tryConsumeTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET)) { + return new Ast\Type\ObjectShapeNode($items); + } + $items[] = $this->parseObjectShapeItem($tokens); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + } while ($tokens->tryConsumeTokenType(Lexer::TOKEN_COMMA)); + $tokens->tryConsumeTokenType(Lexer::TOKEN_PHPDOC_EOL); + $tokens->consumeTokenType(Lexer::TOKEN_CLOSE_CURLY_BRACKET); + return new Ast\Type\ObjectShapeNode($items); + } + /** @phpstan-impure */ + private function parseObjectShapeItem(TokenIterator $tokens): Ast\Type\ObjectShapeItemNode + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + $key = $this->parseObjectShapeKey($tokens); + $optional = $tokens->tryConsumeTokenType(Lexer::TOKEN_NULLABLE); + $tokens->consumeTokenType(Lexer::TOKEN_COLON); + $value = $this->parse($tokens); + return $this->enrichWithAttributes($tokens, new Ast\Type\ObjectShapeItemNode($key, $optional, $value), $startLine, $startIndex); + } + /** + * @phpstan-impure + * @return Ast\ConstExpr\ConstExprStringNode|Ast\Type\IdentifierTypeNode + */ + private function parseObjectShapeKey(TokenIterator $tokens) + { + $startLine = $tokens->currentTokenLine(); + $startIndex = $tokens->currentTokenIndex(); + if ($tokens->isCurrentTokenType(Lexer::TOKEN_SINGLE_QUOTED_STRING)) { + if ($this->quoteAwareConstExprString) { + $key = new Ast\ConstExpr\QuoteAwareConstExprStringNode(StringUnescaper::unescapeString($tokens->currentTokenValue()), Ast\ConstExpr\QuoteAwareConstExprStringNode::SINGLE_QUOTED); + } else { + $key = new Ast\ConstExpr\ConstExprStringNode(trim($tokens->currentTokenValue(), "'")); + } + $tokens->next(); + } elseif ($tokens->isCurrentTokenType(Lexer::TOKEN_DOUBLE_QUOTED_STRING)) { + if ($this->quoteAwareConstExprString) { + $key = new Ast\ConstExpr\QuoteAwareConstExprStringNode(StringUnescaper::unescapeString($tokens->currentTokenValue()), Ast\ConstExpr\QuoteAwareConstExprStringNode::DOUBLE_QUOTED); + } else { + $key = new Ast\ConstExpr\ConstExprStringNode(trim($tokens->currentTokenValue(), '"')); } + $tokens->next(); + } else { + $key = new Ast\Type\IdentifierTypeNode($tokens->currentTokenValue()); + $tokens->consumeTokenType(Lexer::TOKEN_IDENTIFIER); } - return $tokens; + return $this->enrichWithAttributes($tokens, $key, $startLine, $startIndex); } } */ + private $tokens; + /** @var int */ + private $index; + /** @var int[] */ + private $savePoints = []; + /** @var list */ + private $skippedTokenTypes = [Lexer::TOKEN_HORIZONTAL_WS]; + /** @var string|null */ + private $newline = null; + /** + * @param list $tokens + */ + public function __construct(array $tokens, int $index = 0) { - return Emulative::PHP_8_0; + $this->tokens = $tokens; + $this->index = $index; + $this->skipIrrelevantTokens(); } - public function getKeywordString() : string + /** + * @return list + */ + public function getTokens(): array { - return 'match'; + return $this->tokens; } - public function getKeywordToken() : int + public function getContentBetween(int $startPos, int $endPos): string { - return \T_MATCH; + if ($startPos < 0 || $endPos > count($this->tokens)) { + throw new LogicException(); + } + $content = ''; + for ($i = $startPos; $i < $endPos; $i++) { + $content .= $this->tokens[$i][Lexer::VALUE_OFFSET]; + } + return $content; } -} -tokens); } - public function isEmulationNeeded(string $code) : bool + public function currentTokenValue(): string { - return \strpos($code, '?->') !== \false; + return $this->tokens[$this->index][Lexer::VALUE_OFFSET]; } - public function emulate(string $code, array $tokens) : array + public function currentTokenType(): int { - // We need to manually iterate and manage a count because we'll change - // the tokens array on the way - $line = 1; - for ($i = 0, $c = \count($tokens); $i < $c; ++$i) { - if ($tokens[$i] === '?' && isset($tokens[$i + 1]) && $tokens[$i + 1][0] === \T_OBJECT_OPERATOR) { - \array_splice($tokens, $i, 2, [[\T_NULLSAFE_OBJECT_OPERATOR, '?->', $line]]); - $c--; - continue; + return $this->tokens[$this->index][Lexer::TYPE_OFFSET]; + } + public function currentTokenOffset(): int + { + $offset = 0; + for ($i = 0; $i < $this->index; $i++) { + $offset += strlen($this->tokens[$i][Lexer::VALUE_OFFSET]); + } + return $offset; + } + public function currentTokenLine(): int + { + return $this->tokens[$this->index][Lexer::LINE_OFFSET]; + } + public function currentTokenIndex(): int + { + return $this->index; + } + public function endIndexOfLastRelevantToken(): int + { + $endIndex = $this->currentTokenIndex(); + $endIndex--; + while (in_array($this->tokens[$endIndex][Lexer::TYPE_OFFSET], $this->skippedTokenTypes, \true)) { + if (!isset($this->tokens[$endIndex - 1])) { + break; } - // Handle ?-> inside encapsed string. - if ($tokens[$i][0] === \T_ENCAPSED_AND_WHITESPACE && isset($tokens[$i - 1]) && $tokens[$i - 1][0] === \T_VARIABLE && \preg_match('/^\\?->([a-zA-Z_\\x80-\\xff][a-zA-Z0-9_\\x80-\\xff]*)/', $tokens[$i][1], $matches)) { - $replacement = [[\T_NULLSAFE_OBJECT_OPERATOR, '?->', $line], [\T_STRING, $matches[1], $line]]; - if (\strlen($matches[0]) !== \strlen($tokens[$i][1])) { - $replacement[] = [\T_ENCAPSED_AND_WHITESPACE, \substr($tokens[$i][1], \strlen($matches[0])), $line]; - } - \array_splice($tokens, $i, 1, $replacement); - $c += \count($replacement) - 1; - continue; + $endIndex--; + } + return $endIndex; + } + public function isCurrentTokenValue(string $tokenValue): bool + { + return $this->tokens[$this->index][Lexer::VALUE_OFFSET] === $tokenValue; + } + public function isCurrentTokenType(int ...$tokenType): bool + { + return in_array($this->tokens[$this->index][Lexer::TYPE_OFFSET], $tokenType, \true); + } + public function isPrecededByHorizontalWhitespace(): bool + { + return ($this->tokens[$this->index - 1][Lexer::TYPE_OFFSET] ?? -1) === Lexer::TOKEN_HORIZONTAL_WS; + } + /** + * @throws ParserException + */ + public function consumeTokenType(int $tokenType): void + { + if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType) { + $this->throwError($tokenType); + } + if ($tokenType === Lexer::TOKEN_PHPDOC_EOL) { + if ($this->newline === null) { + $this->detectNewline(); } - if (\is_array($tokens[$i])) { - $line += \substr_count($tokens[$i][1], "\n"); + } + $this->index++; + $this->skipIrrelevantTokens(); + } + /** + * @throws ParserException + */ + public function consumeTokenValue(int $tokenType, string $tokenValue): void + { + if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType || $this->tokens[$this->index][Lexer::VALUE_OFFSET] !== $tokenValue) { + $this->throwError($tokenType, $tokenValue); + } + $this->index++; + $this->skipIrrelevantTokens(); + } + /** @phpstan-impure */ + public function tryConsumeTokenValue(string $tokenValue): bool + { + if ($this->tokens[$this->index][Lexer::VALUE_OFFSET] !== $tokenValue) { + return \false; + } + $this->index++; + $this->skipIrrelevantTokens(); + return \true; + } + /** @phpstan-impure */ + public function tryConsumeTokenType(int $tokenType): bool + { + if ($this->tokens[$this->index][Lexer::TYPE_OFFSET] !== $tokenType) { + return \false; + } + if ($tokenType === Lexer::TOKEN_PHPDOC_EOL) { + if ($this->newline === null) { + $this->detectNewline(); } } - return $tokens; + $this->index++; + $this->skipIrrelevantTokens(); + return \true; } - public function reverseEmulate(string $code, array $tokens) : array + private function detectNewline(): void { - // ?-> was not valid code previously, don't bother. - return $tokens; + $value = $this->currentTokenValue(); + if (substr($value, 0, 2) === "\r\n") { + $this->newline = "\r\n"; + } elseif (substr($value, 0, 1) === "\n") { + $this->newline = "\n"; + } } -} -index > 0 && $this->tokens[$this->index - 1][Lexer::TYPE_OFFSET] === Lexer::TOKEN_HORIZONTAL_WS) { + return $this->tokens[$this->index - 1][Lexer::VALUE_OFFSET]; + } + return ''; } - public function isEmulationNeeded(string $code) : bool + /** @phpstan-impure */ + public function joinUntil(int ...$tokenType): string { - return \preg_match('~[0-9]_[0-9]~', $code) || \preg_match('~0x[0-9a-f]+_[0-9a-f]~i', $code); + $s = ''; + while (!in_array($this->tokens[$this->index][Lexer::TYPE_OFFSET], $tokenType, \true)) { + $s .= $this->tokens[$this->index++][Lexer::VALUE_OFFSET]; + } + return $s; } - public function emulate(string $code, array $tokens) : array + public function next(): void { - // We need to manually iterate and manage a count because we'll change - // the tokens array on the way - $codeOffset = 0; - for ($i = 0, $c = \count($tokens); $i < $c; ++$i) { - $token = $tokens[$i]; - $tokenLen = \strlen(\is_array($token) ? $token[1] : $token); - if ($token[0] !== \T_LNUMBER && $token[0] !== \T_DNUMBER) { - $codeOffset += $tokenLen; - continue; + $this->index++; + $this->skipIrrelevantTokens(); + } + private function skipIrrelevantTokens(): void + { + if (!isset($this->tokens[$this->index])) { + return; + } + while (in_array($this->tokens[$this->index][Lexer::TYPE_OFFSET], $this->skippedTokenTypes, \true)) { + if (!isset($this->tokens[$this->index + 1])) { + break; } - $res = \preg_match(self::NUMBER, $code, $matches, 0, $codeOffset); - \assert($res, "No number at number token position"); - $match = $matches[0]; - $matchLen = \strlen($match); - if ($matchLen === $tokenLen) { - // Original token already holds the full number. - $codeOffset += $tokenLen; - continue; + $this->index++; + } + } + public function addEndOfLineToSkippedTokens(): void + { + $this->skippedTokenTypes = [Lexer::TOKEN_HORIZONTAL_WS, Lexer::TOKEN_PHPDOC_EOL]; + } + public function removeEndOfLineFromSkippedTokens(): void + { + $this->skippedTokenTypes = [Lexer::TOKEN_HORIZONTAL_WS]; + } + /** @phpstan-impure */ + public function forwardToTheEnd(): void + { + $lastToken = count($this->tokens) - 1; + $this->index = $lastToken; + } + public function pushSavePoint(): void + { + $this->savePoints[] = $this->index; + } + public function dropSavePoint(): void + { + array_pop($this->savePoints); + } + public function rollback(): void + { + $index = array_pop($this->savePoints); + assert($index !== null); + $this->index = $index; + } + /** + * @throws ParserException + */ + private function throwError(int $expectedTokenType, ?string $expectedTokenValue = null): void + { + throw new ParserException($this->currentTokenValue(), $this->currentTokenType(), $this->currentTokenOffset(), $expectedTokenType, $expectedTokenValue, $this->currentTokenLine()); + } + /** + * Check whether the position is directly preceded by a certain token type. + * + * During this check TOKEN_HORIZONTAL_WS and TOKEN_PHPDOC_EOL are skipped + */ + public function hasTokenImmediatelyBefore(int $pos, int $expectedTokenType): bool + { + $tokens = $this->tokens; + $pos--; + for (; $pos >= 0; $pos--) { + $token = $tokens[$pos]; + $type = $token[Lexer::TYPE_OFFSET]; + if ($type === $expectedTokenType) { + return \true; } - $tokenKind = $this->resolveIntegerOrFloatToken($match); - $newTokens = [[$tokenKind, $match, $token[2]]]; - $numTokens = 1; - $len = $tokenLen; - while ($matchLen > $len) { - $nextToken = $tokens[$i + $numTokens]; - $nextTokenText = \is_array($nextToken) ? $nextToken[1] : $nextToken; - $nextTokenLen = \strlen($nextTokenText); - $numTokens++; - if ($matchLen < $len + $nextTokenLen) { - // Split trailing characters into a partial token. - \assert(\is_array($nextToken), "Partial token should be an array token"); - $partialText = \substr($nextTokenText, $matchLen - $len); - $newTokens[] = [$nextToken[0], $partialText, $nextToken[2]]; - break; - } - $len += $nextTokenLen; + if (!in_array($type, [Lexer::TOKEN_HORIZONTAL_WS, Lexer::TOKEN_PHPDOC_EOL], \true)) { + break; } - \array_splice($tokens, $i, $numTokens, $newTokens); - $c -= $numTokens - \count($newTokens); - $codeOffset += $matchLen; } - return $tokens; + return \false; } - private function resolveIntegerOrFloatToken(string $str) : int + /** + * Check whether the position is directly followed by a certain token type. + * + * During this check TOKEN_HORIZONTAL_WS and TOKEN_PHPDOC_EOL are skipped + */ + public function hasTokenImmediatelyAfter(int $pos, int $expectedTokenType): bool { - $str = \str_replace('_', '', $str); - if (\stripos($str, '0b') === 0) { - $num = \bindec($str); - } elseif (\stripos($str, '0x') === 0) { - $num = \hexdec($str); - } elseif (\stripos($str, '0') === 0 && \ctype_digit($str)) { - $num = \octdec($str); - } else { - $num = +$str; + $tokens = $this->tokens; + $pos++; + for ($c = count($tokens); $pos < $c; $pos++) { + $token = $tokens[$pos]; + $type = $token[Lexer::TYPE_OFFSET]; + if ($type === $expectedTokenType) { + return \true; + } + if (!in_array($type, [Lexer::TOKEN_HORIZONTAL_WS, Lexer::TOKEN_PHPDOC_EOL], \true)) { + break; + } } - return \is_float($num) ? \T_DNUMBER : \T_LNUMBER; + return \false; } - public function reverseEmulate(string $code, array $tokens) : array + public function getDetectedNewline(): ?string { - // Numeric separators were not legal code previously, don't bother. - return $tokens; + return $this->newline; + } + /** + * Whether the given position is immediately surrounded by parenthesis. + */ + public function hasParentheses(int $startPos, int $endPos): bool + { + return $this->hasTokenImmediatelyBefore($startPos, Lexer::TOKEN_OPEN_PARENTHESES) && $this->hasTokenImmediatelyAfter($endPos, Lexer::TOKEN_CLOSE_PARENTHESES); } } type = $type; + $this->description = $description; } - public function getKeywordString() : string + public function __toString(): string { - return 'readonly'; + return trim("{$this->type} {$this->description}"); } - public function getKeywordToken() : int +} +name = $name; + $this->bound = $bound; + $this->default = $default; + $this->description = $description; } - protected function isKeywordContext(array $tokens, int $pos) : bool + public function __toString(): string { - if (!parent::isKeywordContext($tokens, $pos)) { - return \false; - } - // Support "function readonly(" - return !(isset($tokens[$pos + 1]) && ($tokens[$pos + 1][0] === '(' || $tokens[$pos + 1][0] === \T_WHITESPACE && isset($tokens[$pos + 2]) && $tokens[$pos + 2][0] === '(')); + $bound = $this->bound !== null ? " of {$this->bound}" : ''; + $default = $this->default !== null ? " = {$this->default}" : ''; + return trim("{$this->name}{$bound}{$default} {$this->description}"); } } emulator = $emulator; + $this->type = $type; + $this->parameter = $parameter; + $this->isNegated = $isNegated; + $this->isEquality = $isEquality; + $this->description = $description; } - public function getPhpVersion() : string + public function __toString(): string { - return $this->emulator->getPhpVersion(); + $isNegated = $this->isNegated ? '!' : ''; + $isEquality = $this->isEquality ? '=' : ''; + return trim("{$isNegated}{$isEquality}{$this->type} {$this->parameter} {$this->description}"); } - public function isEmulationNeeded(string $code) : bool +} +emulator->isEmulationNeeded($code); + $this->type = $type; + $this->description = $description; } - public function emulate(string $code, array $tokens) : array + public function __toString(): string { - return $this->emulator->reverseEmulate($code, $tokens); + return trim("{$this->type} {$this->description}"); } - public function reverseEmulate(string $code, array $tokens) : array +} +emulator->emulate($code, $tokens); + $this->parameterName = $parameterName; + $this->description = $description; } - public function preprocessCode(string $code, array &$patches) : string + public function __toString(): string { - return $code; + return trim("{$this->parameterName} {$this->description}"); } } [aliasName => originalName]] */ - protected $aliases = []; - /** @var Name[][] Same as $aliases but preserving original case */ - protected $origAliases = []; - /** @var ErrorHandler Error handler */ - protected $errorHandler; - /** - * Create a name context. - * - * @param ErrorHandler $errorHandler Error handling used to report errors + use NodeAttributes; + /** @var TypeNode */ + public $type; + /** @var string */ + public $parameter; + /** @var string */ + public $property; + /** @var bool */ + public $isNegated; + /** @var bool */ + public $isEquality; + /** @var string (may be empty) */ + public $description; + public function __construct(TypeNode $type, string $parameter, string $property, bool $isNegated, string $description, bool $isEquality = \false) + { + $this->type = $type; + $this->parameter = $parameter; + $this->property = $property; + $this->isNegated = $isNegated; + $this->isEquality = $isEquality; + $this->description = $description; + } + public function __toString(): string + { + $isNegated = $this->isNegated ? '!' : ''; + $isEquality = $this->isEquality ? '=' : ''; + return trim("{$isNegated}{$isEquality}{$this->type} {$this->parameter}->{$this->property} {$this->description}"); + } +} +type = $type; + $this->description = $description; + } + public function __toString(): string + { + return trim("{$this->type} {$this->description}"); + } +} +type = $type; + $this->description = $description; + } + public function __toString(): string + { + return trim("{$this->type} {$this->description}"); + } +} +text = $text; + } + public function __toString(): string + { + return $this->text; + } +} +errorHandler = $errorHandler; + $this->children = $children; } /** - * Start a new namespace. - * - * This also resets the alias table. - * - * @param Name|null $namespace Null is the global namespace + * @return PhpDocTagNode[] */ - public function startNamespace(Name $namespace = null) + public function getTags(): array { - $this->namespace = $namespace; - $this->origAliases = $this->aliases = [Stmt\Use_::TYPE_NORMAL => [], Stmt\Use_::TYPE_FUNCTION => [], Stmt\Use_::TYPE_CONSTANT => []]; + return array_filter($this->children, static function (PhpDocChildNode $child): bool { + return $child instanceof PhpDocTagNode; + }); } /** - * Add an alias / import. - * - * @param Name $name Original name - * @param string $aliasName Aliased name - * @param int $type One of Stmt\Use_::TYPE_* - * @param array $errorAttrs Attributes to use to report an error + * @return PhpDocTagNode[] */ - public function addAlias(Name $name, string $aliasName, int $type, array $errorAttrs = []) + public function getTagsByName(string $tagName): array { - // Constant names are case sensitive, everything else case insensitive - if ($type === Stmt\Use_::TYPE_CONSTANT) { - $aliasLookupName = $aliasName; - } else { - $aliasLookupName = \strtolower($aliasName); - } - if (isset($this->aliases[$type][$aliasLookupName])) { - $typeStringMap = [Stmt\Use_::TYPE_NORMAL => '', Stmt\Use_::TYPE_FUNCTION => 'function ', Stmt\Use_::TYPE_CONSTANT => 'const ']; - $this->errorHandler->handleError(new Error(\sprintf('Cannot use %s%s as %s because the name is already in use', $typeStringMap[$type], $name, $aliasName), $errorAttrs)); - return; - } - $this->aliases[$type][$aliasLookupName] = $name; - $this->origAliases[$type][$aliasName] = $name; + return array_filter($this->getTags(), static function (PhpDocTagNode $tag) use ($tagName): bool { + return $tag->name === $tagName; + }); } /** - * Get current namespace. - * - * @return null|Name Namespace (or null if global namespace) + * @return VarTagValueNode[] */ - public function getNamespace() + public function getVarTagValues(string $tagName = '@var'): array { - return $this->namespace; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof VarTagValueNode; + }); } /** - * Get resolved name. - * - * @param Name $name Name to resolve - * @param int $type One of Stmt\Use_::TYPE_{FUNCTION|CONSTANT} - * - * @return null|Name Resolved name, or null if static resolution is not possible + * @return ParamTagValueNode[] */ - public function getResolvedName(Name $name, int $type) + public function getParamTagValues(string $tagName = '@param'): array { - // don't resolve special class names - if ($type === Stmt\Use_::TYPE_NORMAL && $name->isSpecialClassName()) { - if (!$name->isUnqualified()) { - $this->errorHandler->handleError(new Error(\sprintf("'\\%s' is an invalid class name", $name->toString()), $name->getAttributes())); - } - return $name; - } - // fully qualified names are already resolved - if ($name->isFullyQualified()) { - return $name; - } - // Try to resolve aliases - if (null !== ($resolvedName = $this->resolveAlias($name, $type))) { - return $resolvedName; - } - if ($type !== Stmt\Use_::TYPE_NORMAL && $name->isUnqualified()) { - if (null === $this->namespace) { - // outside of a namespace unaliased unqualified is same as fully qualified - return new FullyQualified($name, $name->getAttributes()); - } - // Cannot resolve statically - return null; - } - // if no alias exists prepend current namespace - return FullyQualified::concat($this->namespace, $name, $name->getAttributes()); + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ParamTagValueNode; + }); } /** - * Get resolved class name. - * - * @param Name $name Class ame to resolve - * - * @return Name Resolved name + * @return TypelessParamTagValueNode[] */ - public function getResolvedClassName(Name $name) : Name + public function getTypelessParamTagValues(string $tagName = '@param'): array { - return $this->getResolvedName($name, Stmt\Use_::TYPE_NORMAL); + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof TypelessParamTagValueNode; + }); } /** - * Get possible ways of writing a fully qualified name (e.g., by making use of aliases). - * - * @param string $name Fully-qualified name (without leading namespace separator) - * @param int $type One of Stmt\Use_::TYPE_* - * - * @return Name[] Possible representations of the name + * @return ParamImmediatelyInvokedCallableTagValueNode[] */ - public function getPossibleNames(string $name, int $type) : array + public function getParamImmediatelyInvokedCallableTagValues(string $tagName = '@param-immediately-invoked-callable'): array { - $lcName = \strtolower($name); - if ($type === Stmt\Use_::TYPE_NORMAL) { - // self, parent and static must always be unqualified - if ($lcName === "self" || $lcName === "parent" || $lcName === "static") { - return [new Name($name)]; - } - } - // Collect possible ways to write this name, starting with the fully-qualified name - $possibleNames = [new FullyQualified($name)]; - if (null !== ($nsRelativeName = $this->getNamespaceRelativeName($name, $lcName, $type))) { - // Make sure there is no alias that makes the normally namespace-relative name - // into something else - if (null === $this->resolveAlias($nsRelativeName, $type)) { - $possibleNames[] = $nsRelativeName; - } - } - // Check for relevant namespace use statements - foreach ($this->origAliases[Stmt\Use_::TYPE_NORMAL] as $alias => $orig) { - $lcOrig = $orig->toLowerString(); - if (0 === \strpos($lcName, $lcOrig . '\\')) { - $possibleNames[] = new Name($alias . \substr($name, \strlen($lcOrig))); - } - } - // Check for relevant type-specific use statements - foreach ($this->origAliases[$type] as $alias => $orig) { - if ($type === Stmt\Use_::TYPE_CONSTANT) { - // Constants are are complicated-sensitive - $normalizedOrig = $this->normalizeConstName($orig->toString()); - if ($normalizedOrig === $this->normalizeConstName($name)) { - $possibleNames[] = new Name($alias); - } - } else { - // Everything else is case-insensitive - if ($orig->toLowerString() === $lcName) { - $possibleNames[] = new Name($alias); - } - } - } - return $possibleNames; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ParamImmediatelyInvokedCallableTagValueNode; + }); } /** - * Get shortest representation of this fully-qualified name. - * - * @param string $name Fully-qualified name (without leading namespace separator) - * @param int $type One of Stmt\Use_::TYPE_* - * - * @return Name Shortest representation + * @return ParamLaterInvokedCallableTagValueNode[] */ - public function getShortName(string $name, int $type) : Name + public function getParamLaterInvokedCallableTagValues(string $tagName = '@param-later-invoked-callable'): array { - $possibleNames = $this->getPossibleNames($name, $type); - // Find shortest name - $shortestName = null; - $shortestLength = \INF; - foreach ($possibleNames as $possibleName) { - $length = \strlen($possibleName->toCodeString()); - if ($length < $shortestLength) { - $shortestName = $possibleName; - $shortestLength = $length; - } - } - return $shortestName; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ParamLaterInvokedCallableTagValueNode; + }); } - private function resolveAlias(Name $name, $type) + /** + * @return ParamClosureThisTagValueNode[] + */ + public function getParamClosureThisTagValues(string $tagName = '@param-closure-this'): array { - $firstPart = $name->getFirst(); - if ($name->isQualified()) { - // resolve aliases for qualified names, always against class alias table - $checkName = \strtolower($firstPart); - if (isset($this->aliases[Stmt\Use_::TYPE_NORMAL][$checkName])) { - $alias = $this->aliases[Stmt\Use_::TYPE_NORMAL][$checkName]; - return FullyQualified::concat($alias, $name->slice(1), $name->getAttributes()); - } - } elseif ($name->isUnqualified()) { - // constant aliases are case-sensitive, function aliases case-insensitive - $checkName = $type === Stmt\Use_::TYPE_CONSTANT ? $firstPart : \strtolower($firstPart); - if (isset($this->aliases[$type][$checkName])) { - // resolve unqualified aliases - return new FullyQualified($this->aliases[$type][$checkName], $name->getAttributes()); - } - } - // No applicable aliases - return null; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ParamClosureThisTagValueNode; + }); } - private function getNamespaceRelativeName(string $name, string $lcName, int $type) + /** + * @return TemplateTagValueNode[] + */ + public function getTemplateTagValues(string $tagName = '@template'): array { - if (null === $this->namespace) { - return new Name($name); - } - if ($type === Stmt\Use_::TYPE_CONSTANT) { - // The constants true/false/null always resolve to the global symbols, even inside a - // namespace, so they may be used without qualification - if ($lcName === "true" || $lcName === "false" || $lcName === "null") { - return new Name($name); - } - } - $namespacePrefix = \strtolower($this->namespace . '\\'); - if (0 === \strpos($lcName, $namespacePrefix)) { - return new Name(\substr($name, \strlen($namespacePrefix))); - } - return null; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof TemplateTagValueNode; + }); } - private function normalizeConstName(string $name) + /** + * @return ExtendsTagValueNode[] + */ + public function getExtendsTagValues(string $tagName = '@extends'): array { - $nsSep = \strrpos($name, '\\'); - if (\false === $nsSep) { - return $name; - } - // Constants have case-insensitive namespace and case-sensitive short-name - $ns = \substr($name, 0, $nsSep); - $shortName = \substr($name, $nsSep + 1); - return \strtolower($ns) . '\\' . $shortName; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ExtendsTagValueNode; + }); } -} -getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ImplementsTagValueNode; + }); + } /** - * Gets the names of the sub nodes. - * - * @return array Names of sub nodes + * @return UsesTagValueNode[] */ - public function getSubNodeNames() : array; + public function getUsesTagValues(string $tagName = '@use'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof UsesTagValueNode; + }); + } /** - * Gets line the node started in (alias of getStartLine). - * - * @return int Start line (or -1 if not available) + * @return ReturnTagValueNode[] */ - public function getLine() : int; + public function getReturnTagValues(string $tagName = '@return'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ReturnTagValueNode; + }); + } /** - * Gets line the node started in. - * - * Requires the 'startLine' attribute to be enabled in the lexer (enabled by default). - * - * @return int Start line (or -1 if not available) + * @return ThrowsTagValueNode[] */ - public function getStartLine() : int; + public function getThrowsTagValues(string $tagName = '@throws'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ThrowsTagValueNode; + }); + } /** - * Gets the line the node ended in. - * - * Requires the 'endLine' attribute to be enabled in the lexer (enabled by default). - * - * @return int End line (or -1 if not available) + * @return MixinTagValueNode[] */ - public function getEndLine() : int; + public function getMixinTagValues(string $tagName = '@mixin'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof MixinTagValueNode; + }); + } /** - * Gets the token offset of the first token that is part of this node. - * - * The offset is an index into the array returned by Lexer::getTokens(). - * - * Requires the 'startTokenPos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int Token start position (or -1 if not available) + * @return RequireExtendsTagValueNode[] */ - public function getStartTokenPos() : int; + public function getRequireExtendsTagValues(string $tagName = '@phpstan-require-extends'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof RequireExtendsTagValueNode; + }); + } /** - * Gets the token offset of the last token that is part of this node. - * - * The offset is an index into the array returned by Lexer::getTokens(). - * - * Requires the 'endTokenPos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int Token end position (or -1 if not available) + * @return RequireImplementsTagValueNode[] */ - public function getEndTokenPos() : int; + public function getRequireImplementsTagValues(string $tagName = '@phpstan-require-implements'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof RequireImplementsTagValueNode; + }); + } /** - * Gets the file offset of the first character that is part of this node. - * - * Requires the 'startFilePos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int File start position (or -1 if not available) + * @return DeprecatedTagValueNode[] */ - public function getStartFilePos() : int; + public function getDeprecatedTagValues(): array + { + return array_filter(array_column($this->getTagsByName('@deprecated'), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof DeprecatedTagValueNode; + }); + } /** - * Gets the file offset of the last character that is part of this node. - * - * Requires the 'endFilePos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int File end position (or -1 if not available) + * @return PropertyTagValueNode[] */ - public function getEndFilePos() : int; + public function getPropertyTagValues(string $tagName = '@property'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof PropertyTagValueNode; + }); + } /** - * Gets all comments directly preceding this node. - * - * The comments are also available through the "comments" attribute. - * - * @return Comment[] + * @return PropertyTagValueNode[] */ - public function getComments() : array; + public function getPropertyReadTagValues(string $tagName = '@property-read'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof PropertyTagValueNode; + }); + } /** - * Gets the doc comment of the node. - * - * @return null|Comment\Doc Doc comment object or null + * @return PropertyTagValueNode[] */ - public function getDocComment(); + public function getPropertyWriteTagValues(string $tagName = '@property-write'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof PropertyTagValueNode; + }); + } /** - * Sets the doc comment of the node. - * - * This will either replace an existing doc comment or add it to the comments array. - * - * @param Comment\Doc $docComment Doc comment to set + * @return MethodTagValueNode[] */ - public function setDocComment(Comment\Doc $docComment); + public function getMethodTagValues(string $tagName = '@method'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof MethodTagValueNode; + }); + } /** - * Sets an attribute on a node. - * - * @param string $key - * @param mixed $value + * @return TypeAliasTagValueNode[] */ - public function setAttribute(string $key, $value); + public function getTypeAliasTagValues(string $tagName = '@phpstan-type'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof TypeAliasTagValueNode; + }); + } /** - * Returns whether an attribute exists. - * - * @param string $key - * - * @return bool + * @return TypeAliasImportTagValueNode[] */ - public function hasAttribute(string $key) : bool; + public function getTypeAliasImportTagValues(string $tagName = '@phpstan-import-type'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof TypeAliasImportTagValueNode; + }); + } /** - * Returns the value of an attribute. - * - * @param string $key - * @param mixed $default - * - * @return mixed + * @return AssertTagValueNode[] */ - public function getAttribute(string $key, $default = null); + public function getAssertTagValues(string $tagName = '@phpstan-assert'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof AssertTagValueNode; + }); + } /** - * Returns all the attributes of this node. - * - * @return array + * @return AssertTagPropertyValueNode[] */ - public function getAttributes() : array; + public function getAssertPropertyTagValues(string $tagName = '@phpstan-assert'): array + { + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof AssertTagPropertyValueNode; + }); + } /** - * Replaces all the attributes of this node. - * - * @param array $attributes + * @return AssertTagMethodValueNode[] */ - public function setAttributes(array $attributes); -} -getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof AssertTagMethodValueNode; + }); + } /** - * Constructs a function call argument node. - * - * @param Expr $value Value to pass - * @param bool $byRef Whether to pass by ref - * @param bool $unpack Whether to unpack the argument - * @param array $attributes Additional attributes - * @param Identifier|null $name Parameter name (for named parameters) + * @return SelfOutTagValueNode[] */ - public function __construct(Expr $value, bool $byRef = \false, bool $unpack = \false, array $attributes = [], Identifier $name = null) + public function getSelfOutTypeTagValues(string $tagName = '@phpstan-this-out'): array { - $this->attributes = $attributes; - $this->name = $name; - $this->value = $value; - $this->byRef = $byRef; - $this->unpack = $unpack; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof SelfOutTagValueNode; + }); } - public function getSubNodeNames() : array + /** + * @return ParamOutTagValueNode[] + */ + public function getParamOutTypeTagValues(string $tagName = '@param-out'): array { - return ['name', 'value', 'byRef', 'unpack']; + return array_filter(array_column($this->getTagsByName($tagName), 'value'), static function (PhpDocTagValueNode $value): bool { + return $value instanceof ParamOutTagValueNode; + }); } - public function getType() : string + public function __toString(): string { - return 'Arg'; + $children = array_map(static function (PhpDocChildNode $child): string { + $s = (string) $child; + return $s === '' ? '' : ' ' . $s; + }, $this->children); + return "/**\n *" . implode("\n *", $children) . "\n */"; } } attributes = $attributes; - $this->name = $name; - $this->args = $args; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var TypeNode */ + public $type; + /** @var string */ + public $parameterName; + /** @var string (may be empty) */ + public $description; + public function __construct(TypeNode $type, string $parameterName, string $description) { - return ['name', 'args']; + $this->type = $type; + $this->parameterName = $parameterName; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Attribute'; + return trim("{$this->type} {$this->parameterName} {$this->description}"); } } attributes = $attributes; - $this->attrs = $attrs; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var string (may be empty) */ + public $value; + public function __construct(string $value) { - return ['attrs']; + $this->value = $value; } - public function getType() : string + public function __toString(): string { - return 'AttributeGroup'; + return $this->value; } } alias = $alias; + $this->type = $type; + } + public function __toString(): string + { + return trim("{$this->alias} {$this->type}"); + } } attributes = $attributes; - $this->name = \is_string($name) ? new Identifier($name) : $name; - $this->value = $value; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var TypeNode */ + public $type; + /** @var string (may be empty) */ + public $description; + public function __construct(TypeNode $type, string $description) { - return ['name', 'value']; + $this->type = $type; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Const'; + return trim("{$this->type} {$this->description}"); } } type = $type; + $this->description = $description; + } + public function __toString(): string + { + return trim("{$this->type} {$this->description}"); + } } attributes = $attributes; - $this->var = $var; - $this->dim = $dim; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var TypeNode|null */ + public $type; + /** @var bool */ + public $isReference; + /** @var bool */ + public $isVariadic; + /** @var string */ + public $parameterName; + /** @var ConstExprNode|null */ + public $defaultValue; + public function __construct(?TypeNode $type, bool $isReference, bool $isVariadic, string $parameterName, ?ConstExprNode $defaultValue) { - return ['var', 'dim']; + $this->type = $type; + $this->isReference = $isReference; + $this->isVariadic = $isVariadic; + $this->parameterName = $parameterName; + $this->defaultValue = $defaultValue; } - public function getType() : string + public function __toString(): string { - return 'Expr_ArrayDimFetch'; + $type = $this->type !== null ? "{$this->type} " : ''; + $isReference = $this->isReference ? '&' : ''; + $isVariadic = $this->isVariadic ? '...' : ''; + $default = $this->defaultValue !== null ? " = {$this->defaultValue}" : ''; + return "{$type}{$isReference}{$isVariadic}{$this->parameterName}{$default}"; } } attributes = $attributes; $this->key = $key; $this->value = $value; - $this->byRef = $byRef; - $this->unpack = $unpack; } - public function getSubNodeNames() : array + public function __toString(): string { - return ['key', 'value', 'byRef', 'unpack']; - } - public function getType() : string - { - return 'Expr_ArrayItem'; + if ($this->key === null) { + return (string) $this->value; + } + return $this->key . '=' . $this->value; } } */ + public $arguments; /** - * Constructs an array node. - * - * @param (ArrayItem|null)[] $items Items of the array - * @param array $attributes Additional attributes + * @param list $arguments */ - public function __construct(array $items = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->items = $items; - } - public function getSubNodeNames() : array + public function __construct(string $name, array $arguments) { - return ['items']; + $this->name = $name; + $this->arguments = $arguments; } - public function getType() : string + public function __toString(): string { - return 'Expr_Array'; + $arguments = implode(', ', $this->arguments); + return $this->name . '(' . $arguments . ')'; } } false : Whether the closure is static - * 'byRef' => false : Whether to return by reference - * 'params' => array() : Parameters - * 'returnType' => null : Return type - * 'expr' => Expr : Expression body - * 'attrGroups' => array() : PHP attribute groups - * @param array $attributes Additional attributes - */ - public function __construct(array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->static = $subNodes['static'] ?? \false; - $this->byRef = $subNodes['byRef'] ?? \false; - $this->params = $subNodes['params'] ?? []; - $returnType = $subNodes['returnType'] ?? null; - $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; - $this->expr = $subNodes['expr']; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'static', 'byRef', 'params', 'returnType', 'expr']; - } - public function returnsByRef() : bool - { - return $this->byRef; - } - public function getParams() : array - { - return $this->params; - } - public function getReturnType() - { - return $this->returnType; - } - public function getAttrGroups() : array - { - return $this->attrGroups; - } - /** - * @return Node\Stmt\Return_[] - */ - public function getStmts() : array + use NodeAttributes; + /** @var DoctrineAnnotation */ + public $annotation; + /** @var string (may be empty) */ + public $description; + public function __construct(DoctrineAnnotation $annotation, string $description) { - return [new Node\Stmt\Return_($this->expr)]; + $this->annotation = $annotation; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_ArrowFunction'; + return trim("{$this->annotation} {$this->description}"); } } attributes = $attributes; - $this->var = $var; - $this->expr = $expr; - } - public function getSubNodeNames() : array + public function __construct($key, $value) { - return ['var', 'expr']; + $this->key = $key; + $this->value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_Assign'; + if ($this->key === null) { + return (string) $this->value; + } + return $this->key . '=' . $this->value; } } */ + public $items; /** - * Constructs a compound assignment operation node. - * - * @param Expr $var Variable - * @param Expr $expr Expression - * @param array $attributes Additional attributes + * @param list $items */ - public function __construct(Expr $var, Expr $expr, array $attributes = []) + public function __construct(array $items) { - $this->attributes = $attributes; - $this->var = $var; - $this->expr = $expr; + $this->items = $items; } - public function getSubNodeNames() : array + public function __toString(): string { - return ['var', 'expr']; + $items = implode(', ', $this->items); + return '{' . $items . '}'; } } value = $value; + $this->exceptionArgs = [$exception->getCurrentTokenValue(), $exception->getCurrentTokenType(), $exception->getCurrentOffset(), $exception->getExpectedTokenType(), $exception->getExpectedTokenValue(), $exception->getCurrentTokenLine()]; } -} -exceptionArgs); } -} -value; } } type = $type; + $this->variableName = $variableName; + $this->description = $description; } -} -type} " . trim("{$this->variableName} {$this->description}")); } } name = $name; + $this->value = $value; } -} -value instanceof DoctrineTagValueNode) { + return (string) $this->value; + } + return trim("{$this->name} {$this->value}"); } } type = $type; + $this->parameterName = $parameterName; + $this->description = $description; } -} -type} {$this->parameterName} {$this->description}"); } } isReference = $isReference; + $this->isVariadic = $isVariadic; + $this->parameterName = $parameterName; + $this->description = $description; } -} -isReference ? '&' : ''; + $variadic = $this->isVariadic ? '...' : ''; + return trim("{$reference}{$variadic}{$this->parameterName} {$this->description}"); } } type = $type; + $this->parameter = $parameter; + $this->method = $method; + $this->isNegated = $isNegated; + $this->isEquality = $isEquality; + $this->description = $description; } -} -isNegated ? '!' : ''; + $isEquality = $this->isEquality ? '=' : ''; + return trim("{$isNegated}{$isEquality}{$this->type} {$this->parameter}->{$this->method}() {$this->description}"); } } attributes = $attributes; - $this->var = $var; - $this->expr = $expr; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var string */ + public $importedAlias; + /** @var IdentifierTypeNode */ + public $importedFrom; + /** @var string|null */ + public $importedAs; + public function __construct(string $importedAlias, IdentifierTypeNode $importedFrom, ?string $importedAs) { - return ['var', 'expr']; + $this->importedAlias = $importedAlias; + $this->importedFrom = $importedFrom; + $this->importedAs = $importedAs; } - public function getType() : string + public function __toString(): string { - return 'Expr_AssignRef'; + return trim("{$this->importedAlias} from {$this->importedFrom}" . ($this->importedAs !== null ? " as {$this->importedAs}" : '')); } } attributes = $attributes; - $this->left = $left; - $this->right = $right; + $this->type = $type; + $this->propertyName = $propertyName; + $this->description = $description; } - public function getSubNodeNames() : array + public function __toString(): string { - return ['left', 'right']; + return trim("{$this->type} {$this->propertyName} {$this->description}"); } - /** - * Get the operator sigil for this binary operation. - * - * In the case there are multiple possible sigils for an operator, this method does not - * necessarily return the one used in the parsed code. - * - * @return string - */ - public abstract function getOperatorSigil() : string; } parameterName = $parameterName; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_BitwiseAnd'; + return trim("{$this->parameterName} {$this->description}"); } } type = $type; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_BitwiseXor'; + return trim("{$this->type} {$this->description}"); } } type = $type; + $this->isReference = $isReference; + $this->isVariadic = $isVariadic; + $this->parameterName = $parameterName; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_BooleanAnd'; + $reference = $this->isReference ? '&' : ''; + $variadic = $this->isVariadic ? '...' : ''; + return trim("{$this->type} {$reference}{$variadic}{$this->parameterName} {$this->description}"); } } isStatic = $isStatic; + $this->returnType = $returnType; + $this->methodName = $methodName; + $this->parameters = $parameters; + $this->description = $description; + $this->templateTypes = $templateTypes; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_BooleanOr'; + $static = $this->isStatic ? 'static ' : ''; + $returnType = $this->returnType !== null ? "{$this->returnType} " : ''; + $parameters = implode(', ', $this->parameters); + $description = $this->description !== '' ? " {$this->description}" : ''; + $templateTypes = count($this->templateTypes) > 0 ? '<' . implode(', ', $this->templateTypes) . '>' : ''; + return "{$static}{$returnType}{$this->methodName}{$templateTypes}({$parameters}){$description}"; } } type = $type; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Coalesce'; + return trim($this->type . ' ' . $this->description); } } description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Concat'; + return trim($this->description); } } type = $type; + $this->description = $description; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Div'; + return trim("{$this->type} {$this->description}"); } } className = $className; + $this->name = $name; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Equal'; + if ($this->className === '') { + return $this->name; + } + return "{$this->className}::{$this->name}"; } } '; + parent::__construct($value); + $this->quoteType = $quoteType; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Greater'; + if ($this->quoteType === self::SINGLE_QUOTED) { + // from https://github.com/nikic/PHP-Parser/blob/0ffddce52d816f72d0efc4d9b02e276d3309ef01/lib/PhpParser/PrettyPrinter/Standard.php#L1007 + return sprintf("'%s'", addcslashes($this->value, '\'\\')); + } + // from https://github.com/nikic/PHP-Parser/blob/0ffddce52d816f72d0efc4d9b02e276d3309ef01/lib/PhpParser/PrettyPrinter/Standard.php#L1010-L1040 + return sprintf('"%s"', $this->escapeDoubleQuotedString()); + } + private function escapeDoubleQuotedString(): string + { + $quote = '"'; + $escaped = addcslashes($this->value, "\n\r\t\f\v\$" . $quote . '\\'); + // Escape control characters and non-UTF-8 characters. + // Regex based on https://stackoverflow.com/a/11709412/385378. + $regex = '/( + [\x00-\x08\x0E-\x1F] # Control characters + | [\xC0-\xC1] # Invalid UTF-8 Bytes + | [\xF5-\xFF] # Invalid UTF-8 Bytes + | \xE0(?=[\x80-\x9F]) # Overlong encoding of prior code point + | \xF0(?=[\x80-\x8F]) # Overlong encoding of prior code point + | [\xC2-\xDF](?![\x80-\xBF]) # Invalid UTF-8 Sequence Start + | [\xE0-\xEF](?![\x80-\xBF]{2}) # Invalid UTF-8 Sequence Start + | [\xF0-\xF4](?![\x80-\xBF]{3}) # Invalid UTF-8 Sequence Start + | (?<=[\x00-\x7F\xF5-\xFF])[\x80-\xBF] # Invalid UTF-8 Sequence Middle + | (?='; + $this->items = $items; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_GreaterOrEqual'; + return '[' . implode(', ', $this->items) . ']'; } } value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_LogicalAnd'; + return $this->value; } } value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_LogicalXor'; + return $this->value; } } key = $key; + $this->value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Mod'; + if ($this->key !== null) { + return sprintf('%s => %s', $this->key, $this->value); + } + return (string) $this->value; } } value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_NotEqual'; + return self::escape($this->value); } -} -value = $value; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Plus'; + return $this->value; } } $node stays as-is + * * array (of Nodes) + * => The return value is merged into the parent array (at the position of the $node) + * * NodeTraverser::REMOVE_NODE + * => $node is removed from the parent array + * * NodeTraverser::DONT_TRAVERSE_CHILDREN + * => Children of $node are not traversed. $node stays as-is + * * NodeTraverser::DONT_TRAVERSE_CURRENT_AND_CHILDREN + * => Further visitors for the current node are skipped, and its children are not + * traversed. $node stays as-is. + * * NodeTraverser::STOP_TRAVERSAL + * => Traversal is aborted. $node stays as-is + * * otherwise + * => $node is set to the return value + * + * @param Node $node Node + * + * @return Node|Node[]|NodeTraverser::*|null Replacement node (or special return value) + */ + public function enterNode(Node $node); + /** + * Called when leaving a node. + * + * Return value semantics: + * * null + * => $node stays as-is + * * NodeTraverser::REMOVE_NODE + * => $node is removed from the parent array + * * NodeTraverser::STOP_TRAVERSAL + * => Traversal is aborted. $node stays as-is + * * array (of Nodes) + * => The return value is merged into the parent array (at the position of the $node) + * * otherwise + * => $node is set to the return value + * + * @param Node $node Node + * + * @return Node|Node[]|NodeTraverser::REMOVE_NODE|NodeTraverser::STOP_TRAVERSAL|null Replacement node (or special return value) + */ + public function leaveNode(Node $node); + /** + * Called once after traversal. + * + * Return value semantics: + * * null: $nodes stays as-is + * * otherwise: $nodes is set to the return value + * + * @param Node[] $nodes Array of nodes + * + * @return Node[]|null Array of nodes + */ + public function afterTraverse(array $nodes): ?array; } setAttribute(Attribute::ORIGINAL_NODE, $originalNode); + return $node; } } >'; - } - public function getType() : string - { - return 'Expr_BinaryOp_ShiftRight'; - } + public const START_LINE = 'startLine'; + public const END_LINE = 'endLine'; + public const START_INDEX = 'startIndex'; + public const END_INDEX = 'endIndex'; + public const ORIGINAL_NODE = 'originalNode'; } types = $types; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Smaller'; + return '(' . implode(' | ', array_map(static function (TypeNode $type): string { + if ($type instanceof NullableTypeNode) { + return '(' . $type . ')'; + } + return (string) $type; + }, $this->types)) . ')'; } } types = $types; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_SmallerOrEqual'; + return '(' . implode(' & ', array_map(static function (TypeNode $type): string { + if ($type instanceof NullableTypeNode) { + return '(' . $type . ')'; + } + return (string) $type; + }, $this->types)) . ')'; } } '; + $this->name = $name; } - public function getType() : string + public function __toString(): string { - return 'Expr_BinaryOp_Spaceship'; + return $this->name; } } attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; + $this->keyName = $keyName; + $this->optional = $optional; + $this->valueType = $valueType; } - public function getType() : string + public function __toString(): string { - return 'Expr_BitwiseNot'; + if ($this->keyName !== null) { + return sprintf('%s%s: %s', (string) $this->keyName, $this->optional ? '?' : '', (string) $this->valueType); + } + return (string) $this->valueType; } } attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var ConstExprNode */ + public $constExpr; + public function __construct(ConstExprNode $constExpr) { - return ['expr']; + $this->constExpr = $constExpr; } - public function getType() : string + public function __toString(): string { - return 'Expr_BooleanNot'; + return $this->constExpr->__toString(); } } - */ - public abstract function getRawArgs() : array; - /** - * Returns whether this call expression is actually a first class callable. - */ - public function isFirstClassCallable() : bool + use NodeAttributes; + /** @var TypeNode */ + public $type; + /** @var bool */ + public $isReference; + /** @var bool */ + public $isVariadic; + /** @var string (may be empty) */ + public $parameterName; + /** @var bool */ + public $isOptional; + public function __construct(TypeNode $type, bool $isReference, bool $isVariadic, string $parameterName, bool $isOptional) { - foreach ($this->getRawArgs() as $arg) { - if ($arg instanceof VariadicPlaceholder) { - return \true; - } - } - return \false; + $this->type = $type; + $this->isReference = $isReference; + $this->isVariadic = $isVariadic; + $this->parameterName = $parameterName; + $this->isOptional = $isOptional; } - /** - * Assert that this is not a first-class callable and return only ordinary Args. - * - * @return Arg[] - */ - public function getArgs() : array + public function __toString(): string { - \assert(!$this->isFirstClassCallable()); - return $this->getRawArgs(); + $type = "{$this->type} "; + $isReference = $this->isReference ? '&' : ''; + $isVariadic = $this->isVariadic ? '...' : ''; + $isOptional = $this->isOptional ? '=' : ''; + return trim("{$type}{$isReference}{$isVariadic}{$this->parameterName}") . $isOptional; } } attributes = $attributes; - $this->expr = $expr; + $this->identifier = $identifier; + $this->parameters = $parameters; + $this->returnType = $returnType; + $this->templateTypes = $templateTypes; } - public function getSubNodeNames() : array + public function __toString(): string { - return ['expr']; + $returnType = $this->returnType; + if ($returnType instanceof self) { + $returnType = "({$returnType})"; + } + $template = $this->templateTypes !== [] ? '<' . implode(', ', $this->templateTypes) . '>' : ''; + $parameters = implode(', ', $this->parameters); + return "{$this->identifier}{$template}({$parameters}): {$returnType}"; } } keyName = $keyName; + $this->optional = $optional; + $this->valueType = $valueType; + } + public function __toString(): string + { + if ($this->keyName !== null) { + return sprintf('%s%s: %s', (string) $this->keyName, $this->optional ? '?' : '', (string) $this->valueType); + } + return (string) $this->valueType; } } items = $items; + } + public function __toString(): string + { + $items = $this->items; + return 'object{' . implode(', ', $items) . '}'; } } exceptionArgs = [$exception->getCurrentTokenValue(), $exception->getCurrentTokenType(), $exception->getCurrentOffset(), $exception->getExpectedTokenType(), $exception->getExpectedTokenValue(), $exception->getCurrentTokenLine()]; + } + public function getException(): ParserException + { + return new ParserException(...$this->exceptionArgs); + } + public function __toString(): string + { + return '*Invalid type*'; } } type = $type; + $this->offset = $offset; + } + public function __toString(): string + { + if ($this->type instanceof CallableTypeNode || $this->type instanceof NullableTypeNode) { + return '(' . $this->type . ')[' . $this->offset . ']'; + } + return $this->type . '[' . $this->offset . ']'; } } subjectType = $subjectType; + $this->targetType = $targetType; + $this->if = $if; + $this->else = $else; + $this->negated = $negated; + } + public function __toString(): string + { + return sprintf('(%s %s %s ? %s : %s)', $this->subjectType, $this->negated ? 'is not' : 'is', $this->targetType, $this->if, $this->else); } } attributes = $attributes; - $this->class = $class; - $this->name = \is_string($name) ? new Identifier($name) : $name; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var TypeNode */ + public $valueType; + /** @var TypeNode|null */ + public $keyType; + public function __construct(TypeNode $valueType, ?TypeNode $keyType) { - return ['class', 'name']; + $this->valueType = $valueType; + $this->keyType = $keyType; } - public function getType() : string + public function __toString(): string { - return 'Expr_ClassConstFetch'; + if ($this->keyType !== null) { + return sprintf('<%s, %s>', $this->keyType, $this->valueType); + } + return sprintf('<%s>', $this->valueType); } } attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var string */ + public $parameterName; + /** @var TypeNode */ + public $targetType; + /** @var TypeNode */ + public $if; + /** @var TypeNode */ + public $else; + /** @var bool */ + public $negated; + public function __construct(string $parameterName, TypeNode $targetType, TypeNode $if, TypeNode $else, bool $negated) { - return ['expr']; + $this->parameterName = $parameterName; + $this->targetType = $targetType; + $this->if = $if; + $this->else = $else; + $this->negated = $negated; } - public function getType() : string + public function __toString(): string { - return 'Expr_Clone'; + return sprintf('(%s %s %s ? %s : %s)', $this->parameterName, $this->negated ? 'is not' : 'is', $this->targetType, $this->if, $this->else); } } false : Whether the closure is static - * 'byRef' => false : Whether to return by reference - * 'params' => array(): Parameters - * 'uses' => array(): use()s - * 'returnType' => null : Return type - * 'stmts' => array(): Statements - * 'attrGroups' => array(): PHP attributes groups - * @param array $attributes Additional attributes - */ - public function __construct(array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->static = $subNodes['static'] ?? \false; - $this->byRef = $subNodes['byRef'] ?? \false; - $this->params = $subNodes['params'] ?? []; - $this->uses = $subNodes['uses'] ?? []; - $returnType = $subNodes['returnType'] ?? null; - $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'static', 'byRef', 'params', 'uses', 'returnType', 'stmts']; - } - public function returnsByRef() : bool - { - return $this->byRef; - } - public function getParams() : array - { - return $this->params; - } - public function getReturnType() - { - return $this->returnType; - } - /** @return Node\Stmt[] */ - public function getStmts() : array - { - return $this->stmts; - } - public function getAttrGroups() : array + use NodeAttributes; + /** @var TypeNode */ + public $type; + public function __construct(TypeNode $type) { - return $this->attrGroups; + $this->type = $type; } - public function getType() : string + public function __toString(): string { - return 'Expr_Closure'; + return '?' . $this->type; } } attributes = $attributes; - $this->var = $var; - $this->byRef = $byRef; - } - public function getSubNodeNames() : array + public function __construct(array $items, bool $sealed = \true, string $kind = self::KIND_ARRAY, ?ArrayShapeUnsealedTypeNode $unsealedType = null) { - return ['var', 'byRef']; + $this->items = $items; + $this->sealed = $sealed; + $this->kind = $kind; + $this->unsealedType = $unsealedType; } - public function getType() : string + public function __toString(): string { - return 'Expr_ClosureUse'; + $items = $this->items; + if (!$this->sealed) { + $items[] = '...' . $this->unsealedType; + } + return $this->kind . '{' . implode(', ', $items) . '}'; } } attributes = $attributes; - $this->name = $name; - } - public function getSubNodeNames() : array - { - return ['name']; - } - public function getType() : string + public function __construct(IdentifierTypeNode $type, array $genericTypes, array $variances = []) { - return 'Expr_ConstFetch'; + $this->type = $type; + $this->genericTypes = $genericTypes; + $this->variances = $variances; + } + public function __toString(): string + { + $genericTypes = []; + foreach ($this->genericTypes as $index => $type) { + $variance = $this->variances[$index] ?? self::VARIANCE_INVARIANT; + if ($variance === self::VARIANCE_INVARIANT) { + $genericTypes[] = (string) $type; + } elseif ($variance === self::VARIANCE_BIVARIANT) { + $genericTypes[] = '*'; + } else { + $genericTypes[] = sprintf('%s %s', $variance, $type); + } + } + return $this->type . '<' . implode(', ', $genericTypes) . '>'; } } attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array + use NodeAttributes; + /** @var TypeNode */ + public $type; + public function __construct(TypeNode $type) { - return ['expr']; + $this->type = $type; } - public function getType() : string + public function __toString(): string { - return 'Expr_Empty'; + if ($this->type instanceof CallableTypeNode || $this->type instanceof ConstTypeNode || $this->type instanceof NullableTypeNode) { + return '(' . $this->type . ')[]'; + } + return $this->type . '[]'; } } attributes = $attributes; + return null; } - public function getSubNodeNames() : array + public function enterNode(Node $node) { - return []; + return null; } - public function getType() : string + public function leaveNode(Node $node) { - return 'Expr_Error'; + return null; + } + public function afterTraverse(array $nodes): ?array + { + return null; } } */ + private $attributes = []; /** - * Constructs an error suppress node. - * - * @param Expr $expr Expression - * @param array $attributes Additional attributes + * @param mixed $value */ - public function __construct(Expr $expr, array $attributes = []) + public function setAttribute(string $key, $value): void { - $this->attributes = $attributes; - $this->expr = $expr; + $this->attributes[$key] = $value; } - public function getSubNodeNames() : array + public function hasAttribute(string $key): bool { - return ['expr']; + return array_key_exists($key, $this->attributes); } - public function getType() : string + /** + * @return mixed + */ + public function getAttribute(string $key) { - return 'Expr_ErrorSuppress'; + if ($this->hasAttribute($key)) { + return $this->attributes[$key]; + } + return null; } } attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string - { - return 'Expr_Eval'; - } -} -attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string + public const STOP_TRAVERSAL = 2; + /** + * If NodeVisitor::leaveNode() returns REMOVE_NODE for a node that occurs + * in an array, it will be removed from the array. + * + * For subsequent visitors leaveNode() will still be invoked for the + * removed node. + */ + public const REMOVE_NODE = 3; + /** + * If NodeVisitor::enterNode() returns DONT_TRAVERSE_CURRENT_AND_CHILDREN, child nodes + * of the current node will not be traversed for any visitors. + * + * For subsequent visitors enterNode() will not be called as well. + * leaveNode() will be invoked for visitors that has enterNode() method invoked. + */ + public const DONT_TRAVERSE_CURRENT_AND_CHILDREN = 4; + /** @var list Visitors */ + private $visitors = []; + /** @var bool Whether traversal should be stopped */ + private $stopTraversal; + /** + * @param list $visitors + */ + public function __construct(array $visitors) { - return 'Expr_Exit'; + $this->visitors = $visitors; } -} - Arguments */ - public $args; /** - * Constructs a function call node. + * Traverses an array of nodes using the registered visitors. * - * @param Node\Name|Expr $name Function name - * @param array $args Arguments - * @param array $attributes Additional attributes + * @param Node[] $nodes Array of nodes + * + * @return Node[] Traversed array of nodes */ - public function __construct($name, array $args = [], array $attributes = []) + public function traverse(array $nodes): array { - $this->attributes = $attributes; - $this->name = $name; - $this->args = $args; + $this->stopTraversal = \false; + foreach ($this->visitors as $visitor) { + $return = $visitor->beforeTraverse($nodes); + if ($return === null) { + continue; + } + $nodes = $return; + } + $nodes = $this->traverseArray($nodes); + foreach ($this->visitors as $visitor) { + $return = $visitor->afterTraverse($nodes); + if ($return === null) { + continue; + } + $nodes = $return; + } + return $nodes; } - public function getSubNodeNames() : array + /** + * Recursively traverse a node. + * + * @param Node $node Node to traverse. + * + * @return Node Result of traversal (may be original node or new one) + */ + private function traverseNode(Node $node): Node { - return ['name', 'args']; + $subNodeNames = array_keys(get_object_vars($node)); + foreach ($subNodeNames as $name) { + $subNode =& $node->{$name}; + if (is_array($subNode)) { + $subNode = $this->traverseArray($subNode); + if ($this->stopTraversal) { + break; + } + } elseif ($subNode instanceof Node) { + $traverseChildren = \true; + $breakVisitorIndex = null; + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->enterNode($subNode); + if ($return === null) { + continue; + } + if ($return instanceof Node) { + $this->ensureReplacementReasonable($subNode, $return); + $subNode = $return; + } elseif ($return === self::DONT_TRAVERSE_CHILDREN) { + $traverseChildren = \false; + } elseif ($return === self::DONT_TRAVERSE_CURRENT_AND_CHILDREN) { + $traverseChildren = \false; + $breakVisitorIndex = $visitorIndex; + break; + } elseif ($return === self::STOP_TRAVERSAL) { + $this->stopTraversal = \true; + break 2; + } else { + throw new LogicException('enterNode() returned invalid value of type ' . gettype($return)); + } + } + if ($traverseChildren) { + $subNode = $this->traverseNode($subNode); + if ($this->stopTraversal) { + break; + } + } + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->leaveNode($subNode); + if ($return !== null) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($subNode, $return); + $subNode = $return; + } elseif ($return === self::STOP_TRAVERSAL) { + $this->stopTraversal = \true; + break 2; + } elseif (is_array($return)) { + throw new LogicException('leaveNode() may only return an array ' . 'if the parent structure is an array'); + } else { + throw new LogicException('leaveNode() returned invalid value of type ' . gettype($return)); + } + } + if ($breakVisitorIndex === $visitorIndex) { + break; + } + } + } + } + return $node; } - public function getType() : string + /** + * Recursively traverse array (usually of nodes). + * + * @param mixed[] $nodes Array to traverse + * + * @return mixed[] Result of traversal (may be original array or changed one) + */ + private function traverseArray(array $nodes): array { - return 'Expr_FuncCall'; + $doNodes = []; + foreach ($nodes as $i => &$node) { + if ($node instanceof Node) { + $traverseChildren = \true; + $breakVisitorIndex = null; + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->enterNode($node); + if ($return === null) { + continue; + } + if ($return instanceof Node) { + $this->ensureReplacementReasonable($node, $return); + $node = $return; + } elseif (is_array($return)) { + $doNodes[] = [$i, $return]; + continue 2; + } elseif ($return === self::REMOVE_NODE) { + $doNodes[] = [$i, []]; + continue 2; + } elseif ($return === self::DONT_TRAVERSE_CHILDREN) { + $traverseChildren = \false; + } elseif ($return === self::DONT_TRAVERSE_CURRENT_AND_CHILDREN) { + $traverseChildren = \false; + $breakVisitorIndex = $visitorIndex; + break; + } elseif ($return === self::STOP_TRAVERSAL) { + $this->stopTraversal = \true; + break 2; + } else { + throw new LogicException('enterNode() returned invalid value of type ' . gettype($return)); + } + } + if ($traverseChildren) { + $node = $this->traverseNode($node); + if ($this->stopTraversal) { + break; + } + } + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->leaveNode($node); + if ($return !== null) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($node, $return); + $node = $return; + } elseif (is_array($return)) { + $doNodes[] = [$i, $return]; + break; + } elseif ($return === self::REMOVE_NODE) { + $doNodes[] = [$i, []]; + break; + } elseif ($return === self::STOP_TRAVERSAL) { + $this->stopTraversal = \true; + break 2; + } else { + throw new LogicException('leaveNode() returned invalid value of type ' . gettype($return)); + } + } + if ($breakVisitorIndex === $visitorIndex) { + break; + } + } + } elseif (is_array($node)) { + throw new LogicException('Invalid node structure: Contains nested arrays'); + } + } + if (count($doNodes) > 0) { + while ([$i, $replace] = array_pop($doNodes)) { + array_splice($nodes, $i, 1, $replace); + } + } + return $nodes; } - public function getRawArgs() : array + private function ensureReplacementReasonable(Node $old, Node $new): void { - return $this->args; + if ($old instanceof TypeNode && !$new instanceof TypeNode) { + throw new LogicException(sprintf('Trying to replace TypeNode with %s', get_class($new))); + } + if ($old instanceof ConstExprNode && !$new instanceof ConstExprNode) { + throw new LogicException(sprintf('Trying to replace ConstExprNode with %s', get_class($new))); + } + if ($old instanceof PhpDocChildNode && !$new instanceof PhpDocChildNode) { + throw new LogicException(sprintf('Trying to replace PhpDocChildNode with %s', get_class($new))); + } + if ($old instanceof PhpDocTagValueNode && !$new instanceof PhpDocTagValueNode) { + throw new LogicException(sprintf('Trying to replace PhpDocTagValueNode with %s', get_class($new))); + } } } +Object Enumerator + +Copyright (c) 2016-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class Include_ extends Expr +use function array_key_exists; +use function is_array; +use function sort; +use function sprintf; +use function str_replace; +use function trim; +/** + * Compares arrays for equality. + * + * Arrays are equal if they contain the same key-value pairs. + * The order of the keys does not matter. + * The types of key-value pairs do not matter. + */ +class ArrayComparator extends Comparator { - const TYPE_INCLUDE = 1; - const TYPE_INCLUDE_ONCE = 2; - const TYPE_REQUIRE = 3; - const TYPE_REQUIRE_ONCE = 4; - /** @var Expr Expression */ - public $expr; - /** @var int Type of include */ - public $type; /** - * Constructs an include node. + * Returns whether the comparator can compare two values. * - * @param Expr $expr Expression - * @param int $type Type of include - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $expr, int $type, array $attributes = []) + public function accepts($expected, $actual) { - $this->attributes = $attributes; - $this->expr = $expr; - $this->type = $type; + return is_array($expected) && is_array($actual); } - public function getSubNodeNames() : array + /** + * Asserts that two arrays are equal. + * + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * @param array $processed List of already processed elements (used to prevent infinite recursion) + * + * @throws ComparisonFailure + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = []) { - return ['expr', 'type']; + if ($canonicalize) { + sort($expected); + sort($actual); + } + $remaining = $actual; + $actualAsString = "Array (\n"; + $expectedAsString = "Array (\n"; + $equal = \true; + foreach ($expected as $key => $value) { + unset($remaining[$key]); + if (!array_key_exists($key, $actual)) { + $expectedAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $this->exporter->shortenedExport($value)); + $equal = \false; + continue; + } + try { + $comparator = $this->factory->getComparatorFor($value, $actual[$key]); + $comparator->assertEquals($value, $actual[$key], $delta, $canonicalize, $ignoreCase, $processed); + $expectedAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $this->exporter->shortenedExport($value)); + $actualAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $this->exporter->shortenedExport($actual[$key])); + } catch (ComparisonFailure $e) { + $expectedAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $e->getExpectedAsString() ? $this->indent($e->getExpectedAsString()) : $this->exporter->shortenedExport($e->getExpected())); + $actualAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $e->getActualAsString() ? $this->indent($e->getActualAsString()) : $this->exporter->shortenedExport($e->getActual())); + $equal = \false; + } + } + foreach ($remaining as $key => $value) { + $actualAsString .= sprintf(" %s => %s\n", $this->exporter->export($key), $this->exporter->shortenedExport($value)); + $equal = \false; + } + $expectedAsString .= ')'; + $actualAsString .= ')'; + if (!$equal) { + throw new ComparisonFailure($expected, $actual, $expectedAsString, $actualAsString, \false, 'Failed asserting that two arrays are equal.'); + } } - public function getType() : string + protected function indent($lines) { - return 'Expr_Include'; + return trim(str_replace("\n", "\n ", $lines)); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Name; -class Instanceof_ extends Expr +use function gettype; +use function sprintf; +/** + * Compares values for type equality. + */ +class TypeComparator extends Comparator { - /** @var Expr Expression */ - public $expr; - /** @var Name|Expr Class name */ - public $class; /** - * Constructs an instanceof check node. + * Returns whether the comparator can compare two values. * - * @param Expr $expr Expression - * @param Name|Expr $class Class name - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $expr, $class, array $attributes = []) - { - $this->attributes = $attributes; - $this->expr = $expr; - $this->class = $class; - } - public function getSubNodeNames() : array + public function accepts($expected, $actual) { - return ['expr', 'class']; + return \true; } - public function getType() : string + /** + * Asserts that two values are equal. + * + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * + * @throws ComparisonFailure + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false) { - return 'Expr_Instanceof'; + if (gettype($expected) != gettype($actual)) { + throw new ComparisonFailure( + $expected, + $actual, + // we don't need a diff + '', + '', + \false, + sprintf('%s does not match expected type "%s".', $this->exporter->shortenedExport($actual), gettype($expected)) + ); + } } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class Isset_ extends Expr +use function array_unshift; +/** + * Factory for comparators which compare values for equality. + */ +class Factory { - /** @var Expr[] Variables */ - public $vars; /** - * Constructs an array node. - * - * @param Expr[] $vars Variables - * @param array $attributes Additional attributes + * @var Factory */ - public function __construct(array $vars, array $attributes = []) - { - $this->attributes = $attributes; - $this->vars = $vars; - } - public function getSubNodeNames() : array + private static $instance; + /** + * @var Comparator[] + */ + private $customComparators = []; + /** + * @var Comparator[] + */ + private $defaultComparators = []; + /** + * @return Factory + */ + public static function getInstance() { - return ['vars']; + if (self::$instance === null) { + self::$instance = new self(); + // @codeCoverageIgnore + } + return self::$instance; } - public function getType() : string + /** + * Constructs a new factory. + */ + public function __construct() { - return 'Expr_Isset'; + $this->registerDefaultComparators(); } -} -attributes = $attributes; - $this->items = $items; + foreach ($this->customComparators as $comparator) { + if ($comparator->accepts($expected, $actual)) { + return $comparator; + } + } + foreach ($this->defaultComparators as $comparator) { + if ($comparator->accepts($expected, $actual)) { + return $comparator; + } + } + throw new RuntimeException('No suitable Comparator implementation found'); } - public function getSubNodeNames() : array + /** + * Registers a new comparator. + * + * This comparator will be returned by getComparatorFor() if its accept() method + * returns TRUE for the compared values. It has higher priority than the + * existing comparators, meaning that its accept() method will be invoked + * before those of the other comparators. + * + * @param Comparator $comparator The comparator to be registered + */ + public function register(Comparator $comparator) { - return ['items']; + array_unshift($this->customComparators, $comparator); + $comparator->setFactory($this); } - public function getType() : string + /** + * Unregisters a comparator. + * + * This comparator will no longer be considered by getComparatorFor(). + * + * @param Comparator $comparator The comparator to be unregistered + */ + public function unregister(Comparator $comparator) { - return 'Expr_List'; + foreach ($this->customComparators as $key => $_comparator) { + if ($comparator === $_comparator) { + unset($this->customComparators[$key]); + } + } } -} -attributes = $attributes; - $this->cond = $cond; - $this->arms = $arms; + $this->customComparators = []; } - public function getSubNodeNames() : array + private function registerDefaultComparators(): void { - return ['cond', 'arms']; + $this->registerDefaultComparator(new MockObjectComparator()); + $this->registerDefaultComparator(new DateTimeComparator()); + $this->registerDefaultComparator(new DOMNodeComparator()); + $this->registerDefaultComparator(new SplObjectStorageComparator()); + $this->registerDefaultComparator(new ExceptionComparator()); + $this->registerDefaultComparator(new ObjectComparator()); + $this->registerDefaultComparator(new ResourceComparator()); + $this->registerDefaultComparator(new ArrayComparator()); + $this->registerDefaultComparator(new NumericComparator()); + $this->registerDefaultComparator(new ScalarComparator()); + $this->registerDefaultComparator(new TypeComparator()); } - public function getType() : string + private function registerDefaultComparator(Comparator $comparator): void { - return 'Expr_Match'; + $this->defaultComparators[] = $comparator; + $comparator->setFactory($this); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Arg; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\VariadicPlaceholder; -class MethodCall extends CallLike +use function is_resource; +/** + * Compares resources for equality. + */ +class ResourceComparator extends Comparator { - /** @var Expr Variable holding object */ - public $var; - /** @var Identifier|Expr Method name */ - public $name; - /** @var array Arguments */ - public $args; /** - * Constructs a function call node. + * Returns whether the comparator can compare two values. * - * @param Expr $var Variable holding object - * @param string|Identifier|Expr $name Method name - * @param array $args Arguments - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $var, $name, array $args = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->var = $var; - $this->name = \is_string($name) ? new Identifier($name) : $name; - $this->args = $args; - } - public function getSubNodeNames() : array - { - return ['var', 'name', 'args']; - } - public function getType() : string - { - return 'Expr_MethodCall'; - } - public function getRawArgs() : array + public function accepts($expected, $actual) { - return $this->args; + return is_resource($expected) && is_resource($actual); } -} - Arguments */ - public $args; /** - * Constructs a function call node. + * Asserts that two values are equal. * - * @param Node\Name|Expr|Node\Stmt\Class_ $class Class name (or class node for anonymous classes) - * @param array $args Arguments - * @param array $attributes Additional attributes + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * + * @throws ComparisonFailure */ - public function __construct($class, array $args = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->class = $class; - $this->args = $args; - } - public function getSubNodeNames() : array - { - return ['class', 'args']; - } - public function getType() : string - { - return 'Expr_New'; - } - public function getRawArgs() : array + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false) { - return $this->args; + if ($actual != $expected) { + throw new ComparisonFailure($expected, $actual, $this->exporter->export($expected), $this->exporter->export($actual)); + } } } +Comparator + +Copyright (c) 2002-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Arg; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\VariadicPlaceholder; -class NullsafeMethodCall extends CallLike +use PHPUnit\Framework\MockObject\MockObject; +/** + * Compares PHPUnit\Framework\MockObject\MockObject instances for equality. + */ +class MockObjectComparator extends ObjectComparator { - /** @var Expr Variable holding object */ - public $var; - /** @var Identifier|Expr Method name */ - public $name; - /** @var array Arguments */ - public $args; /** - * Constructs a nullsafe method call node. + * Returns whether the comparator can compare two values. * - * @param Expr $var Variable holding object - * @param string|Identifier|Expr $name Method name - * @param array $args Arguments - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $var, $name, array $args = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->var = $var; - $this->name = \is_string($name) ? new Identifier($name) : $name; - $this->args = $args; - } - public function getSubNodeNames() : array - { - return ['var', 'name', 'args']; - } - public function getType() : string + public function accepts($expected, $actual) { - return 'Expr_NullsafeMethodCall'; + return $expected instanceof MockObject && $actual instanceof MockObject; } - public function getRawArgs() : array + /** + * Converts an object to an array containing all of its private, protected + * and public properties. + * + * @param object $object + * + * @return array + */ + protected function toArray($object) { - return $this->args; + $array = parent::toArray($object); + unset($array['__phpunit_invocationMocker']); + return $array; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Identifier; -class NullsafePropertyFetch extends Expr +use function get_class; +use function in_array; +use function is_object; +use function sprintf; +use function substr_replace; +/** + * Compares objects for equality. + */ +class ObjectComparator extends ArrayComparator { - /** @var Expr Variable holding object */ - public $var; - /** @var Identifier|Expr Property name */ - public $name; /** - * Constructs a nullsafe property fetch node. + * Returns whether the comparator can compare two values. * - * @param Expr $var Variable holding object - * @param string|Identifier|Expr $name Property name - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $var, $name, array $attributes = []) + public function accepts($expected, $actual) { - $this->attributes = $attributes; - $this->var = $var; - $this->name = \is_string($name) ? new Identifier($name) : $name; + return is_object($expected) && is_object($actual); } - public function getSubNodeNames() : array + /** + * Asserts that two values are equal. + * + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * @param array $processed List of already processed elements (used to prevent infinite recursion) + * + * @throws ComparisonFailure + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = []) { - return ['var', 'name']; + if (get_class($actual) !== get_class($expected)) { + throw new ComparisonFailure($expected, $actual, $this->exporter->export($expected), $this->exporter->export($actual), \false, sprintf('%s is not instance of expected class "%s".', $this->exporter->export($actual), get_class($expected))); + } + // don't compare twice to allow for cyclic dependencies + if (in_array([$actual, $expected], $processed, \true) || in_array([$expected, $actual], $processed, \true)) { + return; + } + $processed[] = [$actual, $expected]; + // don't compare objects if they are identical + // this helps to avoid the error "maximum function nesting level reached" + // CAUTION: this conditional clause is not tested + if ($actual !== $expected) { + try { + parent::assertEquals($this->toArray($expected), $this->toArray($actual), $delta, $canonicalize, $ignoreCase, $processed); + } catch (ComparisonFailure $e) { + throw new ComparisonFailure( + $expected, + $actual, + // replace "Array" with "MyClass object" + substr_replace($e->getExpectedAsString(), get_class($expected) . ' Object', 0, 5), + substr_replace($e->getActualAsString(), get_class($actual) . ' Object', 0, 5), + \false, + 'Failed asserting that two objects are equal.' + ); + } + } } - public function getType() : string + /** + * Converts an object to an array containing all of its private, protected + * and public properties. + * + * @param object $object + * + * @return array + */ + protected function toArray($object) { - return 'Expr_NullsafePropertyFetch'; + return $this->exporter->toArray($object); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class PostDec extends Expr +use function abs; +use function is_float; +use function is_infinite; +use function is_nan; +use function is_numeric; +use function is_string; +use function sprintf; +/** + * Compares numerical values for equality. + */ +class NumericComparator extends ScalarComparator { - /** @var Expr Variable */ - public $var; /** - * Constructs a post decrement node. + * Returns whether the comparator can compare two values. * - * @param Expr $var Variable - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $var, array $attributes = []) - { - $this->attributes = $attributes; - $this->var = $var; - } - public function getSubNodeNames() : array - { - return ['var']; - } - public function getType() : string + public function accepts($expected, $actual) { - return 'Expr_PostDec'; + // all numerical values, but not if both of them are strings + return is_numeric($expected) && is_numeric($actual) && !(is_string($expected) && is_string($actual)); } -} -attributes = $attributes; - $this->var = $var; + if ($this->isInfinite($actual) && $this->isInfinite($expected)) { + return; + } + if (($this->isInfinite($actual) xor $this->isInfinite($expected)) || ($this->isNan($actual) || $this->isNan($expected)) || abs($actual - $expected) > $delta) { + throw new ComparisonFailure($expected, $actual, '', '', \false, sprintf('Failed asserting that %s matches expected %s.', $this->exporter->export($actual), $this->exporter->export($expected))); + } } - public function getSubNodeNames() : array + private function isInfinite($value): bool { - return ['var']; + return is_float($value) && is_infinite($value); } - public function getType() : string + private function isNan($value): bool { - return 'Expr_PostInc'; + return is_float($value) && is_nan($value); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class PreDec extends Expr +final class RuntimeException extends \RuntimeException implements Exception { - /** @var Expr Variable */ - public $var; - /** - * Constructs a pre decrement node. - * - * @param Expr $var Variable - * @param array $attributes Additional attributes - */ - public function __construct(Expr $var, array $attributes = []) - { - $this->attributes = $attributes; - $this->var = $var; - } - public function getSubNodeNames() : array - { - return ['var']; - } - public function getType() : string - { - return 'Expr_PreDec'; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class PreInc extends Expr +use Throwable; +interface Exception extends Throwable { - /** @var Expr Variable */ - public $var; - /** - * Constructs a pre increment node. - * - * @param Expr $var Variable - * @param array $attributes Additional attributes - */ - public function __construct(Expr $var, array $attributes = []) - { - $this->attributes = $attributes; - $this->var = $var; - } - public function getSubNodeNames() : array - { - return ['var']; - } - public function getType() : string - { - return 'Expr_PreInc'; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class Print_ extends Expr +use function abs; +use function floor; +use function sprintf; +use DateInterval; +use DateTime; +use DateTimeInterface; +use DateTimeZone; +use Exception; +/** + * Compares DateTimeInterface instances for equality. + */ +class DateTimeComparator extends ObjectComparator { - /** @var Expr Expression */ - public $expr; /** - * Constructs an print() node. + * Returns whether the comparator can compare two values. * - * @param Expr $expr Expression - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $expr, array $attributes = []) + public function accepts($expected, $actual) { - $this->attributes = $attributes; - $this->expr = $expr; + return ($expected instanceof DateTime || $expected instanceof DateTimeInterface) && ($actual instanceof DateTime || $actual instanceof DateTimeInterface); } - public function getSubNodeNames() : array + /** + * Asserts that two values are equal. + * + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * @param array $processed List of already processed elements (used to prevent infinite recursion) + * + * @throws Exception + * @throws ComparisonFailure + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = []) { - return ['expr']; + /** @var DateTimeInterface $expected */ + /** @var DateTimeInterface $actual */ + $absDelta = abs($delta); + $delta = new DateInterval(sprintf('PT%dS', $absDelta)); + $delta->f = $absDelta - floor($absDelta); + $actualClone = (clone $actual)->setTimezone(new DateTimeZone('UTC')); + $expectedLower = (clone $expected)->setTimezone(new DateTimeZone('UTC'))->sub($delta); + $expectedUpper = (clone $expected)->setTimezone(new DateTimeZone('UTC'))->add($delta); + if ($actualClone < $expectedLower || $actualClone > $expectedUpper) { + throw new ComparisonFailure($expected, $actual, $this->dateTimeToString($expected), $this->dateTimeToString($actual), \false, 'Failed asserting that two DateTime objects are equal.'); + } } - public function getType() : string + /** + * Returns an ISO 8601 formatted string representation of a datetime or + * 'Invalid DateTimeInterface object' if the provided DateTimeInterface was not properly + * initialized. + */ + private function dateTimeToString(DateTimeInterface $datetime): string { - return 'Expr_Print'; + $string = $datetime->format('Y-m-d\TH:i:s.uO'); + return $string ?: 'Invalid DateTimeInterface object'; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Identifier; -class PropertyFetch extends Expr +use function is_bool; +use function is_object; +use function is_scalar; +use function is_string; +use function method_exists; +use function sprintf; +use function strtolower; +/** + * Compares scalar or NULL values for equality. + */ +class ScalarComparator extends Comparator { - /** @var Expr Variable holding object */ - public $var; - /** @var Identifier|Expr Property name */ - public $name; /** - * Constructs a function call node. + * Returns whether the comparator can compare two values. * - * @param Expr $var Variable holding object - * @param string|Identifier|Expr $name Property name - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool + * + * @since Method available since Release 3.6.0 */ - public function __construct(Expr $var, $name, array $attributes = []) + public function accepts($expected, $actual) { - $this->attributes = $attributes; - $this->var = $var; - $this->name = \is_string($name) ? new Identifier($name) : $name; + return (is_scalar($expected) xor null === $expected) && (is_scalar($actual) xor null === $actual) || is_string($expected) && is_object($actual) && method_exists($actual, '__toString') || is_object($expected) && method_exists($expected, '__toString') && is_string($actual); } - public function getSubNodeNames() : array - { - return ['var', 'name']; - } - public function getType() : string - { - return 'Expr_PropertyFetch'; - } -} -attributes = $attributes; - $this->parts = $parts; - } - public function getSubNodeNames() : array - { - return ['parts']; - } - public function getType() : string + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false) { - return 'Expr_ShellExec'; + $expectedToCompare = $expected; + $actualToCompare = $actual; + // always compare as strings to avoid strange behaviour + // otherwise 0 == 'Foobar' + if (is_string($expected) && !is_bool($actual) || is_string($actual) && !is_bool($expected)) { + $expectedToCompare = (string) $expectedToCompare; + $actualToCompare = (string) $actualToCompare; + if ($ignoreCase) { + $expectedToCompare = strtolower($expectedToCompare); + $actualToCompare = strtolower($actualToCompare); + } + } + if ($expectedToCompare !== $actualToCompare && is_string($expected) && is_string($actual)) { + throw new ComparisonFailure($expected, $actual, $this->exporter->export($expected), $this->exporter->export($actual), \false, 'Failed asserting that two strings are equal.'); + } + if ($expectedToCompare != $actualToCompare) { + throw new ComparisonFailure( + $expected, + $actual, + // no diff is required + '', + '', + \false, + sprintf('Failed asserting that %s matches expected %s.', $this->exporter->export($actual), $this->exporter->export($expected)) + ); + } } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Arg; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\VariadicPlaceholder; -class StaticCall extends CallLike +use Exception; +/** + * Compares Exception instances for equality. + */ +class ExceptionComparator extends ObjectComparator { - /** @var Node\Name|Expr Class name */ - public $class; - /** @var Identifier|Expr Method name */ - public $name; - /** @var array Arguments */ - public $args; /** - * Constructs a static method call node. + * Returns whether the comparator can compare two values. * - * @param Node\Name|Expr $class Class name - * @param string|Identifier|Expr $name Method name - * @param array $args Arguments - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct($class, $name, array $args = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->class = $class; - $this->name = \is_string($name) ? new Identifier($name) : $name; - $this->args = $args; - } - public function getSubNodeNames() : array - { - return ['class', 'name', 'args']; - } - public function getType() : string - { - return 'Expr_StaticCall'; - } - public function getRawArgs() : array + public function accepts($expected, $actual) { - return $this->args; + return $expected instanceof Exception && $actual instanceof Exception; } -} -attributes = $attributes; - $this->class = $class; - $this->name = \is_string($name) ? new VarLikeIdentifier($name) : $name; - } - public function getSubNodeNames() : array - { - return ['class', 'name']; - } - public function getType() : string + protected function toArray($object) { - return 'Expr_StaticPropertyFetch'; + $array = parent::toArray($object); + unset($array['file'], $array['line'], $array['trace'], $array['string'], $array['xdebug_message']); + return $array; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class Ternary extends Expr +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +/** + * Abstract base class for comparators which compare values for equality. + */ +abstract class Comparator { - /** @var Expr Condition */ - public $cond; - /** @var null|Expr Expression for true */ - public $if; - /** @var Expr Expression for false */ - public $else; /** - * Constructs a ternary operator node. - * - * @param Expr $cond Condition - * @param null|Expr $if Expression for true - * @param Expr $else Expression for false - * @param array $attributes Additional attributes + * @var Factory */ - public function __construct(Expr $cond, $if, Expr $else, array $attributes = []) - { - $this->attributes = $attributes; - $this->cond = $cond; - $this->if = $if; - $this->else = $else; - } - public function getSubNodeNames() : array + protected $factory; + /** + * @var Exporter + */ + protected $exporter; + public function __construct() { - return ['cond', 'if', 'else']; + $this->exporter = new Exporter(); } - public function getType() : string + public function setFactory(Factory $factory) { - return 'Expr_Ternary'; + $this->factory = $factory; } -} -attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string - { - return 'Expr_Throw'; - } -} -attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string - { - return 'Expr_UnaryMinus'; - } + abstract public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false); } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class UnaryPlus extends Expr +use function is_float; +use function is_numeric; +/** + * Compares doubles for equality. + * + * @deprecated since v3.0.5 and v4.0.8 + */ +class DoubleComparator extends NumericComparator { - /** @var Expr Expression */ - public $expr; /** - * Constructs a unary plus node. + * Smallest value available in PHP. * - * @param Expr $expr Expression - * @param array $attributes Additional attributes + * @var float */ - public function __construct(Expr $expr, array $attributes = []) - { - $this->attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string - { - return 'Expr_UnaryPlus'; - } -} -attributes = $attributes; - $this->name = $name; - } - public function getSubNodeNames() : array - { - return ['name']; - } - public function getType() : string + public function accepts($expected, $actual) { - return 'Expr_Variable'; + return (is_float($expected) || is_float($actual)) && is_numeric($expected) && is_numeric($actual); } -} -attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false) { - return 'Expr_YieldFrom'; + if ($delta == 0) { + $delta = self::EPSILON; + } + parent::assertEquals($expected, $actual, $delta, $canonicalize, $ignoreCase); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node\Expr; -class Yield_ extends Expr +use function sprintf; +use function strtolower; +use DOMDocument; +use DOMNode; +use ValueError; +/** + * Compares DOMNode instances for equality. + */ +class DOMNodeComparator extends ObjectComparator { - /** @var null|Expr Key expression */ - public $key; - /** @var null|Expr Value expression */ - public $value; /** - * Constructs a yield expression node. + * Returns whether the comparator can compare two values. * - * @param null|Expr $value Value expression - * @param null|Expr $key Key expression - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(Expr $value = null, Expr $key = null, array $attributes = []) + public function accepts($expected, $actual) { - $this->attributes = $attributes; - $this->key = $key; - $this->value = $value; + return $expected instanceof DOMNode && $actual instanceof DOMNode; } - public function getSubNodeNames() : array + /** + * Asserts that two values are equal. + * + * @param mixed $expected First value to compare + * @param mixed $actual Second value to compare + * @param float $delta Allowed numerical distance between two values to consider them equal + * @param bool $canonicalize Arrays are sorted before comparison when set to true + * @param bool $ignoreCase Case is ignored when set to true + * @param array $processed List of already processed elements (used to prevent infinite recursion) + * + * @throws ComparisonFailure + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = []) { - return ['key', 'value']; + $expectedAsString = $this->nodeToText($expected, \true, $ignoreCase); + $actualAsString = $this->nodeToText($actual, \true, $ignoreCase); + if ($expectedAsString !== $actualAsString) { + $type = $expected instanceof DOMDocument ? 'documents' : 'nodes'; + throw new ComparisonFailure($expected, $actual, $expectedAsString, $actualAsString, \false, sprintf("Failed asserting that two DOM %s are equal.\n", $type)); + } } - public function getType() : string + /** + * Returns the normalized, whitespace-cleaned, and indented textual + * representation of a DOMNode. + */ + private function nodeToText(DOMNode $node, bool $canonicalize, bool $ignoreCase): string { - return 'Expr_Yield'; + if ($canonicalize) { + $document = new DOMDocument(); + try { + @$document->loadXML($node->C14N()); + } catch (ValueError $e) { + } + $node = $document; + } + $document = $node instanceof DOMDocument ? $node : $node->ownerDocument; + $document->formatOutput = \true; + $document->normalizeDocument(); + $text = $node instanceof DOMDocument ? $node->saveXML() : $document->saveXML($node); + return $ignoreCase ? strtolower($text) : $text; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\Node; -interface FunctionLike extends Node +use RuntimeException; +use PHPUnitPHAR\SebastianBergmann\Diff\Differ; +use PHPUnitPHAR\SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder; +/** + * Thrown when an assertion for string equality failed. + */ +class ComparisonFailure extends RuntimeException { /** - * Whether to return by reference + * Expected value of the retrieval which does not match $actual. * - * @return bool + * @var mixed */ - public function returnsByRef() : bool; + protected $expected; /** - * List of parameters + * Actually retrieved value which does not match $expected. * - * @return Param[] + * @var mixed */ - public function getParams() : array; + protected $actual; /** - * Get the declared return type or null + * The string representation of the expected value. * - * @return null|Identifier|Name|ComplexType + * @var string */ - public function getReturnType(); + protected $expectedAsString; /** - * The function body + * The string representation of the actual value. * - * @return Stmt[]|null + * @var string */ - public function getStmts(); + protected $actualAsString; /** - * Get PHP attribute groups. + * @var bool + */ + protected $identical; + /** + * Optional message which is placed in front of the first line + * returned by toString(). * - * @return AttributeGroup[] + * @var string */ - public function getAttrGroups() : array; -} - \true, 'parent' => \true, 'static' => \true]; + protected $message; /** - * Constructs an identifier node. + * Initialises with the expected value and the actual value. * - * @param string $name Identifier as string - * @param array $attributes Additional attributes + * @param mixed $expected expected value retrieved + * @param mixed $actual actual value retrieved + * @param string $expectedAsString + * @param string $actualAsString + * @param bool $identical + * @param string $message a string which is prefixed on all returned lines + * in the difference output */ - public function __construct(string $name, array $attributes = []) + public function __construct($expected, $actual, $expectedAsString, $actualAsString, $identical = \false, $message = '') { - $this->attributes = $attributes; - $this->name = $name; + $this->expected = $expected; + $this->actual = $actual; + $this->expectedAsString = $expectedAsString; + $this->actualAsString = $actualAsString; + $this->message = $message; } - public function getSubNodeNames() : array + public function getActual() { - return ['name']; + return $this->actual; } - /** - * Get identifier as string. - * - * @return string Identifier as string. - */ - public function toString() : string + public function getExpected() { - return $this->name; + return $this->expected; } /** - * Get lowercased identifier as string. - * - * @return string Lowercased identifier as string + * @return string */ - public function toLowerString() : string + public function getActualAsString() { - return \strtolower($this->name); + return $this->actualAsString; } /** - * Checks whether the identifier is a special class name (self, parent or static). - * - * @return bool Whether identifier is a special class name + * @return string */ - public function isSpecialClassName() : bool + public function getExpectedAsString() { - return isset(self::$specialClassNames[\strtolower($this->name)]); + return $this->expectedAsString; } /** - * Get identifier as string. - * - * @return string Identifier as string + * @return string */ - public function __toString() : string + public function getDiff() { - return $this->name; + if (!$this->actualAsString && !$this->expectedAsString) { + return ''; + } + $differ = new Differ(new UnifiedDiffOutputBuilder("\n--- Expected\n+++ Actual\n")); + return $differ->diff($this->expectedAsString, $this->actualAsString); } - public function getType() : string + /** + * @return string + */ + public function toString() { - return 'Identifier'; + return $this->message . $this->getDiff(); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Comparator; -use PHPUnit\PhpParser\NodeAbstract; -class IntersectionType extends ComplexType +use SplObjectStorage; +/** + * Compares \SplObjectStorage instances for equality. + */ +class SplObjectStorageComparator extends Comparator { - /** @var (Identifier|Name)[] Types */ - public $types; /** - * Constructs an intersection type. + * Returns whether the comparator can compare two values. * - * @param (Identifier|Name)[] $types Types - * @param array $attributes Additional attributes + * @param mixed $expected The first value to compare + * @param mixed $actual The second value to compare + * + * @return bool */ - public function __construct(array $types, array $attributes = []) - { - $this->attributes = $attributes; - $this->types = $types; - } - public function getSubNodeNames() : array - { - return ['types']; - } - public function getType() : string + public function accepts($expected, $actual) { - return 'IntersectionType'; + return $expected instanceof SplObjectStorage && $actual instanceof SplObjectStorage; } -} -conds = $conds; - $this->body = $body; - $this->attributes = $attributes; - } - public function getSubNodeNames() : array - { - return ['conds', 'body']; - } - public function getType() : string + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false) { - return 'MatchArm'; + foreach ($actual as $object) { + if (!$expected->contains($object)) { + throw new ComparisonFailure($expected, $actual, $this->exporter->export($expected), $this->exporter->export($actual), \false, 'Failed asserting that two objects are equal.'); + } + } + foreach ($expected as $object) { + if (!$actual->contains($object)) { + throw new ComparisonFailure($expected, $actual, $this->exporter->export($expected), $this->exporter->export($actual), \false, 'Failed asserting that two objects are equal.'); + } + } } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\NodeAbstract; -class Name extends NodeAbstract +class VersionConstraintParser { - /** @var string[] Parts of the name */ - public $parts; - private static $specialClassNames = ['self' => \true, 'parent' => \true, 'static' => \true]; - /** - * Constructs a name node. - * - * @param string|string[]|self $name Name as string, part array or Name instance (copy ctor) - * @param array $attributes Additional attributes - */ - public function __construct($name, array $attributes = []) - { - $this->attributes = $attributes; - $this->parts = self::prepareName($name); - } - public function getSubNodeNames() : array - { - return ['parts']; - } - /** - * Gets the first part of the name, i.e. everything before the first namespace separator. - * - * @return string First part of the name - */ - public function getFirst() : string - { - return $this->parts[0]; - } - /** - * Gets the last part of the name, i.e. everything after the last namespace separator. - * - * @return string Last part of the name - */ - public function getLast() : string - { - return $this->parts[\count($this->parts) - 1]; - } - /** - * Checks whether the name is unqualified. (E.g. Name) - * - * @return bool Whether the name is unqualified - */ - public function isUnqualified() : bool - { - return 1 === \count($this->parts); - } - /** - * Checks whether the name is qualified. (E.g. Name\Name) - * - * @return bool Whether the name is qualified - */ - public function isQualified() : bool - { - return 1 < \count($this->parts); - } - /** - * Checks whether the name is fully qualified. (E.g. \Name) - * - * @return bool Whether the name is fully qualified - */ - public function isFullyQualified() : bool - { - return \false; - } - /** - * Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name) - * - * @return bool Whether the name is relative - */ - public function isRelative() : bool - { - return \false; - } - /** - * Returns a string representation of the name itself, without taking the name type into - * account (e.g., not including a leading backslash for fully qualified names). - * - * @return string String representation - */ - public function toString() : string - { - return \implode('\\', $this->parts); - } - /** - * Returns a string representation of the name as it would occur in code (e.g., including - * leading backslash for fully qualified names. - * - * @return string String representation - */ - public function toCodeString() : string - { - return $this->toString(); - } - /** - * Returns lowercased string representation of the name, without taking the name type into - * account (e.g., no leading backslash for fully qualified names). - * - * @return string Lowercased string representation - */ - public function toLowerString() : string - { - return \strtolower(\implode('\\', $this->parts)); - } - /** - * Checks whether the identifier is a special class name (self, parent or static). - * - * @return bool Whether identifier is a special class name - */ - public function isSpecialClassName() : bool - { - return \count($this->parts) === 1 && isset(self::$specialClassNames[\strtolower($this->parts[0])]); - } - /** - * Returns a string representation of the name by imploding the namespace parts with the - * namespace separator. - * - * @return string String representation - */ - public function __toString() : string - { - return \implode('\\', $this->parts); - } /** - * Gets a slice of a name (similar to array_slice). - * - * This method returns a new instance of the same type as the original and with the same - * attributes. - * - * If the slice is empty, null is returned. The null value will be correctly handled in - * concatenations using concat(). - * - * Offset and length have the same meaning as in array_slice(). - * - * @param int $offset Offset to start the slice at (may be negative) - * @param int|null $length Length of the slice (may be negative) - * - * @return static|null Sliced name + * @throws UnsupportedVersionConstraintException */ - public function slice(int $offset, int $length = null) + public function parse(string $value): VersionConstraint { - $numParts = \count($this->parts); - $realOffset = $offset < 0 ? $offset + $numParts : $offset; - if ($realOffset < 0 || $realOffset > $numParts) { - throw new \OutOfBoundsException(\sprintf('Offset %d is out of bounds', $offset)); + if (\strpos($value, '|') !== \false) { + return $this->handleOrGroup($value); } - if (null === $length) { - $realLength = $numParts - $realOffset; - } else { - $realLength = $length < 0 ? $length + $numParts - $realOffset : $length; - if ($realLength < 0 || $realLength > $numParts - $realOffset) { - throw new \OutOfBoundsException(\sprintf('Length %d is out of bounds', $length)); - } + if (!\preg_match('/^[\^~*]?v?[\d.*]+(?:-.*)?$/i', $value)) { + throw new UnsupportedVersionConstraintException(\sprintf('Version constraint %s is not supported.', $value)); } - if ($realLength === 0) { - // Empty slice is represented as null - return null; + switch ($value[0]) { + case '~': + return $this->handleTildeOperator($value); + case '^': + return $this->handleCaretOperator($value); + } + $constraint = new VersionConstraintValue($value); + if ($constraint->getMajor()->isAny()) { + return new AnyVersionConstraint(); } - return new static(\array_slice($this->parts, $realOffset, $realLength), $this->attributes); + if ($constraint->getMinor()->isAny()) { + return new SpecificMajorVersionConstraint($constraint->getVersionString(), $constraint->getMajor()->getValue() ?? 0); + } + if ($constraint->getPatch()->isAny()) { + return new SpecificMajorAndMinorVersionConstraint($constraint->getVersionString(), $constraint->getMajor()->getValue() ?? 0, $constraint->getMinor()->getValue() ?? 0); + } + return new ExactVersionConstraint($constraint->getVersionString()); } - /** - * Concatenate two names, yielding a new Name instance. - * - * The type of the generated instance depends on which class this method is called on, for - * example Name\FullyQualified::concat() will yield a Name\FullyQualified instance. - * - * If one of the arguments is null, a new instance of the other name will be returned. If both - * arguments are null, null will be returned. As such, writing - * Name::concat($namespace, $shortName) - * where $namespace is a Name node or null will work as expected. - * - * @param string|string[]|self|null $name1 The first name - * @param string|string[]|self|null $name2 The second name - * @param array $attributes Attributes to assign to concatenated name - * - * @return static|null Concatenated name - */ - public static function concat($name1, $name2, array $attributes = []) + private function handleOrGroup(string $value): OrVersionConstraintGroup { - if (null === $name1 && null === $name2) { - return null; - } elseif (null === $name1) { - return new static(self::prepareName($name2), $attributes); - } elseif (null === $name2) { - return new static(self::prepareName($name1), $attributes); - } else { - return new static(\array_merge(self::prepareName($name1), self::prepareName($name2)), $attributes); + $constraints = []; + foreach (\preg_split('{\s*\|\|?\s*}', \trim($value)) as $groupSegment) { + $constraints[] = $this->parse(\trim($groupSegment)); } + return new OrVersionConstraintGroup($value, $constraints); } - /** - * Prepares a (string, array or Name node) name for use in name changing methods by converting - * it to an array. - * - * @param string|string[]|self $name Name to prepare - * - * @return string[] Prepared name - */ - private static function prepareName($name) : array + private function handleTildeOperator(string $value): AndVersionConstraintGroup { - if (\is_string($name)) { - if ('' === $name) { - throw new \InvalidArgumentException('Name cannot be empty'); - } - return \explode('\\', $name); - } elseif (\is_array($name)) { - if (empty($name)) { - throw new \InvalidArgumentException('Name cannot be empty'); - } - return $name; - } elseif ($name instanceof self) { - return $name->parts; + $constraintValue = new VersionConstraintValue(\substr($value, 1)); + if ($constraintValue->getPatch()->isAny()) { + return $this->handleCaretOperator($value); } - throw new \InvalidArgumentException('Expected string, array of parts or Name instance'); + $constraints = [new GreaterThanOrEqualToVersionConstraint($value, new Version(\substr($value, 1))), new SpecificMajorAndMinorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0, $constraintValue->getMinor()->getValue() ?? 0)]; + return new AndVersionConstraintGroup($value, $constraints); } - public function getType() : string + private function handleCaretOperator(string $value): AndVersionConstraintGroup { - return 'Name'; + $constraintValue = new VersionConstraintValue(\substr($value, 1)); + $constraints = [new GreaterThanOrEqualToVersionConstraint($value, new Version(\substr($value, 1)))]; + if ($constraintValue->getMajor()->getValue() === 0) { + $constraints[] = new SpecificMajorAndMinorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0, $constraintValue->getMinor()->getValue() ?? 0); + } else { + $constraints[] = new SpecificMajorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0); + } + return new AndVersionConstraintGroup($value, $constraints); } } +Copyright (c) 2016-2017 Arne Blankerts , Sebastian Heuer and contributors +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, +OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -class FullyQualified extends \PHPUnit\PhpParser\Node\Name +class AnyVersionConstraint implements VersionConstraint { - /** - * Checks whether the name is unqualified. (E.g. Name) - * - * @return bool Whether the name is unqualified - */ - public function isUnqualified() : bool + public function complies(Version $version): bool { - return \false; + return \true; } - /** - * Checks whether the name is qualified. (E.g. Name\Name) - * - * @return bool Whether the name is qualified - */ - public function isQualified() : bool + public function asString(): string { - return \false; + return '*'; } - /** - * Checks whether the name is fully qualified. (E.g. \Name) - * - * @return bool Whether the name is fully qualified - */ - public function isFullyQualified() : bool +} +, Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; + +abstract class AbstractVersionConstraint implements VersionConstraint +{ + /** @var string */ + private $originalValue; + public function __construct(string $originalValue) { - return \true; + $this->originalValue = $originalValue; } - /** - * Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name) - * - * @return bool Whether the name is relative - */ - public function isRelative() : bool + public function asString(): string { - return \false; + return $this->originalValue; } - public function toCodeString() : string +} +, Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; + +interface VersionConstraint +{ + public function complies(Version $version): bool; + public function asString(): string; +} +, Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; + +class GreaterThanOrEqualToVersionConstraint extends AbstractVersionConstraint +{ + /** @var Version */ + private $minimalVersion; + public function __construct(string $originalValue, Version $minimalVersion) { - return '\\' . $this->toString(); + parent::__construct($originalValue); + $this->minimalVersion = $minimalVersion; } - public function getType() : string + public function complies(Version $version): bool { - return 'Name_FullyQualified'; + return $version->getVersionString() === $this->minimalVersion->getVersionString() || $version->isGreaterThan($this->minimalVersion); } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -class Relative extends \PHPUnit\PhpParser\Node\Name +class OrVersionConstraintGroup extends AbstractVersionConstraint { + /** @var VersionConstraint[] */ + private $constraints = []; /** - * Checks whether the name is unqualified. (E.g. Name) - * - * @return bool Whether the name is unqualified + * @param string $originalValue + * @param VersionConstraint[] $constraints */ - public function isUnqualified() : bool + public function __construct($originalValue, array $constraints) { - return \false; + parent::__construct($originalValue); + $this->constraints = $constraints; } - /** - * Checks whether the name is qualified. (E.g. Name\Name) - * - * @return bool Whether the name is qualified - */ - public function isQualified() : bool + public function complies(Version $version): bool { + foreach ($this->constraints as $constraint) { + if ($constraint->complies($version)) { + return \true; + } + } return \false; } +} +, Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; + +class AndVersionConstraintGroup extends AbstractVersionConstraint +{ + /** @var VersionConstraint[] */ + private $constraints = []; /** - * Checks whether the name is fully qualified. (E.g. \Name) - * - * @return bool Whether the name is fully qualified + * @param VersionConstraint[] $constraints */ - public function isFullyQualified() : bool + public function __construct(string $originalValue, array $constraints) { - return \false; + parent::__construct($originalValue); + $this->constraints = $constraints; } - /** - * Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name) - * - * @return bool Whether the name is relative - */ - public function isRelative() : bool + public function complies(Version $version): bool { + foreach ($this->constraints as $constraint) { + if (!$constraint->complies($version)) { + return \false; + } + } return \true; } - public function toCodeString() : string - { - return 'namespace\\' . $this->toString(); - } - public function getType() : string - { - return 'Name_Relative'; - } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; + +class ExactVersionConstraint extends AbstractVersionConstraint { - /** @var Identifier|Name Type */ - public $type; - /** - * Constructs a nullable type (wrapping another type). - * - * @param string|Identifier|Name $type Type - * @param array $attributes Additional attributes - */ - public function __construct($type, array $attributes = []) - { - $this->attributes = $attributes; - $this->type = \is_string($type) ? new Identifier($type) : $type; - } - public function getSubNodeNames() : array - { - return ['type']; - } - public function getType() : string + public function complies(Version $version): bool { - return 'NullableType'; + $other = $version->getVersionString(); + if ($version->hasBuildMetaData()) { + $other .= '+' . $version->getBuildMetaData()->asString(); + } + return $this->asString() === $other; } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\NodeAbstract; -class Param extends NodeAbstract +class SpecificMajorVersionConstraint extends AbstractVersionConstraint { - /** @var null|Identifier|Name|ComplexType Type declaration */ - public $type; - /** @var bool Whether parameter is passed by reference */ - public $byRef; - /** @var bool Whether this is a variadic argument */ - public $variadic; - /** @var Expr\Variable|Expr\Error Parameter variable */ - public $var; - /** @var null|Expr Default value */ - public $default; /** @var int */ - public $flags; - /** @var AttributeGroup[] PHP attribute groups */ - public $attrGroups; - /** - * Constructs a parameter node. - * - * @param Expr\Variable|Expr\Error $var Parameter variable - * @param null|Expr $default Default value - * @param null|string|Identifier|Name|ComplexType $type Type declaration - * @param bool $byRef Whether is passed by reference - * @param bool $variadic Whether this is a variadic argument - * @param array $attributes Additional attributes - * @param int $flags Optional visibility flags - * @param AttributeGroup[] $attrGroups PHP attribute groups - */ - public function __construct($var, Expr $default = null, $type = null, bool $byRef = \false, bool $variadic = \false, array $attributes = [], int $flags = 0, array $attrGroups = []) - { - $this->attributes = $attributes; - $this->type = \is_string($type) ? new Identifier($type) : $type; - $this->byRef = $byRef; - $this->variadic = $variadic; - $this->var = $var; - $this->default = $default; - $this->flags = $flags; - $this->attrGroups = $attrGroups; - } - public function getSubNodeNames() : array + private $major; + public function __construct(string $originalValue, int $major) { - return ['attrGroups', 'flags', 'type', 'byRef', 'variadic', 'var', 'default']; + parent::__construct($originalValue); + $this->major = $major; } - public function getType() : string + public function complies(Version $version): bool { - return 'Param'; + return $version->getMajor()->getValue() === $this->major; } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -abstract class Scalar extends Expr +class SpecificMajorAndMinorVersionConstraint extends AbstractVersionConstraint { + /** @var int */ + private $major; + /** @var int */ + private $minor; + public function __construct(string $originalValue, int $major, int $minor) + { + parent::__construct($originalValue); + $this->major = $major; + $this->minor = $minor; + } + public function complies(Version $version): bool + { + if ($version->getMajor()->getValue() !== $this->major) { + return \false; + } + return $version->getMinor()->getValue() === $this->minor; + } } attributes = $attributes; - $this->value = $value; + $this->versionString = $versionString; + $this->parseVersion($versionString); } - public function getSubNodeNames() : array + public function getLabel(): string { - return ['value']; + return $this->label; } - /** - * @param mixed[] $attributes - */ - public static function fromString(string $str, array $attributes = []) : DNumber + public function getBuildMetaData(): string { - $attributes['rawValue'] = $str; - $float = self::parse($str); - return new DNumber($float, $attributes); + return $this->buildMetaData; } - /** - * @internal - * - * Parses a DNUMBER token like PHP would. - * - * @param string $str A string number - * - * @return float The parsed number - */ - public static function parse(string $str) : float + public function getVersionString(): string { - $str = \str_replace('_', '', $str); - // if string contains any of .eE just cast it to float - if (\false !== \strpbrk($str, '.eE')) { - return (float) $str; - } - // otherwise it's an integer notation that overflowed into a float - // if it starts with 0 it's one of the special integer notations - if ('0' === $str[0]) { - // hex - if ('x' === $str[1] || 'X' === $str[1]) { - return \hexdec($str); - } - // bin - if ('b' === $str[1] || 'B' === $str[1]) { - return \bindec($str); - } - // oct - // substr($str, 0, strcspn($str, '89')) cuts the string at the first invalid digit (8 or 9) - // so that only the digits before that are used - return \octdec(\substr($str, 0, \strcspn($str, '89'))); - } - // dec - return (float) $str; + return $this->versionString; } - public function getType() : string + public function getMajor(): VersionNumber { - return 'Scalar_DNumber'; + return $this->major; } -} -attributes = $attributes; - $this->parts = $parts; + return $this->minor; } - public function getSubNodeNames() : array + public function getPatch(): VersionNumber { - return ['parts']; + return $this->patch; } - public function getType() : string + private function parseVersion(string $versionString): void { - return 'Scalar_Encapsed'; + $this->extractBuildMetaData($versionString); + $this->extractLabel($versionString); + $this->stripPotentialVPrefix($versionString); + $versionSegments = \explode('.', $versionString); + $this->major = new VersionNumber(\is_numeric($versionSegments[0]) ? (int) $versionSegments[0] : null); + $minorValue = isset($versionSegments[1]) && \is_numeric($versionSegments[1]) ? (int) $versionSegments[1] : null; + $patchValue = isset($versionSegments[2]) && \is_numeric($versionSegments[2]) ? (int) $versionSegments[2] : null; + $this->minor = new VersionNumber($minorValue); + $this->patch = new VersionNumber($patchValue); } -} -attributes = $attributes; - $this->value = $value; + if (\preg_match('/\+(.*)/', $versionString, $matches) === 1) { + $this->buildMetaData = $matches[1]; + $versionString = \str_replace($matches[0], '', $versionString); + } } - public function getSubNodeNames() : array + private function extractLabel(string &$versionString): void { - return ['value']; + if (\preg_match('/-(.*)/', $versionString, $matches) === 1) { + $this->label = $matches[1]; + $versionString = \str_replace($matches[0], '', $versionString); + } } - public function getType() : string + private function stripPotentialVPrefix(string &$versionString): void { - return 'Scalar_EncapsedStringPart'; + if ($versionString[0] !== 'v') { + return; + } + $versionString = \substr($versionString, 1); } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\Error; -use PHPUnit\PhpParser\Node\Scalar; -class LNumber extends Scalar +class BuildMetaData { - /* For use in "kind" attribute */ - const KIND_BIN = 2; - const KIND_OCT = 8; - const KIND_DEC = 10; - const KIND_HEX = 16; - /** @var int Number value */ - public $value; - /** - * Constructs an integer number scalar node. - * - * @param int $value Value of the number - * @param array $attributes Additional attributes - */ - public function __construct(int $value, array $attributes = []) + /** @var string */ + private $value; + public function __construct(string $value) { - $this->attributes = $attributes; $this->value = $value; } - public function getSubNodeNames() : array - { - return ['value']; - } - /** - * Constructs an LNumber node from a string number literal. - * - * @param string $str String number literal (decimal, octal, hex or binary) - * @param array $attributes Additional attributes - * @param bool $allowInvalidOctal Whether to allow invalid octal numbers (PHP 5) - * - * @return LNumber The constructed LNumber, including kind attribute - */ - public static function fromString(string $str, array $attributes = [], bool $allowInvalidOctal = \false) : LNumber + public function asString(): string { - $attributes['rawValue'] = $str; - $str = \str_replace('_', '', $str); - if ('0' !== $str[0] || '0' === $str) { - $attributes['kind'] = LNumber::KIND_DEC; - return new LNumber((int) $str, $attributes); - } - if ('x' === $str[1] || 'X' === $str[1]) { - $attributes['kind'] = LNumber::KIND_HEX; - return new LNumber(\hexdec($str), $attributes); - } - if ('b' === $str[1] || 'B' === $str[1]) { - $attributes['kind'] = LNumber::KIND_BIN; - return new LNumber(\bindec($str), $attributes); - } - if (!$allowInvalidOctal && \strpbrk($str, '89')) { - throw new Error('Invalid numeric literal', $attributes); - } - // Strip optional explicit octal prefix. - if ('o' === $str[1] || 'O' === $str[1]) { - $str = \substr($str, 2); - } - // use intval instead of octdec to get proper cutting behavior with malformed numbers - $attributes['kind'] = LNumber::KIND_OCT; - return new LNumber(\intval($str, 8), $attributes); + return $this->value; } - public function getType() : string + public function equals(BuildMetaData $other): bool { - return 'Scalar_LNumber'; + return $this->asString() === $other->asString(); } } attributes = $attributes; - } - public function getSubNodeNames() : array - { - return []; - } - /** - * Get name of magic constant. - * - * @return string Name of magic constant - */ - public abstract function getName() : string; } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\Node\Scalar\MagicConst; -class Dir extends MagicConst +final class UnsupportedVersionConstraintException extends \RuntimeException implements Exception { - public function getName() : string - { - return '__DIR__'; - } - public function getType() : string - { - return 'Scalar_MagicConst_Dir'; - } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\Node\Scalar\MagicConst; -class Line extends MagicConst +use Throwable; +interface Exception extends Throwable { - public function getName() : string - { - return '__LINE__'; - } - public function getType() : string - { - return 'Scalar_MagicConst_Line'; - } } 0, 'a' => 1, 'alpha' => 1, 'b' => 2, 'beta' => 2, 'rc' => 3, 'p' => 4, 'pl' => 4, 'patch' => 4]; + /** @var string */ + private $value; + /** @var int */ + private $valueScore; + /** @var int */ + private $number = 0; + /** @var string */ + private $full; + /** + * @throws InvalidPreReleaseSuffixException + */ + public function __construct(string $value) { - return '__METHOD__'; + $this->parseValue($value); } - public function getType() : string + public function asString(): string { - return 'Scalar_MagicConst_Method'; + return $this->full; } -} -value; } - public function getType() : string + public function getNumber(): ?int { - return 'Scalar_MagicConst_Namespace'; + return $this->number; } -} -valueScore > $suffix->valueScore) { + return \true; + } + if ($this->valueScore < $suffix->valueScore) { + return \false; + } + return $this->getNumber() > $suffix->getNumber(); } - public function getType() : string + private function mapValueToScore(string $value): int { - return 'Scalar_MagicConst_Trait'; + $value = \strtolower($value); + return self::valueScoreMap[$value]; + } + private function parseValue(string $value): void + { + $regex = '/-?((dev|beta|b|rc|alpha|a|patch|p|pl)\.?(\d*)).*$/i'; + if (\preg_match($regex, $value, $matches) !== 1) { + throw new InvalidPreReleaseSuffixException(\sprintf('Invalid label %s', $value)); + } + $this->full = $matches[1]; + $this->value = $matches[2]; + if ($matches[3] !== '') { + $this->number = (int) $matches[3]; + } + $this->valueScore = $this->mapValueToScore($matches[2]); } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\Error; -use PHPUnit\PhpParser\Node\Scalar; -class String_ extends Scalar +class Version { - /* For use in "kind" attribute */ - const KIND_SINGLE_QUOTED = 1; - const KIND_DOUBLE_QUOTED = 2; - const KIND_HEREDOC = 3; - const KIND_NOWDOC = 4; - /** @var string String value */ - public $value; - protected static $replacements = ['\\' => '\\', '$' => '$', 'n' => "\n", 'r' => "\r", 't' => "\t", 'f' => "\f", 'v' => "\v", 'e' => "\x1b"]; + /** @var string */ + private $originalVersionString; + /** @var VersionNumber */ + private $major; + /** @var VersionNumber */ + private $minor; + /** @var VersionNumber */ + private $patch; + /** @var null|PreReleaseSuffix */ + private $preReleaseSuffix; + /** @var null|BuildMetaData */ + private $buildMetadata; + public function __construct(string $versionString) + { + $this->ensureVersionStringIsValid($versionString); + $this->originalVersionString = $versionString; + } /** - * Constructs a string scalar node. - * - * @param string $value Value of the string - * @param array $attributes Additional attributes + * @throws NoPreReleaseSuffixException */ - public function __construct(string $value, array $attributes = []) + public function getPreReleaseSuffix(): PreReleaseSuffix { - $this->attributes = $attributes; - $this->value = $value; + if ($this->preReleaseSuffix === null) { + throw new NoPreReleaseSuffixException('No pre-release suffix set'); + } + return $this->preReleaseSuffix; } - public function getSubNodeNames() : array + public function getOriginalString(): string { - return ['value']; + return $this->originalVersionString; } - /** - * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes - */ - public static function fromString(string $str, array $attributes = [], bool $parseUnicodeEscape = \true) : self + public function getVersionString(): string { - $attributes['kind'] = $str[0] === "'" || $str[1] === "'" && ($str[0] === 'b' || $str[0] === 'B') ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED; - $attributes['rawValue'] = $str; - $string = self::parse($str, $parseUnicodeEscape); - return new self($string, $attributes); + $str = \sprintf('%d.%d.%d', $this->getMajor()->getValue() ?? 0, $this->getMinor()->getValue() ?? 0, $this->getPatch()->getValue() ?? 0); + if (!$this->hasPreReleaseSuffix()) { + return $str; + } + return $str . '-' . $this->getPreReleaseSuffix()->asString(); } - /** - * @internal - * - * Parses a string token. - * - * @param string $str String token content - * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes - * - * @return string The parsed string - */ - public static function parse(string $str, bool $parseUnicodeEscape = \true) : string + public function hasPreReleaseSuffix(): bool { - $bLength = 0; - if ('b' === $str[0] || 'B' === $str[0]) { - $bLength = 1; + return $this->preReleaseSuffix !== null; + } + public function equals(Version $other): bool + { + if ($this->getVersionString() !== $other->getVersionString()) { + return \false; } - if ('\'' === $str[$bLength]) { - return \str_replace(['\\\\', '\\\''], ['\\', '\''], \substr($str, $bLength + 1, -1)); - } else { - return self::parseEscapeSequences(\substr($str, $bLength + 1, -1), '"', $parseUnicodeEscape); + if ($this->hasBuildMetaData() !== $other->hasBuildMetaData()) { + return \false; } - } - /** - * @internal - * - * Parses escape sequences in strings (all string types apart from single quoted). - * - * @param string $str String without quotes - * @param null|string $quote Quote type - * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes - * - * @return string String with escape sequences parsed - */ - public static function parseEscapeSequences(string $str, $quote, bool $parseUnicodeEscape = \true) : string - { - if (null !== $quote) { - $str = \str_replace('\\' . $quote, $quote, $str); - } - $extra = ''; - if ($parseUnicodeEscape) { - $extra = '|u\\{([0-9a-fA-F]+)\\}'; + if ($this->hasBuildMetaData() && $other->hasBuildMetaData() && !$this->getBuildMetaData()->equals($other->getBuildMetaData())) { + return \false; } - return \preg_replace_callback('~\\\\([\\\\$nrtfve]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3}' . $extra . ')~', function ($matches) { - $str = $matches[1]; - if (isset(self::$replacements[$str])) { - return self::$replacements[$str]; - } elseif ('x' === $str[0] || 'X' === $str[0]) { - return \chr(\hexdec(\substr($str, 1))); - } elseif ('u' === $str[0]) { - return self::codePointToUtf8(\hexdec($matches[2])); - } else { - return \chr(\octdec($str)); - } - }, $str); + return \true; } - /** - * Converts a Unicode code point to its UTF-8 encoded representation. - * - * @param int $num Code point - * - * @return string UTF-8 representation of code point - */ - private static function codePointToUtf8(int $num) : string + public function isGreaterThan(Version $version): bool { - if ($num <= 0x7f) { - return \chr($num); + if ($version->getMajor()->getValue() > $this->getMajor()->getValue()) { + return \false; } - if ($num <= 0x7ff) { - return \chr(($num >> 6) + 0xc0) . \chr(($num & 0x3f) + 0x80); + if ($version->getMajor()->getValue() < $this->getMajor()->getValue()) { + return \true; } - if ($num <= 0xffff) { - return \chr(($num >> 12) + 0xe0) . \chr(($num >> 6 & 0x3f) + 0x80) . \chr(($num & 0x3f) + 0x80); + if ($version->getMinor()->getValue() > $this->getMinor()->getValue()) { + return \false; } - if ($num <= 0x1fffff) { - return \chr(($num >> 18) + 0xf0) . \chr(($num >> 12 & 0x3f) + 0x80) . \chr(($num >> 6 & 0x3f) + 0x80) . \chr(($num & 0x3f) + 0x80); + if ($version->getMinor()->getValue() < $this->getMinor()->getValue()) { + return \true; } - throw new Error('Invalid UTF-8 codepoint escape sequence: Codepoint too large'); + if ($version->getPatch()->getValue() > $this->getPatch()->getValue()) { + return \false; + } + if ($version->getPatch()->getValue() < $this->getPatch()->getValue()) { + return \true; + } + if (!$version->hasPreReleaseSuffix() && !$this->hasPreReleaseSuffix()) { + return \false; + } + if ($version->hasPreReleaseSuffix() && !$this->hasPreReleaseSuffix()) { + return \true; + } + if (!$version->hasPreReleaseSuffix() && $this->hasPreReleaseSuffix()) { + return \false; + } + return $this->getPreReleaseSuffix()->isGreaterThan($version->getPreReleaseSuffix()); } - public function getType() : string + public function getMajor(): VersionNumber { - return 'Scalar_String'; + return $this->major; } -} -attributes = $attributes; - $this->num = $num; + return $this->minor; } - public function getSubNodeNames() : array + public function getPatch(): VersionNumber { - return ['num']; + return $this->patch; } - public function getType() : string + /** + * @psalm-assert-if-true BuildMetaData $this->buildMetadata + * @psalm-assert-if-true BuildMetaData $this->getBuildMetaData() + */ + public function hasBuildMetaData(): bool { - return 'Stmt_Break'; + return $this->buildMetadata !== null; } -} -attributes = $attributes; - $this->cond = $cond; - $this->stmts = $stmts; + if (!$this->hasBuildMetaData()) { + throw new NoBuildMetaDataException('No build metadata set'); + } + return $this->buildMetadata; } - public function getSubNodeNames() : array + /** + * @param string[] $matches + * + * @throws InvalidPreReleaseSuffixException + */ + private function parseVersion(array $matches): void { - return ['cond', 'stmts']; + $this->major = new VersionNumber((int) $matches['Major']); + $this->minor = new VersionNumber((int) $matches['Minor']); + $this->patch = isset($matches['Patch']) ? new VersionNumber((int) $matches['Patch']) : new VersionNumber(0); + if (isset($matches['PreReleaseSuffix']) && $matches['PreReleaseSuffix'] !== '') { + $this->preReleaseSuffix = new PreReleaseSuffix($matches['PreReleaseSuffix']); + } + if (isset($matches['BuildMetadata'])) { + $this->buildMetadata = new BuildMetaData($matches['BuildMetadata']); + } } - public function getType() : string + /** + * @param string $version + * + * @throws InvalidVersionException + */ + private function ensureVersionStringIsValid($version): void { - return 'Stmt_Case'; + $regex = '/^v? + (?P0|[1-9]\d*) + \. + (?P0|[1-9]\d*) + (\. + (?P0|[1-9]\d*) + )? + (?: + - + (?(?:(dev|beta|b|rc|alpha|a|patch|p|pl)\.?\d*)) + )? + (?: + \+ + (?P[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-@]+)*) + )? + $/xi'; + if (\preg_match($regex, $version, $matches) !== 1) { + throw new InvalidVersionException(\sprintf("Version string '%s' does not follow SemVer semantics", $version)); + } + $this->parseVersion($matches); } } , Sebastian Heuer , Sebastian Bergmann + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\PharIo\Version; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Expr; -class Catch_ extends Node\Stmt +class VersionNumber { - /** @var Node\Name[] Types of exceptions to catch */ - public $types; - /** @var Expr\Variable|null Variable for exception */ - public $var; - /** @var Node\Stmt[] Statements */ - public $stmts; - /** - * Constructs a catch node. - * - * @param Node\Name[] $types Types of exceptions to catch - * @param Expr\Variable|null $var Variable for exception - * @param Node\Stmt[] $stmts Statements - * @param array $attributes Additional attributes - */ - public function __construct(array $types, Expr\Variable $var = null, array $stmts = [], array $attributes = []) + /** @var ?int */ + private $value; + public function __construct(?int $value) { - $this->attributes = $attributes; - $this->types = $types; - $this->var = $var; - $this->stmts = $stmts; + $this->value = $value; } - public function getSubNodeNames() : array + public function isAny(): bool { - return ['types', 'var', 'stmts']; + return $this->value === null; } - public function getType() : string + public function getValue(): ?int { - return 'Stmt_Catch'; + return $this->value; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -class ClassConst extends Node\Stmt +use function array_diff; +use function array_key_exists; +use function array_keys; +use function array_merge; +use function function_exists; +use function get_defined_functions; +use function in_array; +use function is_array; +use ReflectionClass; +use ReflectionProperty; +/** + * Restorer of snapshots of global state. + */ +class Restorer { - /** @var int Modifiers */ - public $flags; - /** @var Node\Const_[] Constant declarations */ - public $consts; - /** @var Node\AttributeGroup[] */ - public $attrGroups; /** - * Constructs a class const list node. + * Deletes function definitions that are not defined in a snapshot. * - * @param Node\Const_[] $consts Constant declarations - * @param int $flags Modifiers - * @param array $attributes Additional attributes - * @param Node\AttributeGroup[] $attrGroups PHP attribute groups - */ - public function __construct(array $consts, int $flags = 0, array $attributes = [], array $attrGroups = []) - { - $this->attributes = $attributes; - $this->flags = $flags; - $this->consts = $consts; - $this->attrGroups = $attrGroups; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'flags', 'consts']; - } - /** - * Whether constant is explicitly or implicitly public. + * @throws RuntimeException when the uopz_delete() function is not available * - * @return bool + * @see https://github.com/krakjoe/uopz */ - public function isPublic() : bool + public function restoreFunctions(Snapshot $snapshot): void { - return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; + if (!function_exists('PHPUnitPHAR\uopz_delete')) { + throw new RuntimeException('The uopz_delete() function is required for this operation'); + } + $functions = get_defined_functions(); + foreach (array_diff($functions['user'], $snapshot->functions()) as $function) { + uopz_delete($function); + } } /** - * Whether constant is protected. - * - * @return bool + * Restores all global and super-global variables from a snapshot. */ - public function isProtected() : bool + public function restoreGlobalVariables(Snapshot $snapshot): void { - return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); + $superGlobalArrays = $snapshot->superGlobalArrays(); + foreach ($superGlobalArrays as $superGlobalArray) { + $this->restoreSuperGlobalArray($snapshot, $superGlobalArray); + } + $globalVariables = $snapshot->globalVariables(); + foreach (array_keys($GLOBALS) as $key) { + if ($key !== 'GLOBALS' && !in_array($key, $superGlobalArrays, \true) && !$snapshot->excludeList()->isGlobalVariableExcluded($key)) { + if (array_key_exists($key, $globalVariables)) { + $GLOBALS[$key] = $globalVariables[$key]; + } else { + unset($GLOBALS[$key]); + } + } + } } /** - * Whether constant is private. - * - * @return bool + * Restores all static attributes in user-defined classes from this snapshot. */ - public function isPrivate() : bool + public function restoreStaticAttributes(Snapshot $snapshot): void { - return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); + $current = new Snapshot($snapshot->excludeList(), \false, \false, \false, \false, \true, \false, \false, \false, \false); + $newClasses = array_diff($current->classes(), $snapshot->classes()); + unset($current); + foreach ($snapshot->staticAttributes() as $className => $staticAttributes) { + foreach ($staticAttributes as $name => $value) { + $reflector = new ReflectionProperty($className, $name); + $reflector->setAccessible(\true); + $reflector->setValue(null, $value); + } + } + foreach ($newClasses as $className) { + $class = new ReflectionClass($className); + $defaults = $class->getDefaultProperties(); + foreach ($class->getProperties() as $attribute) { + if (!$attribute->isStatic()) { + continue; + } + $name = $attribute->getName(); + if ($snapshot->excludeList()->isStaticAttributeExcluded($className, $name)) { + continue; + } + if (!isset($defaults[$name])) { + continue; + } + $attribute->setAccessible(\true); + $attribute->setValue(null, $defaults[$name]); + } + } } /** - * Whether constant is final. - * - * @return bool + * Restores a super-global variable array from this snapshot. */ - public function isFinal() : bool - { - return (bool) ($this->flags & Class_::MODIFIER_FINAL); - } - public function getType() : string + private function restoreSuperGlobalArray(Snapshot $snapshot, string $superGlobalArray): void { - return 'Stmt_ClassConst'; + $superGlobalVariables = $snapshot->superGlobalVariables(); + if (isset($GLOBALS[$superGlobalArray]) && is_array($GLOBALS[$superGlobalArray]) && isset($superGlobalVariables[$superGlobalArray])) { + $keys = array_keys(array_merge($GLOBALS[$superGlobalArray], $superGlobalVariables[$superGlobalArray])); + foreach ($keys as $key) { + if (isset($superGlobalVariables[$superGlobalArray][$key])) { + $GLOBALS[$superGlobalArray][$key] = $superGlobalVariables[$superGlobalArray][$key]; + } else { + unset($GLOBALS[$superGlobalArray][$key]); + } + } + } } } +sebastian/global-state + +Copyright (c) 2001-2022, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -abstract class ClassLike extends Node\Stmt +use const PHP_EOL; +use function is_array; +use function is_scalar; +use function serialize; +use function sprintf; +use function var_export; +/** + * Exports parts of a Snapshot as PHP code. + */ +final class CodeExporter { - /** @var Node\Identifier|null Name */ - public $name; - /** @var Node\Stmt[] Statements */ - public $stmts; - /** @var Node\AttributeGroup[] PHP attribute groups */ - public $attrGroups; - /** @var Node\Name|null Namespaced name (if using NameResolver) */ - public $namespacedName; - /** - * @return TraitUse[] - */ - public function getTraitUses() : array + public function constants(Snapshot $snapshot): string { - $traitUses = []; - foreach ($this->stmts as $stmt) { - if ($stmt instanceof TraitUse) { - $traitUses[] = $stmt; - } + $result = ''; + foreach ($snapshot->constants() as $name => $value) { + $result .= sprintf('if (!defined(\'%s\')) define(\'%s\', %s);' . "\n", $name, $name, $this->exportVariable($value)); } - return $traitUses; + return $result; } - /** - * @return ClassConst[] - */ - public function getConstants() : array + public function globalVariables(Snapshot $snapshot): string { - $constants = []; - foreach ($this->stmts as $stmt) { - if ($stmt instanceof ClassConst) { - $constants[] = $stmt; - } + $result = <<<'EOT' +call_user_func( + function () + { + foreach (array_keys($GLOBALS) as $key) { + unset($GLOBALS[$key]); } - return $constants; } - /** - * @return Property[] - */ - public function getProperties() : array - { - $properties = []; - foreach ($this->stmts as $stmt) { - if ($stmt instanceof Property) { - $properties[] = $stmt; - } +); + + +EOT; + foreach ($snapshot->globalVariables() as $name => $value) { + $result .= sprintf('$GLOBALS[%s] = %s;' . PHP_EOL, $this->exportVariable($name), $this->exportVariable($value)); } - return $properties; + return $result; } - /** - * Gets property with the given name defined directly in this class/interface/trait. - * - * @param string $name Name of the property - * - * @return Property|null Property node or null if the property does not exist - */ - public function getProperty(string $name) + public function iniSettings(Snapshot $snapshot): string { - foreach ($this->stmts as $stmt) { - if ($stmt instanceof Property) { - foreach ($stmt->props as $prop) { - if ($prop instanceof PropertyProperty && $name === $prop->name->toString()) { - return $stmt; - } - } - } + $result = ''; + foreach ($snapshot->iniSettings() as $key => $value) { + $result .= sprintf('@ini_set(%s, %s);' . "\n", $this->exportVariable($key), $this->exportVariable($value)); } - return null; + return $result; } - /** - * Gets all methods defined directly in this class/interface/trait - * - * @return ClassMethod[] - */ - public function getMethods() : array + private function exportVariable($variable): string { - $methods = []; - foreach ($this->stmts as $stmt) { - if ($stmt instanceof ClassMethod) { - $methods[] = $stmt; - } + if (is_scalar($variable) || null === $variable || is_array($variable) && $this->arrayOnlyContainsScalars($variable)) { + return var_export($variable, \true); } - return $methods; + return 'unserialize(' . var_export(serialize($variable), \true) . ')'; } - /** - * Gets method with the given name defined directly in this class/interface/trait. - * - * @param string $name Name of the method (compared case-insensitively) - * - * @return ClassMethod|null Method node or null if the method does not exist - */ - public function getMethod(string $name) + private function arrayOnlyContainsScalars(array $array): bool { - $lowerName = \strtolower($name); - foreach ($this->stmts as $stmt) { - if ($stmt instanceof ClassMethod && $lowerName === $stmt->name->toLowerString()) { - return $stmt; + $result = \true; + foreach ($array as $element) { + if (is_array($element)) { + $result = $this->arrayOnlyContainsScalars($element); + } elseif (!is_scalar($element) && null !== $element) { + $result = \false; + } + if ($result === \false) { + break; } } - return null; + return $result; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\FunctionLike; -class ClassMethod extends Node\Stmt implements FunctionLike +use const PHP_VERSION_ID; +use function array_keys; +use function array_merge; +use function array_reverse; +use function func_get_args; +use function get_declared_classes; +use function get_declared_interfaces; +use function get_declared_traits; +use function get_defined_constants; +use function get_defined_functions; +use function get_included_files; +use function in_array; +use function ini_get_all; +use function is_array; +use function is_object; +use function is_resource; +use function is_scalar; +use function serialize; +use function unserialize; +use ReflectionClass; +use PHPUnitPHAR\SebastianBergmann\ObjectReflector\ObjectReflector; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\Context; +use Throwable; +/** + * A snapshot of global state. + */ +class Snapshot { - /** @var int Flags */ - public $flags; - /** @var bool Whether to return by reference */ - public $byRef; - /** @var Node\Identifier Name */ - public $name; - /** @var Node\Param[] Parameters */ - public $params; - /** @var null|Node\Identifier|Node\Name|Node\ComplexType Return type */ - public $returnType; - /** @var Node\Stmt[]|null Statements */ - public $stmts; - /** @var Node\AttributeGroup[] PHP attribute groups */ - public $attrGroups; - private static $magicNames = ['__construct' => \true, '__destruct' => \true, '__call' => \true, '__callstatic' => \true, '__get' => \true, '__set' => \true, '__isset' => \true, '__unset' => \true, '__sleep' => \true, '__wakeup' => \true, '__tostring' => \true, '__set_state' => \true, '__clone' => \true, '__invoke' => \true, '__debuginfo' => \true, '__serialize' => \true, '__unserialize' => \true]; /** - * Constructs a class method node. - * - * @param string|Node\Identifier $name Name - * @param array $subNodes Array of the following optional subnodes: - * 'flags => MODIFIER_PUBLIC: Flags - * 'byRef' => false : Whether to return by reference - * 'params' => array() : Parameters - * 'returnType' => null : Return type - * 'stmts' => array() : Statements - * 'attrGroups' => array() : PHP attribute groups - * @param array $attributes Additional attributes + * @var ExcludeList */ - public function __construct($name, array $subNodes = [], array $attributes = []) + private $excludeList; + /** + * @var array + */ + private $globalVariables = []; + /** + * @var array + */ + private $superGlobalArrays = []; + /** + * @var array + */ + private $superGlobalVariables = []; + /** + * @var array + */ + private $staticAttributes = []; + /** + * @var array + */ + private $iniSettings = []; + /** + * @var array + */ + private $includedFiles = []; + /** + * @var array + */ + private $constants = []; + /** + * @var array + */ + private $functions = []; + /** + * @var array + */ + private $interfaces = []; + /** + * @var array + */ + private $classes = []; + /** + * @var array + */ + private $traits = []; + /** + * Creates a snapshot of the current global state. + */ + public function __construct(?ExcludeList $excludeList = null, bool $includeGlobalVariables = \true, bool $includeStaticAttributes = \true, bool $includeConstants = \true, bool $includeFunctions = \true, bool $includeClasses = \true, bool $includeInterfaces = \true, bool $includeTraits = \true, bool $includeIniSettings = \true, bool $includeIncludedFiles = \true) { - $this->attributes = $attributes; - $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; - $this->byRef = $subNodes['byRef'] ?? \false; - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->params = $subNodes['params'] ?? []; - $returnType = $subNodes['returnType'] ?? null; - $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; - $this->stmts = \array_key_exists('stmts', $subNodes) ? $subNodes['stmts'] : []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; + $this->excludeList = $excludeList ?: new ExcludeList(); + if ($includeConstants) { + $this->snapshotConstants(); + } + if ($includeFunctions) { + $this->snapshotFunctions(); + } + if ($includeClasses || $includeStaticAttributes) { + $this->snapshotClasses(); + } + if ($includeInterfaces) { + $this->snapshotInterfaces(); + } + if ($includeGlobalVariables) { + $this->setupSuperGlobalArrays(); + $this->snapshotGlobals(); + } + if ($includeStaticAttributes) { + $this->snapshotStaticAttributes(); + } + if ($includeIniSettings) { + $this->iniSettings = ini_get_all(null, \false); + } + if ($includeIncludedFiles) { + $this->includedFiles = get_included_files(); + } + if ($includeTraits) { + $this->traits = get_declared_traits(); + } } - public function getSubNodeNames() : array + public function excludeList(): ExcludeList { - return ['attrGroups', 'flags', 'byRef', 'name', 'params', 'returnType', 'stmts']; + return $this->excludeList; } - public function returnsByRef() : bool + public function globalVariables(): array { - return $this->byRef; + return $this->globalVariables; } - public function getParams() : array + public function superGlobalVariables(): array { - return $this->params; + return $this->superGlobalVariables; } - public function getReturnType() + public function superGlobalArrays(): array { - return $this->returnType; + return $this->superGlobalArrays; } - public function getStmts() + public function staticAttributes(): array { - return $this->stmts; + return $this->staticAttributes; } - public function getAttrGroups() : array + public function iniSettings(): array { - return $this->attrGroups; + return $this->iniSettings; } - /** - * Whether the method is explicitly or implicitly public. - * - * @return bool - */ - public function isPublic() : bool + public function includedFiles(): array { - return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; + return $this->includedFiles; } - /** - * Whether the method is protected. - * - * @return bool - */ - public function isProtected() : bool + public function constants(): array { - return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); + return $this->constants; } - /** - * Whether the method is private. - * - * @return bool - */ - public function isPrivate() : bool + public function functions(): array { - return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); + return $this->functions; } - /** - * Whether the method is abstract. - * - * @return bool - */ - public function isAbstract() : bool + public function interfaces(): array { - return (bool) ($this->flags & Class_::MODIFIER_ABSTRACT); + return $this->interfaces; } - /** - * Whether the method is final. - * - * @return bool - */ - public function isFinal() : bool + public function classes(): array { - return (bool) ($this->flags & Class_::MODIFIER_FINAL); + return $this->classes; } - /** - * Whether the method is static. - * - * @return bool - */ - public function isStatic() : bool + public function traits(): array { - return (bool) ($this->flags & Class_::MODIFIER_STATIC); + return $this->traits; } /** - * Whether the method is magic. - * - * @return bool + * Creates a snapshot user-defined constants. */ - public function isMagic() : bool - { - return isset(self::$magicNames[$this->name->toLowerString()]); - } - public function getType() : string + private function snapshotConstants(): void { - return 'Stmt_ClassMethod'; + $constants = get_defined_constants(\true); + if (isset($constants['user'])) { + $this->constants = $constants['user']; + } } -} - 0 : Flags - * 'extends' => null : Name of extended class - * 'implements' => array(): Names of implemented interfaces - * 'stmts' => array(): Statements - * 'attrGroups' => array(): PHP attribute groups - * @param array $attributes Additional attributes + * Creates a snapshot user-defined functions. */ - public function __construct($name, array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->extends = $subNodes['extends'] ?? null; - $this->implements = $subNodes['implements'] ?? []; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array + private function snapshotFunctions(): void { - return ['attrGroups', 'flags', 'name', 'extends', 'implements', 'stmts']; + $functions = get_defined_functions(); + $this->functions = $functions['user']; } /** - * Whether the class is explicitly abstract. - * - * @return bool + * Creates a snapshot user-defined classes. */ - public function isAbstract() : bool + private function snapshotClasses(): void { - return (bool) ($this->flags & self::MODIFIER_ABSTRACT); + foreach (array_reverse(get_declared_classes()) as $className) { + $class = new ReflectionClass($className); + if (!$class->isUserDefined()) { + break; + } + $this->classes[] = $className; + } + $this->classes = array_reverse($this->classes); } /** - * Whether the class is final. - * - * @return bool + * Creates a snapshot user-defined interfaces. */ - public function isFinal() : bool + private function snapshotInterfaces(): void { - return (bool) ($this->flags & self::MODIFIER_FINAL); + foreach (array_reverse(get_declared_interfaces()) as $interfaceName) { + $class = new ReflectionClass($interfaceName); + if (!$class->isUserDefined()) { + break; + } + $this->interfaces[] = $interfaceName; + } + $this->interfaces = array_reverse($this->interfaces); } - public function isReadonly() : bool + /** + * Creates a snapshot of all global and super-global variables. + */ + private function snapshotGlobals(): void { - return (bool) ($this->flags & self::MODIFIER_READONLY); + $superGlobalArrays = $this->superGlobalArrays(); + foreach ($superGlobalArrays as $superGlobalArray) { + $this->snapshotSuperGlobalArray($superGlobalArray); + } + foreach (array_keys($GLOBALS) as $key) { + if ($key !== 'GLOBALS' && !in_array($key, $superGlobalArrays, \true) && $this->canBeSerialized($GLOBALS[$key]) && !$this->excludeList->isGlobalVariableExcluded($key)) { + /* @noinspection UnserializeExploitsInspection */ + $this->globalVariables[$key] = unserialize(serialize($GLOBALS[$key])); + } + } } /** - * Whether the class is anonymous. - * - * @return bool + * Creates a snapshot a super-global variable array. */ - public function isAnonymous() : bool + private function snapshotSuperGlobalArray(string $superGlobalArray): void { - return null === $this->name; + $this->superGlobalVariables[$superGlobalArray] = []; + if (isset($GLOBALS[$superGlobalArray]) && is_array($GLOBALS[$superGlobalArray])) { + foreach ($GLOBALS[$superGlobalArray] as $key => $value) { + /* @noinspection UnserializeExploitsInspection */ + $this->superGlobalVariables[$superGlobalArray][$key] = unserialize(serialize($value)); + } + } } /** - * @internal + * Creates a snapshot of all static attributes in user-defined classes. */ - public static function verifyClassModifier($a, $b) + private function snapshotStaticAttributes(): void { - if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { - throw new Error('Multiple abstract modifiers are not allowed'); - } - if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { - throw new Error('Multiple final modifiers are not allowed'); - } - if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { - throw new Error('Multiple readonly modifiers are not allowed'); - } - if ($a & 48 && $b & 48) { - throw new Error('Cannot use the final modifier on an abstract class'); + foreach ($this->classes as $className) { + $class = new ReflectionClass($className); + $snapshot = []; + foreach ($class->getProperties() as $attribute) { + if ($attribute->isStatic()) { + $name = $attribute->getName(); + if ($this->excludeList->isStaticAttributeExcluded($className, $name)) { + continue; + } + $attribute->setAccessible(\true); + if (PHP_VERSION_ID >= 70400 && !$attribute->isInitialized()) { + continue; + } + $value = $attribute->getValue(); + if ($this->canBeSerialized($value)) { + /* @noinspection UnserializeExploitsInspection */ + $snapshot[$name] = unserialize(serialize($value)); + } + } + } + if (!empty($snapshot)) { + $this->staticAttributes[$className] = $snapshot; + } } } /** - * @internal + * Returns a list of all super-global variable arrays. */ - public static function verifyModifier($a, $b) + private function setupSuperGlobalArrays(): void { - if ($a & self::VISIBILITY_MODIFIER_MASK && $b & self::VISIBILITY_MODIFIER_MASK) { - throw new Error('Multiple access type modifiers are not allowed'); + $this->superGlobalArrays = ['_ENV', '_POST', '_GET', '_COOKIE', '_SERVER', '_FILES', '_REQUEST']; + } + private function canBeSerialized($variable): bool + { + if (is_scalar($variable) || $variable === null) { + return \true; } - if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { - throw new Error('Multiple abstract modifiers are not allowed'); + if (is_resource($variable)) { + return \false; } - if ($a & self::MODIFIER_STATIC && $b & self::MODIFIER_STATIC) { - throw new Error('Multiple static modifiers are not allowed'); + foreach ($this->enumerateObjectsAndResources($variable) as $value) { + if (is_resource($value)) { + return \false; + } + if (is_object($value)) { + $class = new ReflectionClass($value); + if ($class->isAnonymous()) { + return \false; + } + try { + @serialize($value); + } catch (Throwable $t) { + return \false; + } + } } - if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { - throw new Error('Multiple final modifiers are not allowed'); + return \true; + } + private function enumerateObjectsAndResources($variable): array + { + if (isset(func_get_args()[1])) { + $processed = func_get_args()[1]; + } else { + $processed = new Context(); } - if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { - throw new Error('Multiple readonly modifiers are not allowed'); + $result = []; + if ($processed->contains($variable)) { + return $result; } - if ($a & 48 && $b & 48) { - throw new Error('Cannot use the final modifier on an abstract class member'); + $array = $variable; + $processed->add($variable); + if (is_array($variable)) { + foreach ($array as $element) { + if (!is_array($element) && !is_object($element) && !is_resource($element)) { + continue; + } + if (!is_resource($element)) { + /** @noinspection SlowArrayOperationsInLoopInspection */ + $result = array_merge($result, $this->enumerateObjectsAndResources($element, $processed)); + } else { + $result[] = $element; + } + } + } else { + $result[] = $variable; + foreach ((new ObjectReflector())->getAttributes($variable) as $value) { + if (!is_array($value) && !is_object($value) && !is_resource($value)) { + continue; + } + if (!is_resource($value)) { + /** @noinspection SlowArrayOperationsInLoopInspection */ + $result = array_merge($result, $this->enumerateObjectsAndResources($value, $processed)); + } else { + $result[] = $value; + } + } } - } - public function getType() : string - { - return 'Stmt_Class'; + return $result; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -class Const_ extends Node\Stmt +final class RuntimeException extends \RuntimeException implements Exception { - /** @var Node\Const_[] Constant declarations */ - public $consts; - /** - * Constructs a const list node. - * - * @param Node\Const_[] $consts Constant declarations - * @param array $attributes Additional attributes - */ - public function __construct(array $consts, array $attributes = []) - { - $this->attributes = $attributes; - $this->consts = $consts; - } - public function getSubNodeNames() : array - { - return ['consts']; - } - public function getType() : string - { - return 'Stmt_Const'; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -class Continue_ extends Node\Stmt +use Throwable; +interface Exception extends Throwable { - /** @var null|Node\Expr Number of loops to continue */ - public $num; - /** - * Constructs a continue node. - * - * @param null|Node\Expr $num Number of loops to continue - * @param array $attributes Additional attributes - */ - public function __construct(Node\Expr $num = null, array $attributes = []) - { - $this->attributes = $attributes; - $this->num = $num; - } - public function getSubNodeNames() : array - { - return ['num']; - } - public function getType() : string - { - return 'Stmt_Continue'; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\GlobalState; -use PHPUnit\PhpParser\Node; -class DeclareDeclare extends Node\Stmt +use function in_array; +use function strpos; +use ReflectionClass; +final class ExcludeList { - /** @var Node\Identifier Key */ - public $key; - /** @var Node\Expr Value */ - public $value; /** - * Constructs a declare key=>value pair node. - * - * @param string|Node\Identifier $key Key - * @param Node\Expr $value Value - * @param array $attributes Additional attributes + * @var array */ - public function __construct($key, Node\Expr $value, array $attributes = []) + private $globalVariables = []; + /** + * @var string[] + */ + private $classes = []; + /** + * @var string[] + */ + private $classNamePrefixes = []; + /** + * @var string[] + */ + private $parentClasses = []; + /** + * @var string[] + */ + private $interfaces = []; + /** + * @var array + */ + private $staticAttributes = []; + public function addGlobalVariable(string $variableName): void { - $this->attributes = $attributes; - $this->key = \is_string($key) ? new Node\Identifier($key) : $key; - $this->value = $value; + $this->globalVariables[$variableName] = \true; } - public function getSubNodeNames() : array + public function addClass(string $className): void { - return ['key', 'value']; + $this->classes[] = $className; } - public function getType() : string + public function addSubclassesOf(string $className): void { - return 'Stmt_DeclareDeclare'; + $this->parentClasses[] = $className; } -} -attributes = $attributes; - $this->declares = $declares; - $this->stmts = $stmts; - } - public function getSubNodeNames() : array + public function addImplementorsOf(string $interfaceName): void { - return ['declares', 'stmts']; + $this->interfaces[] = $interfaceName; } - public function getType() : string + public function addClassNamePrefix(string $classNamePrefix): void { - return 'Stmt_Declare'; + $this->classNamePrefixes[] = $classNamePrefix; } -} -attributes = $attributes; - $this->cond = $cond; - $this->stmts = $stmts; + if (!isset($this->staticAttributes[$className])) { + $this->staticAttributes[$className] = []; + } + $this->staticAttributes[$className][$attributeName] = \true; } - public function getSubNodeNames() : array + public function isGlobalVariableExcluded(string $variableName): bool { - return ['stmts', 'cond']; + return isset($this->globalVariables[$variableName]); } - public function getType() : string + public function isStaticAttributeExcluded(string $className, string $attributeName): bool { - return 'Stmt_Do'; + if (in_array($className, $this->classes, \true)) { + return \true; + } + foreach ($this->classNamePrefixes as $prefix) { + if (strpos($className, $prefix) === 0) { + return \true; + } + } + $class = new ReflectionClass($className); + foreach ($this->parentClasses as $type) { + if ($class->isSubclassOf($type)) { + return \true; + } + } + foreach ($this->interfaces as $type) { + if ($class->implementsInterface($type)) { + return \true; + } + } + if (isset($this->staticAttributes[$className][$attributeName])) { + return \true; + } + return \false; } } +Copyright (c) 2013 Konstantin Kudryashov +Copyright (c) 2013 Marcello Duarte + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Comparator; -use PHPUnit\PhpParser\Node; -class Echo_ extends Node\Stmt +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory as BaseFactory; +/** + * Prophecy comparator factory. + * + * @author Konstantin Kudryashov + * + * @deprecated Use "Prophecy\Comparator\FactoryProvider" instead to get a "SebastianBergmann\Comparator\Factory" instance. + */ +final class Factory extends BaseFactory { - /** @var Node\Expr[] Expressions */ - public $exprs; /** - * Constructs an echo node. - * - * @param Node\Expr[] $exprs Expressions - * @param array $attributes Additional attributes + * @var Factory */ - public function __construct(array $exprs, array $attributes = []) - { - $this->attributes = $attributes; - $this->exprs = $exprs; - } - public function getSubNodeNames() : array + private static $instance; + public function __construct() { - return ['exprs']; + parent::__construct(); + $this->register(new \Prophecy\Comparator\ClosureComparator()); + $this->register(new \Prophecy\Comparator\ProphecyComparator()); } - public function getType() : string + /** + * @return Factory + */ + public static function getInstance() { - return 'Stmt_Echo'; + if (self::$instance === null) { + self::$instance = new \Prophecy\Comparator\Factory(); + } + return self::$instance; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Comparator; -use PHPUnit\PhpParser\Node; -class ElseIf_ extends Node\Stmt +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory; +/** + * Prophecy comparator factory. + * + * @author Konstantin Kudryashov + */ +final class FactoryProvider { - /** @var Node\Expr Condition */ - public $cond; - /** @var Node\Stmt[] Statements */ - public $stmts; /** - * Constructs an elseif node. - * - * @param Node\Expr $cond Condition - * @param Node\Stmt[] $stmts Statements - * @param array $attributes Additional attributes + * @var Factory|null */ - public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->cond = $cond; - $this->stmts = $stmts; - } - public function getSubNodeNames() : array + private static $instance; + private function __construct() { - return ['cond', 'stmts']; } - public function getType() : string + public static function getInstance(): Factory { - return 'Stmt_ElseIf'; + if (self::$instance === null) { + self::$instance = new Factory(); + self::$instance->register(new \Prophecy\Comparator\ClosureComparator()); + self::$instance->register(new \Prophecy\Comparator\ProphecyComparator()); + } + return self::$instance; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Comparator; -use PHPUnit\PhpParser\Node; -class Else_ extends Node\Stmt +use PHPUnitPHAR\SebastianBergmann\Comparator\Comparator; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +/** + * Closure comparator. + * + * @author Konstantin Kudryashov + */ +final class ClosureComparator extends Comparator { - /** @var Node\Stmt[] Statements */ - public $stmts; /** - * Constructs an else node. - * - * @param Node\Stmt[] $stmts Statements - * @param array $attributes Additional attributes + * @param mixed $expected + * @param mixed $actual */ - public function __construct(array $stmts = [], array $attributes = []) + public function accepts($expected, $actual): bool { - $this->attributes = $attributes; - $this->stmts = $stmts; - } - public function getSubNodeNames() : array - { - return ['stmts']; + return is_object($expected) && $expected instanceof \Closure && is_object($actual) && $actual instanceof \Closure; } - public function getType() : string + /** + * @param mixed $expected + * @param mixed $actual + * @param float $delta + * @param bool $canonicalize + * @param bool $ignoreCase + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false): void { - return 'Stmt_Else'; + if ($expected !== $actual) { + // Support for sebastian/comparator < 5 + if ((new \ReflectionMethod(ComparisonFailure::class, '__construct'))->getNumberOfParameters() >= 6) { + // @phpstan-ignore-next-line + throw new ComparisonFailure($expected, $actual, '', '', \false, 'all closures are different if not identical'); + } + throw new ComparisonFailure( + $expected, + $actual, + // we don't need a diff + '', + '', + 'all closures are different if not identical' + ); + } } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Comparator; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\AttributeGroup; -class EnumCase extends Node\Stmt +use Prophecy\Prophecy\ProphecyInterface; +use PHPUnitPHAR\SebastianBergmann\Comparator\ObjectComparator; +/** + * @final + */ +class ProphecyComparator extends ObjectComparator { - /** @var Node\Identifier Enum case name */ - public $name; - /** @var Node\Expr|null Enum case expression */ - public $expr; - /** @var Node\AttributeGroup[] PHP attribute groups */ - public $attrGroups; /** - * @param string|Node\Identifier $name Enum case name - * @param Node\Expr|null $expr Enum case expression - * @param AttributeGroup[] $attrGroups PHP attribute groups - * @param array $attributes Additional attributes + * @param mixed $expected + * @param mixed $actual */ - public function __construct($name, Node\Expr $expr = null, array $attrGroups = [], array $attributes = []) - { - parent::__construct($attributes); - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->expr = $expr; - $this->attrGroups = $attrGroups; - } - public function getSubNodeNames() : array + public function accepts($expected, $actual): bool { - return ['attrGroups', 'name', 'expr']; + return is_object($expected) && is_object($actual) && $actual instanceof ProphecyInterface; } - public function getType() : string + /** + * @param mixed $expected + * @param mixed $actual + * @param float $delta + * @param bool $canonicalize + * @param bool $ignoreCase + * @param array $processed + * + * @phpstan-param list $processed + */ + public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = array()): void { - return 'Stmt_EnumCase'; + \assert($actual instanceof ProphecyInterface); + parent::assertEquals($expected, $actual->reveal(), $delta, $canonicalize, $ignoreCase, $processed); } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy; -use PHPUnit\PhpParser\Node; -class Enum_ extends ClassLike +use Prophecy\Argument\Token; +/** + * Argument tokens shortcuts. + * + * @author Konstantin Kudryashov + */ +class Argument { - /** @var null|Node\Identifier Scalar Type */ - public $scalarType; - /** @var Node\Name[] Names of implemented interfaces */ - public $implements; /** - * @param string|Node\Identifier|null $name Name - * @param array $subNodes Array of the following optional subnodes: - * 'scalarType' => null : Scalar type - * 'implements' => array() : Names of implemented interfaces - * 'stmts' => array() : Statements - * 'attrGroups' => array() : PHP attribute groups - * @param array $attributes Additional attributes + * Checks that argument is exact value or object. + * + * @param mixed $value + * + * @return Token\ExactValueToken */ - public function __construct($name, array $subNodes = [], array $attributes = []) + public static function exact($value) { - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->scalarType = $subNodes['scalarType'] ?? null; - $this->implements = $subNodes['implements'] ?? []; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - parent::__construct($attributes); + return new Token\ExactValueToken($value); } - public function getSubNodeNames() : array + /** + * Checks that argument is of specific type or instance of specific class. + * + * @param string $type Type name (`integer`, `string`) or full class name + * + * @return Token\TypeToken + */ + public static function type($type) { - return ['attrGroups', 'name', 'scalarType', 'implements', 'stmts']; + return new Token\TypeToken($type); } - public function getType() : string + /** + * Checks that argument object has specific state. + * + * @param string $methodName + * @param mixed $value + * + * @return Token\ObjectStateToken + */ + public static function which($methodName, $value) { - return 'Stmt_Enum'; + return new Token\ObjectStateToken($methodName, $value); } -} -attributes = $attributes; - $this->expr = $expr; + return new Token\CallbackToken($callback, $customStringRepresentation); } - public function getSubNodeNames() : array + /** + * Matches any single value. + * + * @return Token\AnyValueToken + */ + public static function any() { - return ['expr']; + return new Token\AnyValueToken(); } - public function getType() : string + /** + * Matches all values to the rest of the signature. + * + * @return Token\AnyValuesToken + */ + public static function cetera() { - return 'Stmt_Expression'; + return new Token\AnyValuesToken(); } -} -attributes = $attributes; - $this->stmts = $stmts; + return new Token\LogicalAndToken($tokens); } - public function getSubNodeNames() : array + /** + * Checks that argument array or countable object has exact number of elements. + * + * @param integer $value array elements count + * + * @return Token\ArrayCountToken + */ + public static function size($value) { - return ['stmts']; + return new Token\ArrayCountToken($value); } - public function getType() : string + /** + * Checks that argument array contains (key, value) pair + * + * @param mixed $key exact value or token + * @param mixed $value exact value or token + * + * @return Token\ArrayEntryToken + */ + public static function withEntry($key, $value) { - return 'Stmt_Finally'; + return new Token\ArrayEntryToken($key, $value); } -} - array(): Init expressions - * 'cond' => array(): Loop conditions - * 'loop' => array(): Loop expressions - * 'stmts' => array(): Statements - * @param array $attributes Additional attributes + * @param mixed $value + * + * @return Token\ArrayEveryEntryToken */ - public function __construct(array $subNodes = [], array $attributes = []) + public static function withEveryEntry($value) { - $this->attributes = $attributes; - $this->init = $subNodes['init'] ?? []; - $this->cond = $subNodes['cond'] ?? []; - $this->loop = $subNodes['loop'] ?? []; - $this->stmts = $subNodes['stmts'] ?? []; + return new Token\ArrayEveryEntryToken($value); } - public function getSubNodeNames() : array + /** + * Checks that argument array contains value + * + * @param mixed $value + * + * @return Token\ArrayEntryToken + */ + public static function containing($value) { - return ['init', 'cond', 'loop', 'stmts']; + return new Token\ArrayEntryToken(self::any(), $value); } - public function getType() : string + /** + * Checks that argument array has key + * + * @param mixed $key exact value or token + * + * @return Token\ArrayEntryToken + */ + public static function withKey($key) { - return 'Stmt_For'; + return new Token\ArrayEntryToken($key, self::any()); } -} - null : Variable to assign key to - * 'byRef' => false : Whether to assign value by reference - * 'stmts' => array(): Statements - * @param array $attributes Additional attributes + * @param mixed $value either exact value or argument token + * + * @return Token\LogicalNotToken */ - public function __construct(Node\Expr $expr, Node\Expr $valueVar, array $subNodes = [], array $attributes = []) + public static function not($value) { - $this->attributes = $attributes; - $this->expr = $expr; - $this->keyVar = $subNodes['keyVar'] ?? null; - $this->byRef = $subNodes['byRef'] ?? \false; - $this->valueVar = $valueVar; - $this->stmts = $subNodes['stmts'] ?? []; + return new Token\LogicalNotToken($value); } - public function getSubNodeNames() : array + /** + * @param string $value + * + * @return Token\StringContainsToken + */ + public static function containingString($value) { - return ['expr', 'keyVar', 'byRef', 'valueVar', 'stmts']; + return new Token\StringContainsToken($value); } - public function getType() : string + /** + * Checks that argument is identical value. + * + * @param mixed $value + * + * @return Token\IdenticalValueToken + */ + public static function is($value) { - return 'Stmt_Foreach'; + return new Token\IdenticalValueToken($value); } -} - false : Whether to return by reference - * 'params' => array(): Parameters - * 'returnType' => null : Return type - * 'stmts' => array(): Statements - * 'attrGroups' => array(): PHP attribute groups - * @param array $attributes Additional attributes + * @param float $value + * @param int $precision + * + * @return Token\ApproximateValueToken */ - public function __construct($name, array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->byRef = $subNodes['byRef'] ?? \false; - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->params = $subNodes['params'] ?? []; - $returnType = $subNodes['returnType'] ?? null; - $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'byRef', 'name', 'params', 'returnType', 'stmts']; - } - public function returnsByRef() : bool - { - return $this->byRef; - } - public function getParams() : array - { - return $this->params; - } - public function getReturnType() - { - return $this->returnType; - } - public function getAttrGroups() : array - { - return $this->attrGroups; - } - /** @return Node\Stmt[] */ - public function getStmts() : array - { - return $this->stmts; - } - public function getType() : string + public static function approximate($value, $precision = 0) { - return 'Stmt_Function'; + return new Token\ApproximateValueToken($value, $precision); } -} - $value + * + * @return Token\InArrayToken */ - public function __construct(array $vars, array $attributes = []) - { - $this->attributes = $attributes; - $this->vars = $vars; - } - public function getSubNodeNames() : array - { - return ['vars']; - } - public function getType() : string + public static function in($value) { - return 'Stmt_Global'; + return new Token\InArrayToken($value); } -} - $value + * + * @return Token\NotInArrayToken */ - public function __construct($name, array $attributes = []) - { - $this->attributes = $attributes; - $this->name = \is_string($name) ? new Identifier($name) : $name; - } - public function getSubNodeNames() : array - { - return ['name']; - } - public function getType() : string + public static function notIn($value) { - return 'Stmt_Goto'; + return new Token\NotInArrayToken($value); } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Stmt; -class GroupUse extends Stmt +/** + * Core double interface. + * All doubled classes will implement this one. + * + * @author Konstantin Kudryashov + */ +interface DoubleInterface { - /** @var int Type of group use */ - public $type; - /** @var Name Prefix for uses */ - public $prefix; - /** @var UseUse[] Uses */ - public $uses; - /** - * Constructs a group use node. - * - * @param Name $prefix Prefix for uses - * @param UseUse[] $uses Uses - * @param int $type Type of group use - * @param array $attributes Additional attributes - */ - public function __construct(Name $prefix, array $uses, int $type = Use_::TYPE_NORMAL, array $attributes = []) - { - $this->attributes = $attributes; - $this->type = $type; - $this->prefix = $prefix; - $this->uses = $uses; - } - public function getSubNodeNames() : array - { - return ['type', 'prefix', 'uses']; - } - public function getType() : string - { - return 'Stmt_GroupUse'; - } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler; -use PHPUnit\PhpParser\Node\Stmt; -class HaltCompiler extends Stmt +use Prophecy\Exception\Doubler\DoubleException; +use Prophecy\Exception\Doubler\ClassNotFoundException; +use Prophecy\Exception\Doubler\InterfaceNotFoundException; +use ReflectionClass; +/** + * Lazy double. + * Gives simple interface to describe double before creating it. + * + * @template T of object + * + * @author Konstantin Kudryashov + */ +class LazyDouble { - /** @var string Remaining text after halt compiler statement. */ - public $remaining; + private $doubler; /** - * Constructs a __halt_compiler node. - * - * @param string $remaining Remaining text after halt compiler statement. - * @param array $attributes Additional attributes + * @var ReflectionClass|null */ - public function __construct(string $remaining, array $attributes = []) - { - $this->attributes = $attributes; - $this->remaining = $remaining; - } - public function getSubNodeNames() : array - { - return ['remaining']; - } - public function getType() : string + private $class; + /** + * @var list> + */ + private $interfaces = array(); + /** + * @var array|null + */ + private $arguments = null; + /** + * @var (T&DoubleInterface)|null + */ + private $double; + public function __construct(\Prophecy\Doubler\Doubler $doubler) { - return 'Stmt_HaltCompiler'; + $this->doubler = $doubler; } -} - array(): Statements - * 'elseifs' => array(): Elseif clauses - * 'else' => null : Else clause - * @param array $attributes Additional attributes + * @param class-string|ReflectionClass $class + * + * @return void + * + * @template U of object + * @phpstan-param class-string|ReflectionClass $class + * @phpstan-this-out static + * + * @throws ClassNotFoundException + * @throws DoubleException */ - public function __construct(Node\Expr $cond, array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->cond = $cond; - $this->stmts = $subNodes['stmts'] ?? []; - $this->elseifs = $subNodes['elseifs'] ?? []; - $this->else = $subNodes['else'] ?? null; - } - public function getSubNodeNames() : array - { - return ['cond', 'stmts', 'elseifs', 'else']; - } - public function getType() : string + public function setParentClass($class) { - return 'Stmt_If'; + if (null !== $this->double) { + throw new DoubleException('Can not extend class with already instantiated double.'); + } + if (!$class instanceof ReflectionClass) { + if (!class_exists($class)) { + throw new ClassNotFoundException(sprintf('Class %s not found.', $class), $class); + } + $class = new ReflectionClass($class); + } + /** @var static $this */ + $this->class = $class; } -} - $interface + * + * @return void + * + * @template U of object + * @phpstan-param class-string|ReflectionClass $interface + * @phpstan-this-out static + * + * @throws InterfaceNotFoundException + * @throws DoubleException */ - public function __construct(string $value, array $attributes = []) - { - $this->attributes = $attributes; - $this->value = $value; - } - public function getSubNodeNames() : array - { - return ['value']; - } - public function getType() : string + public function addInterface($interface) { - return 'Stmt_InlineHTML'; + if (null !== $this->double) { + throw new DoubleException('Can not implement interface with already instantiated double.'); + } + if (!$interface instanceof ReflectionClass) { + if (!interface_exists($interface)) { + throw new InterfaceNotFoundException(sprintf('Interface %s not found.', $interface), $interface); + } + $interface = new ReflectionClass($interface); + } + $this->interfaces[] = $interface; } -} - array(): Name of extended interfaces - * 'stmts' => array(): Statements - * 'attrGroups' => array(): PHP attribute groups - * @param array $attributes Additional attributes + * @param array|null $arguments + * + * @return void */ - public function __construct($name, array $subNodes = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->extends = $subNodes['extends'] ?? []; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'name', 'extends', 'stmts']; - } - public function getType() : string + public function setArguments(array $arguments = null) { - return 'Stmt_Interface'; + $this->arguments = $arguments; } -} -attributes = $attributes; - $this->name = \is_string($name) ? new Identifier($name) : $name; - } - public function getSubNodeNames() : array - { - return ['name']; - } - public function getType() : string + public function getInstance() { - return 'Stmt_Label'; + if (null === $this->double) { + if (null !== $this->arguments) { + return $this->double = $this->doubler->double($this->class, $this->interfaces, $this->arguments); + } + $this->double = $this->doubler->double($this->class, $this->interfaces); + } + return $this->double; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler; -use PHPUnit\PhpParser\Node; -class Namespace_ extends Node\Stmt +use ReflectionClass; +/** + * Name generator. + * Generates classname for double. + * + * @author Konstantin Kudryashov + */ +class NameGenerator { - /* For use in the "kind" attribute */ - const KIND_SEMICOLON = 1; - const KIND_BRACED = 2; - /** @var null|Node\Name Name */ - public $name; - /** @var Node\Stmt[] Statements */ - public $stmts; /** - * Constructs a namespace node. + * @var int + */ + private static $counter = 1; + /** + * Generates name. * - * @param null|Node\Name $name Name - * @param null|Node\Stmt[] $stmts Statements - * @param array $attributes Additional attributes + * @param ReflectionClass|null $class + * @param ReflectionClass[] $interfaces + * + * @return string */ - public function __construct(Node\Name $name = null, $stmts = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->name = $name; - $this->stmts = $stmts; - } - public function getSubNodeNames() : array - { - return ['name', 'stmts']; - } - public function getType() : string - { - return 'Stmt_Namespace'; - } -} -getName(); + } else { + foreach ($interfaces as $interface) { + $parts[] = $interface->getShortName(); + } + } + if (!count($parts)) { + $parts[] = 'stdClass'; + } + return sprintf('Double\%s\P%d', implode('\\', $parts), self::$counter++); } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\ComplexType; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\Name; -class Property extends Node\Stmt +use PHPUnitPHAR\Doctrine\Instantiator\Instantiator; +use Prophecy\Doubler\ClassPatch\ClassPatchInterface; +use Prophecy\Doubler\Generator\ClassMirror; +use Prophecy\Doubler\Generator\ClassCreator; +use Prophecy\Exception\InvalidArgumentException; +use ReflectionClass; +/** + * Cached class doubler. + * Prevents mirroring/creation of the same structure twice. + * + * @author Konstantin Kudryashov + */ +class Doubler { - /** @var int Modifiers */ - public $flags; - /** @var PropertyProperty[] Properties */ - public $props; - /** @var null|Identifier|Name|ComplexType Type declaration */ - public $type; - /** @var Node\AttributeGroup[] PHP attribute groups */ - public $attrGroups; + private $mirror; + private $creator; + private $namer; /** - * Constructs a class property list node. - * - * @param int $flags Modifiers - * @param PropertyProperty[] $props Properties - * @param array $attributes Additional attributes - * @param null|string|Identifier|Name|ComplexType $type Type declaration - * @param Node\AttributeGroup[] $attrGroups PHP attribute groups + * @var list */ - public function __construct(int $flags, array $props, array $attributes = [], $type = null, array $attrGroups = []) - { - $this->attributes = $attributes; - $this->flags = $flags; - $this->props = $props; - $this->type = \is_string($type) ? new Identifier($type) : $type; - $this->attrGroups = $attrGroups; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'flags', 'type', 'props']; - } + private $patches = array(); /** - * Whether the property is explicitly or implicitly public. - * - * @return bool + * @var Instantiator|null */ - public function isPublic() : bool + private $instantiator; + public function __construct(ClassMirror $mirror = null, ClassCreator $creator = null, \Prophecy\Doubler\NameGenerator $namer = null) { - return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; + $this->mirror = $mirror ?: new ClassMirror(); + $this->creator = $creator ?: new ClassCreator(); + $this->namer = $namer ?: new \Prophecy\Doubler\NameGenerator(); } /** - * Whether the property is protected. + * Returns list of registered class patches. * - * @return bool + * @return list */ - public function isProtected() : bool + public function getClassPatches() { - return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); + return $this->patches; } /** - * Whether the property is private. + * Registers new class patch. * - * @return bool + * @param ClassPatchInterface $patch + * + * @return void */ - public function isPrivate() : bool + public function registerClassPatch(ClassPatchInterface $patch) { - return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); + $this->patches[] = $patch; + @usort($this->patches, function (ClassPatchInterface $patch1, ClassPatchInterface $patch2) { + return $patch2->getPriority() - $patch1->getPriority(); + }); } /** - * Whether the property is static. + * Creates double from specific class or/and list of interfaces. * - * @return bool + * @template T of object + * + * @param ReflectionClass|null $class + * @param ReflectionClass[] $interfaces Array of ReflectionClass instances + * @param array|null $args Constructor arguments + * + * @return T&DoubleInterface + * + * @throws \Prophecy\Exception\InvalidArgumentException */ - public function isStatic() : bool + public function double(ReflectionClass $class = null, array $interfaces, array $args = null) { - return (bool) ($this->flags & Class_::MODIFIER_STATIC); + foreach ($interfaces as $interface) { + if (!$interface instanceof ReflectionClass) { + throw new InvalidArgumentException(sprintf("[ReflectionClass \$interface1 [, ReflectionClass \$interface2]] array expected as\n" . "a second argument to `Doubler::double(...)`, but got %s.", is_object($interface) ? get_class($interface) . ' class' : gettype($interface))); + } + } + $classname = $this->createDoubleClass($class, $interfaces); + $reflection = new ReflectionClass($classname); + if (null !== $args) { + return $reflection->newInstanceArgs($args); + } + if (null === ($constructor = $reflection->getConstructor()) || $constructor->isPublic() && !$constructor->isFinal()) { + return $reflection->newInstance(); + } + if (!$this->instantiator) { + $this->instantiator = new Instantiator(); + } + return $this->instantiator->instantiate($classname); } /** - * Whether the property is readonly. + * Creates double class and returns its FQN. * - * @return bool + * @template T of object + * + * @param ReflectionClass|null $class + * @param ReflectionClass[] $interfaces + * + * @return class-string */ - public function isReadonly() : bool - { - return (bool) ($this->flags & Class_::MODIFIER_READONLY); - } - public function getType() : string + protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) { - return 'Stmt_Property'; + $name = $this->namer->name($class, $interfaces); + $node = $this->mirror->reflect($class, $interfaces); + foreach ($this->patches as $patch) { + if ($patch->supports($node)) { + $patch->apply($node); + } + } + $node->addInterface(\Prophecy\Doubler\DoubleInterface::class); + $this->creator->create($name, $node); + \assert(class_exists($name, \false)); + return $name; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator; -use PHPUnit\PhpParser\Node; -class PropertyProperty extends Node\Stmt +use Prophecy\Exception\Doubler\ClassCreatorException; +/** + * Class creator. + * Creates specific class in current environment. + * + * @author Konstantin Kudryashov + */ +class ClassCreator { - /** @var Node\VarLikeIdentifier Name */ - public $name; - /** @var null|Node\Expr Default */ - public $default; + private $generator; + public function __construct(\Prophecy\Doubler\Generator\ClassCodeGenerator $generator = null) + { + $this->generator = $generator ?: new \Prophecy\Doubler\Generator\ClassCodeGenerator(); + } /** - * Constructs a class property node. + * Creates class. * - * @param string|Node\VarLikeIdentifier $name Name - * @param null|Node\Expr $default Default value - * @param array $attributes Additional attributes + * @param string $classname + * @param Node\ClassNode $class + * + * @return mixed + * + * @throws \Prophecy\Exception\Doubler\ClassCreatorException */ - public function __construct($name, Node\Expr $default = null, array $attributes = []) - { - $this->attributes = $attributes; - $this->name = \is_string($name) ? new Node\VarLikeIdentifier($name) : $name; - $this->default = $default; - } - public function getSubNodeNames() : array - { - return ['name', 'default']; - } - public function getType() : string + public function create($classname, \Prophecy\Doubler\Generator\Node\ClassNode $class) { - return 'Stmt_PropertyProperty'; + $code = $this->generator->generate($classname, $class); + $return = eval($code); + if (!class_exists($classname, \false)) { + if (count($class->getInterfaces())) { + throw new ClassCreatorException(sprintf('Could not double `%s` and implement interfaces: [%s].', $class->getParentClass(), implode(', ', $class->getInterfaces())), $class); + } + throw new ClassCreatorException(sprintf('Could not double `%s`.', $class->getParentClass()), $class); + } + return $return; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator; -use PHPUnit\PhpParser\Node; -class Return_ extends Node\Stmt +/** + * Reflection interface. + * All reflected classes implement this interface. + * + * @author Konstantin Kudryashov + */ +interface ReflectionInterface { - /** @var null|Node\Expr Expression */ - public $expr; - /** - * Constructs a return node. - * - * @param null|Node\Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(Node\Expr $expr = null, array $attributes = []) - { - $this->attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string - { - return 'Stmt_Return'; - } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Expr; -class StaticVar extends Node\Stmt +use Prophecy\Doubler\Generator\Node\ReturnTypeNode; +use Prophecy\Doubler\Generator\Node\TypeNodeAbstract; +/** + * Class code creator. + * Generates PHP code for specific class node tree. + * + * @author Konstantin Kudryashov + */ +class ClassCodeGenerator { - /** @var Expr\Variable Variable */ - public $var; - /** @var null|Node\Expr Default value */ - public $default; + // Used to accept an optional first argument with the deprecated Prophecy\Doubler\Generator\TypeHintReference so careful when adding a new argument in a minor version. + public function __construct() + { + } /** - * Constructs a static variable node. + * Generates PHP code for class node. * - * @param Expr\Variable $var Name - * @param null|Node\Expr $default Default value - * @param array $attributes Additional attributes + * @param string $classname + * @param Node\ClassNode $class + * + * @return string */ - public function __construct(Expr\Variable $var, Node\Expr $default = null, array $attributes = []) + public function generate($classname, \Prophecy\Doubler\Generator\Node\ClassNode $class) { - $this->attributes = $attributes; - $this->var = $var; - $this->default = $default; + $parts = explode('\\', $classname); + $classname = array_pop($parts); + $namespace = implode('\\', $parts); + $code = sprintf("%sclass %s extends \\%s implements %s {\n", $class->isReadOnly() ? 'readonly ' : '', $classname, $class->getParentClass(), implode(', ', array_map(function ($interface) { + return '\\' . $interface; + }, $class->getInterfaces()))); + foreach ($class->getProperties() as $name => $visibility) { + $code .= sprintf("%s \$%s;\n", $visibility, $name); + } + $code .= "\n"; + foreach ($class->getMethods() as $method) { + $code .= $this->generateMethod($method) . "\n"; + } + $code .= "\n}"; + return sprintf("namespace %s {\n%s\n}", $namespace, $code); } - public function getSubNodeNames() : array + private function generateMethod(\Prophecy\Doubler\Generator\Node\MethodNode $method): string { - return ['var', 'default']; + $php = sprintf("%s %s function %s%s(%s)%s {\n", $method->getVisibility(), $method->isStatic() ? 'static' : '', $method->returnsReference() ? '&' : '', $method->getName(), implode(', ', $this->generateArguments($method->getArguments())), ($ret = $this->generateTypes($method->getReturnTypeNode())) ? ': ' . $ret : ''); + $php .= $method->getCode() . "\n"; + return $php . '}'; } - public function getType() : string + private function generateTypes(TypeNodeAbstract $typeNode): string { - return 'Stmt_StaticVar'; + if (!$typeNode->getTypes()) { + return ''; + } + // When we require PHP 8 we can stop generating ?foo nullables and remove this first block + if ($typeNode->canUseNullShorthand()) { + return sprintf('?%s', $typeNode->getNonNullTypes()[0]); + } else { + return join('|', $typeNode->getTypes()); + } } -} - $arguments * - * @param StaticVar[] $vars Variable definitions - * @param array $attributes Additional attributes + * @return list */ - public function __construct(array $vars, array $attributes = []) - { - $this->attributes = $attributes; - $this->vars = $vars; - } - public function getSubNodeNames() : array - { - return ['vars']; - } - public function getType() : string + private function generateArguments(array $arguments): array { - return 'Stmt_Static'; + return array_map(function (\Prophecy\Doubler\Generator\Node\ArgumentNode $argument) { + $php = $this->generateTypes($argument->getTypeNode()); + $php .= ' ' . ($argument->isPassedByReference() ? '&' : ''); + $php .= $argument->isVariadic() ? '...' : ''; + $php .= '$' . $argument->getName(); + if ($argument->isOptional() && !$argument->isVariadic()) { + $php .= ' = ' . var_export($argument->getDefault(), \true); + } + return $php; + }, $arguments); } } attributes = $attributes; - $this->cond = $cond; - $this->cases = $cases; - } - public function getSubNodeNames() : array - { - return ['cond', 'cases']; - } - public function getType() : string + public function isBuiltInParamTypeHint($type) { - return 'Stmt_Switch'; + switch ($type) { + case 'self': + case 'array': + case 'callable': + case 'bool': + case 'float': + case 'int': + case 'string': + case 'iterable': + case 'object': + return \true; + case 'mixed': + return \PHP_VERSION_ID >= 80000; + default: + return \false; + } } -} -attributes = $attributes; - $this->expr = $expr; - } - public function getSubNodeNames() : array - { - return ['expr']; - } - public function getType() : string + public function isBuiltInReturnTypeHint($type) { - return 'Stmt_Throw'; + if ($type === 'void') { + return \true; + } + return $this->isBuiltInParamTypeHint($type); } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator; -use PHPUnit\PhpParser\Node; -class TraitUse extends Node\Stmt +use Prophecy\Doubler\Generator\Node\ArgumentTypeNode; +use Prophecy\Doubler\Generator\Node\ReturnTypeNode; +use Prophecy\Exception\InvalidArgumentException; +use Prophecy\Exception\Doubler\ClassMirrorException; +use ReflectionClass; +use ReflectionIntersectionType; +use ReflectionMethod; +use ReflectionNamedType; +use ReflectionParameter; +use ReflectionType; +use ReflectionUnionType; +/** + * Class mirror. + * Core doubler class. Mirrors specific class and/or interfaces into class node tree. + * + * @author Konstantin Kudryashov + */ +class ClassMirror { - /** @var Node\Name[] Traits */ - public $traits; - /** @var TraitUseAdaptation[] Adaptations */ - public $adaptations; + private const REFLECTABLE_METHODS = array('__construct', '__destruct', '__sleep', '__wakeup', '__toString', '__call', '__invoke'); /** - * Constructs a trait use node. + * Reflects provided arguments into class node. + * + * @param ReflectionClass|null $class + * @param ReflectionClass[] $interfaces + * + * @return Node\ClassNode * - * @param Node\Name[] $traits Traits - * @param TraitUseAdaptation[] $adaptations Adaptations - * @param array $attributes Additional attributes */ - public function __construct(array $traits, array $adaptations = [], array $attributes = []) - { - $this->attributes = $attributes; - $this->traits = $traits; - $this->adaptations = $adaptations; - } - public function getSubNodeNames() : array - { - return ['traits', 'adaptations']; - } - public function getType() : string + public function reflect(?ReflectionClass $class, array $interfaces) { - return 'Stmt_TraitUse'; + $node = new \Prophecy\Doubler\Generator\Node\ClassNode(); + if (null !== $class) { + if (\true === $class->isInterface()) { + throw new InvalidArgumentException(sprintf("Could not reflect %s as a class, because it\n" . "is interface - use the second argument instead.", $class->getName())); + } + $this->reflectClassToNode($class, $node); + } + foreach ($interfaces as $interface) { + if (!$interface instanceof ReflectionClass) { + throw new InvalidArgumentException(sprintf("[ReflectionClass \$interface1 [, ReflectionClass \$interface2]] array expected as\n" . "a second argument to `ClassMirror::reflect(...)`, but got %s.", is_object($interface) ? get_class($interface) . ' class' : gettype($interface))); + } + if (\false === $interface->isInterface()) { + throw new InvalidArgumentException(sprintf("Could not reflect %s as an interface, because it\n" . "is class - use the first argument instead.", $interface->getName())); + } + $this->reflectInterfaceToNode($interface, $node); + } + $node->addInterface('Prophecy\Doubler\Generator\ReflectionInterface'); + return $node; } -} - $class */ - public function __construct($trait, $method, $newModifier, $newName, array $attributes = []) + private function reflectClassToNode(ReflectionClass $class, \Prophecy\Doubler\Generator\Node\ClassNode $node): void { - $this->attributes = $attributes; - $this->trait = $trait; - $this->method = \is_string($method) ? new Node\Identifier($method) : $method; - $this->newModifier = $newModifier; - $this->newName = \is_string($newName) ? new Node\Identifier($newName) : $newName; + if (\true === $class->isFinal()) { + throw new ClassMirrorException(sprintf('Could not reflect class %s as it is marked final.', $class->getName()), $class); + } + if (method_exists(ReflectionClass::class, 'isReadOnly')) { + $node->setReadOnly($class->isReadOnly()); + } + $node->setParentClass($class->getName()); + foreach ($class->getMethods(ReflectionMethod::IS_ABSTRACT) as $method) { + if (\false === $method->isProtected()) { + continue; + } + $this->reflectMethodToNode($method, $node); + } + foreach ($class->getMethods(ReflectionMethod::IS_PUBLIC) as $method) { + if (0 === strpos($method->getName(), '_') && !in_array($method->getName(), self::REFLECTABLE_METHODS)) { + continue; + } + if (\true === $method->isFinal()) { + $node->addUnextendableMethod($method->getName()); + continue; + } + $this->reflectMethodToNode($method, $node); + } } - public function getSubNodeNames() : array + /** + * @param ReflectionClass $interface + */ + private function reflectInterfaceToNode(ReflectionClass $interface, \Prophecy\Doubler\Generator\Node\ClassNode $node): void { - return ['trait', 'method', 'newModifier', 'newName']; + $node->addInterface($interface->getName()); + foreach ($interface->getMethods() as $method) { + $this->reflectMethodToNode($method, $node); + } } - public function getType() : string + private function reflectMethodToNode(ReflectionMethod $method, \Prophecy\Doubler\Generator\Node\ClassNode $classNode): void { - return 'Stmt_TraitUseAdaptation_Alias'; + $node = new \Prophecy\Doubler\Generator\Node\MethodNode($method->getName()); + if (\true === $method->isProtected()) { + $node->setVisibility('protected'); + } + if (\true === $method->isStatic()) { + $node->setStatic(); + } + if (\true === $method->returnsReference()) { + $node->setReturnsReference(); + } + if ($method->hasReturnType()) { + \assert($method->getReturnType() !== null); + $returnTypes = $this->getTypeHints($method->getReturnType(), $method->getDeclaringClass(), $method->getReturnType()->allowsNull()); + $node->setReturnTypeNode(new ReturnTypeNode(...$returnTypes)); + } elseif (method_exists($method, 'hasTentativeReturnType') && $method->hasTentativeReturnType()) { + \assert($method->getTentativeReturnType() !== null); + $returnTypes = $this->getTypeHints($method->getTentativeReturnType(), $method->getDeclaringClass(), $method->getTentativeReturnType()->allowsNull()); + $node->setReturnTypeNode(new ReturnTypeNode(...$returnTypes)); + } + if (is_array($params = $method->getParameters()) && count($params)) { + foreach ($params as $param) { + $this->reflectArgumentToNode($param, $method->getDeclaringClass(), $node); + } + } + $classNode->addMethod($node); } -} - $declaringClass * - * @param Node\Name $trait Trait name - * @param string|Node\Identifier $method Method name - * @param Node\Name[] $insteadof Overwritten traits - * @param array $attributes Additional attributes + * @return void */ - public function __construct(Node\Name $trait, $method, array $insteadof, array $attributes = []) + private function reflectArgumentToNode(ReflectionParameter $parameter, ReflectionClass $declaringClass, \Prophecy\Doubler\Generator\Node\MethodNode $methodNode): void { - $this->attributes = $attributes; - $this->trait = $trait; - $this->method = \is_string($method) ? new Node\Identifier($method) : $method; - $this->insteadof = $insteadof; + $name = $parameter->getName() == '...' ? '__dot_dot_dot__' : $parameter->getName(); + $node = new \Prophecy\Doubler\Generator\Node\ArgumentNode($name); + $typeHints = $this->getTypeHints($parameter->getType(), $declaringClass, $parameter->allowsNull()); + $node->setTypeNode(new ArgumentTypeNode(...$typeHints)); + if ($parameter->isVariadic()) { + $node->setAsVariadic(); + } + if ($this->hasDefaultValue($parameter)) { + $node->setDefault($this->getDefaultValue($parameter)); + } + if ($parameter->isPassedByReference()) { + $node->setAsPassedByReference(); + } + $methodNode->addArgument($node); } - public function getSubNodeNames() : array + private function hasDefaultValue(ReflectionParameter $parameter): bool { - return ['trait', 'method', 'insteadof']; + if ($parameter->isVariadic()) { + return \false; + } + if ($parameter->isDefaultValueAvailable()) { + return \true; + } + return $parameter->isOptional() || $parameter->allowsNull() && $parameter->getType() && \PHP_VERSION_ID < 80100; } - public function getType() : string + /** + * @return mixed + */ + private function getDefaultValue(ReflectionParameter $parameter) { - return 'Stmt_TraitUseAdaptation_Precedence'; + if (!$parameter->isDefaultValueAvailable()) { + return null; + } + return $parameter->getDefaultValue(); } -} - $class * - * @param string|Node\Identifier $name Name - * @param array $subNodes Array of the following optional subnodes: - * 'stmts' => array(): Statements - * 'attrGroups' => array(): PHP attribute groups - * @param array $attributes Additional attributes + * @return list */ - public function __construct($name, array $subNodes = [], array $attributes = []) + private function getTypeHints(?ReflectionType $type, ReflectionClass $class, bool $allowsNull): array { - $this->attributes = $attributes; - $this->name = \is_string($name) ? new Node\Identifier($name) : $name; - $this->stmts = $subNodes['stmts'] ?? []; - $this->attrGroups = $subNodes['attrGroups'] ?? []; - } - public function getSubNodeNames() : array - { - return ['attrGroups', 'name', 'stmts']; - } - public function getType() : string - { - return 'Stmt_Trait'; + $types = []; + if ($type instanceof ReflectionNamedType) { + $types = [$type->getName()]; + } elseif ($type instanceof ReflectionUnionType) { + $types = $type->getTypes(); + if (\PHP_VERSION_ID >= 80200) { + foreach ($types as $reflectionType) { + if ($reflectionType instanceof ReflectionIntersectionType) { + throw new ClassMirrorException('Doubling intersection types is not supported', $class); + } + } + } + } elseif ($type instanceof ReflectionIntersectionType) { + throw new ClassMirrorException('Doubling intersection types is not supported', $class); + } elseif (is_object($type)) { + throw new ClassMirrorException('Unknown reflection type ' . get_class($type), $class); + } + $types = array_map(function (string $type) use ($class) { + if ($type === 'self') { + return $class->getName(); + } + if ($type === 'parent') { + if (\false === $class->getParentClass()) { + throw new ClassMirrorException(sprintf('Invalid type "parent" in class "%s" without a parent', $class->getName()), $class); + } + return $class->getParentClass()->getName(); + } + return $type; + }, $types); + if ($types && $types != ['mixed'] && $allowsNull) { + $types[] = 'null'; + } + return $types; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator\Node; -use PHPUnit\PhpParser\Node; -class TryCatch extends Node\Stmt +/** + * Argument node. + * + * @author Konstantin Kudryashov + */ +class ArgumentNode { - /** @var Node\Stmt[] Statements */ - public $stmts; - /** @var Catch_[] Catches */ - public $catches; - /** @var null|Finally_ Optional finally node */ - public $finally; + private $name; /** - * Constructs a try catch node. - * - * @param Node\Stmt[] $stmts Statements - * @param Catch_[] $catches Catches - * @param null|Finally_ $finally Optional finally node - * @param array $attributes Additional attributes + * @var mixed */ - public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = []) - { - $this->attributes = $attributes; - $this->stmts = $stmts; - $this->catches = $catches; - $this->finally = $finally; - } - public function getSubNodeNames() : array - { - return ['stmts', 'catches', 'finally']; - } - public function getType() : string + private $default; + /** + * @var bool + */ + private $optional = \false; + /** + * @var bool + */ + private $byReference = \false; + /** + * @var bool + */ + private $isVariadic = \false; + /** @var ArgumentTypeNode */ + private $typeNode; + /** + * @param string $name + */ + public function __construct($name) { - return 'Stmt_TryCatch'; + $this->name = $name; + $this->typeNode = new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode(); } -} -attributes = $attributes; - $this->vars = $vars; + return $this->name; } - public function getSubNodeNames() : array + /** + * @return void + */ + public function setTypeNode(\Prophecy\Doubler\Generator\Node\ArgumentTypeNode $typeNode) { - return ['vars']; + $this->typeNode = $typeNode; } - public function getType() : string + public function getTypeNode(): \Prophecy\Doubler\Generator\Node\ArgumentTypeNode { - return 'Stmt_Unset'; + return $this->typeNode; } -} -attributes = $attributes; - $this->type = $type; - $this->name = $name; - $this->alias = \is_string($alias) ? new Identifier($alias) : $alias; + return $this->isOptional() && !$this->isVariadic(); } - public function getSubNodeNames() : array + /** + * @return mixed + */ + public function getDefault() { - return ['type', 'name', 'alias']; + return $this->default; } /** - * Get alias. If not explicitly given this is the last component of the used name. + * @param mixed $default * - * @return Identifier + * @return void */ - public function getAlias() : Identifier - { - if (null !== $this->alias) { - return $this->alias; - } - return new Identifier($this->name->getLast()); - } - public function getType() : string + public function setDefault($default = null) { - return 'Stmt_UseUse'; + $this->optional = \true; + $this->default = $default; } -} -optional; + } /** - * Constructs an alias (use) list node. + * @param bool $byReference * - * @param UseUse[] $uses Aliases - * @param int $type Type of alias - * @param array $attributes Additional attributes + * @return void */ - public function __construct(array $uses, int $type = self::TYPE_NORMAL, array $attributes = []) - { - $this->attributes = $attributes; - $this->type = $type; - $this->uses = $uses; - } - public function getSubNodeNames() : array + public function setAsPassedByReference($byReference = \true) { - return ['type', 'uses']; + $this->byReference = $byReference; } - public function getType() : string + /** + * @return bool + */ + public function isPassedByReference() { - return 'Stmt_Use'; + return $this->byReference; } -} -attributes = $attributes; - $this->cond = $cond; - $this->stmts = $stmts; + $this->isVariadic = $isVariadic; } - public function getSubNodeNames() : array + /** + * @return bool + */ + public function isVariadic() { - return ['cond', 'stmts']; + return $this->isVariadic; } - public function getType() : string + /** + * @deprecated use getArgumentTypeNode instead + * @return string|null + */ + public function getTypeHint() { - return 'Stmt_While'; + $type = $this->typeNode->getNonNullTypes() ? $this->typeNode->getNonNullTypes()[0] : null; + return $type ? ltrim($type, '\\') : null; } -} -attributes = $attributes; - $this->types = $types; + $this->typeNode = $typeHint === null ? new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode() : new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode($typeHint); } - public function getSubNodeNames() : array + /** + * @deprecated use getArgumentTypeNode instead + * @return bool + */ + public function isNullable() { - return ['types']; + return $this->typeNode->canUseNullShorthand(); } - public function getType() : string + /** + * @deprecated use getArgumentTypeNode instead + * @param bool $isNullable + * + * @return void + */ + public function setAsNullable($isNullable = \true) { - return 'UnionType'; + $nonNullTypes = $this->typeNode->getNonNullTypes(); + $this->typeNode = $isNullable ? new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode('null', ...$nonNullTypes) : new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode(...$nonNullTypes); } } + * Marcello Duarte * - * Examples: Names in property declarations are formatted as variables. Names in static property - * lookups are also formatted as variables. + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -class VarLikeIdentifier extends Identifier -{ - public function getType() : string - { - return 'VarLikeIdentifier'; - } -} - */ -class VariadicPlaceholder extends NodeAbstract +class ClassNode { /** - * Create a variadic argument placeholder (first-class callable syntax). + * @var class-string + */ + private $parentClass = 'stdClass'; + /** + * @var list + */ + private $interfaces = array(); + /** + * @var array * - * @param array $attributes Additional attributes + * @phpstan-var array */ - public function __construct(array $attributes = []) - { - $this->attributes = $attributes; - } - public function getType() : string - { - return 'VariadicPlaceholder'; - } - public function getSubNodeNames() : array + private $properties = array(); + /** + * @var list + */ + private $unextendableMethods = array(); + /** + * @var bool + */ + private $readOnly = \false; + /** + * @var array + */ + private $methods = array(); + /** + * @return class-string + */ + public function getParentClass() { - return []; + return $this->parentClass; } -} -attributes = $attributes; + $this->parentClass = $class ?: 'stdClass'; } /** - * Gets line the node started in (alias of getStartLine). - * - * @return int Start line (or -1 if not available) + * @return list */ - public function getLine() : int + public function getInterfaces() { - return $this->attributes['startLine'] ?? -1; + return $this->interfaces; } /** - * Gets line the node started in. - * - * Requires the 'startLine' attribute to be enabled in the lexer (enabled by default). + * @param class-string $interface * - * @return int Start line (or -1 if not available) + * @return void */ - public function getStartLine() : int + public function addInterface($interface) { - return $this->attributes['startLine'] ?? -1; + if ($this->hasInterface($interface)) { + return; + } + array_unshift($this->interfaces, $interface); } /** - * Gets the line the node ended in. - * - * Requires the 'endLine' attribute to be enabled in the lexer (enabled by default). + * @param class-string $interface * - * @return int End line (or -1 if not available) + * @return bool */ - public function getEndLine() : int + public function hasInterface($interface) { - return $this->attributes['endLine'] ?? -1; + return in_array($interface, $this->interfaces); } /** - * Gets the token offset of the first token that is part of this node. - * - * The offset is an index into the array returned by Lexer::getTokens(). + * @return array * - * Requires the 'startTokenPos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int Token start position (or -1 if not available) + * @phpstan-return array */ - public function getStartTokenPos() : int + public function getProperties() { - return $this->attributes['startTokenPos'] ?? -1; + return $this->properties; } /** - * Gets the token offset of the last token that is part of this node. - * - * The offset is an index into the array returned by Lexer::getTokens(). + * @param string $name + * @param string $visibility * - * Requires the 'endTokenPos' attribute to be enabled in the lexer (DISABLED by default). + * @return void * - * @return int Token end position (or -1 if not available) + * @phpstan-param 'public'|'private'|'protected' $visibility */ - public function getEndTokenPos() : int + public function addProperty($name, $visibility = 'public') { - return $this->attributes['endTokenPos'] ?? -1; + $visibility = strtolower($visibility); + if (!\in_array($visibility, array('public', 'private', 'protected'), \true)) { + throw new InvalidArgumentException(sprintf('`%s` property visibility is not supported.', $visibility)); + } + $this->properties[$name] = $visibility; } /** - * Gets the file offset of the first character that is part of this node. - * - * Requires the 'startFilePos' attribute to be enabled in the lexer (DISABLED by default). - * - * @return int File start position (or -1 if not available) + * @return array */ - public function getStartFilePos() : int + public function getMethods() { - return $this->attributes['startFilePos'] ?? -1; + return $this->methods; } /** - * Gets the file offset of the last character that is part of this node. - * - * Requires the 'endFilePos' attribute to be enabled in the lexer (DISABLED by default). + * @param MethodNode $method + * @param bool $force * - * @return int File end position (or -1 if not available) + * @return void */ - public function getEndFilePos() : int + public function addMethod(\Prophecy\Doubler\Generator\Node\MethodNode $method, $force = \false) { - return $this->attributes['endFilePos'] ?? -1; + if (!$this->isExtendable($method->getName())) { + $message = sprintf('Method `%s` is not extendable, so can not be added.', $method->getName()); + throw new MethodNotExtendableException($message, $this->getParentClass(), $method->getName()); + } + if ($force || !isset($this->methods[$method->getName()])) { + $this->methods[$method->getName()] = $method; + } } /** - * Gets all comments directly preceding this node. - * - * The comments are also available through the "comments" attribute. + * @param string $name * - * @return Comment[] + * @return void */ - public function getComments() : array + public function removeMethod($name) { - return $this->attributes['comments'] ?? []; + unset($this->methods[$name]); } /** - * Gets the doc comment of the node. + * @param string $name * - * @return null|Comment\Doc Doc comment object or null + * @return MethodNode|null */ - public function getDocComment() + public function getMethod($name) { - $comments = $this->getComments(); - for ($i = \count($comments) - 1; $i >= 0; $i--) { - $comment = $comments[$i]; - if ($comment instanceof Comment\Doc) { - return $comment; - } - } - return null; + return $this->hasMethod($name) ? $this->methods[$name] : null; } /** - * Sets the doc comment of the node. - * - * This will either replace an existing doc comment or add it to the comments array. + * @param string $name * - * @param Comment\Doc $docComment Doc comment to set + * @return bool */ - public function setDocComment(Comment\Doc $docComment) - { - $comments = $this->getComments(); - for ($i = \count($comments) - 1; $i >= 0; $i--) { - if ($comments[$i] instanceof Comment\Doc) { - // Replace existing doc comment. - $comments[$i] = $docComment; - $this->setAttribute('comments', $comments); - return; - } - } - // Append new doc comment. - $comments[] = $docComment; - $this->setAttribute('comments', $comments); - } - public function setAttribute(string $key, $value) + public function hasMethod($name) { - $this->attributes[$key] = $value; + return isset($this->methods[$name]); } - public function hasAttribute(string $key) : bool + /** + * @return list + */ + public function getUnextendableMethods() { - return \array_key_exists($key, $this->attributes); + return $this->unextendableMethods; } - public function getAttribute(string $key, $default = null) + /** + * @param string $unextendableMethod + * + * @return void + */ + public function addUnextendableMethod($unextendableMethod) { - if (\array_key_exists($key, $this->attributes)) { - return $this->attributes[$key]; + if (!$this->isExtendable($unextendableMethod)) { + return; } - return $default; + $this->unextendableMethods[] = $unextendableMethod; } - public function getAttributes() : array + /** + * @param string $method + * + * @return bool + */ + public function isExtendable($method) { - return $this->attributes; + return !in_array($method, $this->unextendableMethods); } - public function setAttributes(array $attributes) + /** + * @return bool + */ + public function isReadOnly() { - $this->attributes = $attributes; + return $this->readOnly; } /** - * @return array + * @param bool $readOnly + * + * @return void */ - public function jsonSerialize() : array + public function setReadOnly($readOnly) { - return ['nodeType' => $this->getType()] + \get_object_vars($this); + $this->readOnly = $readOnly; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\Generator\Node; + +use Prophecy\Exception\InvalidArgumentException; +/** + * Method node. + * + * @author Konstantin Kudryashov + */ +class MethodNode +{ + private $name; + private $code; /** - * Constructs a NodeDumper. - * - * Supported options: - * * bool dumpComments: Whether comments should be dumped. - * * bool dumpPositions: Whether line/offset information should be dumped. To dump offset - * information, the code needs to be passed to dump(). + * @var string * - * @param array $options Options (see description) + * @phpstan-var 'public'|'private'|'protected' */ - public function __construct(array $options = []) + private $visibility = 'public'; + /** + * @var bool + */ + private $static = \false; + /** + * @var bool + */ + private $returnsReference = \false; + /** @var ReturnTypeNode */ + private $returnTypeNode; + /** + * @var list + */ + private $arguments = array(); + // Used to accept an optional third argument with the deprecated Prophecy\Doubler\Generator\TypeHintReference so careful when adding a new argument in a minor version. + /** + * @param string $name + * @param string|null $code + */ + public function __construct($name, $code = null) { - $this->dumpComments = !empty($options['dumpComments']); - $this->dumpPositions = !empty($options['dumpPositions']); + $this->name = $name; + $this->code = $code; + $this->returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode(); } /** - * Dumps a node or array. - * - * @param array|Node $node Node or array to dump - * @param string|null $code Code corresponding to dumped AST. This only needs to be passed if - * the dumpPositions option is enabled and the dumping of node offsets - * is desired. + * @return string * - * @return string Dumped value + * @phpstan-return 'public'|'private'|'protected' */ - public function dump($node, string $code = null) : string + public function getVisibility() { - $this->code = $code; - return $this->dumpRecursive($node); + return $this->visibility; } - protected function dumpRecursive($node) + /** + * @param string $visibility + * + * @return void + */ + public function setVisibility($visibility) { - if ($node instanceof Node) { - $r = $node->getType(); - if ($this->dumpPositions && null !== ($p = $this->dumpPosition($node))) { - $r .= $p; - } - $r .= '('; - foreach ($node->getSubNodeNames() as $key) { - $r .= "\n " . $key . ': '; - $value = $node->{$key}; - if (null === $value) { - $r .= 'null'; - } elseif (\false === $value) { - $r .= 'false'; - } elseif (\true === $value) { - $r .= 'true'; - } elseif (\is_scalar($value)) { - if ('flags' === $key || 'newModifier' === $key) { - $r .= $this->dumpFlags($value); - } elseif ('type' === $key && $node instanceof Include_) { - $r .= $this->dumpIncludeType($value); - } elseif ('type' === $key && ($node instanceof Use_ || $node instanceof UseUse || $node instanceof GroupUse)) { - $r .= $this->dumpUseType($value); - } else { - $r .= $value; - } - } else { - $r .= \str_replace("\n", "\n ", $this->dumpRecursive($value)); - } - } - if ($this->dumpComments && ($comments = $node->getComments())) { - $r .= "\n comments: " . \str_replace("\n", "\n ", $this->dumpRecursive($comments)); - } - } elseif (\is_array($node)) { - $r = 'array('; - foreach ($node as $key => $value) { - $r .= "\n " . $key . ': '; - if (null === $value) { - $r .= 'null'; - } elseif (\false === $value) { - $r .= 'false'; - } elseif (\true === $value) { - $r .= 'true'; - } elseif (\is_scalar($value)) { - $r .= $value; - } else { - $r .= \str_replace("\n", "\n ", $this->dumpRecursive($value)); - } - } - } elseif ($node instanceof Comment) { - return $node->getReformattedText(); - } else { - throw new \InvalidArgumentException('Can only dump nodes and arrays.'); + $visibility = strtolower($visibility); + if (!\in_array($visibility, array('public', 'private', 'protected'), \true)) { + throw new InvalidArgumentException(sprintf('`%s` method visibility is not supported.', $visibility)); } - return $r . "\n)"; + $this->visibility = $visibility; } - protected function dumpFlags($flags) + /** + * @return bool + */ + public function isStatic() { - $strs = []; - if ($flags & Class_::MODIFIER_PUBLIC) { - $strs[] = 'MODIFIER_PUBLIC'; - } - if ($flags & Class_::MODIFIER_PROTECTED) { - $strs[] = 'MODIFIER_PROTECTED'; - } - if ($flags & Class_::MODIFIER_PRIVATE) { - $strs[] = 'MODIFIER_PRIVATE'; - } - if ($flags & Class_::MODIFIER_ABSTRACT) { - $strs[] = 'MODIFIER_ABSTRACT'; - } - if ($flags & Class_::MODIFIER_STATIC) { - $strs[] = 'MODIFIER_STATIC'; - } - if ($flags & Class_::MODIFIER_FINAL) { - $strs[] = 'MODIFIER_FINAL'; - } - if ($flags & Class_::MODIFIER_READONLY) { - $strs[] = 'MODIFIER_READONLY'; - } - if ($strs) { - return \implode(' | ', $strs) . ' (' . $flags . ')'; - } else { - return $flags; - } + return $this->static; } - protected function dumpIncludeType($type) + /** + * @param bool $static + * + * @return void + */ + public function setStatic($static = \true) { - $map = [Include_::TYPE_INCLUDE => 'TYPE_INCLUDE', Include_::TYPE_INCLUDE_ONCE => 'TYPE_INCLUDE_ONCE', Include_::TYPE_REQUIRE => 'TYPE_REQUIRE', Include_::TYPE_REQUIRE_ONCE => 'TYPE_REQUIRE_ONCE']; - if (!isset($map[$type])) { - return $type; - } - return $map[$type] . ' (' . $type . ')'; + $this->static = (bool) $static; } - protected function dumpUseType($type) + /** + * @return bool + */ + public function returnsReference() { - $map = [Use_::TYPE_UNKNOWN => 'TYPE_UNKNOWN', Use_::TYPE_NORMAL => 'TYPE_NORMAL', Use_::TYPE_FUNCTION => 'TYPE_FUNCTION', Use_::TYPE_CONSTANT => 'TYPE_CONSTANT']; - if (!isset($map[$type])) { - return $type; - } - return $map[$type] . ' (' . $type . ')'; + return $this->returnsReference; } /** - * Dump node position, if possible. - * - * @param Node $node Node for which to dump position - * - * @return string|null Dump of position, or null if position information not available + * @return void */ - protected function dumpPosition(Node $node) + public function setReturnsReference() { - if (!$node->hasAttribute('startLine') || !$node->hasAttribute('endLine')) { - return null; - } - $start = $node->getStartLine(); - $end = $node->getEndLine(); - if ($node->hasAttribute('startFilePos') && $node->hasAttribute('endFilePos') && null !== $this->code) { - $start .= ':' . $this->toColumn($this->code, $node->getStartFilePos()); - $end .= ':' . $this->toColumn($this->code, $node->getEndFilePos()); - } - return "[{$start} - {$end}]"; + $this->returnsReference = \true; } - // Copied from Error class - private function toColumn($code, $pos) + /** + * @return string + */ + public function getName() { - if ($pos > \strlen($code)) { - throw new \RuntimeException('Invalid position information'); - } - $lineStartPos = \strrpos($code, "\n", $pos - \strlen($code)); - if (\false === $lineStartPos) { - $lineStartPos = -1; - } - return $pos - $lineStartPos; + return $this->name; } -} -addVisitor($visitor); - $traverser->traverse($nodes); - return $visitor->getFoundNodes(); + $this->arguments[] = $argument; } /** - * Find all nodes that are instances of a certain class. - * - * @param Node|Node[] $nodes Single node or array of nodes to search in - * @param string $class Class name - * - * @return Node[] Found nodes (all instances of $class) + * @return list */ - public function findInstanceOf($nodes, string $class) : array + public function getArguments() { - return $this->find($nodes, function ($node) use($class) { - return $node instanceof $class; - }); + return $this->arguments; } /** - * Find first node satisfying a filter callback. - * - * @param Node|Node[] $nodes Single node or array of nodes to search in - * @param callable $filter Filter callback: function(Node $node) : bool - * - * @return null|Node Found node (or null if none found) + * @deprecated use getReturnTypeNode instead + * @return bool */ - public function findFirst($nodes, callable $filter) + public function hasReturnType() { - if (!\is_array($nodes)) { - $nodes = [$nodes]; - } - $visitor = new FirstFindingVisitor($filter); - $traverser = new NodeTraverser(); - $traverser->addVisitor($visitor); - $traverser->traverse($nodes); - return $visitor->getFoundNode(); + return (bool) $this->returnTypeNode->getNonNullTypes(); + } + public function setReturnTypeNode(\Prophecy\Doubler\Generator\Node\ReturnTypeNode $returnTypeNode): void + { + $this->returnTypeNode = $returnTypeNode; } /** - * Find first node that is an instance of a certain class. - * - * @param Node|Node[] $nodes Single node or array of nodes to search in - * @param string $class Class name + * @deprecated use setReturnTypeNode instead + * @param string $type * - * @return null|Node Found node, which is an instance of $class (or null if none found) + * @return void */ - public function findFirstInstanceOf($nodes, string $class) + public function setReturnType($type = null) { - return $this->findFirst($nodes, function ($node) use($class) { - return $node instanceof $class; - }); + $this->returnTypeNode = $type === '' || $type === null ? new \Prophecy\Doubler\Generator\Node\ReturnTypeNode() : new \Prophecy\Doubler\Generator\Node\ReturnTypeNode($type); } -} -returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode('null', ...$this->returnTypeNode->getTypes()); + } else { + $this->returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode(...$this->returnTypeNode->getNonNullTypes()); + } + } /** - * If NodeVisitor::enterNode() or NodeVisitor::leaveNode() returns - * STOP_TRAVERSAL, traversal is aborted. - * - * The afterTraverse() method will still be invoked. + * @deprecated use getReturnTypeNode instead + * @return string|null */ - const STOP_TRAVERSAL = 2; + public function getReturnType() + { + if ($types = $this->returnTypeNode->getNonNullTypes()) { + return $types[0]; + } + return null; + } + public function getReturnTypeNode(): \Prophecy\Doubler\Generator\Node\ReturnTypeNode + { + return $this->returnTypeNode; + } /** - * If NodeVisitor::leaveNode() returns REMOVE_NODE for a node that occurs - * in an array, it will be removed from the array. - * - * For subsequent visitors leaveNode() will still be invoked for the - * removed node. + * @deprecated use getReturnTypeNode instead + * @return bool */ - const REMOVE_NODE = 3; + public function hasNullableReturnType() + { + return $this->returnTypeNode->canUseNullShorthand(); + } /** - * If NodeVisitor::enterNode() returns DONT_TRAVERSE_CURRENT_AND_CHILDREN, child nodes - * of the current node will not be traversed for any visitors. + * @param string $code * - * For subsequent visitors enterNode() will not be called as well. - * leaveNode() will be invoked for visitors that has enterNode() method invoked. + * @return void */ - const DONT_TRAVERSE_CURRENT_AND_CHILDREN = 4; - /** @var NodeVisitor[] Visitors */ - protected $visitors = []; - /** @var bool Whether traversal should be stopped */ - protected $stopTraversal; - public function __construct() + public function setCode($code) { - // for BC + $this->code = $code; } /** - * Adds a visitor. - * - * @param NodeVisitor $visitor Visitor to add + * @return string */ - public function addVisitor(NodeVisitor $visitor) + public function getCode() { - $this->visitors[] = $visitor; + if ($this->returnsReference) { + return "throw new \\Prophecy\\Exception\\Doubler\\ReturnByReferenceException('Returning by reference not supported', get_class(\$this), '{$this->name}');"; + } + return (string) $this->code; } /** - * Removes an added visitor. - * - * @param NodeVisitor $visitor + * @return void */ - public function removeVisitor(NodeVisitor $visitor) + public function useParentCode() { - foreach ($this->visitors as $index => $storedVisitor) { - if ($storedVisitor === $visitor) { - unset($this->visitors[$index]); - break; - } - } + $this->code = sprintf('return parent::%s(%s);', $this->getName(), implode(', ', array_map(array($this, 'generateArgument'), $this->arguments))); } /** - * Traverses an array of nodes using the registered visitors. - * - * @param Node[] $nodes Array of nodes - * - * @return Node[] Traversed array of nodes + * @return string */ - public function traverse(array $nodes) : array + private function generateArgument(\Prophecy\Doubler\Generator\Node\ArgumentNode $arg) { - $this->stopTraversal = \false; - foreach ($this->visitors as $visitor) { - if (null !== ($return = $visitor->beforeTraverse($nodes))) { - $nodes = $return; - } + $argument = '$' . $arg->getName(); + if ($arg->isVariadic()) { + $argument = '...' . $argument; } - $nodes = $this->traverseArray($nodes); - foreach ($this->visitors as $visitor) { - if (null !== ($return = $visitor->afterTraverse($nodes))) { - $nodes = $return; - } + return $argument; + } +} +types['void']) && count($this->types) !== 1) { + throw new DoubleException('void cannot be part of a union'); + } + if (isset($this->types['never']) && count($this->types) !== 1) { + throw new DoubleException('never cannot be part of a union'); + } + parent::guardIsValidType(); } /** - * Recursively traverse a node. - * - * @param Node $node Node to traverse. + * @deprecated use hasReturnStatement * - * @return Node Result of traversal (may be original node or new one) + * @return bool */ - protected function traverseNode(Node $node) : Node + public function isVoid() { - foreach ($node->getSubNodeNames() as $name) { - $subNode =& $node->{$name}; - if (\is_array($subNode)) { - $subNode = $this->traverseArray($subNode); - if ($this->stopTraversal) { - break; - } - } elseif ($subNode instanceof Node) { - $traverseChildren = \true; - $breakVisitorIndex = null; - foreach ($this->visitors as $visitorIndex => $visitor) { - $return = $visitor->enterNode($subNode); - if (null !== $return) { - if ($return instanceof Node) { - $this->ensureReplacementReasonable($subNode, $return); - $subNode = $return; - } elseif (self::DONT_TRAVERSE_CHILDREN === $return) { - $traverseChildren = \false; - } elseif (self::DONT_TRAVERSE_CURRENT_AND_CHILDREN === $return) { - $traverseChildren = \false; - $breakVisitorIndex = $visitorIndex; - break; - } elseif (self::STOP_TRAVERSAL === $return) { - $this->stopTraversal = \true; - break 2; - } else { - throw new \LogicException('enterNode() returned invalid value of type ' . \gettype($return)); - } - } - } - if ($traverseChildren) { - $subNode = $this->traverseNode($subNode); - if ($this->stopTraversal) { - break; - } - } - foreach ($this->visitors as $visitorIndex => $visitor) { - $return = $visitor->leaveNode($subNode); - if (null !== $return) { - if ($return instanceof Node) { - $this->ensureReplacementReasonable($subNode, $return); - $subNode = $return; - } elseif (self::STOP_TRAVERSAL === $return) { - $this->stopTraversal = \true; - break 2; - } elseif (\is_array($return)) { - throw new \LogicException('leaveNode() may only return an array ' . 'if the parent structure is an array'); - } else { - throw new \LogicException('leaveNode() returned invalid value of type ' . \gettype($return)); - } - } - if ($breakVisitorIndex === $visitorIndex) { - break; - } - } - } + return $this->types == ['void' => 'void']; + } + public function hasReturnStatement(): bool + { + return $this->types !== ['void' => 'void'] && $this->types !== ['never' => 'never']; + } +} + */ + protected $types = []; + public function __construct(string ...$types) + { + foreach ($types as $type) { + $type = $this->getRealType($type); + $this->types[$type] = $type; } - return $node; + $this->guardIsValidType(); + } + public function canUseNullShorthand(): bool + { + return isset($this->types['null']) && count($this->types) === 2; } /** - * Recursively traverse array (usually of nodes). - * - * @param array $nodes Array to traverse - * - * @return array Result of traversal (may be original array or changed one) + * @return list */ - protected function traverseArray(array $nodes) : array + public function getTypes(): array { - $doNodes = []; - foreach ($nodes as $i => &$node) { - if ($node instanceof Node) { - $traverseChildren = \true; - $breakVisitorIndex = null; - foreach ($this->visitors as $visitorIndex => $visitor) { - $return = $visitor->enterNode($node); - if (null !== $return) { - if ($return instanceof Node) { - $this->ensureReplacementReasonable($node, $return); - $node = $return; - } elseif (self::DONT_TRAVERSE_CHILDREN === $return) { - $traverseChildren = \false; - } elseif (self::DONT_TRAVERSE_CURRENT_AND_CHILDREN === $return) { - $traverseChildren = \false; - $breakVisitorIndex = $visitorIndex; - break; - } elseif (self::STOP_TRAVERSAL === $return) { - $this->stopTraversal = \true; - break 2; - } else { - throw new \LogicException('enterNode() returned invalid value of type ' . \gettype($return)); - } - } - } - if ($traverseChildren) { - $node = $this->traverseNode($node); - if ($this->stopTraversal) { - break; - } - } - foreach ($this->visitors as $visitorIndex => $visitor) { - $return = $visitor->leaveNode($node); - if (null !== $return) { - if ($return instanceof Node) { - $this->ensureReplacementReasonable($node, $return); - $node = $return; - } elseif (\is_array($return)) { - $doNodes[] = [$i, $return]; - break; - } elseif (self::REMOVE_NODE === $return) { - $doNodes[] = [$i, []]; - break; - } elseif (self::STOP_TRAVERSAL === $return) { - $this->stopTraversal = \true; - break 2; - } elseif (\false === $return) { - throw new \LogicException('bool(false) return from leaveNode() no longer supported. ' . 'Return NodeTraverser::REMOVE_NODE instead'); - } else { - throw new \LogicException('leaveNode() returned invalid value of type ' . \gettype($return)); - } - } - if ($breakVisitorIndex === $visitorIndex) { - break; - } - } - } elseif (\is_array($node)) { - throw new \LogicException('Invalid node structure: Contains nested arrays'); - } - } - if (!empty($doNodes)) { - while (list($i, $replace) = \array_pop($doNodes)) { - \array_splice($nodes, $i, 1, $replace); - } + return array_values($this->types); + } + /** + * @return list + */ + public function getNonNullTypes(): array + { + $nonNullTypes = $this->types; + unset($nonNullTypes['null']); + return array_values($nonNullTypes); + } + protected function prefixWithNsSeparator(string $type): string + { + return '\\' . ltrim($type, '\\'); + } + protected function getRealType(string $type): string + { + switch ($type) { + // type aliases + case 'double': + case 'real': + return 'float'; + case 'boolean': + return 'bool'; + case 'integer': + return 'int'; + // built in types + case 'self': + case 'static': + case 'array': + case 'callable': + case 'bool': + case 'false': + case 'true': + case 'float': + case 'int': + case 'string': + case 'iterable': + case 'object': + case 'null': + return $type; + case 'mixed': + return \PHP_VERSION_ID < 80000 ? $this->prefixWithNsSeparator($type) : $type; + default: + return $this->prefixWithNsSeparator($type); } - return $nodes; } - private function ensureReplacementReasonable($old, $new) + /** + * @return void + */ + protected function guardIsValidType() { - if ($old instanceof Node\Stmt && $new instanceof Node\Expr) { - throw new \LogicException("Trying to replace statement ({$old->getType()}) " . "with expression ({$new->getType()}). Are you missing a " . "Stmt_Expression wrapper?"); + if (\PHP_VERSION_ID < 80200) { + if ($this->types == ['null' => 'null']) { + throw new DoubleException('Type cannot be standalone null'); + } + if ($this->types == ['false' => 'false']) { + throw new DoubleException('Type cannot be standalone false'); + } + if ($this->types == ['false' => 'false', 'null' => 'null']) { + throw new DoubleException('Type cannot be nullable false'); + } + if ($this->types == ['true' => 'true']) { + throw new DoubleException('Type cannot be standalone true'); + } + if ($this->types == ['true' => 'true', 'null' => 'null']) { + throw new DoubleException('Type cannot be nullable true'); + } } - if ($old instanceof Node\Expr && $new instanceof Node\Stmt) { - throw new \LogicException("Trying to replace expression ({$old->getType()}) " . "with statement ({$new->getType()})"); + if (\PHP_VERSION_ID >= 80000 && isset($this->types['mixed']) && count($this->types) !== 1) { + throw new DoubleException('mixed cannot be part of a union'); } } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler; -interface NodeTraverserInterface +use ReflectionClass; +/** + * Cached class doubler. + * Prevents mirroring/creation of the same structure twice. + * + * @author Konstantin Kudryashov + */ +class CachedDoubler extends \Prophecy\Doubler\Doubler { /** - * Adds a visitor. - * - * @param NodeVisitor $visitor Visitor to add + * @var array */ - public function addVisitor(NodeVisitor $visitor); + private static $classes = array(); + protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) + { + $classId = $this->generateClassId($class, $interfaces); + if (isset(self::$classes[$classId])) { + return self::$classes[$classId]; + } + return self::$classes[$classId] = parent::createDoubleClass($class, $interfaces); + } /** - * Removes an added visitor. + * @param ReflectionClass|null $class + * @param ReflectionClass[] $interfaces * - * @param NodeVisitor $visitor + * @return string */ - public function removeVisitor(NodeVisitor $visitor); + private function generateClassId(ReflectionClass $class = null, array $interfaces) + { + $parts = array(); + if (null !== $class) { + $parts[] = $class->getName(); + } + foreach ($interfaces as $interface) { + $parts[] = $interface->getName(); + } + foreach ($this->getClassPatches() as $patch) { + $parts[] = get_class($patch); + } + sort($parts); + return md5(implode('', $parts)); + } /** - * Traverses an array of nodes using the registered visitors. - * - * @param Node[] $nodes Array of nodes - * - * @return Node[] Traversed array of nodes + * @return void */ - public function traverse(array $nodes) : array; + public function resetCache() + { + self::$classes = array(); + } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -interface NodeVisitor +use Prophecy\Doubler\Generator\Node\ClassNode; +use Prophecy\Doubler\Generator\Node\MethodNode; +use Prophecy\Doubler\Generator\Node\ReturnTypeNode; +/** + * Traversable interface patch. + * Forces classes that implement interfaces, that extend Traversable to also implement Iterator. + * + * @author Konstantin Kudryashov + */ +class TraversablePatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { /** - * Called once before traversal. - * - * Return value semantics: - * * null: $nodes stays as-is - * * otherwise: $nodes is set to the return value - * - * @param Node[] $nodes Array of nodes - * - * @return null|Node[] Array of nodes - */ - public function beforeTraverse(array $nodes); - /** - * Called when entering a node. - * - * Return value semantics: - * * null - * => $node stays as-is - * * NodeTraverser::DONT_TRAVERSE_CHILDREN - * => Children of $node are not traversed. $node stays as-is - * * NodeTraverser::STOP_TRAVERSAL - * => Traversal is aborted. $node stays as-is - * * otherwise - * => $node is set to the return value + * Supports nodetree, that implement Traversable, but not Iterator or IteratorAggregate. * - * @param Node $node Node + * @param ClassNode $node * - * @return null|int|Node Replacement node (or special return value) + * @return bool */ - public function enterNode(Node $node); + public function supports(ClassNode $node) + { + if (in_array('Iterator', $node->getInterfaces())) { + return \false; + } + if (in_array('IteratorAggregate', $node->getInterfaces())) { + return \false; + } + foreach ($node->getInterfaces() as $interface) { + if ('Traversable' !== $interface && !is_subclass_of($interface, 'Traversable')) { + continue; + } + if ('Iterator' === $interface || is_subclass_of($interface, 'Iterator')) { + continue; + } + if ('IteratorAggregate' === $interface || is_subclass_of($interface, 'IteratorAggregate')) { + continue; + } + return \true; + } + return \false; + } /** - * Called when leaving a node. - * - * Return value semantics: - * * null - * => $node stays as-is - * * NodeTraverser::REMOVE_NODE - * => $node is removed from the parent array - * * NodeTraverser::STOP_TRAVERSAL - * => Traversal is aborted. $node stays as-is - * * array (of Nodes) - * => The return value is merged into the parent array (at the position of the $node) - * * otherwise - * => $node is set to the return value - * - * @param Node $node Node + * Forces class to implement Iterator interface. * - * @return null|int|Node|Node[] Replacement node (or special return value) + * @param ClassNode $node */ - public function leaveNode(Node $node); + public function apply(ClassNode $node) + { + $node->addInterface('Iterator'); + $currentMethod = new MethodNode('current'); + \PHP_VERSION_ID >= 80100 && $currentMethod->setReturnTypeNode(new ReturnTypeNode('mixed')); + $node->addMethod($currentMethod); + $keyMethod = new MethodNode('key'); + \PHP_VERSION_ID >= 80100 && $keyMethod->setReturnTypeNode(new ReturnTypeNode('mixed')); + $node->addMethod($keyMethod); + $nextMethod = new MethodNode('next'); + \PHP_VERSION_ID >= 80100 && $nextMethod->setReturnTypeNode(new ReturnTypeNode('void')); + $node->addMethod($nextMethod); + $rewindMethod = new MethodNode('rewind'); + \PHP_VERSION_ID >= 80100 && $rewindMethod->setReturnTypeNode(new ReturnTypeNode('void')); + $node->addMethod($rewindMethod); + $validMethod = new MethodNode('valid'); + \PHP_VERSION_ID >= 80100 && $validMethod->setReturnTypeNode(new ReturnTypeNode('bool')); + $node->addMethod($validMethod); + } /** - * Called once after traversal. - * - * Return value semantics: - * * null: $nodes stays as-is - * * otherwise: $nodes is set to the return value - * - * @param Node[] $nodes Array of nodes + * Returns patch priority, which determines when patch will be applied. * - * @return null|Node[] Array of nodes + * @return int Priority number (higher - earlier) */ - public function afterTraverse(array $nodes); + public function getPriority() + { + return 100; + } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\NodeVisitorAbstract; +use Prophecy\Doubler\Generator\Node\ClassNode; /** - * Visitor cloning all nodes and linking to the original nodes using an attribute. + * Remove method functionality from the double which will clash with php keywords. * - * This visitor is required to perform format-preserving pretty prints. + * @author Milan Magudia */ -class CloningVisitor extends NodeVisitorAbstract +class KeywordPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { - public function enterNode(Node $origNode) + /** + * Support any class + * + * @param ClassNode $node + * + * @return boolean + */ + public function supports(ClassNode $node) { - $node = clone $origNode; - $node->setAttribute('origNode', $origNode); - return $node; + return \true; + } + /** + * Remove methods that clash with php keywords + * + * @param ClassNode $node + */ + public function apply(ClassNode $node) + { + $methodNames = array_keys($node->getMethods()); + $methodsToRemove = array_intersect($methodNames, $this->getKeywords()); + foreach ($methodsToRemove as $methodName) { + $node->removeMethod($methodName); + } + } + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher - earlier) + */ + public function getPriority() + { + return 49; + } + /** + * Returns array of php keywords. + * + * @return list + */ + private function getKeywords() + { + return ['__halt_compiler']; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\NodeVisitorAbstract; +use Prophecy\Doubler\Generator\Node\ClassNode; /** - * This visitor can be used to find and collect all nodes satisfying some criterion determined by - * a filter callback. + * Class patch interface. + * Class patches extend doubles functionality or help + * Prophecy to avoid some internal PHP bugs. + * + * @author Konstantin Kudryashov */ -class FindingVisitor extends NodeVisitorAbstract +interface ClassPatchInterface { - /** @var callable Filter callback */ - protected $filterCallback; - /** @var Node[] Found nodes */ - protected $foundNodes; - public function __construct(callable $filterCallback) - { - $this->filterCallback = $filterCallback; - } /** - * Get found nodes satisfying the filter callback. + * Checks if patch supports specific class node. * - * Nodes are returned in pre-order. + * @param ClassNode $node * - * @return Node[] Found nodes + * @return bool */ - public function getFoundNodes() : array - { - return $this->foundNodes; - } - public function beforeTraverse(array $nodes) - { - $this->foundNodes = []; - return null; - } - public function enterNode(Node $node) - { - $filterCallback = $this->filterCallback; - if ($filterCallback($node)) { - $this->foundNodes[] = $node; - } - return null; - } + public function supports(ClassNode $node); + /** + * Applies patch to the specific class node. + * + * @param ClassNode $node + * @return void + */ + public function apply(ClassNode $node); + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher - earlier) + */ + public function getPriority(); } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\NodeTraverser; -use PHPUnit\PhpParser\NodeVisitorAbstract; +use Prophecy\Doubler\Generator\Node\ClassNode; /** - * This visitor can be used to find the first node satisfying some criterion determined by - * a filter callback. + * ReflectionClass::newInstance patch. + * Makes first argument of newInstance optional, since it works but signature is misleading + * + * @author Florian Klein */ -class FirstFindingVisitor extends NodeVisitorAbstract +class ReflectionClassNewInstancePatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { - /** @var callable Filter callback */ - protected $filterCallback; - /** @var null|Node Found node */ - protected $foundNode; - public function __construct(callable $filterCallback) - { - $this->filterCallback = $filterCallback; - } /** - * Get found node satisfying the filter callback. + * Supports ReflectionClass * - * Returns null if no node satisfies the filter callback. + * @param ClassNode $node * - * @return null|Node Found node (or null if not found) + * @return bool */ - public function getFoundNode() + public function supports(ClassNode $node) { - return $this->foundNode; + return 'ReflectionClass' === $node->getParentClass(); } - public function beforeTraverse(array $nodes) + /** + * Updates newInstance's first argument to make it optional + * + * @param ClassNode $node + */ + public function apply(ClassNode $node) { - $this->foundNode = null; - return null; + $method = $node->getMethod('newInstance'); + \assert($method !== null); + foreach ($method->getArguments() as $argument) { + $argument->setDefault(null); + } } - public function enterNode(Node $node) + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher = earlier) + */ + public function getPriority() { - $filterCallback = $this->filterCallback; - if ($filterCallback($node)) { - $this->foundNode = $node; - return NodeTraverser::STOP_TRAVERSAL; - } - return null; + return 50; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use PHPUnit\PhpParser\ErrorHandler; -use PHPUnit\PhpParser\NameContext; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Name\FullyQualified; -use PHPUnit\PhpParser\Node\Stmt; -use PHPUnit\PhpParser\NodeVisitorAbstract; -class NameResolver extends NodeVisitorAbstract +use Prophecy\Doubler\Generator\Node\ClassNode; +use Prophecy\Doubler\Generator\Node\MethodNode; +/** + * SplFileInfo patch. + * Makes SplFileInfo and derivative classes usable with Prophecy. + * + * @author Konstantin Kudryashov + */ +class SplFileInfoPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { - /** @var NameContext Naming context */ - protected $nameContext; - /** @var bool Whether to preserve original names */ - protected $preserveOriginalNames; - /** @var bool Whether to replace resolved nodes in place, or to add resolvedNode attributes */ - protected $replaceNodes; /** - * Constructs a name resolution visitor. + * Supports everything that extends SplFileInfo. * - * Options: - * * preserveOriginalNames (default false): An "originalName" attribute will be added to - * all name nodes that underwent resolution. - * * replaceNodes (default true): Resolved names are replaced in-place. Otherwise, a - * resolvedName attribute is added. (Names that cannot be statically resolved receive a - * namespacedName attribute, as usual.) + * @param ClassNode $node * - * @param ErrorHandler|null $errorHandler Error handler - * @param array $options Options + * @return bool */ - public function __construct(ErrorHandler $errorHandler = null, array $options = []) + public function supports(ClassNode $node) { - $this->nameContext = new NameContext($errorHandler ?? new ErrorHandler\Throwing()); - $this->preserveOriginalNames = $options['preserveOriginalNames'] ?? \false; - $this->replaceNodes = $options['replaceNodes'] ?? \true; + return 'SplFileInfo' === $node->getParentClass() || is_subclass_of($node->getParentClass(), 'SplFileInfo'); } /** - * Get name resolution context. + * Updated constructor code to call parent one with dummy file argument. * - * @return NameContext + * @param ClassNode $node */ - public function getNameContext() : NameContext + public function apply(ClassNode $node) { - return $this->nameContext; + if ($node->hasMethod('__construct')) { + $constructor = $node->getMethod('__construct'); + \assert($constructor !== null); + } else { + $constructor = new MethodNode('__construct'); + $node->addMethod($constructor); + } + if ($this->nodeIsDirectoryIterator($node)) { + $constructor->setCode('return parent::__construct("' . __DIR__ . '");'); + return; + } + if ($this->nodeIsSplFileObject($node)) { + $filePath = str_replace('\\', '\\\\', __FILE__); + $constructor->setCode('return parent::__construct("' . $filePath . '");'); + return; + } + if ($this->nodeIsSymfonySplFileInfo($node)) { + $filePath = str_replace('\\', '\\\\', __FILE__); + $constructor->setCode('return parent::__construct("' . $filePath . '", "", "");'); + return; + } + $constructor->useParentCode(); } - public function beforeTraverse(array $nodes) + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher - earlier) + */ + public function getPriority() { - $this->nameContext->startNamespace(); - return null; + return 50; } - public function enterNode(Node $node) + /** + * @param ClassNode $node + * @return boolean + */ + private function nodeIsDirectoryIterator(ClassNode $node) { - if ($node instanceof Stmt\Namespace_) { - $this->nameContext->startNamespace($node->name); - } elseif ($node instanceof Stmt\Use_) { - foreach ($node->uses as $use) { - $this->addAlias($use, $node->type, null); - } - } elseif ($node instanceof Stmt\GroupUse) { - foreach ($node->uses as $use) { - $this->addAlias($use, $node->type, $node->prefix); - } - } elseif ($node instanceof Stmt\Class_) { - if (null !== $node->extends) { - $node->extends = $this->resolveClassName($node->extends); - } - foreach ($node->implements as &$interface) { - $interface = $this->resolveClassName($interface); - } - $this->resolveAttrGroups($node); - if (null !== $node->name) { - $this->addNamespacedName($node); - } - } elseif ($node instanceof Stmt\Interface_) { - foreach ($node->extends as &$interface) { - $interface = $this->resolveClassName($interface); - } - $this->resolveAttrGroups($node); - $this->addNamespacedName($node); - } elseif ($node instanceof Stmt\Enum_) { - foreach ($node->implements as &$interface) { - $interface = $this->resolveClassName($interface); - } - $this->resolveAttrGroups($node); - if (null !== $node->name) { - $this->addNamespacedName($node); - } - } elseif ($node instanceof Stmt\Trait_) { - $this->resolveAttrGroups($node); - $this->addNamespacedName($node); - } elseif ($node instanceof Stmt\Function_) { - $this->resolveSignature($node); - $this->resolveAttrGroups($node); - $this->addNamespacedName($node); - } elseif ($node instanceof Stmt\ClassMethod || $node instanceof Expr\Closure || $node instanceof Expr\ArrowFunction) { - $this->resolveSignature($node); - $this->resolveAttrGroups($node); - } elseif ($node instanceof Stmt\Property) { - if (null !== $node->type) { - $node->type = $this->resolveType($node->type); - } - $this->resolveAttrGroups($node); - } elseif ($node instanceof Stmt\Const_) { - foreach ($node->consts as $const) { - $this->addNamespacedName($const); - } - } else { - if ($node instanceof Stmt\ClassConst) { - $this->resolveAttrGroups($node); - } else { - if ($node instanceof Stmt\EnumCase) { - $this->resolveAttrGroups($node); - } elseif ($node instanceof Expr\StaticCall || $node instanceof Expr\StaticPropertyFetch || $node instanceof Expr\ClassConstFetch || $node instanceof Expr\New_ || $node instanceof Expr\Instanceof_) { - if ($node->class instanceof Name) { - $node->class = $this->resolveClassName($node->class); - } - } elseif ($node instanceof Stmt\Catch_) { - foreach ($node->types as &$type) { - $type = $this->resolveClassName($type); - } - } elseif ($node instanceof Expr\FuncCall) { - if ($node->name instanceof Name) { - $node->name = $this->resolveName($node->name, Stmt\Use_::TYPE_FUNCTION); - } - } elseif ($node instanceof Expr\ConstFetch) { - $node->name = $this->resolveName($node->name, Stmt\Use_::TYPE_CONSTANT); - } elseif ($node instanceof Stmt\TraitUse) { - foreach ($node->traits as &$trait) { - $trait = $this->resolveClassName($trait); - } - foreach ($node->adaptations as $adaptation) { - if (null !== $adaptation->trait) { - $adaptation->trait = $this->resolveClassName($adaptation->trait); - } - if ($adaptation instanceof Stmt\TraitUseAdaptation\Precedence) { - foreach ($adaptation->insteadof as &$insteadof) { - $insteadof = $this->resolveClassName($insteadof); - } - } - } - } - } - } - return null; + $parent = $node->getParentClass(); + return 'DirectoryIterator' === $parent || is_subclass_of($parent, 'DirectoryIterator'); } - private function addAlias(Stmt\UseUse $use, $type, Name $prefix = null) + /** + * @param ClassNode $node + * @return boolean + */ + private function nodeIsSplFileObject(ClassNode $node) { - // Add prefix for group uses - $name = $prefix ? Name::concat($prefix, $use->name) : $use->name; - // Type is determined either by individual element or whole use declaration - $type |= $use->type; - $this->nameContext->addAlias($name, (string) $use->getAlias(), $type, $use->getAttributes()); + $parent = $node->getParentClass(); + return 'SplFileObject' === $parent || is_subclass_of($parent, 'SplFileObject'); } - /** @param Stmt\Function_|Stmt\ClassMethod|Expr\Closure $node */ - private function resolveSignature($node) + /** + * @param ClassNode $node + * @return boolean + */ + private function nodeIsSymfonySplFileInfo(ClassNode $node) { - foreach ($node->params as $param) { - $param->type = $this->resolveType($param->type); - $this->resolveAttrGroups($param); - } - $node->returnType = $this->resolveType($node->returnType); + $parent = $node->getParentClass(); + return 'Symfony\Component\Finder\SplFileInfo' === $parent; } - private function resolveType($node) +} +resolveClassName($node); - } - if ($node instanceof Node\NullableType) { - $node->type = $this->resolveType($node->type); - return $node; - } - if ($node instanceof Node\UnionType || $node instanceof Node\IntersectionType) { - foreach ($node->types as &$type) { - $type = $this->resolveType($type); + return $this->implementsAThrowableInterface($node) && $this->doesNotExtendAThrowableClass($node); + } + /** + * @param ClassNode $node + * @return bool + */ + private function implementsAThrowableInterface(ClassNode $node) + { + foreach ($node->getInterfaces() as $type) { + if (is_a($type, 'Throwable', \true)) { + return \true; } - return $node; } - return $node; + return \false; } /** - * Resolve name, according to name resolver options. + * @param ClassNode $node + * @return bool + */ + private function doesNotExtendAThrowableClass(ClassNode $node) + { + return !is_a($node->getParentClass(), 'Throwable', \true); + } + /** + * Applies patch to the specific class node. * - * @param Name $name Function or constant name to resolve - * @param int $type One of Stmt\Use_::TYPE_* + * @param ClassNode $node * - * @return Name Resolved name, or original name with attribute + * @return void */ - protected function resolveName(Name $name, int $type) : Name + public function apply(ClassNode $node) { - if (!$this->replaceNodes) { - $resolvedName = $this->nameContext->getResolvedName($name, $type); - if (null !== $resolvedName) { - $name->setAttribute('resolvedName', $resolvedName); - } else { - $name->setAttribute('namespacedName', FullyQualified::concat($this->nameContext->getNamespace(), $name, $name->getAttributes())); - } - return $name; - } - if ($this->preserveOriginalNames) { - // Save the original name - $originalName = $name; - $name = clone $originalName; - $name->setAttribute('originalName', $originalName); - } - $resolvedName = $this->nameContext->getResolvedName($name, $type); - if (null !== $resolvedName) { - return $resolvedName; - } - // unqualified names inside a namespace cannot be resolved at compile-time - // add the namespaced version of the name as an attribute - $name->setAttribute('namespacedName', FullyQualified::concat($this->nameContext->getNamespace(), $name, $name->getAttributes())); - return $name; + $this->checkItCanBeDoubled($node); + $this->setParentClassToException($node); } - protected function resolveClassName(Name $name) + private function checkItCanBeDoubled(ClassNode $node): void { - return $this->resolveName($name, Stmt\Use_::TYPE_NORMAL); + $className = $node->getParentClass(); + if ($className !== 'stdClass') { + throw new ClassCreatorException(sprintf('Cannot double concrete class %s as well as implement Traversable', $className), $node); + } } - protected function addNamespacedName(Node $node) + private function setParentClassToException(ClassNode $node): void { - $node->namespacedName = Name::concat($this->nameContext->getNamespace(), (string) $node->name); + $node->setParentClass('Exception'); + $node->removeMethod('getMessage'); + $node->removeMethod('getCode'); + $node->removeMethod('getFile'); + $node->removeMethod('getLine'); + $node->removeMethod('getTrace'); + $node->removeMethod('getPrevious'); + $node->removeMethod('getNext'); + $node->removeMethod('getTraceAsString'); } - protected function resolveAttrGroups(Node $node) + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher - earlier) + */ + public function getPriority() { - foreach ($node->attrGroups as $attrGroup) { - foreach ($attrGroup->attrs as $attr) { - $attr->name = $this->resolveClassName($attr->name); - } - } + return 100; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\NodeVisitorAbstract; +use Prophecy\Doubler\Generator\Node\ArgumentTypeNode; +use Prophecy\Doubler\Generator\Node\ClassNode; +use Prophecy\Doubler\Generator\Node\MethodNode; +use Prophecy\Doubler\Generator\Node\ArgumentNode; +use Prophecy\Doubler\Generator\Node\ReturnTypeNode; /** - * Visitor that connects a child node to its parent node - * as well as its sibling nodes. + * Add Prophecy functionality to the double. + * This is a core class patch for Prophecy. * - * On the child node, the parent node can be accessed through - * $node->getAttribute('parent'), the previous - * node can be accessed through $node->getAttribute('previous'), - * and the next node can be accessed through $node->getAttribute('next'). + * @author Konstantin Kudryashov */ -final class NodeConnectingVisitor extends NodeVisitorAbstract +class ProphecySubjectPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { /** - * @var Node[] - */ - private $stack = []; - /** - * @var ?Node + * Always returns true. + * + * @param ClassNode $node + * + * @return bool */ - private $previous; - public function beforeTraverse(array $nodes) + public function supports(ClassNode $node) { - $this->stack = []; - $this->previous = null; + return \true; } - public function enterNode(Node $node) + /** + * Apply Prophecy functionality to class node. + * + * @param ClassNode $node + */ + public function apply(ClassNode $node) { - if (!empty($this->stack)) { - $node->setAttribute('parent', $this->stack[\count($this->stack) - 1]); + $node->addInterface('Prophecy\Prophecy\ProphecySubjectInterface'); + $node->addProperty('objectProphecyClosure', 'private'); + foreach ($node->getMethods() as $name => $method) { + if ('__construct' === strtolower($name)) { + continue; + } + if (!$method->getReturnTypeNode()->hasReturnStatement()) { + $method->setCode('$this->getProphecy()->makeProphecyMethodCall(__FUNCTION__, func_get_args());'); + } else { + $method->setCode('return $this->getProphecy()->makeProphecyMethodCall(__FUNCTION__, func_get_args());'); + } } - if ($this->previous !== null && $this->previous->getAttribute('parent') === $node->getAttribute('parent')) { - $node->setAttribute('previous', $this->previous); - $this->previous->setAttribute('next', $node); + $prophecySetter = new MethodNode('setProphecy'); + $prophecyArgument = new ArgumentNode('prophecy'); + $prophecyArgument->setTypeNode(new ArgumentTypeNode('Prophecy\Prophecy\ProphecyInterface')); + $prophecySetter->addArgument($prophecyArgument); + $prophecySetter->setCode(<<objectProphecyClosure) { + \$this->objectProphecyClosure = static function () use (\$prophecy) { + return \$prophecy; + }; +} +PHP +); + $prophecyGetter = new MethodNode('getProphecy'); + $prophecyGetter->setCode('return \call_user_func($this->objectProphecyClosure);'); + if ($node->hasMethod('__call')) { + $__call = $node->getMethod('__call'); + \assert($__call !== null); + } else { + $__call = new MethodNode('__call'); + $__call->addArgument(new ArgumentNode('name')); + $__call->addArgument(new ArgumentNode('arguments')); + $node->addMethod($__call, \true); } - $this->stack[] = $node; + $__call->setCode(<<addMethod($prophecySetter, \true); + $node->addMethod($prophecyGetter, \true); } - public function leaveNode(Node $node) + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return int Priority number (higher - earlier) + */ + public function getPriority() { - $this->previous = $node; - \array_pop($this->stack); + return 0; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; -use function array_pop; -use function count; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\NodeVisitorAbstract; +use Prophecy\Doubler\Generator\Node\ClassNode; +use Prophecy\Doubler\Generator\Node\MethodNode; /** - * Visitor that connects a child node to its parent node. + * Disable constructor. + * Makes all constructor arguments optional. * - * On the child node, the parent node can be accessed through - * $node->getAttribute('parent'). + * @author Konstantin Kudryashov */ -final class ParentConnectingVisitor extends NodeVisitorAbstract +class DisableConstructorPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { /** - * @var Node[] + * Checks if class has `__construct` method. + * + * @param ClassNode $node + * + * @return bool */ - private $stack = []; - public function beforeTraverse(array $nodes) + public function supports(ClassNode $node) { - $this->stack = []; + return \true; } - public function enterNode(Node $node) + /** + * Makes all class constructor arguments optional. + * + * @param ClassNode $node + */ + public function apply(ClassNode $node) { - if (!empty($this->stack)) { - $node->setAttribute('parent', $this->stack[count($this->stack) - 1]); + if (!$node->isExtendable('__construct')) { + return; } - $this->stack[] = $node; + if (!$node->hasMethod('__construct')) { + $node->addMethod(new MethodNode('__construct', '')); + return; + } + $constructor = $node->getMethod('__construct'); + \assert($constructor !== null); + foreach ($constructor->getArguments() as $argument) { + $argument->setDefault(null); + } + $constructor->setCode(<<stack); + return 100; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Doubler\ClassPatch; +use Prophecy\Doubler\Generator\Node\ArgumentNode; +use Prophecy\Doubler\Generator\Node\ClassNode; +use Prophecy\Doubler\Generator\Node\MethodNode; +use Prophecy\PhpDocumentor\ClassAndInterfaceTagRetriever; +use Prophecy\PhpDocumentor\MethodTagRetrieverInterface; /** - * @codeCoverageIgnore + * Discover Magical API using "@method" PHPDoc format. + * + * @author Thomas Tourlourat + * @author Kévin Dunglas + * @author Théo FIDRY */ -class NodeVisitorAbstract implements NodeVisitor +class MagicCallPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface { - public function beforeTraverse(array $nodes) + const MAGIC_METHODS_WITH_ARGUMENTS = ['__call', '__callStatic', '__get', '__isset', '__set', '__set_state', '__unserialize', '__unset']; + private $tagRetriever; + public function __construct(MethodTagRetrieverInterface $tagRetriever = null) { - return null; + $this->tagRetriever = null === $tagRetriever ? new ClassAndInterfaceTagRetriever() : $tagRetriever; } - public function enterNode(Node $node) + /** + * Support any class + * + * @param ClassNode $node + * + * @return boolean + */ + public function supports(ClassNode $node) { - return null; + return \true; } - public function leaveNode(Node $node) + /** + * Discover Magical API + * + * @param ClassNode $node + */ + public function apply(ClassNode $node) { - return null; + $types = array_filter($node->getInterfaces(), function ($interface) { + return 0 !== strpos($interface, 'Prophecy\\'); + }); + $types[] = $node->getParentClass(); + foreach ($types as $type) { + $reflectionClass = new \ReflectionClass($type); + while ($reflectionClass) { + $tagList = $this->tagRetriever->getTagList($reflectionClass); + foreach ($tagList as $tag) { + $methodName = $tag->getMethodName(); + if (empty($methodName)) { + continue; + } + if (!$reflectionClass->hasMethod($methodName)) { + $methodNode = new MethodNode($methodName); + // only magic methods can have a contract that needs to be enforced + if (in_array($methodName, self::MAGIC_METHODS_WITH_ARGUMENTS)) { + foreach ($tag->getArguments() as $argument) { + $argumentNode = new ArgumentNode($argument['name']); + $methodNode->addArgument($argumentNode); + } + } + $methodNode->setStatic($tag->isStatic()); + $node->addMethod($methodNode); + } + } + $reflectionClass = $reflectionClass->getParentClass(); + } + } } - public function afterTraverse(array $nodes) + /** + * Returns patch priority, which determines when patch will be applied. + * + * @return integer Priority number (higher - earlier) + */ + public function getPriority() { - return null; + return 50; } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Util; -interface Parser +use Prophecy\Call\Call; +/** + * String utility. + * + * @author Konstantin Kudryashov + */ +class StringUtil { + private $verbose; /** - * Parses PHP code into a node tree. - * - * @param string $code The source code to parse - * @param ErrorHandler|null $errorHandler Error handler to use for lexer/parser errors, defaults - * to ErrorHandler\Throwing. + * @param bool $verbose + */ + public function __construct($verbose = \true) + { + $this->verbose = $verbose; + } + /** + * Stringifies any provided value. * - * @return Node\Stmt[]|null Array of statements (or null non-throwing error handler is used and - * the parser was unable to recover from an error). + * @param mixed $value + * @param boolean $exportObject + * + * @return string + */ + public function stringify($value, $exportObject = \true) + { + if (\is_array($value)) { + if (range(0, count($value) - 1) === array_keys($value)) { + return '[' . implode(', ', array_map(array($this, __FUNCTION__), $value)) . ']'; + } + $stringify = array($this, __FUNCTION__); + return '[' . implode(', ', array_map(function ($item, $key) use ($stringify) { + return (is_integer($key) ? $key : '"' . $key . '"') . ' => ' . call_user_func($stringify, $item); + }, $value, array_keys($value))) . ']'; + } + if (\is_resource($value)) { + return get_resource_type($value) . ':' . $value; + } + if (\is_object($value)) { + return $exportObject ? \Prophecy\Util\ExportUtil::export($value) : sprintf('%s#%s', get_class($value), spl_object_id($value)); + } + if (\is_bool($value)) { + return $value ? 'true' : 'false'; + } + if (\is_string($value)) { + $str = sprintf('"%s"', str_replace("\n", '\n', $value)); + if (!$this->verbose && 50 <= strlen($str)) { + return substr($str, 0, 50) . '"...'; + } + return $str; + } + if (null === $value) { + return 'null'; + } + \assert(\is_int($value) || \is_float($value)); + return (string) $value; + } + /** + * Stringifies provided array of calls. + * + * @param Call[] $calls Array of Call instances + * + * @return string */ - public function parse(string $code, ErrorHandler $errorHandler = null); + public function stringifyCalls(array $calls) + { + $self = $this; + return implode(\PHP_EOL, array_map(function (Call $call) use ($self) { + return sprintf(' - %s(%s) @ %s', $call->getMethodName(), implode(', ', array_map(array($self, 'stringify'), $call->getArguments())), str_replace(GETCWD() . \DIRECTORY_SEPARATOR, '', $call->getCallPlace())); + }, $calls)); + } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +/** + * This class is a modification from sebastianbergmann/exporter + * @see https://github.com/sebastianbergmann/exporter + */ +class ExportUtil { - /** @var Parser[] List of parsers to try, in order of preference */ - private $parsers; /** - * Create a parser which will try multiple parsers in an order of preference. + * Exports a value as a string * - * Parsers will be invoked in the order they're provided to the constructor. If one of the - * parsers runs without throwing, it's output is returned. Otherwise the exception that the - * first parser generated is thrown. + * The output of this method is similar to the output of print_r(), but + * improved in various aspects: * - * @param Parser[] $parsers + * - NULL is rendered as "null" (instead of "") + * - TRUE is rendered as "true" (instead of "1") + * - FALSE is rendered as "false" (instead of "") + * - Strings are always quoted with single quotes + * - Carriage returns and newlines are normalized to \n + * - Recursion and repeated rendering is treated properly + * + * @param mixed $value + * @param int $indentation The indentation level of the 2nd+ line + * @return string */ - public function __construct(array $parsers) + public static function export($value, $indentation = 0) { - $this->parsers = $parsers; + return self::recursiveExport($value, $indentation); } - public function parse(string $code, ErrorHandler $errorHandler = null) + /** + * Converts an object to an array containing all of its private, protected + * and public properties. + * + * @param mixed $value + * @return array + */ + public static function toArray($value) { - if (null === $errorHandler) { - $errorHandler = new ErrorHandler\Throwing(); + if (!is_object($value)) { + return (array) $value; } - list($firstStmts, $firstError) = $this->tryParse($this->parsers[0], $errorHandler, $code); - if ($firstError === null) { - return $firstStmts; + $array = array(); + foreach ((array) $value as $key => $val) { + // properties are transformed to keys in the following way: + // private $property => "\0Classname\0property" + // protected $property => "\0*\0property" + // public $property => "property" + if (preg_match('/^\0.+\0(.+)$/', $key, $matches)) { + $key = $matches[1]; + } + // See https://github.com/php/php-src/commit/5721132 + if ($key === "\x00gcdata") { + continue; + } + $array[$key] = $val; } - for ($i = 1, $c = \count($this->parsers); $i < $c; ++$i) { - list($stmts, $error) = $this->tryParse($this->parsers[$i], $errorHandler, $code); - if ($error === null) { - return $stmts; + // Some internal classes like SplObjectStorage don't work with the + // above (fast) mechanism nor with reflection in Zend. + // Format the output similarly to print_r() in this case + if ($value instanceof \SplObjectStorage) { + foreach ($value as $key => $val) { + // Use the same identifier that would be printed alongside the object's representation elsewhere. + $array[spl_object_id($val)] = array('obj' => $val, 'inf' => $value->getInfo()); } } - throw $firstError; + return $array; } - private function tryParse(Parser $parser, ErrorHandler $errorHandler, $code) + /** + * Recursive implementation of export + * + * @param mixed $value The value to export + * @param int $indentation The indentation level of the 2nd+ line + * @param \SebastianBergmann\RecursionContext\Context $processed Previously processed objects + * @return string + * @see SebastianBergmann\Exporter\Exporter::export + */ + protected static function recursiveExport(&$value, $indentation, $processed = null) { - $stmts = null; - $error = null; - try { - $stmts = $parser->parse($code, $errorHandler); - } catch (Error $error) { + if ($value === null) { + return 'null'; } - return [$stmts, $error]; + if ($value === \true) { + return 'true'; + } + if ($value === \false) { + return 'false'; + } + if (is_float($value) && floatval(intval($value)) === $value) { + return "{$value}.0"; + } + if (is_resource($value)) { + return sprintf('resource(%d) of type (%s)', (int) $value, get_resource_type($value)); + } + if (is_string($value)) { + // Match for most non printable chars somewhat taking multibyte chars into account + if (preg_match('/[^\x09-\x0d\x20-\xff]/', $value)) { + return 'Binary String: 0x' . bin2hex($value); + } + return "'" . str_replace(array("\r\n", "\n\r", "\r"), array("\n", "\n", "\n"), $value) . "'"; + } + $whitespace = str_repeat(' ', 4 * $indentation); + if (!$processed) { + $processed = new Context(); + } + if (is_array($value)) { + if (($key = $processed->contains($value)) !== \false) { + return 'Array &' . $key; + } + \assert(\is_array($value)); + $array = $value; + $key = $processed->add($value); + $values = ''; + if (count($array) > 0) { + foreach ($array as $k => $v) { + $values .= sprintf('%s %s => %s' . "\n", $whitespace, self::recursiveExport($k, $indentation), self::recursiveExport($value[$k], $indentation + 1, $processed)); + } + $values = "\n" . $values . $whitespace; + } + return sprintf('Array &%s (%s)', $key, $values); + } + if (is_object($value)) { + $class = get_class($value); + if ($processed->contains($value)) { + \assert(\is_object($value)); + return sprintf('%s#%d Object', $class, spl_object_id($value)); + } + $processed->add($value); + \assert(\is_object($value)); + $values = ''; + $array = self::toArray($value); + if (count($array) > 0) { + foreach ($array as $k => $v) { + $values .= sprintf('%s %s => %s' . "\n", $whitespace, self::recursiveExport($k, $indentation), self::recursiveExport($v, $indentation + 1, $processed)); + } + $values = "\n" . $values . $whitespace; + } + return sprintf('%s#%d Object (%s)', $class, spl_object_id($value), $values); + } + return var_export($value, \true); } } + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; -use PHPUnit\PhpParser\Error; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Expr; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\Scalar; -use PHPUnit\PhpParser\Node\Stmt; -/* This is an automatically GENERATED file, which should not be manually edited. - * Instead edit one of the following: - * * the grammar files grammar/php5.y or grammar/php7.y - * * the skeleton file grammar/parser.template - * * the preprocessing script grammar/rebuildParsers.php +use Prophecy\Exception\InvalidArgumentException; +/** + * Array entry token. + * + * @author Boris Mikhaylov */ -class Php5 extends \PHPUnit\PhpParser\ParserAbstract +class ArrayEntryToken implements \Prophecy\Argument\Token\TokenInterface { - protected $tokenToSymbolMapSize = 396; - protected $actionTableSize = 1093; - protected $gotoTableSize = 643; - protected $invalidSymbol = 168; - protected $errorSymbol = 1; - protected $defaultAction = -32766; - protected $unexpectedTokenRule = 32767; - protected $YY2TBLSTATE = 415; - protected $numNonLeafStates = 662; - protected $symbolToName = array("EOF", "error", "T_THROW", "T_INCLUDE", "T_INCLUDE_ONCE", "T_EVAL", "T_REQUIRE", "T_REQUIRE_ONCE", "','", "T_LOGICAL_OR", "T_LOGICAL_XOR", "T_LOGICAL_AND", "T_PRINT", "T_YIELD", "T_DOUBLE_ARROW", "T_YIELD_FROM", "'='", "T_PLUS_EQUAL", "T_MINUS_EQUAL", "T_MUL_EQUAL", "T_DIV_EQUAL", "T_CONCAT_EQUAL", "T_MOD_EQUAL", "T_AND_EQUAL", "T_OR_EQUAL", "T_XOR_EQUAL", "T_SL_EQUAL", "T_SR_EQUAL", "T_POW_EQUAL", "T_COALESCE_EQUAL", "'?'", "':'", "T_COALESCE", "T_BOOLEAN_OR", "T_BOOLEAN_AND", "'|'", "'^'", "T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG", "T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG", "T_IS_EQUAL", "T_IS_NOT_EQUAL", "T_IS_IDENTICAL", "T_IS_NOT_IDENTICAL", "T_SPACESHIP", "'<'", "T_IS_SMALLER_OR_EQUAL", "'>'", "T_IS_GREATER_OR_EQUAL", "T_SL", "T_SR", "'+'", "'-'", "'.'", "'*'", "'/'", "'%'", "'!'", "T_INSTANCEOF", "'~'", "T_INC", "T_DEC", "T_INT_CAST", "T_DOUBLE_CAST", "T_STRING_CAST", "T_ARRAY_CAST", "T_OBJECT_CAST", "T_BOOL_CAST", "T_UNSET_CAST", "'@'", "T_POW", "'['", "T_NEW", "T_CLONE", "T_EXIT", "T_IF", "T_ELSEIF", "T_ELSE", "T_ENDIF", "T_LNUMBER", "T_DNUMBER", "T_STRING", "T_STRING_VARNAME", "T_VARIABLE", "T_NUM_STRING", "T_INLINE_HTML", "T_ENCAPSED_AND_WHITESPACE", "T_CONSTANT_ENCAPSED_STRING", "T_ECHO", "T_DO", "T_WHILE", "T_ENDWHILE", "T_FOR", "T_ENDFOR", "T_FOREACH", "T_ENDFOREACH", "T_DECLARE", "T_ENDDECLARE", "T_AS", "T_SWITCH", "T_MATCH", "T_ENDSWITCH", "T_CASE", "T_DEFAULT", "T_BREAK", "T_CONTINUE", "T_GOTO", "T_FUNCTION", "T_FN", "T_CONST", "T_RETURN", "T_TRY", "T_CATCH", "T_FINALLY", "T_USE", "T_INSTEADOF", "T_GLOBAL", "T_STATIC", "T_ABSTRACT", "T_FINAL", "T_PRIVATE", "T_PROTECTED", "T_PUBLIC", "T_VAR", "T_UNSET", "T_ISSET", "T_EMPTY", "T_HALT_COMPILER", "T_CLASS", "T_TRAIT", "T_INTERFACE", "T_EXTENDS", "T_IMPLEMENTS", "T_OBJECT_OPERATOR", "T_LIST", "T_ARRAY", "T_CALLABLE", "T_CLASS_C", "T_TRAIT_C", "T_METHOD_C", "T_FUNC_C", "T_LINE", "T_FILE", "T_START_HEREDOC", "T_END_HEREDOC", "T_DOLLAR_OPEN_CURLY_BRACES", "T_CURLY_OPEN", "T_PAAMAYIM_NEKUDOTAYIM", "T_NAMESPACE", "T_NS_C", "T_DIR", "T_NS_SEPARATOR", "T_ELLIPSIS", "T_NAME_FULLY_QUALIFIED", "T_NAME_QUALIFIED", "T_NAME_RELATIVE", "';'", "'{'", "'}'", "'('", "')'", "'\$'", "'`'", "']'", "'\"'", "T_READONLY", "T_ENUM", "T_NULLSAFE_OBJECT_OPERATOR", "T_ATTRIBUTE"); - protected $tokenToSymbol = array(0, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 56, 163, 168, 160, 55, 168, 168, 158, 159, 53, 50, 8, 51, 52, 54, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 31, 155, 44, 16, 46, 30, 68, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 70, 168, 162, 36, 168, 161, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 156, 35, 157, 58, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 164, 122, 123, 124, 125, 126, 127, 128, 129, 165, 130, 131, 132, 166, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 167); - protected $action = array(699, 669, 670, 671, 672, 673, 286, 674, 675, 676, 712, 713, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, 245, 246, 242, 243, 244, -32766, -32766, 677, -32766, 750, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 1224, 245, 246, 1225, 678, 679, 680, 681, 682, 683, 684, -32766, 48, 746, -32766, -32766, -32766, -32766, -32766, -32766, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 715, 738, 716, 717, 718, 719, 707, 708, 709, 737, 710, 711, 696, 697, 698, 700, 701, 702, 740, 741, 742, 743, 744, 745, 703, 704, 705, 706, 736, 727, 725, 726, 722, 723, 751, 714, 720, 721, 728, 729, 731, 730, 732, 733, 55, 56, 425, 57, 58, 724, 735, 734, 1073, 59, 60, -224, 61, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 121, -32767, -32767, -32767, -32767, 29, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 1043, 766, 1071, 767, 580, 62, 63, -32766, -32766, -32766, -32766, 64, 516, 65, 294, 295, 66, 67, 68, 69, 70, 71, 72, 73, 822, 25, 302, 74, 418, 981, 983, 1043, 1181, 1095, 1096, 1073, 748, 754, 1075, 1074, 1076, 469, -32766, -32766, -32766, 337, 823, 54, -32767, -32767, -32767, -32767, 98, 99, 100, 101, 102, 220, 221, 222, 78, 361, 1107, -32766, 341, -32766, -32766, -32766, -32766, -32766, 1107, 492, 949, 950, 951, 948, 947, 946, 207, 477, 478, 949, 950, 951, 948, 947, 946, 1043, 479, 480, 52, 1101, 1102, 1103, 1104, 1098, 1099, 319, 872, 668, 667, 27, -511, 1105, 1100, -32766, 130, 1075, 1074, 1076, 345, 668, 667, 41, 126, 341, 334, 369, 336, 426, -128, -128, -128, 896, 897, 468, 220, 221, 222, 811, 1195, 619, 40, 21, 427, -128, 470, -128, 471, -128, 472, -128, 802, 428, -4, 823, 54, 207, 33, 34, 429, 360, 317, 28, 35, 473, -32766, -32766, -32766, 211, 356, 357, 474, 475, -32766, -32766, -32766, 754, 476, 49, 313, 794, 843, 430, 431, 289, 125, -32766, 813, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, -32767, -32766, -32766, -32766, 769, 103, 104, 105, 327, 307, 825, 633, -128, 1075, 1074, 1076, 221, 222, 927, 748, 1146, 106, -32766, 129, -32766, -32766, -32766, -32766, 426, 823, 54, 902, 873, 302, 468, 75, 207, 359, 811, 668, 667, 40, 21, 427, 754, 470, 754, 471, 423, 472, 1043, 127, 428, 435, 1043, 341, 1043, 33, 34, 429, 360, 1181, 415, 35, 473, 122, 10, 315, 128, 356, 357, 474, 475, -32766, -32766, -32766, 768, 476, 668, 667, 758, 843, 430, 431, 754, 1043, 1147, -32766, -32766, -32766, 754, 419, 342, 1215, -32766, 131, -32766, -32766, -32766, 341, 363, 346, 426, 823, 54, 100, 101, 102, 468, 825, 633, -4, 811, 442, 903, 40, 21, 427, 754, 470, 435, 471, 341, 472, 341, 766, 428, 767, -209, -209, -209, 33, 34, 429, 360, 479, 1196, 35, 473, 345, -32766, -32766, -32766, 356, 357, 474, 475, 220, 221, 222, 421, 476, 32, 297, 794, 843, 430, 431, 754, 754, 435, -32766, 341, -32766, -32766, 9, 300, 51, 207, 249, 324, 753, 120, 220, 221, 222, 426, 30, 247, 941, 422, 424, 468, 825, 633, -209, 811, 1043, 1061, 40, 21, 427, 129, 470, 207, 471, 341, 472, 804, 20, 428, 124, -208, -208, -208, 33, 34, 429, 360, 479, 212, 35, 473, 923, -259, 823, 54, 356, 357, 474, 475, -32766, -32766, -32766, 1043, 476, 213, 806, 794, 843, 430, 431, -32766, -32766, 435, 435, 341, 341, 443, 79, 80, 81, -32766, 668, 667, 636, 344, 808, 668, 667, 239, 240, 241, 123, 214, 538, 250, 825, 633, -208, 36, 251, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 252, 307, 426, 220, 221, 222, 823, 54, 468, -32766, 222, 765, 811, 106, 134, 40, 21, 427, 571, 470, 207, 471, 445, 472, 207, -32766, 428, 896, 897, 207, 307, 33, 34, 429, 245, 246, 637, 35, 473, 452, 22, 809, 922, 356, 357, 457, 588, 135, 374, 595, 596, 476, -228, 759, 639, 938, 653, 926, 661, -86, 823, 54, 314, 644, 647, 821, 133, 836, 43, 106, 603, 44, 45, 46, 47, 748, 50, 53, 132, 426, 302, -32766, 520, 825, 633, 468, -84, 607, 577, 811, 641, 362, 40, 21, 427, -278, 470, 754, 471, 954, 472, 441, 627, 428, 823, 54, 574, 844, 33, 34, 429, 11, 615, 845, 35, 473, 444, 461, 285, -511, 356, 357, 592, -419, 593, 1106, 1153, -410, 476, 368, 838, 38, 658, 426, 645, 795, 1052, 0, 325, 468, 0, -32766, 0, 811, 0, 0, 40, 21, 427, 0, 470, 0, 471, 0, 472, 0, 322, 428, 823, 54, 825, 633, 33, 34, 429, 0, 326, 0, 35, 473, 323, 0, 316, 318, 356, 357, -512, 426, 0, 753, 531, 0, 476, 468, 6, 0, 0, 811, 650, 7, 40, 21, 427, 12, 470, 14, 471, 373, 472, -420, 562, 428, 823, 54, 78, -225, 33, 34, 429, 39, 656, 657, 35, 473, 859, 633, 764, 812, 356, 357, 820, 799, 814, 875, 866, 867, 476, 797, 860, 857, 855, 426, 933, 934, 931, 819, 803, 468, 805, 807, 810, 811, 930, 762, 40, 21, 427, 763, 470, 932, 471, 335, 472, 358, 634, 428, 638, 640, 825, 633, 33, 34, 429, 642, 643, 646, 35, 473, 648, 649, 651, 652, 356, 357, 635, 426, 1221, 1223, 761, 842, 476, 468, 248, 760, 841, 811, 1222, 840, 40, 21, 427, 1057, 470, 830, 471, 1045, 472, 839, 1046, 428, 828, 215, 216, 939, 33, 34, 429, 217, 864, 218, 35, 473, 825, 633, 24, 865, 356, 357, 456, 1220, 1189, 209, 1187, 1172, 476, 1185, 215, 216, 1086, 1095, 1096, 914, 217, 1193, 218, 1183, -224, 1097, 26, 31, 37, 42, 76, 77, 210, 288, 209, 292, 293, 308, 309, 310, 311, 339, 1095, 1096, 825, 633, 355, 291, 416, 1152, 1097, 16, 17, 18, 393, 453, 460, 462, 466, 552, 624, 1048, 1051, 904, 1111, 1047, 1023, 563, 1022, 1088, 0, 0, -429, 558, 1041, 1101, 1102, 1103, 1104, 1098, 1099, 398, 1054, 1053, 1056, 1055, 1070, 1105, 1100, 1186, 1171, 1167, 1184, 1085, 1218, 1112, 1166, 219, 558, 599, 1101, 1102, 1103, 1104, 1098, 1099, 398, 0, 0, 0, 0, 0, 1105, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 219); - protected $actionCheck = array(2, 3, 4, 5, 6, 7, 14, 9, 10, 11, 12, 13, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 0, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 9, 10, 11, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 69, 70, 53, 54, 55, 9, 10, 57, 30, 80, 32, 33, 34, 35, 36, 37, 38, 80, 69, 70, 83, 71, 72, 73, 74, 75, 76, 77, 9, 70, 80, 33, 34, 35, 36, 37, 38, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 153, 133, 134, 135, 136, 137, 138, 139, 140, 141, 3, 4, 5, 6, 7, 147, 148, 149, 80, 12, 13, 159, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 156, 44, 45, 46, 47, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 13, 106, 116, 108, 85, 50, 51, 33, 34, 35, 36, 56, 85, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 1, 70, 71, 72, 73, 59, 60, 13, 82, 78, 79, 80, 80, 82, 152, 153, 154, 86, 9, 10, 11, 8, 1, 2, 44, 45, 46, 47, 48, 49, 50, 51, 52, 9, 10, 11, 156, 106, 143, 30, 160, 32, 33, 34, 35, 36, 143, 116, 116, 117, 118, 119, 120, 121, 30, 124, 125, 116, 117, 118, 119, 120, 121, 13, 133, 134, 70, 136, 137, 138, 139, 140, 141, 142, 31, 37, 38, 8, 132, 148, 149, 116, 156, 152, 153, 154, 160, 37, 38, 158, 8, 160, 161, 8, 163, 74, 75, 76, 77, 134, 135, 80, 9, 10, 11, 84, 1, 80, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 155, 98, 0, 1, 2, 30, 103, 104, 105, 106, 132, 8, 109, 110, 9, 10, 11, 8, 115, 116, 117, 118, 9, 10, 11, 82, 123, 70, 8, 126, 127, 128, 129, 8, 156, 30, 155, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 9, 10, 11, 157, 53, 54, 55, 8, 57, 155, 156, 157, 152, 153, 154, 10, 11, 157, 80, 162, 69, 30, 151, 32, 33, 34, 35, 74, 1, 2, 159, 155, 71, 80, 151, 30, 8, 84, 37, 38, 87, 88, 89, 82, 91, 82, 93, 8, 95, 13, 156, 98, 158, 13, 160, 13, 103, 104, 105, 106, 82, 108, 109, 110, 156, 8, 113, 31, 115, 116, 117, 118, 9, 10, 11, 157, 123, 37, 38, 126, 127, 128, 129, 82, 13, 159, 33, 34, 35, 82, 127, 8, 85, 30, 156, 32, 33, 34, 160, 8, 147, 74, 1, 2, 50, 51, 52, 80, 155, 156, 157, 84, 31, 159, 87, 88, 89, 82, 91, 158, 93, 160, 95, 160, 106, 98, 108, 100, 101, 102, 103, 104, 105, 106, 133, 159, 109, 110, 160, 9, 10, 11, 115, 116, 117, 118, 9, 10, 11, 8, 123, 144, 145, 126, 127, 128, 129, 82, 82, 158, 30, 160, 32, 33, 108, 8, 70, 30, 31, 113, 152, 16, 9, 10, 11, 74, 14, 14, 122, 8, 8, 80, 155, 156, 157, 84, 13, 159, 87, 88, 89, 151, 91, 30, 93, 160, 95, 155, 159, 98, 14, 100, 101, 102, 103, 104, 105, 106, 133, 16, 109, 110, 155, 157, 1, 2, 115, 116, 117, 118, 9, 10, 11, 13, 123, 16, 155, 126, 127, 128, 129, 33, 34, 158, 158, 160, 160, 156, 9, 10, 11, 30, 37, 38, 31, 70, 155, 37, 38, 50, 51, 52, 156, 16, 81, 16, 155, 156, 157, 30, 16, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 16, 57, 74, 9, 10, 11, 1, 2, 80, 116, 11, 155, 84, 69, 156, 87, 88, 89, 160, 91, 30, 93, 132, 95, 30, 33, 98, 134, 135, 30, 57, 103, 104, 105, 69, 70, 31, 109, 110, 75, 76, 155, 155, 115, 116, 75, 76, 101, 102, 111, 112, 123, 159, 155, 156, 155, 156, 155, 156, 31, 1, 2, 31, 31, 31, 31, 31, 38, 70, 69, 77, 70, 70, 70, 70, 80, 70, 70, 70, 74, 71, 85, 85, 155, 156, 80, 97, 96, 100, 84, 31, 106, 87, 88, 89, 82, 91, 82, 93, 82, 95, 89, 92, 98, 1, 2, 90, 127, 103, 104, 105, 97, 94, 127, 109, 110, 97, 97, 97, 132, 115, 116, 100, 146, 113, 143, 143, 146, 123, 106, 151, 155, 157, 74, 31, 157, 162, -1, 114, 80, -1, 116, -1, 84, -1, -1, 87, 88, 89, -1, 91, -1, 93, -1, 95, -1, 130, 98, 1, 2, 155, 156, 103, 104, 105, -1, 130, -1, 109, 110, 131, -1, 132, 132, 115, 116, 132, 74, -1, 152, 150, -1, 123, 80, 146, -1, -1, 84, 31, 146, 87, 88, 89, 146, 91, 146, 93, 146, 95, 146, 150, 98, 1, 2, 156, 159, 103, 104, 105, 155, 155, 155, 109, 110, 155, 156, 155, 155, 115, 116, 155, 155, 155, 155, 155, 155, 123, 155, 155, 155, 155, 74, 155, 155, 155, 155, 155, 80, 155, 155, 155, 84, 155, 155, 87, 88, 89, 155, 91, 155, 93, 156, 95, 156, 156, 98, 156, 156, 155, 156, 103, 104, 105, 156, 156, 156, 109, 110, 156, 156, 156, 156, 115, 116, 156, 74, 157, 157, 157, 157, 123, 80, 31, 157, 157, 84, 157, 157, 87, 88, 89, 157, 91, 157, 93, 157, 95, 157, 157, 98, 157, 50, 51, 157, 103, 104, 105, 56, 157, 58, 109, 110, 155, 156, 158, 157, 115, 116, 157, 157, 157, 70, 157, 157, 123, 157, 50, 51, 157, 78, 79, 157, 56, 157, 58, 157, 159, 86, 158, 158, 158, 158, 158, 158, 158, 158, 70, 158, 158, 158, 158, 158, 158, 158, 78, 79, 155, 156, 158, 160, 158, 163, 86, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, -1, -1, 161, 134, 161, 136, 137, 138, 139, 140, 141, 142, 162, 162, 162, 162, 162, 148, 149, 162, 162, 162, 162, 162, 162, 162, 162, 158, 134, 162, 136, 137, 138, 139, 140, 141, 142, -1, -1, -1, -1, -1, 148, 149, -1, -1, -1, -1, -1, -1, -1, -1, 158); - protected $actionBase = array(0, 227, 326, 400, 474, 233, 132, 132, 752, -2, -2, 138, -2, -2, -2, 663, 761, 815, 761, 586, 717, 859, 859, 859, 244, 256, 256, 256, 413, 583, 583, 880, 546, 169, 415, 444, 409, 200, 200, 200, 200, 137, 137, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 249, 205, 738, 559, 535, 739, 741, 742, 876, 679, 877, 820, 821, 693, 823, 824, 826, 829, 832, 819, 834, 907, 836, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 67, 536, 299, 510, 230, 44, 652, 652, 652, 652, 652, 652, 652, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 378, 584, 584, 584, 657, 909, 648, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 503, -21, -21, 436, 650, 364, 571, 215, 426, 156, 26, 26, 329, 329, 329, 329, 329, 46, 46, 5, 5, 5, 5, 152, 186, 186, 186, 186, 120, 120, 120, 120, 374, 374, 429, 448, 448, 334, 267, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 336, 427, 427, 572, 572, 408, 551, 551, 551, 551, 671, 171, 171, 391, 311, 311, 311, 109, 641, 856, 68, 68, 68, 68, 68, 68, 324, 324, 324, -3, -3, -3, 655, 77, 380, 77, 380, 683, 685, 86, 685, 654, -15, 516, 776, 281, 646, 809, 680, 816, 560, 711, 202, 578, 857, 643, -23, 578, 578, 578, 578, 857, 622, 628, 596, -23, 578, -23, 639, 454, 849, 351, 249, 558, 469, 631, 743, 514, 688, 746, 464, 544, 548, 556, 7, 412, 708, 750, 878, 879, 349, 702, 631, 631, 631, 327, 101, 7, -8, 623, 623, 623, 623, 219, 623, 623, 623, 623, 291, 430, 545, 401, 745, 653, 653, 675, 839, 814, 814, 653, 673, 653, 675, 841, 841, 841, 841, 653, 653, 653, 653, 814, 814, 667, 814, 275, 684, 694, 694, 841, 713, 714, 653, 653, 697, 814, 814, 814, 697, 687, 841, 669, 637, 333, 814, 841, 689, 673, 689, 653, 669, 689, 673, 673, 689, 22, 686, 656, 840, 842, 860, 756, 638, 644, 847, 848, 843, 845, 838, 692, 719, 720, 528, 659, 660, 661, 662, 696, 664, 698, 643, 658, 658, 658, 645, 701, 645, 658, 658, 658, 658, 658, 658, 658, 658, 632, 635, 709, 699, 670, 723, 566, 582, 758, 640, 636, 872, 865, 881, 883, 849, 870, 645, 890, 634, 288, 610, 850, 633, 753, 645, 851, 645, 759, 645, 873, 777, 666, 778, 779, 658, 874, 891, 892, 893, 894, 897, 898, 899, 900, 665, 901, 724, 674, 866, 344, 844, 639, 705, 677, 755, 725, 780, 372, 902, 784, 645, 645, 765, 706, 645, 766, 726, 712, 862, 727, 867, 903, 640, 678, 868, 645, 681, 785, 904, 372, 690, 651, 704, 649, 728, 858, 875, 853, 767, 612, 617, 787, 788, 792, 691, 730, 863, 864, 835, 731, 770, 642, 771, 676, 794, 772, 852, 732, 796, 798, 871, 647, 707, 682, 672, 668, 773, 799, 869, 733, 735, 736, 801, 737, 804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 137, 137, 137, -2, -2, -2, -2, 0, 0, -2, 0, 0, 0, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 0, 0, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602, -21, -21, -21, -21, 602, -21, -21, -21, -21, -21, -21, -21, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, -21, 602, 602, 602, -21, 68, -21, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 602, 0, 0, 602, -21, 602, -21, 602, -21, -21, 602, 602, 602, 602, 602, 602, 602, -21, -21, -21, -21, -21, -21, 0, 324, 324, 324, 324, -21, -21, -21, -21, 68, 68, 147, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 324, 324, -3, -3, 68, 68, 68, 68, 68, 147, 68, 68, -23, 673, 673, 673, 380, 380, 380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, -23, 0, -23, 0, 68, -23, 673, -23, 380, 673, 673, -23, 814, 604, 604, 604, 604, 372, 7, 0, 0, 673, 673, 0, 0, 0, 0, 0, 673, 0, 0, 0, 0, 0, 0, 814, 0, 653, 0, 0, 0, 0, 658, 288, 0, 677, 456, 0, 0, 0, 0, 0, 0, 677, 456, 530, 530, 0, 665, 658, 658, 658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372); - protected $actionDefault = array(3, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 540, 540, 495, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 297, 297, 297, 32767, 32767, 32767, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 32767, 32767, 32767, 32767, 32767, 32767, 381, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 387, 545, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 362, 363, 365, 366, 296, 548, 529, 245, 388, 544, 295, 247, 325, 499, 32767, 32767, 32767, 327, 122, 256, 201, 498, 125, 294, 232, 380, 382, 326, 301, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 300, 454, 359, 358, 357, 456, 32767, 455, 492, 492, 495, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 323, 483, 482, 324, 452, 328, 453, 331, 457, 460, 329, 330, 347, 348, 345, 346, 349, 458, 459, 476, 477, 474, 475, 299, 350, 351, 352, 353, 478, 479, 480, 481, 32767, 32767, 280, 539, 539, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 338, 339, 467, 468, 32767, 236, 236, 236, 236, 281, 236, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 333, 334, 332, 462, 463, 461, 428, 32767, 32767, 32767, 430, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 500, 32767, 32767, 32767, 32767, 32767, 513, 417, 171, 32767, 409, 32767, 171, 171, 171, 171, 32767, 220, 222, 167, 32767, 171, 32767, 486, 32767, 32767, 32767, 32767, 32767, 518, 343, 32767, 32767, 116, 32767, 32767, 32767, 555, 32767, 513, 32767, 116, 32767, 32767, 32767, 32767, 356, 335, 336, 337, 32767, 32767, 517, 511, 470, 471, 472, 473, 32767, 464, 465, 466, 469, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 425, 431, 431, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 516, 515, 32767, 410, 494, 186, 184, 184, 32767, 206, 206, 32767, 32767, 188, 487, 506, 32767, 188, 173, 32767, 398, 175, 494, 32767, 32767, 238, 32767, 238, 32767, 398, 238, 32767, 32767, 238, 32767, 411, 435, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 377, 378, 489, 502, 32767, 503, 32767, 409, 341, 342, 344, 320, 32767, 322, 367, 368, 369, 370, 371, 372, 373, 375, 32767, 415, 32767, 418, 32767, 32767, 32767, 255, 32767, 553, 32767, 32767, 304, 553, 32767, 32767, 32767, 547, 32767, 32767, 298, 32767, 32767, 32767, 32767, 251, 32767, 169, 32767, 537, 32767, 554, 32767, 511, 32767, 340, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 512, 32767, 32767, 32767, 32767, 227, 32767, 448, 32767, 116, 32767, 32767, 32767, 187, 32767, 32767, 302, 246, 32767, 32767, 546, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 114, 32767, 170, 32767, 32767, 32767, 189, 32767, 32767, 511, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 293, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 511, 32767, 32767, 231, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 411, 32767, 274, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 127, 127, 3, 127, 127, 258, 3, 258, 127, 258, 258, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 214, 217, 206, 206, 164, 127, 127, 266); - protected $goto = array(166, 140, 140, 140, 166, 187, 168, 144, 147, 141, 142, 143, 149, 163, 163, 163, 163, 144, 144, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 138, 159, 160, 161, 162, 184, 139, 185, 493, 494, 377, 495, 499, 500, 501, 502, 503, 504, 505, 506, 967, 164, 145, 146, 148, 171, 176, 186, 203, 253, 256, 258, 260, 263, 264, 265, 266, 267, 268, 269, 277, 278, 279, 280, 303, 304, 328, 329, 330, 394, 395, 396, 542, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 150, 151, 152, 167, 153, 169, 154, 204, 170, 155, 156, 157, 205, 158, 136, 620, 560, 756, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 1108, 628, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 757, 888, 888, 508, 1200, 1200, 400, 606, 508, 536, 536, 568, 532, 534, 534, 496, 498, 524, 540, 569, 572, 583, 590, 852, 852, 852, 852, 847, 853, 174, 585, 519, 600, 601, 177, 178, 179, 401, 402, 403, 404, 173, 202, 206, 208, 257, 259, 261, 262, 270, 271, 272, 273, 274, 275, 281, 282, 283, 284, 305, 306, 331, 332, 333, 406, 407, 408, 409, 175, 180, 254, 255, 181, 182, 183, 497, 497, 785, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 509, 578, 582, 626, 749, 509, 544, 545, 546, 547, 548, 549, 550, 551, 553, 586, 338, 559, 321, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 530, 349, 655, 555, 587, 352, 414, 591, 575, 604, 885, 611, 612, 881, 616, 617, 623, 625, 630, 632, 298, 296, 296, 296, 298, 290, 299, 944, 610, 816, 1170, 613, 436, 436, 375, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 1072, 1084, 1083, 945, 1065, 1072, 895, 895, 895, 895, 1178, 895, 895, 1212, 1212, 1178, 388, 858, 561, 755, 1072, 1072, 1072, 1072, 1072, 1072, 3, 4, 384, 384, 384, 1212, 874, 856, 854, 856, 654, 465, 511, 883, 878, 1089, 541, 384, 537, 384, 567, 384, 1026, 19, 15, 371, 384, 1226, 510, 1204, 1192, 1192, 1192, 510, 906, 372, 522, 533, 554, 912, 514, 1068, 1069, 13, 1065, 378, 912, 1158, 594, 23, 965, 386, 386, 386, 602, 1066, 1169, 1066, 937, 447, 449, 631, 752, 1177, 1067, 1109, 614, 935, 1177, 605, 1197, 391, 1211, 1211, 543, 892, 386, 1194, 1194, 1194, 399, 518, 1016, 901, 389, 771, 529, 752, 340, 752, 1211, 518, 518, 385, 781, 1214, 770, 772, 1063, 910, 774, 1058, 1176, 659, 953, 514, 782, 862, 915, 450, 573, 1155, 0, 463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513, 528, 0, 0, 0, 0, 513, 0, 528, 0, 350, 351, 0, 609, 512, 515, 438, 439, 1064, 618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 779, 1219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 301); - protected $gotoCheck = array(43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 57, 68, 15, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 126, 9, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 16, 76, 76, 68, 76, 76, 51, 51, 68, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 68, 68, 68, 68, 68, 68, 27, 66, 101, 66, 66, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 117, 117, 29, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 61, 61, 61, 6, 117, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 125, 57, 125, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 32, 71, 32, 32, 69, 69, 69, 32, 40, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 5, 5, 5, 5, 5, 5, 5, 97, 62, 50, 81, 62, 57, 57, 62, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 124, 124, 97, 81, 57, 57, 57, 57, 57, 118, 57, 57, 142, 142, 118, 12, 33, 12, 14, 57, 57, 57, 57, 57, 57, 30, 30, 13, 13, 13, 142, 14, 14, 14, 14, 14, 57, 14, 14, 14, 34, 2, 13, 109, 13, 2, 13, 34, 34, 34, 34, 13, 13, 122, 140, 9, 9, 9, 122, 83, 58, 58, 58, 34, 13, 13, 81, 81, 58, 81, 46, 13, 131, 127, 34, 101, 123, 123, 123, 34, 81, 81, 81, 8, 8, 8, 8, 11, 119, 81, 8, 8, 8, 119, 49, 138, 48, 141, 141, 47, 78, 123, 119, 119, 119, 123, 47, 102, 80, 17, 23, 9, 11, 18, 11, 141, 47, 47, 11, 23, 141, 23, 24, 115, 84, 25, 113, 119, 73, 99, 13, 26, 70, 85, 64, 65, 130, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, 9, -1, -1, -1, -1, 9, -1, 9, -1, 71, 71, -1, 13, 9, 9, 9, 9, 13, 13, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 5); - protected $gotoBase = array(0, 0, -184, 0, 0, 356, 290, 0, 488, 149, 0, 182, 85, 118, 426, 112, 203, 179, 208, 0, 0, 0, 0, 162, 190, 198, 120, 27, 0, 272, -224, 0, -274, 406, 32, 0, 0, 0, 0, 0, 330, 0, 0, -24, 0, 0, 440, 485, 213, 218, 371, -74, 0, 0, 0, 0, 0, 107, 110, 0, 0, -11, -72, 0, 104, 95, -405, 0, -94, 41, 119, -82, 0, 164, 0, 0, -79, 0, 197, 0, 204, 43, 0, 441, 171, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 115, 0, 195, 210, 0, 0, 0, 0, 0, 86, 427, 259, 0, 0, 116, 0, 174, 0, -5, 117, 196, 0, 0, 161, 170, 93, -21, -48, 273, 0, 0, 91, 271, 0, 0, 0, 0, 0, 0, 216, 0, 437, 187, 102, 0, 0); - protected $gotoDefault = array(-32768, 467, 663, 2, 664, 834, 739, 747, 597, 481, 629, 581, 380, 1188, 791, 792, 793, 381, 367, 482, 379, 410, 405, 780, 773, 775, 783, 172, 411, 786, 1, 788, 517, 824, 1017, 364, 796, 365, 589, 798, 526, 800, 801, 137, 382, 383, 527, 483, 390, 576, 815, 276, 387, 817, 366, 818, 827, 370, 464, 454, 459, 556, 608, 432, 446, 570, 564, 535, 1081, 565, 861, 348, 869, 660, 877, 880, 484, 557, 891, 451, 899, 1094, 397, 905, 911, 916, 287, 919, 417, 412, 584, 924, 925, 5, 929, 621, 622, 8, 312, 952, 598, 966, 420, 1036, 1038, 485, 486, 521, 458, 507, 525, 487, 1059, 440, 413, 1062, 488, 489, 433, 434, 1078, 354, 1163, 353, 448, 320, 1150, 579, 1113, 455, 1203, 1159, 347, 490, 491, 376, 1182, 392, 1198, 437, 1205, 1213, 343, 539, 566); - protected $ruleToNonTerminal = array(0, 1, 3, 3, 2, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 10, 11, 11, 12, 12, 13, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 18, 18, 19, 19, 21, 21, 17, 17, 22, 22, 23, 23, 24, 24, 25, 25, 20, 20, 26, 28, 28, 29, 30, 30, 32, 31, 31, 31, 31, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 14, 14, 54, 54, 56, 55, 55, 48, 48, 58, 58, 59, 59, 60, 60, 15, 16, 16, 16, 63, 63, 63, 64, 64, 67, 67, 65, 65, 69, 69, 41, 41, 50, 50, 53, 53, 53, 52, 52, 70, 42, 42, 42, 42, 71, 71, 72, 72, 73, 73, 39, 39, 35, 35, 74, 37, 37, 75, 36, 36, 38, 38, 49, 49, 49, 61, 61, 77, 77, 78, 78, 80, 80, 80, 79, 79, 62, 62, 81, 81, 81, 82, 82, 83, 83, 83, 44, 44, 84, 84, 84, 45, 45, 85, 85, 86, 86, 66, 87, 87, 87, 87, 92, 92, 93, 93, 94, 94, 94, 94, 94, 95, 96, 96, 91, 91, 88, 88, 90, 90, 98, 98, 97, 97, 97, 97, 97, 97, 89, 89, 100, 99, 99, 46, 46, 40, 40, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 34, 34, 47, 47, 105, 105, 106, 106, 106, 106, 112, 101, 101, 108, 108, 114, 114, 115, 116, 116, 116, 116, 116, 116, 68, 68, 57, 57, 57, 57, 102, 102, 120, 120, 117, 117, 121, 121, 121, 121, 103, 103, 103, 107, 107, 107, 113, 113, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 27, 27, 27, 27, 27, 27, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 111, 111, 104, 104, 104, 104, 127, 127, 130, 130, 129, 129, 131, 131, 51, 51, 51, 51, 133, 133, 132, 132, 132, 132, 132, 134, 134, 119, 119, 122, 122, 118, 118, 136, 135, 135, 135, 135, 123, 123, 123, 123, 110, 110, 124, 124, 124, 124, 76, 137, 137, 138, 138, 138, 109, 109, 139, 139, 140, 140, 140, 140, 140, 125, 125, 125, 125, 142, 143, 141, 141, 141, 141, 141, 141, 141, 144, 144, 144); - protected $ruleToLength = array(1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 4, 3, 4, 2, 3, 1, 1, 7, 6, 3, 1, 3, 1, 3, 1, 1, 3, 1, 3, 1, 2, 3, 1, 3, 3, 1, 3, 2, 0, 1, 1, 1, 1, 1, 3, 5, 8, 3, 5, 9, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 1, 2, 2, 5, 7, 9, 5, 6, 3, 3, 2, 2, 1, 1, 1, 0, 2, 8, 0, 4, 1, 3, 0, 1, 0, 1, 0, 1, 10, 7, 6, 5, 1, 2, 2, 0, 2, 0, 2, 0, 2, 1, 3, 1, 4, 1, 4, 1, 1, 4, 1, 3, 3, 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, 1, 4, 0, 2, 3, 0, 2, 4, 0, 2, 0, 3, 1, 2, 1, 1, 0, 1, 3, 4, 6, 1, 1, 1, 0, 1, 0, 2, 2, 3, 3, 1, 3, 1, 2, 2, 3, 1, 1, 2, 4, 3, 1, 1, 3, 2, 0, 1, 3, 3, 9, 3, 1, 3, 0, 2, 4, 5, 4, 4, 4, 3, 1, 1, 1, 3, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 3, 1, 0, 1, 1, 3, 3, 4, 4, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 5, 4, 3, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 3, 2, 1, 2, 10, 11, 3, 3, 2, 4, 4, 3, 4, 4, 4, 4, 7, 3, 2, 0, 4, 1, 3, 2, 2, 4, 6, 2, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 4, 4, 0, 2, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 3, 1, 4, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, 4, 3, 1, 3, 1, 1, 3, 3, 0, 2, 0, 1, 3, 1, 3, 1, 1, 1, 1, 1, 6, 4, 3, 4, 2, 4, 4, 1, 3, 1, 2, 1, 1, 4, 1, 1, 3, 6, 4, 4, 4, 4, 1, 4, 0, 1, 1, 3, 1, 1, 4, 3, 1, 1, 1, 0, 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, 2, 1, 2, 1, 1, 1, 4, 3, 3, 3, 6, 3, 1, 1, 1); - protected function initReduceCallbacks() + /** @var TokenInterface */ + private $key; + /** @var TokenInterface */ + private $value; + /** + * @param mixed $key exact value or token + * @param mixed $value exact value or token + */ + public function __construct($key, $value) { - $this->reduceCallbacks = [0 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 1 => function ($stackPos) { - $this->semValue = $this->handleNamespaces($this->semStack[$stackPos - (1 - 1)]); - }, 2 => function ($stackPos) { - if (\is_array($this->semStack[$stackPos - (2 - 2)])) { - $this->semValue = \array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - } else { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + $this->key = $this->wrapIntoExactValueToken($key); + $this->value = $this->wrapIntoExactValueToken($value); + } + /** + * Scores half of combined scores from key and value tokens for same entry. Capped at 8. + * If argument implements \ArrayAccess without \Traversable, then key token is restricted to ExactValueToken. + * + * @param mixed $argument + * + * @throws InvalidArgumentException + * @return false|int + */ + public function scoreArgument($argument) + { + if ($argument instanceof \Traversable) { + $argument = iterator_to_array($argument); + } + if ($argument instanceof \ArrayAccess) { + $argument = $this->convertArrayAccessToEntry($argument); + } + if (!is_array($argument) || empty($argument)) { + return \false; + } + $keyScores = array_map(array($this->key, 'scoreArgument'), array_keys($argument)); + $valueScores = array_map(array($this->value, 'scoreArgument'), $argument); + /** @var callable(int|false, int|false): (int|false) $scoreEntry */ + $scoreEntry = function ($value, $key) { + return $value && $key ? min(8, ($key + $value) / 2) : \false; + }; + return max(array_map($scoreEntry, $valueScores, $keyScores)); + } + /** + * Returns false. + * + * @return boolean + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return sprintf('[..., %s => %s, ...]', $this->key, $this->value); + } + /** + * Returns key + * + * @return TokenInterface + */ + public function getKey() + { + return $this->key; + } + /** + * Returns value + * + * @return TokenInterface + */ + public function getValue() + { + return $this->value; + } + /** + * Wraps non token $value into ExactValueToken + * + * @param mixed $value + * @return TokenInterface + */ + private function wrapIntoExactValueToken($value) + { + return $value instanceof \Prophecy\Argument\Token\TokenInterface ? $value : new \Prophecy\Argument\Token\ExactValueToken($value); + } + /** + * Converts instance of \ArrayAccess to key => value array entry + * + * @param \ArrayAccess $object + * + * @return array + * @throws InvalidArgumentException + */ + private function convertArrayAccessToEntry(\ArrayAccess $object) + { + if (!$this->key instanceof \Prophecy\Argument\Token\ExactValueToken) { + throw new InvalidArgumentException(sprintf('You can only use exact value tokens to match key of ArrayAccess object' . \PHP_EOL . 'But you used `%s`.', $this->key)); + } + $key = $this->key->getValue(); + if (!\is_int($key) && !\is_string($key)) { + throw new InvalidArgumentException(sprintf('You can only use integer or string keys to match key of ArrayAccess object' . \PHP_EOL . 'But you used `%s`.', $this->key)); + } + return $object->offsetExists($key) ? array($key => $object[$key]) : array(); + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +use Prophecy\Comparator\FactoryProvider; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory as ComparatorFactory; +use Prophecy\Util\StringUtil; +/** + * Exact value token. + * + * @author Konstantin Kudryashov + */ +class ExactValueToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $value; + /** + * @var string|null + */ + private $string; + private $util; + private $comparatorFactory; + /** + * Initializes token. + * + * @param mixed $value + */ + public function __construct($value, StringUtil $util = null, ComparatorFactory $comparatorFactory = null) + { + $this->value = $value; + $this->util = $util ?: new StringUtil(); + $this->comparatorFactory = $comparatorFactory ?: FactoryProvider::getInstance(); + } + /** + * Scores 10 if argument matches preset value. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument) + { + if (is_object($argument) && is_object($this->value)) { + $comparator = $this->comparatorFactory->getComparatorFor($argument, $this->value); + try { + $comparator->assertEquals($argument, $this->value); + return 10; + } catch (ComparisonFailure $failure) { + return \false; } - }, 3 => function ($stackPos) { - $this->semValue = array(); - }, 4 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; + } + // If either one is an object it should be castable to a string + if (is_object($argument) xor is_object($this->value)) { + if (is_object($argument) && !method_exists($argument, '__toString')) { + return \false; } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; + if (is_object($this->value) && !method_exists($this->value, '__toString')) { + return \false; } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 5 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 6 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 7 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 8 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 9 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 10 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 11 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 12 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 13 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 14 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 15 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 16 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 17 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 18 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 19 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 20 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 21 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 22 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 23 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 24 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 25 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 26 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 27 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 28 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 29 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 30 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 31 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 32 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 33 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 34 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 35 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 36 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 37 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 38 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 39 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 40 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 41 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 42 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 43 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 44 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 45 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 46 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 47 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 48 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 49 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 50 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 51 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 52 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 53 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 54 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 55 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 56 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 57 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 58 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 59 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 60 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 61 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 62 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 63 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 64 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 65 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 66 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 67 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 68 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 69 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 70 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 71 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 72 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 73 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 74 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 75 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 76 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 77 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 78 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 79 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 80 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 81 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 82 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 83 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 84 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 85 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 86 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 87 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 88 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 89 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 90 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 91 => function ($stackPos) { - $this->semValue = new Name(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 92 => function ($stackPos) { - $this->semValue = new Expr\Variable(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 93 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 94 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 95 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 96 => function ($stackPos) { - $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 97 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (3 - 2)], null, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON); - $this->checkNamespace($this->semValue); - }, 98 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); - $this->checkNamespace($this->semValue); - }, 99 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); - $this->checkNamespace($this->semValue); - }, 100 => function ($stackPos) { - $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 101 => function ($stackPos) { - $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 102 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 103 => function ($stackPos) { - $this->semValue = new Stmt\Const_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 104 => function ($stackPos) { - $this->semValue = Stmt\Use_::TYPE_FUNCTION; - }, 105 => function ($stackPos) { - $this->semValue = Stmt\Use_::TYPE_CONSTANT; - }, 106 => function ($stackPos) { - $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->semStack[$stackPos - (7 - 2)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 107 => function ($stackPos) { - $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 108 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 109 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 110 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 111 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 112 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 113 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 114 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); - }, 115 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); - }, 116 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); - }, 117 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); - }, 118 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - $this->semValue->type = Stmt\Use_::TYPE_NORMAL; - }, 119 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue->type = $this->semStack[$stackPos - (2 - 1)]; - }, 120 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 121 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 122 => function ($stackPos) { - $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 123 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 124 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 125 => function ($stackPos) { - $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 126 => function ($stackPos) { - if (\is_array($this->semStack[$stackPos - (2 - 2)])) { - $this->semValue = \array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - } else { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - } - }, 127 => function ($stackPos) { - $this->semValue = array(); - }, 128 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; - } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 129 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 130 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 131 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 132 => function ($stackPos) { - throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 133 => function ($stackPos) { - if ($this->semStack[$stackPos - (3 - 2)]) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)]; - $stmts = $this->semValue; - if (!empty($attrs['comments'])) { - $stmts[0]->setAttribute('comments', \array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); - } - } else { - $startAttributes = $this->startAttributeStack[$stackPos - (3 - 1)]; - if (isset($startAttributes['comments'])) { - $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); - } else { - $this->semValue = null; - } - if (null === $this->semValue) { - $this->semValue = array(); - } + if (is_numeric($argument) xor is_numeric($this->value)) { + return strval($argument) == strval($this->value) ? 10 : \false; } - }, 134 => function ($stackPos) { - $this->semValue = new Stmt\If_($this->semStack[$stackPos - (5 - 2)], ['stmts' => \is_array($this->semStack[$stackPos - (5 - 3)]) ? $this->semStack[$stackPos - (5 - 3)] : array($this->semStack[$stackPos - (5 - 3)]), 'elseifs' => $this->semStack[$stackPos - (5 - 4)], 'else' => $this->semStack[$stackPos - (5 - 5)]], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 135 => function ($stackPos) { - $this->semValue = new Stmt\If_($this->semStack[$stackPos - (8 - 2)], ['stmts' => $this->semStack[$stackPos - (8 - 4)], 'elseifs' => $this->semStack[$stackPos - (8 - 5)], 'else' => $this->semStack[$stackPos - (8 - 6)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 136 => function ($stackPos) { - $this->semValue = new Stmt\While_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 137 => function ($stackPos) { - $this->semValue = new Stmt\Do_($this->semStack[$stackPos - (5 - 4)], \is_array($this->semStack[$stackPos - (5 - 2)]) ? $this->semStack[$stackPos - (5 - 2)] : array($this->semStack[$stackPos - (5 - 2)]), $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 138 => function ($stackPos) { - $this->semValue = new Stmt\For_(['init' => $this->semStack[$stackPos - (9 - 3)], 'cond' => $this->semStack[$stackPos - (9 - 5)], 'loop' => $this->semStack[$stackPos - (9 - 7)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 139 => function ($stackPos) { - $this->semValue = new Stmt\Switch_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 140 => function ($stackPos) { - $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 141 => function ($stackPos) { - $this->semValue = new Stmt\Break_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 142 => function ($stackPos) { - $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 143 => function ($stackPos) { - $this->semValue = new Stmt\Continue_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 144 => function ($stackPos) { - $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 145 => function ($stackPos) { - $this->semValue = new Stmt\Return_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 146 => function ($stackPos) { - $this->semValue = new Stmt\Global_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 147 => function ($stackPos) { - $this->semValue = new Stmt\Static_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 148 => function ($stackPos) { - $this->semValue = new Stmt\Echo_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 149 => function ($stackPos) { - $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 150 => function ($stackPos) { - $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 151 => function ($stackPos) { - $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 152 => function ($stackPos) { - $this->semValue = new Stmt\Unset_($this->semStack[$stackPos - (5 - 3)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 153 => function ($stackPos) { - $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 154 => function ($stackPos) { - $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (9 - 3)], $this->semStack[$stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$stackPos - (9 - 5)], 'byRef' => $this->semStack[$stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 155 => function ($stackPos) { - $this->semValue = new Stmt\Declare_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 156 => function ($stackPos) { - $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 5)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - $this->checkTryCatch($this->semValue); - }, 157 => function ($stackPos) { - $this->semValue = new Stmt\Throw_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 158 => function ($stackPos) { - $this->semValue = new Stmt\Goto_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 159 => function ($stackPos) { - $this->semValue = new Stmt\Label($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 160 => function ($stackPos) { - $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 161 => function ($stackPos) { - $this->semValue = array(); - /* means: no statement */ - }, 162 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 163 => function ($stackPos) { - $startAttributes = $this->startAttributeStack[$stackPos - (1 - 1)]; - if (isset($startAttributes['comments'])) { - $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); - } else { - $this->semValue = null; + } elseif (is_numeric($argument) && is_numeric($this->value)) { + // noop + } elseif (gettype($argument) !== gettype($this->value)) { + return \false; + } + return $argument == $this->value ? 10 : \false; + } + /** + * Returns preset value against which token checks arguments. + * + * @return mixed + */ + public function getValue() + { + return $this->value; + } + /** + * Returns false. + * + * @return bool + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + if (null === $this->string) { + $this->string = sprintf('exact(%s)', $this->util->stringify($this->value)); + } + return $this->string; + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +/** + * Logical AND token. + * + * @author Boris Mikhaylov + */ +class LogicalAndToken implements \Prophecy\Argument\Token\TokenInterface +{ + /** + * @var list + */ + private $tokens = array(); + /** + * @param array $arguments exact values or tokens + */ + public function __construct(array $arguments) + { + foreach ($arguments as $argument) { + if (!$argument instanceof \Prophecy\Argument\Token\TokenInterface) { + $argument = new \Prophecy\Argument\Token\ExactValueToken($argument); } - if ($this->semValue === null) { - $this->semValue = array(); + $this->tokens[] = $argument; + } + } + /** + * Scores maximum score from scores returned by tokens for this argument if all of them score. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument) + { + if (0 === count($this->tokens)) { + return \false; + } + $maxScore = 0; + foreach ($this->tokens as $token) { + $score = $token->scoreArgument($argument); + if (\false === $score) { + return \false; } - /* means: no statement */ - }, 164 => function ($stackPos) { - $this->semValue = array(); - }, 165 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 166 => function ($stackPos) { - $this->semValue = new Stmt\Catch_(array($this->semStack[$stackPos - (8 - 3)]), $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 7)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 167 => function ($stackPos) { - $this->semValue = null; - }, 168 => function ($stackPos) { - $this->semValue = new Stmt\Finally_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 169 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 170 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 171 => function ($stackPos) { - $this->semValue = \false; - }, 172 => function ($stackPos) { - $this->semValue = \true; - }, 173 => function ($stackPos) { - $this->semValue = \false; - }, 174 => function ($stackPos) { - $this->semValue = \true; - }, 175 => function ($stackPos) { - $this->semValue = \false; - }, 176 => function ($stackPos) { - $this->semValue = \true; - }, 177 => function ($stackPos) { - $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (10 - 3)], ['byRef' => $this->semStack[$stackPos - (10 - 2)], 'params' => $this->semStack[$stackPos - (10 - 5)], 'returnType' => $this->semStack[$stackPos - (10 - 7)], 'stmts' => $this->semStack[$stackPos - (10 - 9)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - }, 178 => function ($stackPos) { - $this->semValue = new Stmt\Class_($this->semStack[$stackPos - (7 - 2)], ['type' => $this->semStack[$stackPos - (7 - 1)], 'extends' => $this->semStack[$stackPos - (7 - 3)], 'implements' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - $this->checkClass($this->semValue, $stackPos - (7 - 2)); - }, 179 => function ($stackPos) { - $this->semValue = new Stmt\Interface_($this->semStack[$stackPos - (6 - 2)], ['extends' => $this->semStack[$stackPos - (6 - 3)], 'stmts' => $this->semStack[$stackPos - (6 - 5)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - $this->checkInterface($this->semValue, $stackPos - (6 - 2)); - }, 180 => function ($stackPos) { - $this->semValue = new Stmt\Trait_($this->semStack[$stackPos - (5 - 2)], ['stmts' => $this->semStack[$stackPos - (5 - 4)]], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 181 => function ($stackPos) { - $this->semValue = 0; - }, 182 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; - }, 183 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_FINAL; - }, 184 => function ($stackPos) { - $this->semValue = null; - }, 185 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 186 => function ($stackPos) { - $this->semValue = array(); - }, 187 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 188 => function ($stackPos) { - $this->semValue = array(); - }, 189 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 190 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 191 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 192 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 193 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 194 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 195 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 196 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 197 => function ($stackPos) { - $this->semValue = null; - }, 198 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 199 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 200 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 201 => function ($stackPos) { - $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 202 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 203 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 3)]; - }, 204 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 205 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (5 - 3)]; - }, 206 => function ($stackPos) { - $this->semValue = array(); - }, 207 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 208 => function ($stackPos) { - $this->semValue = new Stmt\Case_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 209 => function ($stackPos) { - $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 210 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 211 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 212 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 213 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 214 => function ($stackPos) { - $this->semValue = array(); - }, 215 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 216 => function ($stackPos) { - $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (3 - 2)], \is_array($this->semStack[$stackPos - (3 - 3)]) ? $this->semStack[$stackPos - (3 - 3)] : array($this->semStack[$stackPos - (3 - 3)]), $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 217 => function ($stackPos) { - $this->semValue = array(); - }, 218 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 219 => function ($stackPos) { - $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 220 => function ($stackPos) { - $this->semValue = null; - }, 221 => function ($stackPos) { - $this->semValue = new Stmt\Else_(\is_array($this->semStack[$stackPos - (2 - 2)]) ? $this->semStack[$stackPos - (2 - 2)] : array($this->semStack[$stackPos - (2 - 2)]), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 222 => function ($stackPos) { - $this->semValue = null; - }, 223 => function ($stackPos) { - $this->semValue = new Stmt\Else_($this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 224 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); - }, 225 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (2 - 2)], \true); - }, 226 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); - }, 227 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 228 => function ($stackPos) { - $this->semValue = array(); - }, 229 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 230 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 231 => function ($stackPos) { - $this->semValue = new Node\Param($this->semStack[$stackPos - (4 - 4)], null, $this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - $this->checkParam($this->semValue); - }, 232 => function ($stackPos) { - $this->semValue = new Node\Param($this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 6)], $this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 3)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - $this->checkParam($this->semValue); - }, 233 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 234 => function ($stackPos) { - $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 235 => function ($stackPos) { - $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 236 => function ($stackPos) { - $this->semValue = null; - }, 237 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 238 => function ($stackPos) { - $this->semValue = null; - }, 239 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 240 => function ($stackPos) { - $this->semValue = array(); - }, 241 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 242 => function ($stackPos) { - $this->semValue = array(new Node\Arg($this->semStack[$stackPos - (3 - 2)], \false, \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes)); - }, 243 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 244 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 245 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (1 - 1)], \false, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 246 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \true, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 247 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \false, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 248 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 249 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 250 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 251 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 252 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 253 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 254 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 255 => function ($stackPos) { - $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 256 => function ($stackPos) { - $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 257 => function ($stackPos) { - if ($this->semStack[$stackPos - (2 - 2)] !== null) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - } - }, 258 => function ($stackPos) { - $this->semValue = array(); - }, 259 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; - } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; + $maxScore = max($score, $maxScore); + } + return $maxScore; + } + /** + * Returns false. + * + * @return boolean + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return sprintf('bool(%s)', implode(' AND ', $this->tokens)); + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +/** + * Any values token. + * + * @author Konstantin Kudryashov + */ +class AnyValuesToken implements \Prophecy\Argument\Token\TokenInterface +{ + /** + * Always scores 2 for any argument. + * + * @param $argument + * + * @return int + */ + public function scoreArgument($argument) + { + return 2; + } + /** + * Returns true to stop wildcard from processing other tokens. + * + * @return bool + */ + public function isLast() + { + return \true; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return '* [, ...]'; + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +/** + * Check if values is in array + * + * @author Vinícius Alonso + */ +class InArrayToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $token = array(); + private $strict; + /** + * @param array $arguments tokens + * @param bool $strict + */ + public function __construct(array $arguments, $strict = \true) + { + $this->token = $arguments; + $this->strict = $strict; + } + /** + * Return scores 8 score if argument is in array. + * + * @param $argument + * + * @return bool|int + */ + public function scoreArgument($argument) + { + if (count($this->token) === 0) { + return \false; + } + if (\in_array($argument, $this->token, $this->strict)) { + return 8; + } + return \false; + } + /** + * Returns false. + * + * @return boolean + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + $arrayAsString = implode(', ', $this->token); + return "[{$arrayAsString}]"; + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +use Prophecy\Exception\InvalidArgumentException; +/** + * Callback-verified token. + * + * @author Konstantin Kudryashov + */ +class CallbackToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $callback; + /** + * @var string|null + */ + private $customStringRepresentation; + /** + * Initializes token. + * + * @param callable $callback + * @param string|null $customStringRepresentation Customize the __toString() representation of this token + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function __construct($callback, ?string $customStringRepresentation = null) + { + if (!is_callable($callback)) { + throw new InvalidArgumentException(sprintf('Callable expected as an argument to CallbackToken, but got %s.', gettype($callback))); + } + $this->callback = $callback; + $this->customStringRepresentation = $customStringRepresentation; + } + /** + * Scores 7 if callback returns true, false otherwise. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument) + { + return call_user_func($this->callback, $argument) ? 7 : \false; + } + /** + * Returns false. + * + * @return bool + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + if ($this->customStringRepresentation !== null) { + return $this->customStringRepresentation; + } + return 'callback()'; + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +use Prophecy\Util\StringUtil; +/** + * Identical value token. + * + * @author Florian Voutzinos + */ +class IdenticalValueToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $value; + /** + * @var string|null + */ + private $string; + private $util; + /** + * Initializes token. + * + * @param mixed $value + */ + public function __construct($value, StringUtil $util = null) + { + $this->value = $value; + $this->util = $util ?: new StringUtil(); + } + /** + * Scores 11 if argument matches preset value. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument) + { + return $argument === $this->value ? 11 : \false; + } + /** + * Returns false. + * + * @return bool + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + if (null === $this->string) { + $this->string = sprintf('identical(%s)', $this->util->stringify($this->value)); + } + return $this->string; + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +use Prophecy\Exception\InvalidArgumentException; +/** + * Value type token. + * + * @author Konstantin Kudryashov + */ +class TypeToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $type; + /** + * @param string $type + */ + public function __construct($type) + { + $checker = "is_{$type}"; + if (!function_exists($checker) && !interface_exists($type) && !class_exists($type)) { + throw new InvalidArgumentException(sprintf('Type or class name expected as an argument to TypeToken, but got %s.', $type)); + } + $this->type = $type; + } + /** + * Scores 5 if argument has the same type this token was constructed with. + * + * @param $argument + * + * @return bool|int + */ + public function scoreArgument($argument) + { + $checker = "is_{$this->type}"; + if (function_exists($checker)) { + return call_user_func($checker, $argument) ? 5 : \false; + } + return $argument instanceof $this->type ? 5 : \false; + } + /** + * Returns false. + * + * @return bool + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return sprintf('type(%s)', $this->type); + } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Argument\Token; + +use Prophecy\Comparator\FactoryProvider; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory as ComparatorFactory; +use Prophecy\Util\StringUtil; +/** + * Object state-checker token. + * + * @author Konstantin Kudryashov + */ +class ObjectStateToken implements \Prophecy\Argument\Token\TokenInterface +{ + private $name; + private $value; + private $util; + private $comparatorFactory; + /** + * Initializes token. + * + * @param string $methodName + * @param mixed $value Expected return value + */ + public function __construct($methodName, $value, StringUtil $util = null, ComparatorFactory $comparatorFactory = null) + { + $this->name = $methodName; + $this->value = $value; + $this->util = $util ?: new StringUtil(); + $this->comparatorFactory = $comparatorFactory ?: FactoryProvider::getInstance(); + } + /** + * Scores 8 if argument is an object, which method returns expected value. + * + * @param mixed $argument + * + * @return bool|int + */ + public function scoreArgument($argument) + { + $methodCallable = array($argument, $this->name); + if (is_object($argument) && method_exists($argument, $this->name) && is_callable($methodCallable)) { + $actual = call_user_func($methodCallable); + $comparator = $this->comparatorFactory->getComparatorFor($this->value, $actual); + try { + $comparator->assertEquals($this->value, $actual); + return 8; + } catch (ComparisonFailure $failure) { + return \false; } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 260 => function ($stackPos) { - $this->semValue = new Stmt\Property($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->checkProperty($this->semValue, $stackPos - (3 - 1)); - }, 261 => function ($stackPos) { - $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos - (3 - 2)], 0, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 262 => function ($stackPos) { - $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos - (9 - 4)], ['type' => $this->semStack[$stackPos - (9 - 1)], 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 6)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - $this->checkClassMethod($this->semValue, $stackPos - (9 - 1)); - }, 263 => function ($stackPos) { - $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 264 => function ($stackPos) { - $this->semValue = array(); - }, 265 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 266 => function ($stackPos) { - $this->semValue = array(); - }, 267 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 268 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 269 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (5 - 1)][0], $this->semStack[$stackPos - (5 - 1)][1], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 270 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], null, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 271 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 272 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 273 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 274 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 275 => function ($stackPos) { - $this->semValue = array(null, $this->semStack[$stackPos - (1 - 1)]); - }, 276 => function ($stackPos) { - $this->semValue = null; - }, 277 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 278 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 279 => function ($stackPos) { - $this->semValue = 0; - }, 280 => function ($stackPos) { - $this->semValue = 0; - }, 281 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 282 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 283 => function ($stackPos) { - $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); - $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; - }, 284 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; - }, 285 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; - }, 286 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; - }, 287 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_STATIC; - }, 288 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; - }, 289 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_FINAL; - }, 290 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 291 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 292 => function ($stackPos) { - $this->semValue = new Node\VarLikeIdentifier(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 293 => function ($stackPos) { - $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 294 => function ($stackPos) { - $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 295 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 296 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 297 => function ($stackPos) { - $this->semValue = array(); - }, 298 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 299 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 300 => function ($stackPos) { - $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 301 => function ($stackPos) { - $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 302 => function ($stackPos) { - $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 303 => function ($stackPos) { - $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 304 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 305 => function ($stackPos) { - $this->semValue = new Expr\Clone_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 306 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 307 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 308 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 309 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 310 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 311 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 312 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 313 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 314 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 315 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 316 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 317 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 318 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 319 => function ($stackPos) { - $this->semValue = new Expr\PostInc($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 320 => function ($stackPos) { - $this->semValue = new Expr\PreInc($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 321 => function ($stackPos) { - $this->semValue = new Expr\PostDec($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 322 => function ($stackPos) { - $this->semValue = new Expr\PreDec($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 323 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 324 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 325 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 326 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 327 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 328 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 329 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 330 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 331 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 332 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 333 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 334 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 335 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 336 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 337 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 338 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 339 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 340 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 341 => function ($stackPos) { - $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 342 => function ($stackPos) { - $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 343 => function ($stackPos) { - $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 344 => function ($stackPos) { - $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 345 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 346 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 347 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 348 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 349 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 350 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 351 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 352 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 353 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 354 => function ($stackPos) { - $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 355 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 356 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 357 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 358 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 359 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 360 => function ($stackPos) { - $this->semValue = new Expr\Isset_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 361 => function ($stackPos) { - $this->semValue = new Expr\Empty_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 362 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 363 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 364 => function ($stackPos) { - $this->semValue = new Expr\Eval_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 365 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 366 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 367 => function ($stackPos) { - $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 368 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; - $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos - (2 - 1)]); - $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos - (2 - 2)], $attrs); - }, 369 => function ($stackPos) { - $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 370 => function ($stackPos) { - $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 371 => function ($stackPos) { - $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 372 => function ($stackPos) { - $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 373 => function ($stackPos) { - $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 374 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; - $attrs['kind'] = \strtolower($this->semStack[$stackPos - (2 - 1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE; - $this->semValue = new Expr\Exit_($this->semStack[$stackPos - (2 - 2)], $attrs); - }, 375 => function ($stackPos) { - $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 376 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 377 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 378 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 379 => function ($stackPos) { - $this->semValue = new Expr\ShellExec($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 380 => function ($stackPos) { - $this->semValue = new Expr\Print_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 381 => function ($stackPos) { - $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 382 => function ($stackPos) { - $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 383 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (10 - 2)], 'params' => $this->semStack[$stackPos - (10 - 4)], 'uses' => $this->semStack[$stackPos - (10 - 6)], 'returnType' => $this->semStack[$stackPos - (10 - 7)], 'stmts' => $this->semStack[$stackPos - (10 - 9)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - }, 384 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (11 - 3)], 'params' => $this->semStack[$stackPos - (11 - 5)], 'uses' => $this->semStack[$stackPos - (11 - 7)], 'returnType' => $this->semStack[$stackPos - (11 - 8)], 'stmts' => $this->semStack[$stackPos - (11 - 10)]], $this->startAttributeStack[$stackPos - (11 - 1)] + $this->endAttributes); - }, 385 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 386 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 387 => function ($stackPos) { - $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (2 - 2)], null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 388 => function ($stackPos) { - $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 389 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes; - $attrs['kind'] = Expr\Array_::KIND_LONG; - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $attrs); - }, 390 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; - $attrs['kind'] = Expr\Array_::KIND_SHORT; - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $attrs); - }, 391 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 392 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch(Scalar\String_::fromString($this->semStack[$stackPos - (4 - 1)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 393 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 394 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 395 => function ($stackPos) { - $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$stackPos - (7 - 3)], 'implements' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (7 - 2)]); - $this->checkClass($this->semValue[0], -1); - }, 396 => function ($stackPos) { - $this->semValue = new Expr\New_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 397 => function ($stackPos) { - list($class, $ctorArgs) = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 398 => function ($stackPos) { - $this->semValue = array(); - }, 399 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 3)]; - }, 400 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 401 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 402 => function ($stackPos) { - $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos - (2 - 2)], $this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 403 => function ($stackPos) { - $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 404 => function ($stackPos) { - $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 405 => function ($stackPos) { - $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 406 => function ($stackPos) { - $this->semValue = $this->fixupPhp5StaticPropCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 407 => function ($stackPos) { - $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 408 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 409 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 410 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 411 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 412 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 413 => function ($stackPos) { - $this->semValue = new Name\FullyQualified(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 414 => function ($stackPos) { - $this->semValue = new Name\Relative(\substr($this->semStack[$stackPos - (1 - 1)], 10), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 415 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 416 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 417 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 418 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 419 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 420 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 421 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 422 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 423 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 424 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 425 => function ($stackPos) { - $this->semValue = null; - }, 426 => function ($stackPos) { - $this->semValue = null; - }, 427 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 428 => function ($stackPos) { - $this->semValue = array(); - }, 429 => function ($stackPos) { - $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos - (1 - 1)], '`', \false), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); - }, 430 => function ($stackPos) { - foreach ($this->semStack[$stackPos - (1 - 1)] as $s) { - if ($s instanceof Node\Scalar\EncapsedStringPart) { - $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', \false); - } - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 431 => function ($stackPos) { - $this->semValue = array(); - }, 432 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 433 => function ($stackPos) { - $this->semValue = $this->parseLNumber($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes, \true); - }, 434 => function ($stackPos) { - $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 435 => function ($stackPos) { - $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes, \false); - }, 436 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 437 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 438 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 439 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 440 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 441 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 442 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 443 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 444 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \false); - }, 445 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (2 - 1)], '', $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (2 - 2)] + $this->endAttributeStack[$stackPos - (2 - 2)], \false); - }, 446 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 447 => function ($stackPos) { - $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 448 => function ($stackPos) { - $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 449 => function ($stackPos) { - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 450 => function ($stackPos) { - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 451 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 452 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 453 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 454 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 455 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 456 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 457 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 458 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 459 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 460 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 461 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 462 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 463 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 464 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 465 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 466 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 467 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 468 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 469 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 470 => function ($stackPos) { - $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 471 => function ($stackPos) { - $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 472 => function ($stackPos) { - $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 473 => function ($stackPos) { - $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 474 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 475 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 476 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 477 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 478 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 479 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 480 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 481 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 482 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 483 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 484 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 485 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 486 => function ($stackPos) { - $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 487 => function ($stackPos) { - $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 488 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 489 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 490 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; - $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED; - foreach ($this->semStack[$stackPos - (3 - 2)] as $s) { - if ($s instanceof Node\Scalar\EncapsedStringPart) { - $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', \true); - } - } - $this->semValue = new Scalar\Encapsed($this->semStack[$stackPos - (3 - 2)], $attrs); - }, 491 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); - }, 492 => function ($stackPos) { - $this->semValue = array(); - }, 493 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 494 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 495 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 496 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 497 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 498 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 499 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 500 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 501 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 502 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 503 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 504 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 505 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 506 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 507 => function ($stackPos) { - $this->semValue = new Expr\MethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 508 => function ($stackPos) { - $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 509 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 510 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 511 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 512 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 513 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 514 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 515 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 516 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 517 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 518 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 519 => function ($stackPos) { - $var = \substr($this->semStack[$stackPos - (1 - 1)], 1); - $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes) : $var; - }, 520 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 521 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 522 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 523 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 524 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 525 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 526 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 527 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 528 => function ($stackPos) { - $this->semValue = null; - }, 529 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 530 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 531 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 532 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 533 => function ($stackPos) { - $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->errorState = 2; - }, 534 => function ($stackPos) { - $this->semValue = new Expr\List_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 535 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 536 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 537 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 538 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 539 => function ($stackPos) { - $this->semValue = null; - }, 540 => function ($stackPos) { - $this->semValue = array(); - }, 541 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 542 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 543 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 544 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 545 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 546 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 1)], \true, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 547 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 548 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 549 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 550 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 551 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 552 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - }, 553 => function ($stackPos) { - $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 554 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 555 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 556 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 557 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 558 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 559 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 560 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 4)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 561 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 562 => function ($stackPos) { - $this->semValue = new Scalar\String_($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 563 => function ($stackPos) { - $this->semValue = $this->parseNumString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 564 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }]; - } -} -'", "T_IS_GREATER_OR_EQUAL", "T_SL", "T_SR", "'+'", "'-'", "'.'", "'*'", "'/'", "'%'", "'!'", "T_INSTANCEOF", "'~'", "T_INC", "T_DEC", "T_INT_CAST", "T_DOUBLE_CAST", "T_STRING_CAST", "T_ARRAY_CAST", "T_OBJECT_CAST", "T_BOOL_CAST", "T_UNSET_CAST", "'@'", "T_POW", "'['", "T_NEW", "T_CLONE", "T_EXIT", "T_IF", "T_ELSEIF", "T_ELSE", "T_ENDIF", "T_LNUMBER", "T_DNUMBER", "T_STRING", "T_STRING_VARNAME", "T_VARIABLE", "T_NUM_STRING", "T_INLINE_HTML", "T_ENCAPSED_AND_WHITESPACE", "T_CONSTANT_ENCAPSED_STRING", "T_ECHO", "T_DO", "T_WHILE", "T_ENDWHILE", "T_FOR", "T_ENDFOR", "T_FOREACH", "T_ENDFOREACH", "T_DECLARE", "T_ENDDECLARE", "T_AS", "T_SWITCH", "T_MATCH", "T_ENDSWITCH", "T_CASE", "T_DEFAULT", "T_BREAK", "T_CONTINUE", "T_GOTO", "T_FUNCTION", "T_FN", "T_CONST", "T_RETURN", "T_TRY", "T_CATCH", "T_FINALLY", "T_USE", "T_INSTEADOF", "T_GLOBAL", "T_STATIC", "T_ABSTRACT", "T_FINAL", "T_PRIVATE", "T_PROTECTED", "T_PUBLIC", "T_READONLY", "T_VAR", "T_UNSET", "T_ISSET", "T_EMPTY", "T_HALT_COMPILER", "T_CLASS", "T_TRAIT", "T_INTERFACE", "T_ENUM", "T_EXTENDS", "T_IMPLEMENTS", "T_OBJECT_OPERATOR", "T_NULLSAFE_OBJECT_OPERATOR", "T_LIST", "T_ARRAY", "T_CALLABLE", "T_CLASS_C", "T_TRAIT_C", "T_METHOD_C", "T_FUNC_C", "T_LINE", "T_FILE", "T_START_HEREDOC", "T_END_HEREDOC", "T_DOLLAR_OPEN_CURLY_BRACES", "T_CURLY_OPEN", "T_PAAMAYIM_NEKUDOTAYIM", "T_NAMESPACE", "T_NS_C", "T_DIR", "T_NS_SEPARATOR", "T_ELLIPSIS", "T_NAME_FULLY_QUALIFIED", "T_NAME_QUALIFIED", "T_NAME_RELATIVE", "T_ATTRIBUTE", "';'", "']'", "'{'", "'}'", "'('", "')'", "'`'", "'\"'", "'\$'"); - protected $tokenToSymbol = array(0, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 56, 166, 168, 167, 55, 168, 168, 163, 164, 53, 50, 8, 51, 52, 54, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 31, 159, 44, 16, 46, 30, 68, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 70, 168, 160, 36, 168, 165, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 161, 35, 162, 58, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158); - protected $action = array(132, 133, 134, 570, 135, 136, 0, 729, 730, 731, 137, 37, 929, 450, 451, 452, -32766, -32766, -32766, -32767, -32767, -32767, -32767, 101, 102, 103, 104, 105, 1085, 1086, 1087, 1084, 1083, 1082, 1088, 723, 722, -32766, 1275, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, -32767, 373, 374, 918, 2, 732, -32766, -32766, -32766, 1001, 472, 417, 150, -32766, -32766, -32766, 375, 374, 12, 267, 138, 399, 736, 737, 738, 739, 417, -32766, 423, -32766, -32766, -32766, -32766, -32766, -32766, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 770, 571, 771, 772, 773, 774, 762, 763, 339, 340, 765, 766, 751, 752, 753, 755, 756, 757, 349, 797, 798, 799, 800, 801, 802, 758, 759, 572, 573, 791, 782, 780, 781, 794, 777, 778, 323, 423, 574, 575, 776, 576, 577, 578, 579, 580, 581, -324, -585, 810, 34, 805, 779, 582, 583, -585, 139, -32766, -32766, -32766, 132, 133, 134, 570, 135, 136, 1034, 729, 730, 731, 137, 37, -32766, -32766, -32766, 544, 814, 126, -32766, 1310, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 1085, 1086, 1087, 1084, 1083, 1082, 1088, 473, 723, 722, -32766, -32766, -32766, 458, 459, 81, -32766, -32766, -32766, -193, -192, 322, 898, 240, 599, 1210, 1209, 1211, 732, 816, 703, -32766, 1063, -32766, -32766, -32766, -32766, -32766, 811, -32766, -32766, -32766, 267, 138, 399, 736, 737, 738, 739, 1247, 1295, 423, 694, 1320, 35, 249, 1321, 1294, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 770, 571, 771, 772, 773, 774, 762, 763, 339, 340, 765, 766, 751, 752, 753, 755, 756, 757, 349, 797, 798, 799, 800, 801, 802, 758, 759, 572, 573, 791, 782, 780, 781, 794, 777, 778, 888, 593, 574, 575, 776, 576, 577, 578, 579, 580, 581, -324, 82, 83, 84, -585, 779, 582, 583, -585, 148, 754, 724, 725, 726, 727, 728, -582, 729, 730, 731, 767, 768, 36, -582, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, -362, 271, -362, -32766, -32766, -32766, 106, 107, 108, -268, 271, -193, -192, 109, 933, 934, 900, 732, 689, 935, 14, 288, 109, 815, -32766, 1061, -32766, -32766, 964, -86, 288, 733, 734, 735, 736, 737, 738, 739, 239, 384, 803, 11, 1077, -539, -32766, -32766, -32766, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 770, 793, 771, 772, 773, 774, 762, 763, 764, 792, 765, 766, 751, 752, 753, 755, 756, 757, 796, 797, 798, 799, 800, 801, 802, 758, 759, 760, 761, 791, 782, 780, 781, 794, 777, 778, 128, -86, 769, 775, 776, 783, 784, 786, 785, 787, 788, -576, 144, -539, -539, -576, 779, 790, 789, 49, 50, 51, 503, 52, 53, 997, 996, 995, 998, 54, 55, -111, 56, -582, 1033, 1010, -111, -582, -111, 1291, -539, -32766, -32766, 302, 1010, 1010, -111, -111, -111, -111, -111, -111, -111, -111, 1208, 841, 898, 842, 253, 807, 287, 306, 965, 284, 898, 723, 722, 57, 58, 287, 287, 1007, -536, 59, 308, 60, 246, 247, 61, 62, 63, 64, 65, 66, 67, 68, 695, 27, 269, 69, 439, 504, -338, 1010, 696, 1241, 1242, 505, 898, 814, 640, 25, 898, 1239, 41, 24, 506, 320, 507, 1235, 508, 1009, 509, 149, 402, 510, 511, 841, 805, 842, 43, 44, 440, 370, 369, 898, 45, 512, 698, 1210, 1209, 1211, 361, 335, 1215, 809, -536, -536, 336, 888, 691, 513, 514, 515, 1215, 1007, 1062, 888, 715, 1007, 337, -536, 363, 516, 517, 705, 1229, 1230, 1231, 1232, 1226, 1227, 294, -536, -16, -542, 813, 1010, 1233, 1228, 367, 1010, 1210, 1209, 1211, 295, -153, -153, -153, 382, 70, 888, 318, 319, 322, 888, 659, 660, -535, 1206, 814, -153, 279, -153, 435, -153, 279, -153, 436, 141, 103, 104, 105, 632, 633, 322, 437, 368, 888, -32766, -32766, 371, 372, 438, 900, 814, 689, 820, -111, -111, 376, 377, 950, -111, 689, 814, -88, 151, 874, -111, -111, -111, -111, 31, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 723, 722, 1206, 153, 154, -535, -535, 155, 898, 900, 157, 689, 1206, 900, -111, 689, -153, 32, 123, 898, -535, 124, 140, -32766, -537, 129, 130, 143, 322, 1122, 1124, 158, -535, -32766, -541, -534, 900, -32766, 689, 159, -534, 723, 722, 1208, 295, 160, 161, -79, -75, 74, -32766, -32766, -32766, 322, -32766, -73, -32766, -298, -32766, 74, -294, -32766, -72, 322, -71, -70, -32766, -32766, -32766, -69, -68, -67, -32766, -32766, 27, -66, -47, 1215, -32766, 414, -18, 147, 275, 270, 281, 704, 814, -32766, -537, -537, 1239, 888, 707, 897, 146, 276, 48, -4, 898, -534, -534, 282, 888, -537, -534, -534, 283, -246, -246, -246, 329, 285, 271, 368, -534, -537, 286, 73, 289, -534, 1206, 47, 723, 722, -111, -111, -534, 290, 109, -111, 914, -534, 550, 669, 874, -111, -111, -111, -111, 145, 516, 517, -32766, 1229, 1230, 1231, 1232, 1226, 1227, 814, 805, 1322, 662, 300, 1092, 1233, 1228, 682, 814, -32766, 298, 299, 546, 641, 647, 1208, 900, 72, 689, -246, 319, 322, -32766, -32766, -32766, 366, -32766, 900, -32766, 689, -32766, 888, 646, -32766, 13, 296, 297, 127, -32766, -32766, -32766, 455, 1206, -51, -32766, -32766, 483, 630, 663, 556, -32766, 414, 303, 368, -111, 430, 434, 39, 930, -32766, 293, 0, 125, -32766, -111, -111, 301, 0, 0, -111, 1010, 307, 0, 0, 833, -111, -111, -111, -111, 0, -32766, 131, 0, 0, 295, 0, -32766, 1246, 0, 74, 0, 1248, 1208, 322, 0, -500, 0, 9, 0, -32766, -32766, -32766, -490, -32766, 7, -32766, 900, -32766, 689, -4, -32766, 16, 365, 597, 813, -32766, -32766, -32766, 916, 295, 709, -32766, -32766, 1240, -32766, 40, 712, -32766, 414, 713, 1208, 879, 898, 974, 951, 958, -32766, -32766, -32766, -32766, 948, -32766, 959, -32766, 877, -32766, 946, 1066, -32766, 1069, 1070, 1067, 1068, -32766, -32766, -32766, -32766, 1074, 33, -32766, -32766, 1236, 1208, 825, 1261, -32766, 414, 1279, 1313, -32766, -32766, -32766, 317, -32766, -32766, -32766, 635, -32766, 364, 690, -32766, 693, 697, 699, 478, -32766, -32766, -32766, -32766, 700, 701, -32766, -32766, 702, 1208, 562, 706, -32766, 414, 692, -570, -32766, -32766, -32766, 875, -32766, -32766, -32766, 1317, -32766, 1319, 836, -32766, 835, 844, 888, 923, -32766, -32766, -32766, 966, 843, 1318, -32766, -32766, 922, 924, 921, 1194, -32766, 414, -245, -245, -245, 907, 917, 905, 368, -32766, 956, 957, 1316, 1273, 1262, 0, 1280, 1286, 1289, -111, -111, -568, 27, -542, -111, -541, -540, 1, 28, 874, -111, -111, -111, -111, 814, 29, -32766, 38, 1239, 42, 46, 71, 1208, 75, 76, 77, 78, 79, 0, -32766, -32766, -32766, 80, -32766, 142, -32766, 152, -32766, 156, 245, -32766, 900, 324, 689, -245, -32766, -32766, -32766, 1206, 350, 351, -32766, -32766, 352, 353, 354, 355, -32766, 414, 356, 357, 358, 359, 360, 362, 431, -32766, -271, -269, 517, -268, 1229, 1230, 1231, 1232, 1226, 1227, 18, 19, 20, 21, 23, 401, 1233, 1228, 474, 475, 482, 485, 486, 487, 488, 492, 493, 494, 72, -504, 501, 319, 322, 676, 1219, 1162, 1237, 1036, 1035, 0, 1016, 1198, 1012, -273, -103, 17, 22, 26, 292, 400, 590, 594, 621, 681, 1166, 1214, 1163, 1292, 0, 1179, 0, 0, 322); - protected $actionCheck = array(2, 3, 4, 5, 6, 7, 0, 9, 10, 11, 12, 13, 128, 129, 130, 131, 9, 10, 11, 44, 45, 46, 47, 48, 49, 50, 51, 52, 116, 117, 118, 119, 120, 121, 122, 37, 38, 30, 1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 106, 107, 1, 8, 57, 9, 10, 11, 1, 31, 116, 14, 9, 10, 11, 106, 107, 8, 71, 72, 73, 74, 75, 76, 77, 116, 30, 80, 32, 33, 34, 35, 36, 30, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 70, 80, 136, 137, 138, 139, 140, 141, 142, 143, 144, 8, 1, 80, 8, 80, 150, 151, 152, 8, 154, 9, 10, 11, 2, 3, 4, 5, 6, 7, 164, 9, 10, 11, 12, 13, 9, 10, 11, 85, 82, 14, 30, 85, 32, 33, 34, 35, 36, 37, 38, 116, 117, 118, 119, 120, 121, 122, 161, 37, 38, 9, 10, 11, 134, 135, 161, 9, 10, 11, 8, 8, 167, 1, 14, 51, 155, 156, 157, 57, 1, 161, 30, 162, 32, 33, 34, 35, 30, 156, 32, 33, 34, 71, 72, 73, 74, 75, 76, 77, 146, 1, 80, 31, 80, 147, 148, 83, 8, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 84, 1, 136, 137, 138, 139, 140, 141, 142, 143, 144, 164, 9, 10, 11, 160, 150, 151, 152, 164, 154, 2, 3, 4, 5, 6, 7, 1, 9, 10, 11, 12, 13, 30, 8, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 106, 57, 108, 9, 10, 11, 53, 54, 55, 164, 57, 164, 164, 69, 117, 118, 159, 57, 161, 122, 101, 30, 69, 159, 30, 1, 32, 33, 31, 31, 30, 71, 72, 73, 74, 75, 76, 77, 97, 106, 80, 108, 123, 70, 9, 10, 11, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 8, 97, 136, 137, 138, 139, 140, 141, 142, 143, 144, 160, 8, 134, 135, 164, 150, 151, 152, 2, 3, 4, 5, 6, 7, 119, 120, 121, 122, 12, 13, 101, 15, 160, 1, 138, 106, 164, 108, 1, 161, 9, 10, 113, 138, 138, 116, 117, 118, 119, 120, 121, 122, 123, 80, 106, 1, 108, 8, 80, 163, 8, 159, 30, 1, 37, 38, 50, 51, 163, 163, 116, 70, 56, 8, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 31, 70, 71, 72, 73, 74, 162, 138, 31, 78, 79, 80, 1, 82, 75, 76, 1, 86, 87, 88, 89, 8, 91, 1, 93, 137, 95, 101, 102, 98, 99, 106, 80, 108, 103, 104, 105, 106, 107, 1, 109, 110, 31, 155, 156, 157, 115, 116, 1, 156, 134, 135, 8, 84, 161, 124, 125, 126, 1, 116, 159, 84, 161, 116, 8, 149, 8, 136, 137, 31, 139, 140, 141, 142, 143, 144, 145, 161, 31, 163, 155, 138, 151, 152, 8, 138, 155, 156, 157, 158, 75, 76, 77, 8, 163, 84, 165, 166, 167, 84, 75, 76, 70, 116, 82, 90, 163, 92, 8, 94, 163, 96, 8, 161, 50, 51, 52, 111, 112, 167, 8, 106, 84, 9, 137, 106, 107, 8, 159, 82, 161, 8, 117, 118, 106, 107, 159, 122, 161, 82, 31, 14, 127, 128, 129, 130, 131, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 37, 38, 116, 14, 14, 134, 135, 14, 1, 159, 14, 161, 116, 159, 128, 161, 162, 14, 16, 1, 149, 16, 161, 137, 70, 16, 16, 16, 167, 59, 60, 16, 161, 137, 163, 70, 159, 74, 161, 16, 70, 37, 38, 80, 158, 16, 16, 31, 31, 163, 87, 88, 89, 167, 91, 31, 93, 35, 95, 163, 35, 98, 31, 167, 31, 31, 103, 104, 105, 31, 31, 31, 109, 110, 70, 31, 31, 1, 115, 116, 31, 31, 35, 31, 31, 31, 82, 124, 134, 135, 86, 84, 31, 31, 31, 35, 70, 0, 1, 134, 135, 35, 84, 149, 134, 135, 35, 100, 101, 102, 35, 37, 57, 106, 149, 161, 37, 154, 37, 149, 116, 70, 37, 38, 117, 118, 161, 37, 69, 122, 38, 161, 89, 77, 127, 128, 129, 130, 131, 70, 136, 137, 85, 139, 140, 141, 142, 143, 144, 82, 80, 83, 94, 132, 82, 151, 152, 92, 82, 74, 134, 135, 85, 90, 100, 80, 159, 163, 161, 162, 166, 167, 87, 88, 89, 149, 91, 159, 93, 161, 95, 84, 96, 98, 97, 134, 135, 161, 103, 104, 105, 97, 116, 31, 109, 110, 97, 113, 100, 153, 115, 116, 114, 106, 128, 108, 128, 159, 128, 124, 113, -1, 161, 137, 117, 118, 133, -1, -1, 122, 138, 132, -1, -1, 127, 128, 129, 130, 131, -1, 137, 31, -1, -1, 158, -1, 74, 146, -1, 163, -1, 146, 80, 167, -1, 149, -1, 150, -1, 87, 88, 89, 149, 91, 149, 93, 159, 95, 161, 162, 98, 149, 149, 153, 155, 103, 104, 105, 154, 158, 162, 109, 110, 166, 74, 159, 159, 115, 116, 159, 80, 159, 1, 159, 159, 159, 124, 87, 88, 89, 159, 91, 159, 93, 159, 95, 159, 159, 98, 159, 159, 159, 159, 103, 104, 105, 74, 159, 161, 109, 110, 160, 80, 160, 160, 115, 116, 160, 160, 87, 88, 89, 161, 91, 124, 93, 160, 95, 161, 161, 98, 161, 161, 161, 102, 103, 104, 105, 74, 161, 161, 109, 110, 161, 80, 81, 161, 115, 116, 161, 163, 87, 88, 89, 162, 91, 124, 93, 162, 95, 162, 162, 98, 162, 162, 84, 162, 103, 104, 105, 162, 162, 162, 109, 110, 162, 162, 162, 162, 115, 116, 100, 101, 102, 162, 162, 162, 106, 124, 162, 162, 162, 162, 162, -1, 162, 162, 162, 117, 118, 163, 70, 163, 122, 163, 163, 163, 163, 127, 128, 129, 130, 131, 82, 163, 74, 163, 86, 163, 163, 163, 80, 163, 163, 163, 163, 163, -1, 87, 88, 89, 163, 91, 163, 93, 163, 95, 163, 163, 98, 159, 163, 161, 162, 103, 104, 105, 116, 163, 163, 109, 110, 163, 163, 163, 163, 115, 116, 163, 163, 163, 163, 163, 163, 163, 124, 164, 164, 137, 164, 139, 140, 141, 142, 143, 144, 164, 164, 164, 164, 164, 164, 151, 152, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 165, 164, 166, 167, 164, 164, 164, 164, 164, 164, -1, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, -1, 165, -1, -1, 167); - protected $actionBase = array(0, -2, 154, 542, 785, 695, 969, 549, 53, 420, 831, 307, 307, 67, 307, 307, 307, 496, 538, 538, 565, 538, 204, 504, 706, 706, 706, 651, 651, 651, 651, 773, 773, 920, 920, 952, 888, 850, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 211, 344, 288, 691, 1038, 1044, 1040, 1045, 1036, 1035, 1039, 1041, 1046, 917, 918, 751, 919, 921, 922, 923, 1042, 854, 1037, 1043, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 641, 159, 473, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 54, 54, 54, 341, 692, 692, 190, 184, 658, 47, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 144, 144, 7, 7, 7, 7, 7, 371, -25, -25, -25, -25, 574, 347, 764, 474, 584, 266, 241, 338, 470, 470, 591, 591, 396, -116, 396, 348, 348, 396, 396, 396, 770, 770, 770, 770, 443, 559, 452, 86, 514, 479, 479, 479, 479, 514, 514, 514, 514, 783, 795, 514, 514, 514, 642, 653, 653, 714, 300, 300, 300, 653, 390, 765, 90, 390, 90, 37, 156, 781, -55, -40, 292, 768, 781, 320, 739, 314, 143, 797, 546, 797, 1034, 745, 733, 705, 836, 876, 1047, 752, 915, 786, 916, 62, 704, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1049, 469, 1034, 65, 1049, 1049, 1049, 469, 469, 469, 469, 469, 469, 469, 469, 469, 469, 533, 65, 466, 552, 65, 763, 469, 211, 791, 211, 211, 211, 211, 973, 211, 211, 211, 211, 211, 211, 980, 737, 29, 211, 344, 52, 52, 428, 58, 52, 52, 52, 52, 211, 211, 211, 546, 743, 734, 555, 798, 195, 743, 743, 743, 345, 135, 192, 194, 710, 713, 280, 758, 758, 760, 931, 931, 758, 755, 758, 760, 944, 758, 931, 799, 433, 627, 571, 603, 631, 931, 494, 758, 758, 758, 758, 639, 758, 491, 445, 758, 758, 709, 741, 777, 46, 931, 931, 931, 777, 585, 771, 771, 771, 805, 808, 772, 740, 540, 507, 650, 138, 780, 740, 740, 758, 612, 772, 740, 772, 740, 802, 740, 740, 740, 772, 740, 755, 583, 740, 703, 646, 60, 740, 6, 945, 947, 636, 948, 941, 949, 989, 950, 951, 856, 963, 943, 956, 939, 932, 750, 690, 693, 793, 784, 930, 747, 747, 747, 927, 747, 747, 747, 747, 747, 747, 747, 747, 690, 839, 801, 766, 731, 974, 697, 698, 779, 880, 1018, 1048, 973, 1024, 958, 736, 699, 1004, 977, 796, 849, 978, 979, 1005, 1025, 1026, 884, 757, 886, 887, 841, 983, 858, 747, 945, 951, 943, 956, 939, 932, 732, 728, 726, 727, 722, 721, 712, 719, 738, 1027, 925, 875, 842, 980, 929, 690, 845, 1000, 835, 1008, 1009, 855, 782, 756, 846, 889, 984, 985, 986, 859, 1028, 804, 1001, 990, 1010, 787, 890, 1011, 1012, 1013, 1014, 892, 860, 866, 867, 810, 761, 991, 774, 896, 48, 754, 759, 778, 988, 654, 966, 870, 897, 898, 1015, 1016, 1017, 901, 960, 812, 1002, 746, 1003, 993, 813, 814, 677, 769, 1030, 735, 748, 767, 678, 681, 902, 903, 904, 962, 742, 744, 819, 821, 1031, 762, 1032, 910, 684, 823, 711, 911, 1023, 717, 718, 753, 873, 800, 776, 775, 987, 749, 825, 912, 826, 828, 829, 1020, 830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458, 458, 458, 458, 458, 458, 307, 307, 307, 307, 0, 0, 307, 0, 0, 0, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 415, 415, 291, 291, 0, 291, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 291, 291, 291, 291, 291, 291, 291, 799, 300, 300, 300, 300, 415, 415, 415, 415, 415, -88, -88, 415, 415, 415, 300, 300, 415, 244, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 0, 0, 65, 90, 415, 755, 755, 755, 755, 415, 415, 415, 415, 90, 90, 415, 415, 415, 0, 0, 0, 0, 0, 0, 0, 0, 65, 90, 0, 65, 0, 755, 755, 415, 799, 799, 232, 244, 415, 0, 0, 0, 0, 65, 755, 65, 469, 90, 469, 469, 52, 211, 232, 453, 453, 453, 453, 0, 546, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 755, 0, 799, 0, 755, 755, 755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 755, 0, 0, 931, 0, 0, 0, 0, 758, 0, 0, 0, 0, 0, 0, 758, 944, 0, 0, 0, 0, 0, 0, 755, 0, 0, 0, 0, 0, 0, 0, 0, 747, 782, 0, 782, 0, 747, 747, 747, 0, 0, 0, 0, 769, 762); - protected $actionDefault = array(3, 32767, 103, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 101, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 588, 588, 588, 588, 32767, 32767, 250, 103, 32767, 32767, 464, 382, 382, 382, 32767, 32767, 532, 532, 532, 532, 532, 532, 32767, 32767, 32767, 32767, 32767, 32767, 464, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 101, 32767, 32767, 32767, 37, 7, 8, 10, 11, 50, 17, 320, 32767, 32767, 32767, 32767, 103, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 581, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 468, 447, 448, 450, 451, 381, 533, 587, 323, 584, 380, 146, 335, 325, 238, 326, 254, 469, 255, 470, 473, 474, 211, 283, 377, 150, 411, 465, 413, 463, 467, 412, 387, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 385, 386, 466, 444, 443, 442, 409, 32767, 32767, 410, 414, 384, 417, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 103, 32767, 415, 416, 433, 434, 431, 432, 435, 32767, 436, 437, 438, 439, 32767, 312, 32767, 32767, 32767, 361, 359, 312, 32767, 32767, 424, 425, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 526, 441, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 103, 32767, 101, 528, 406, 408, 496, 419, 420, 418, 388, 32767, 503, 32767, 103, 505, 32767, 32767, 32767, 112, 32767, 32767, 32767, 32767, 527, 32767, 534, 534, 32767, 489, 101, 194, 32767, 194, 194, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 595, 489, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 32767, 194, 111, 32767, 32767, 32767, 101, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 189, 32767, 264, 266, 103, 549, 194, 32767, 508, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 501, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 489, 429, 139, 32767, 139, 534, 421, 422, 423, 491, 534, 534, 534, 308, 285, 32767, 32767, 32767, 32767, 506, 506, 101, 101, 101, 101, 501, 32767, 32767, 112, 100, 100, 100, 100, 100, 104, 102, 32767, 32767, 32767, 32767, 100, 32767, 102, 102, 32767, 32767, 221, 208, 219, 102, 32767, 553, 554, 219, 102, 223, 223, 223, 243, 243, 480, 314, 102, 100, 102, 102, 196, 314, 314, 32767, 102, 480, 314, 480, 314, 198, 314, 314, 314, 480, 314, 32767, 102, 314, 210, 100, 100, 314, 32767, 32767, 32767, 491, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 521, 32767, 538, 551, 427, 428, 430, 536, 452, 453, 454, 455, 456, 457, 458, 460, 583, 32767, 495, 32767, 32767, 32767, 32767, 334, 593, 32767, 593, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 594, 32767, 534, 32767, 32767, 32767, 32767, 426, 9, 76, 43, 44, 52, 58, 512, 513, 514, 515, 509, 510, 516, 511, 32767, 32767, 517, 559, 32767, 32767, 535, 586, 32767, 32767, 32767, 32767, 32767, 32767, 139, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 521, 32767, 137, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 534, 32767, 32767, 32767, 32767, 310, 307, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 534, 32767, 32767, 32767, 32767, 32767, 287, 32767, 304, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 282, 32767, 32767, 376, 32767, 32767, 32767, 32767, 355, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 152, 152, 3, 3, 337, 152, 152, 152, 337, 152, 337, 337, 337, 152, 152, 152, 152, 152, 152, 276, 184, 258, 261, 243, 243, 152, 347, 152); - protected $goto = array(194, 194, 677, 466, 1281, 1282, 345, 428, 325, 325, 325, 325, 536, 536, 536, 536, 665, 591, 926, 1039, 685, 1003, 1019, 1020, 1080, 1081, 165, 165, 165, 165, 218, 195, 191, 191, 175, 177, 213, 191, 191, 191, 191, 191, 192, 192, 192, 192, 192, 192, 186, 187, 188, 189, 190, 215, 213, 216, 524, 525, 415, 526, 528, 529, 530, 531, 532, 533, 534, 535, 1108, 166, 167, 168, 193, 169, 170, 171, 164, 172, 173, 174, 176, 212, 214, 217, 235, 238, 241, 242, 244, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 277, 278, 313, 314, 315, 420, 421, 422, 569, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 178, 234, 179, 196, 197, 198, 236, 186, 187, 188, 189, 190, 215, 1108, 199, 180, 181, 182, 200, 196, 183, 237, 201, 199, 163, 202, 203, 184, 204, 205, 206, 185, 207, 208, 209, 210, 211, 834, 587, 425, 645, 548, 541, 830, 831, 419, 310, 311, 332, 564, 316, 424, 333, 426, 623, 832, 973, 947, 947, 945, 947, 710, 808, 540, 982, 977, 827, 827, 607, 642, 391, 541, 548, 557, 558, 398, 567, 589, 603, 604, 839, 865, 887, 882, 883, 896, 15, 840, 884, 837, 885, 886, 838, 457, 457, 639, 890, 656, 657, 658, 987, 987, 457, 609, 609, 806, 1060, 1056, 1057, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1256, 1256, 346, 347, 812, 949, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1014, 1013, 1207, 1008, 1207, 1008, 1207, 561, 442, 1008, 1008, 1008, 343, 442, 1008, 442, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 251, 251, 1296, 812, 1207, 812, 1307, 1307, 970, 1207, 1207, 1207, 1207, 1017, 1018, 1207, 1207, 1207, 1288, 1288, 1288, 1288, 827, 1307, 321, 305, 248, 248, 248, 248, 250, 252, 387, 903, 1254, 1254, 619, 620, 904, 1203, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 527, 527, 280, 280, 280, 280, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 941, 405, 684, 560, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 348, 644, 442, 389, 393, 549, 588, 592, 847, 1157, 348, 348, 538, 1204, 538, 891, 538, 892, 432, 418, 822, 598, 666, 859, 348, 348, 846, 348, 5, 1323, 6, 824, 554, 1283, 1284, 650, 1205, 1264, 1265, 602, 448, 543, 565, 601, 348, 943, 943, 943, 943, 334, 932, 448, 937, 944, 403, 404, 1278, 852, 1278, 654, 1278, 655, 397, 407, 408, 409, 1200, 668, 849, 1045, 410, 542, 552, 992, 341, 490, 542, 491, 552, 714, 467, 390, 861, 497, 1049, 1290, 1290, 1290, 1290, 1267, 954, 568, 460, 461, 462, 1091, 857, 471, 0, 1314, 1315, 555, 0, 0, 0, 711, 622, 624, 0, 643, 0, 1274, 670, 667, 671, 984, 675, 683, 980, 0, 0, 0, 0, 0, 855, 596, 610, 613, 614, 615, 616, 636, 637, 638, 687, 860, 848, 1044, 1048, 908, 1096, 0, 543, 0, 0, 952, 606, 1306, 1306, 0, 1047, 989, 0, 0, 1276, 1276, 1047, 254, 254, 851, 0, 648, 968, 427, 1306, 0, 0, 845, 942, 427, 0, 0, 0, 0, 0, 0, 0, 1015, 1015, 1199, 0, 1309, 649, 1026, 1022, 1023, 0, 0, 0, 0, 1089, 864, 0, 0, 0, 586, 1073, 0, 688, 674, 674, 1202, 498, 680, 1071, 1188, 919, 0, 0, 1189, 1192, 920, 1193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 0, 0, 0, 0, 539, 0, 539); - protected $gotoCheck = array(42, 42, 72, 172, 172, 172, 95, 87, 23, 23, 23, 23, 105, 105, 105, 105, 87, 105, 87, 125, 9, 87, 87, 87, 142, 142, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 15, 128, 65, 65, 75, 75, 25, 26, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 27, 25, 25, 25, 25, 25, 25, 7, 25, 25, 25, 22, 22, 55, 55, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 15, 45, 15, 15, 15, 15, 75, 15, 15, 15, 15, 15, 15, 147, 147, 84, 15, 84, 84, 84, 105, 105, 147, 106, 106, 6, 15, 15, 15, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 166, 166, 95, 95, 12, 49, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 116, 116, 72, 72, 72, 72, 72, 168, 23, 72, 72, 72, 175, 23, 72, 23, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 5, 5, 177, 12, 72, 12, 179, 179, 101, 72, 72, 72, 72, 117, 117, 72, 72, 72, 9, 9, 9, 9, 22, 179, 165, 165, 5, 5, 5, 5, 5, 5, 61, 72, 167, 167, 83, 83, 72, 20, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 169, 169, 24, 24, 24, 24, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 91, 91, 91, 102, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 14, 63, 23, 58, 58, 58, 58, 58, 35, 149, 14, 14, 19, 20, 19, 64, 19, 64, 111, 13, 20, 13, 114, 35, 14, 14, 35, 14, 46, 14, 46, 18, 9, 174, 174, 118, 20, 20, 20, 9, 19, 14, 2, 2, 14, 19, 19, 19, 19, 29, 90, 19, 19, 19, 80, 80, 128, 39, 128, 80, 128, 80, 28, 80, 80, 80, 158, 80, 37, 127, 80, 9, 9, 108, 80, 153, 9, 153, 9, 97, 155, 9, 41, 153, 130, 128, 128, 128, 128, 14, 94, 9, 9, 9, 9, 145, 9, 82, -1, 9, 9, 48, -1, -1, -1, 48, 48, 48, -1, 48, -1, 128, 14, 48, 48, 48, 48, 48, 48, -1, -1, -1, -1, -1, 9, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 16, 16, 16, 16, 17, 17, -1, 14, -1, -1, 16, 17, 178, 178, -1, 128, 17, -1, -1, 128, 128, 128, 5, 5, 17, -1, 17, 17, 115, 178, -1, -1, 17, 16, 115, -1, -1, -1, -1, -1, -1, -1, 115, 115, 17, -1, 178, 115, 115, 115, 115, -1, -1, -1, -1, 16, 16, -1, -1, -1, 8, 8, -1, 8, 8, 8, 14, 8, 8, 8, 78, 78, -1, -1, 78, 78, 78, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 24, -1, -1, -1, -1, 24, -1, 24); - protected $gotoBase = array(0, 0, -283, 0, 0, 284, 216, 177, 554, 7, 0, 0, -46, 51, 72, -181, 57, 49, 91, 111, -62, 0, -135, 5, 334, 163, 164, 175, 94, 122, 0, 0, 0, 0, 0, 10, 0, 98, 0, 103, 0, 13, -1, 0, 0, 193, -320, 0, -223, 225, 0, 0, 0, 0, 0, 153, 0, 0, 325, 0, 0, 276, 0, 127, 362, -76, 0, 0, 0, 0, 0, 0, -6, 0, 0, -174, 0, 0, 168, 140, -61, 0, -4, -149, -478, 0, 0, -263, 0, 0, 88, 50, 0, 0, 19, -467, 0, 43, 0, 0, 0, 259, 312, 0, 0, -15, -12, 0, 76, 0, 0, 110, 0, 0, 109, 261, -16, 16, 114, 0, 0, 0, 0, 0, 0, 17, 0, 68, 155, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -248, 0, 0, 23, 0, 184, 0, 104, 0, 0, 0, -44, 0, 12, 0, 0, 70, 0, 0, 0, 0, 0, 0, -9, 4, 80, 238, 96, 0, 0, -294, 0, 34, 242, 0, 257, 209, -13, 0, 0); - protected $gotoDefault = array(-32768, 502, 718, 4, 719, 912, 795, 804, 584, 518, 686, 342, 611, 416, 1272, 889, 1095, 566, 823, 1216, 1224, 449, 826, 326, 708, 871, 872, 873, 394, 379, 385, 392, 634, 612, 484, 858, 445, 850, 476, 853, 444, 862, 162, 413, 500, 866, 3, 868, 545, 899, 380, 876, 381, 661, 878, 551, 880, 881, 388, 395, 396, 1100, 559, 608, 893, 243, 553, 894, 378, 895, 902, 383, 386, 672, 456, 495, 489, 406, 1075, 595, 631, 453, 470, 618, 617, 605, 469, 1011, 411, 328, 931, 939, 477, 454, 953, 344, 961, 716, 1107, 625, 479, 969, 626, 976, 979, 519, 520, 468, 991, 268, 994, 480, 1032, 651, 1005, 1006, 652, 627, 1028, 628, 653, 629, 1030, 463, 585, 1038, 446, 1046, 1260, 447, 1050, 262, 1053, 274, 412, 429, 1058, 1059, 8, 1065, 678, 679, 10, 273, 499, 1090, 673, 443, 1106, 433, 1176, 1178, 547, 481, 1196, 1195, 664, 496, 1201, 1263, 441, 521, 464, 312, 522, 304, 330, 309, 537, 291, 331, 523, 465, 1269, 1277, 327, 30, 1297, 1308, 338, 563, 600); - protected $ruleToNonTerminal = array(0, 1, 3, 3, 2, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 10, 11, 11, 11, 12, 12, 13, 13, 14, 15, 15, 16, 16, 17, 17, 18, 18, 21, 21, 22, 23, 23, 24, 24, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 29, 29, 30, 30, 32, 34, 34, 28, 36, 36, 33, 38, 38, 35, 35, 37, 37, 39, 39, 31, 40, 40, 41, 43, 44, 44, 45, 46, 46, 48, 47, 47, 47, 47, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 25, 25, 68, 68, 71, 71, 70, 69, 69, 62, 74, 74, 75, 75, 76, 76, 77, 77, 78, 78, 26, 26, 27, 27, 27, 27, 86, 86, 88, 88, 81, 81, 89, 89, 90, 90, 90, 82, 82, 85, 85, 83, 83, 91, 92, 92, 56, 56, 64, 64, 67, 67, 67, 66, 93, 93, 94, 57, 57, 57, 57, 95, 95, 96, 96, 97, 97, 98, 99, 99, 100, 100, 101, 101, 54, 54, 50, 50, 103, 52, 52, 104, 51, 51, 53, 53, 63, 63, 63, 63, 79, 79, 107, 107, 109, 109, 110, 110, 110, 110, 108, 108, 108, 112, 112, 112, 112, 87, 87, 115, 115, 115, 116, 116, 113, 113, 117, 117, 119, 119, 120, 120, 114, 121, 121, 118, 122, 122, 122, 122, 111, 111, 80, 80, 80, 20, 20, 20, 124, 123, 123, 125, 125, 125, 125, 59, 126, 126, 127, 60, 129, 129, 130, 130, 131, 131, 84, 132, 132, 132, 132, 132, 132, 137, 137, 138, 138, 139, 139, 139, 139, 139, 140, 141, 141, 136, 136, 133, 133, 135, 135, 143, 143, 142, 142, 142, 142, 142, 142, 142, 134, 144, 144, 146, 145, 145, 61, 102, 147, 147, 55, 55, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 154, 148, 148, 153, 153, 156, 157, 157, 158, 159, 159, 159, 19, 19, 72, 72, 72, 72, 149, 149, 149, 149, 161, 161, 150, 150, 152, 152, 152, 155, 155, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 106, 169, 169, 169, 169, 151, 151, 151, 151, 151, 151, 151, 151, 58, 58, 164, 164, 164, 164, 170, 170, 160, 160, 160, 171, 171, 171, 171, 171, 171, 73, 73, 65, 65, 65, 65, 128, 128, 128, 128, 174, 173, 163, 163, 163, 163, 163, 163, 163, 162, 162, 162, 172, 172, 172, 172, 105, 168, 176, 176, 175, 175, 177, 177, 177, 177, 177, 177, 177, 177, 165, 165, 165, 165, 179, 180, 178, 178, 178, 178, 178, 178, 178, 178, 181, 181, 181, 181); - protected $ruleToLength = array(1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 1, 3, 4, 1, 2, 0, 1, 1, 1, 1, 1, 3, 5, 4, 3, 4, 2, 3, 1, 1, 7, 6, 2, 3, 1, 2, 3, 1, 2, 3, 1, 1, 3, 1, 3, 1, 2, 2, 3, 1, 3, 2, 3, 1, 3, 2, 0, 1, 1, 1, 1, 1, 3, 7, 10, 5, 7, 9, 5, 3, 3, 3, 3, 3, 3, 1, 2, 5, 7, 9, 6, 5, 6, 3, 2, 1, 1, 1, 0, 2, 1, 3, 8, 0, 4, 2, 1, 3, 0, 1, 0, 1, 0, 1, 3, 1, 8, 9, 8, 7, 6, 8, 0, 2, 0, 2, 1, 2, 1, 2, 1, 1, 1, 0, 2, 0, 2, 0, 2, 2, 1, 3, 1, 4, 1, 4, 1, 1, 4, 2, 1, 3, 3, 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, 7, 0, 2, 1, 3, 3, 4, 1, 4, 0, 2, 5, 0, 2, 6, 0, 2, 0, 3, 1, 2, 1, 1, 2, 0, 1, 3, 0, 2, 1, 1, 1, 1, 6, 8, 6, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 1, 1, 2, 1, 1, 0, 1, 0, 2, 2, 2, 4, 3, 1, 1, 3, 1, 2, 2, 3, 2, 3, 1, 1, 2, 3, 1, 1, 3, 2, 0, 1, 5, 5, 10, 3, 5, 1, 1, 3, 0, 2, 4, 5, 4, 4, 4, 3, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 2, 2, 3, 1, 0, 1, 1, 3, 3, 3, 4, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, 3, 4, 4, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 3, 2, 1, 2, 4, 2, 2, 8, 9, 8, 9, 9, 10, 9, 10, 8, 3, 2, 0, 4, 2, 1, 3, 2, 2, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 0, 3, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 4, 1, 1, 3, 1, 1, 1, 1, 1, 3, 2, 3, 0, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 4, 4, 1, 4, 4, 0, 1, 1, 1, 3, 3, 1, 4, 2, 2, 1, 3, 1, 4, 4, 3, 3, 3, 3, 1, 3, 1, 1, 3, 1, 1, 4, 1, 1, 1, 3, 1, 1, 2, 1, 3, 4, 3, 2, 0, 2, 2, 1, 2, 1, 1, 1, 4, 3, 3, 3, 3, 6, 3, 1, 1, 2, 1); - protected function initReduceCallbacks() - { - $this->reduceCallbacks = [0 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 1 => function ($stackPos) { - $this->semValue = $this->handleNamespaces($this->semStack[$stackPos - (1 - 1)]); - }, 2 => function ($stackPos) { - if (\is_array($this->semStack[$stackPos - (2 - 2)])) { - $this->semValue = \array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - } else { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - } - }, 3 => function ($stackPos) { - $this->semValue = array(); - }, 4 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; - } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 5 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 6 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 7 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 8 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 9 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 10 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 11 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 12 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 13 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 14 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 15 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 16 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 17 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 18 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 19 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 20 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 21 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 22 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 23 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 24 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 25 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 26 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 27 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 28 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 29 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 30 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 31 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 32 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 33 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 34 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 35 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 36 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 37 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 38 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 39 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 40 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 41 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 42 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 43 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 44 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 45 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 46 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 47 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 48 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 49 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 50 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 51 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 52 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 53 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 54 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 55 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 56 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 57 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 58 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 59 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 60 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 61 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 62 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 63 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 64 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 65 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 66 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 67 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 68 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 69 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 70 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 71 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 72 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 73 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 74 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 75 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 76 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 77 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 78 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 79 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 80 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 81 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 82 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 83 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 84 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 85 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 86 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 87 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 88 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 89 => function ($stackPos) { - $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 90 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 91 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 92 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 93 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 94 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 95 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 96 => function ($stackPos) { - $this->semValue = new Name(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 97 => function ($stackPos) { - $this->semValue = new Expr\Variable(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 98 => function ($stackPos) { - /* nothing */ - }, 99 => function ($stackPos) { - /* nothing */ - }, 100 => function ($stackPos) { - /* nothing */ - }, 101 => function ($stackPos) { - $this->emitError(new Error('A trailing comma is not allowed here', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); - }, 102 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 103 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 104 => function ($stackPos) { - $this->semValue = new Node\Attribute($this->semStack[$stackPos - (1 - 1)], [], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 105 => function ($stackPos) { - $this->semValue = new Node\Attribute($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 106 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 107 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 108 => function ($stackPos) { - $this->semValue = new Node\AttributeGroup($this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 109 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 110 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 111 => function ($stackPos) { - $this->semValue = []; - }, 112 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 113 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 114 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 115 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 116 => function ($stackPos) { - $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 117 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (3 - 2)], null, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON); - $this->checkNamespace($this->semValue); - }, 118 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); - $this->checkNamespace($this->semValue); - }, 119 => function ($stackPos) { - $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); - $this->checkNamespace($this->semValue); - }, 120 => function ($stackPos) { - $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 121 => function ($stackPos) { - $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 122 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 123 => function ($stackPos) { - $this->semValue = new Stmt\Const_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 124 => function ($stackPos) { - $this->semValue = Stmt\Use_::TYPE_FUNCTION; - }, 125 => function ($stackPos) { - $this->semValue = Stmt\Use_::TYPE_CONSTANT; - }, 126 => function ($stackPos) { - $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->semStack[$stackPos - (7 - 2)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 127 => function ($stackPos) { - $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 128 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 129 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 130 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 131 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 132 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 133 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 134 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 135 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 136 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 137 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); - }, 138 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); - }, 139 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); - }, 140 => function ($stackPos) { - $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); - }, 141 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - $this->semValue->type = Stmt\Use_::TYPE_NORMAL; - }, 142 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue->type = $this->semStack[$stackPos - (2 - 1)]; - }, 143 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 144 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 145 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 146 => function ($stackPos) { - $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 147 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 148 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 149 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 150 => function ($stackPos) { - $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 151 => function ($stackPos) { - if (\is_array($this->semStack[$stackPos - (2 - 2)])) { - $this->semValue = \array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - } else { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - } - }, 152 => function ($stackPos) { - $this->semValue = array(); - }, 153 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; - } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 154 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 155 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 156 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 157 => function ($stackPos) { - throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 158 => function ($stackPos) { - if ($this->semStack[$stackPos - (3 - 2)]) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)]; - $stmts = $this->semValue; - if (!empty($attrs['comments'])) { - $stmts[0]->setAttribute('comments', \array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); - } - } else { - $startAttributes = $this->startAttributeStack[$stackPos - (3 - 1)]; - if (isset($startAttributes['comments'])) { - $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); - } else { - $this->semValue = null; - } - if (null === $this->semValue) { - $this->semValue = array(); - } - } - }, 159 => function ($stackPos) { - $this->semValue = new Stmt\If_($this->semStack[$stackPos - (7 - 3)], ['stmts' => \is_array($this->semStack[$stackPos - (7 - 5)]) ? $this->semStack[$stackPos - (7 - 5)] : array($this->semStack[$stackPos - (7 - 5)]), 'elseifs' => $this->semStack[$stackPos - (7 - 6)], 'else' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 160 => function ($stackPos) { - $this->semValue = new Stmt\If_($this->semStack[$stackPos - (10 - 3)], ['stmts' => $this->semStack[$stackPos - (10 - 6)], 'elseifs' => $this->semStack[$stackPos - (10 - 7)], 'else' => $this->semStack[$stackPos - (10 - 8)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - }, 161 => function ($stackPos) { - $this->semValue = new Stmt\While_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 162 => function ($stackPos) { - $this->semValue = new Stmt\Do_($this->semStack[$stackPos - (7 - 5)], \is_array($this->semStack[$stackPos - (7 - 2)]) ? $this->semStack[$stackPos - (7 - 2)] : array($this->semStack[$stackPos - (7 - 2)]), $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 163 => function ($stackPos) { - $this->semValue = new Stmt\For_(['init' => $this->semStack[$stackPos - (9 - 3)], 'cond' => $this->semStack[$stackPos - (9 - 5)], 'loop' => $this->semStack[$stackPos - (9 - 7)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 164 => function ($stackPos) { - $this->semValue = new Stmt\Switch_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 165 => function ($stackPos) { - $this->semValue = new Stmt\Break_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 166 => function ($stackPos) { - $this->semValue = new Stmt\Continue_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 167 => function ($stackPos) { - $this->semValue = new Stmt\Return_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 168 => function ($stackPos) { - $this->semValue = new Stmt\Global_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 169 => function ($stackPos) { - $this->semValue = new Stmt\Static_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 170 => function ($stackPos) { - $this->semValue = new Stmt\Echo_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 171 => function ($stackPos) { - $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 172 => function ($stackPos) { - $e = $this->semStack[$stackPos - (2 - 1)]; - if ($e instanceof Expr\Throw_) { - // For backwards-compatibility reasons, convert throw in statement position into - // Stmt\Throw_ rather than Stmt\Expression(Expr\Throw_). - $this->semValue = new Stmt\Throw_($e->expr, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - } else { - $this->semValue = new Stmt\Expression($e, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - } - }, 173 => function ($stackPos) { - $this->semValue = new Stmt\Unset_($this->semStack[$stackPos - (5 - 3)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 174 => function ($stackPos) { - $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 175 => function ($stackPos) { - $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (9 - 3)], $this->semStack[$stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$stackPos - (9 - 5)], 'byRef' => $this->semStack[$stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 176 => function ($stackPos) { - $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (6 - 3)], new Expr\Error($this->startAttributeStack[$stackPos - (6 - 4)] + $this->endAttributeStack[$stackPos - (6 - 4)]), ['stmts' => $this->semStack[$stackPos - (6 - 6)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 177 => function ($stackPos) { - $this->semValue = new Stmt\Declare_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 178 => function ($stackPos) { - $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 5)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - $this->checkTryCatch($this->semValue); - }, 179 => function ($stackPos) { - $this->semValue = new Stmt\Goto_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 180 => function ($stackPos) { - $this->semValue = new Stmt\Label($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 181 => function ($stackPos) { - $this->semValue = array(); - /* means: no statement */ - }, 182 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 183 => function ($stackPos) { - $startAttributes = $this->startAttributeStack[$stackPos - (1 - 1)]; - if (isset($startAttributes['comments'])) { - $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); - } else { - $this->semValue = null; - } - if ($this->semValue === null) { - $this->semValue = array(); - } - /* means: no statement */ - }, 184 => function ($stackPos) { - $this->semValue = array(); - }, 185 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 186 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 187 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 188 => function ($stackPos) { - $this->semValue = new Stmt\Catch_($this->semStack[$stackPos - (8 - 3)], $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 7)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 189 => function ($stackPos) { - $this->semValue = null; - }, 190 => function ($stackPos) { - $this->semValue = new Stmt\Finally_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 191 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 192 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 193 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 194 => function ($stackPos) { - $this->semValue = \false; - }, 195 => function ($stackPos) { - $this->semValue = \true; - }, 196 => function ($stackPos) { - $this->semValue = \false; - }, 197 => function ($stackPos) { - $this->semValue = \true; - }, 198 => function ($stackPos) { - $this->semValue = \false; - }, 199 => function ($stackPos) { - $this->semValue = \true; - }, 200 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 201 => function ($stackPos) { - $this->semValue = []; - }, 202 => function ($stackPos) { - $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (8 - 3)], ['byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 5)], 'returnType' => $this->semStack[$stackPos - (8 - 7)], 'stmts' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 203 => function ($stackPos) { - $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (9 - 4)], ['byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 6)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 204 => function ($stackPos) { - $this->semValue = new Stmt\Class_($this->semStack[$stackPos - (8 - 3)], ['type' => $this->semStack[$stackPos - (8 - 2)], 'extends' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - $this->checkClass($this->semValue, $stackPos - (8 - 3)); - }, 205 => function ($stackPos) { - $this->semValue = new Stmt\Interface_($this->semStack[$stackPos - (7 - 3)], ['extends' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)], 'attrGroups' => $this->semStack[$stackPos - (7 - 1)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - $this->checkInterface($this->semValue, $stackPos - (7 - 3)); - }, 206 => function ($stackPos) { - $this->semValue = new Stmt\Trait_($this->semStack[$stackPos - (6 - 3)], ['stmts' => $this->semStack[$stackPos - (6 - 5)], 'attrGroups' => $this->semStack[$stackPos - (6 - 1)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 207 => function ($stackPos) { - $this->semValue = new Stmt\Enum_($this->semStack[$stackPos - (8 - 3)], ['scalarType' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - $this->checkEnum($this->semValue, $stackPos - (8 - 3)); - }, 208 => function ($stackPos) { - $this->semValue = null; - }, 209 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 210 => function ($stackPos) { - $this->semValue = null; - }, 211 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 212 => function ($stackPos) { - $this->semValue = 0; - }, 213 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 214 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 215 => function ($stackPos) { - $this->checkClassModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); - $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; - }, 216 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; - }, 217 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_FINAL; - }, 218 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_READONLY; - }, 219 => function ($stackPos) { - $this->semValue = null; - }, 220 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 221 => function ($stackPos) { - $this->semValue = array(); - }, 222 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 223 => function ($stackPos) { - $this->semValue = array(); - }, 224 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 225 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 226 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 227 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 228 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 229 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 230 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 231 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 232 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 233 => function ($stackPos) { - $this->semValue = null; - }, 234 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 235 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 236 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 237 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 238 => function ($stackPos) { - $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 239 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 240 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 3)]; - }, 241 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 242 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (5 - 3)]; - }, 243 => function ($stackPos) { - $this->semValue = array(); - }, 244 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 245 => function ($stackPos) { - $this->semValue = new Stmt\Case_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 246 => function ($stackPos) { - $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 247 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 248 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 249 => function ($stackPos) { - $this->semValue = new Expr\Match_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); - }, 250 => function ($stackPos) { - $this->semValue = []; - }, 251 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 252 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 253 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 254 => function ($stackPos) { - $this->semValue = new Node\MatchArm($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 255 => function ($stackPos) { - $this->semValue = new Node\MatchArm(null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 256 => function ($stackPos) { - $this->semValue = \is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); - }, 257 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 258 => function ($stackPos) { - $this->semValue = array(); - }, 259 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 260 => function ($stackPos) { - $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (5 - 3)], \is_array($this->semStack[$stackPos - (5 - 5)]) ? $this->semStack[$stackPos - (5 - 5)] : array($this->semStack[$stackPos - (5 - 5)]), $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 261 => function ($stackPos) { - $this->semValue = array(); - }, 262 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 263 => function ($stackPos) { - $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 264 => function ($stackPos) { - $this->semValue = null; - }, 265 => function ($stackPos) { - $this->semValue = new Stmt\Else_(\is_array($this->semStack[$stackPos - (2 - 2)]) ? $this->semStack[$stackPos - (2 - 2)] : array($this->semStack[$stackPos - (2 - 2)]), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 266 => function ($stackPos) { - $this->semValue = null; - }, 267 => function ($stackPos) { - $this->semValue = new Stmt\Else_($this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 268 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); - }, 269 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (2 - 2)], \true); - }, 270 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); - }, 271 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); - }, 272 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 273 => function ($stackPos) { - $this->semValue = array(); - }, 274 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 275 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 276 => function ($stackPos) { - $this->semValue = 0; - }, 277 => function ($stackPos) { - $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); - $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; - }, 278 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; - }, 279 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; - }, 280 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; - }, 281 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_READONLY; - }, 282 => function ($stackPos) { - $this->semValue = new Node\Param($this->semStack[$stackPos - (6 - 6)], null, $this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 1)]); - $this->checkParam($this->semValue); - }, 283 => function ($stackPos) { - $this->semValue = new Node\Param($this->semStack[$stackPos - (8 - 6)], $this->semStack[$stackPos - (8 - 8)], $this->semStack[$stackPos - (8 - 3)], $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 5)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (8 - 2)], $this->semStack[$stackPos - (8 - 1)]); - $this->checkParam($this->semValue); - }, 284 => function ($stackPos) { - $this->semValue = new Node\Param(new Expr\Error($this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes), null, $this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 1)]); - }, 285 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 286 => function ($stackPos) { - $this->semValue = new Node\NullableType($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 287 => function ($stackPos) { - $this->semValue = new Node\UnionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 288 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 289 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 290 => function ($stackPos) { - $this->semValue = new Node\Name('static', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 291 => function ($stackPos) { - $this->semValue = $this->handleBuiltinTypes($this->semStack[$stackPos - (1 - 1)]); - }, 292 => function ($stackPos) { - $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 293 => function ($stackPos) { - $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 294 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 295 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 296 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 297 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 298 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 299 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 300 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 301 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 302 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 303 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 304 => function ($stackPos) { - $this->semValue = new Node\IntersectionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 305 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 306 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 307 => function ($stackPos) { - $this->semValue = new Node\IntersectionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 308 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 309 => function ($stackPos) { - $this->semValue = new Node\NullableType($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 310 => function ($stackPos) { - $this->semValue = new Node\UnionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 311 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 312 => function ($stackPos) { - $this->semValue = null; - }, 313 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 314 => function ($stackPos) { - $this->semValue = null; - }, 315 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 2)]; - }, 316 => function ($stackPos) { - $this->semValue = null; - }, 317 => function ($stackPos) { - $this->semValue = array(); - }, 318 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 2)]; - }, 319 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 2)]); - }, 320 => function ($stackPos) { - $this->semValue = new Node\VariadicPlaceholder($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 321 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 322 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 323 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (1 - 1)], \false, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 324 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \true, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 325 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \false, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 326 => function ($stackPos) { - $this->semValue = new Node\Arg($this->semStack[$stackPos - (3 - 3)], \false, \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (3 - 1)]); - }, 327 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 328 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 329 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 330 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 331 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 332 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 333 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 334 => function ($stackPos) { - $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 335 => function ($stackPos) { - $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 336 => function ($stackPos) { - if ($this->semStack[$stackPos - (2 - 2)] !== null) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - } - }, 337 => function ($stackPos) { - $this->semValue = array(); - }, 338 => function ($stackPos) { - $startAttributes = $this->lookaheadStartAttributes; - if (isset($startAttributes['comments'])) { - $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); - } else { - $nop = null; - } - if ($nop !== null) { - $this->semStack[$stackPos - (1 - 1)][] = $nop; - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 339 => function ($stackPos) { - $this->semValue = new Stmt\Property($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 1)]); - $this->checkProperty($this->semValue, $stackPos - (5 - 2)); - }, 340 => function ($stackPos) { - $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos - (5 - 4)], $this->semStack[$stackPos - (5 - 2)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (5 - 1)]); - $this->checkClassConst($this->semValue, $stackPos - (5 - 2)); - }, 341 => function ($stackPos) { - $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos - (10 - 5)], ['type' => $this->semStack[$stackPos - (10 - 2)], 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 7)], 'returnType' => $this->semStack[$stackPos - (10 - 9)], 'stmts' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - $this->checkClassMethod($this->semValue, $stackPos - (10 - 2)); - }, 342 => function ($stackPos) { - $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 343 => function ($stackPos) { - $this->semValue = new Stmt\EnumCase($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->semStack[$stackPos - (5 - 1)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 344 => function ($stackPos) { - $this->semValue = null; - /* will be skipped */ - }, 345 => function ($stackPos) { - $this->semValue = array(); - }, 346 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 347 => function ($stackPos) { - $this->semValue = array(); - }, 348 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 349 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 350 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (5 - 1)][0], $this->semStack[$stackPos - (5 - 1)][1], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 351 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], null, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 352 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 353 => function ($stackPos) { - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 354 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); - }, 355 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 356 => function ($stackPos) { - $this->semValue = array(null, $this->semStack[$stackPos - (1 - 1)]); - }, 357 => function ($stackPos) { - $this->semValue = null; - }, 358 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 359 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 360 => function ($stackPos) { - $this->semValue = 0; - }, 361 => function ($stackPos) { - $this->semValue = 0; - }, 362 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 363 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 364 => function ($stackPos) { - $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); - $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; - }, 365 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; - }, 366 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; - }, 367 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; - }, 368 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_STATIC; - }, 369 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; - }, 370 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_FINAL; - }, 371 => function ($stackPos) { - $this->semValue = Stmt\Class_::MODIFIER_READONLY; - }, 372 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 373 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 374 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 375 => function ($stackPos) { - $this->semValue = new Node\VarLikeIdentifier(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 376 => function ($stackPos) { - $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 377 => function ($stackPos) { - $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 378 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 379 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 380 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 381 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 382 => function ($stackPos) { - $this->semValue = array(); - }, 383 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 384 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 385 => function ($stackPos) { - $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 386 => function ($stackPos) { - $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 387 => function ($stackPos) { - $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 388 => function ($stackPos) { - $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 389 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 390 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 391 => function ($stackPos) { - $this->semValue = new Expr\Clone_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 392 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 393 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 394 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 395 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 396 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 397 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 398 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 399 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 400 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 401 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 402 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 403 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 404 => function ($stackPos) { - $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 405 => function ($stackPos) { - $this->semValue = new Expr\PostInc($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 406 => function ($stackPos) { - $this->semValue = new Expr\PreInc($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 407 => function ($stackPos) { - $this->semValue = new Expr\PostDec($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 408 => function ($stackPos) { - $this->semValue = new Expr\PreDec($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 409 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 410 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 411 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 412 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 413 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 414 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 415 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 416 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 417 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 418 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 419 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 420 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 421 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 422 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 423 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 424 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 425 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 426 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 427 => function ($stackPos) { - $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 428 => function ($stackPos) { - $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 429 => function ($stackPos) { - $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 430 => function ($stackPos) { - $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 431 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 432 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 433 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 434 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 435 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 436 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 437 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 438 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 439 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 440 => function ($stackPos) { - $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 441 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 442 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); - }, 443 => function ($stackPos) { - $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 444 => function ($stackPos) { - $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 445 => function ($stackPos) { - $this->semValue = new Expr\Isset_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 446 => function ($stackPos) { - $this->semValue = new Expr\Empty_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 447 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 448 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 449 => function ($stackPos) { - $this->semValue = new Expr\Eval_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 450 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 451 => function ($stackPos) { - $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 452 => function ($stackPos) { - $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 453 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; - $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos - (2 - 1)]); - $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos - (2 - 2)], $attrs); - }, 454 => function ($stackPos) { - $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 455 => function ($stackPos) { - $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 456 => function ($stackPos) { - $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 457 => function ($stackPos) { - $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 458 => function ($stackPos) { - $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 459 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; - $attrs['kind'] = \strtolower($this->semStack[$stackPos - (2 - 1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE; - $this->semValue = new Expr\Exit_($this->semStack[$stackPos - (2 - 2)], $attrs); - }, 460 => function ($stackPos) { - $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 461 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 462 => function ($stackPos) { - $this->semValue = new Expr\ShellExec($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 463 => function ($stackPos) { - $this->semValue = new Expr\Print_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 464 => function ($stackPos) { - $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 465 => function ($stackPos) { - $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (2 - 2)], null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 466 => function ($stackPos) { - $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 467 => function ($stackPos) { - $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 468 => function ($stackPos) { - $this->semValue = new Expr\Throw_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 469 => function ($stackPos) { - $this->semValue = new Expr\ArrowFunction(['static' => \false, 'byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 4)], 'returnType' => $this->semStack[$stackPos - (8 - 6)], 'expr' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 470 => function ($stackPos) { - $this->semValue = new Expr\ArrowFunction(['static' => \true, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'returnType' => $this->semStack[$stackPos - (9 - 7)], 'expr' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 471 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 4)], 'uses' => $this->semStack[$stackPos - (8 - 6)], 'returnType' => $this->semStack[$stackPos - (8 - 7)], 'stmts' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); - }, 472 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'uses' => $this->semStack[$stackPos - (9 - 7)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 473 => function ($stackPos) { - $this->semValue = new Expr\ArrowFunction(['static' => \false, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'returnType' => $this->semStack[$stackPos - (9 - 7)], 'expr' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 474 => function ($stackPos) { - $this->semValue = new Expr\ArrowFunction(['static' => \true, 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 6)], 'returnType' => $this->semStack[$stackPos - (10 - 8)], 'expr' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - }, 475 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'uses' => $this->semStack[$stackPos - (9 - 7)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); - }, 476 => function ($stackPos) { - $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 6)], 'uses' => $this->semStack[$stackPos - (10 - 8)], 'returnType' => $this->semStack[$stackPos - (10 - 9)], 'stmts' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); - }, 477 => function ($stackPos) { - $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (8 - 3)]); - $this->checkClass($this->semValue[0], -1); - }, 478 => function ($stackPos) { - $this->semValue = new Expr\New_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 479 => function ($stackPos) { - list($class, $ctorArgs) = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 480 => function ($stackPos) { - $this->semValue = array(); - }, 481 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (4 - 3)]; - }, 482 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 483 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 484 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 485 => function ($stackPos) { - $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos - (2 - 2)], $this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 486 => function ($stackPos) { - $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 487 => function ($stackPos) { - $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 488 => function ($stackPos) { - $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 489 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 490 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 491 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 492 => function ($stackPos) { - $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 493 => function ($stackPos) { - $this->semValue = new Name\FullyQualified(\substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 494 => function ($stackPos) { - $this->semValue = new Name\Relative(\substr($this->semStack[$stackPos - (1 - 1)], 10), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 495 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 496 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 497 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 498 => function ($stackPos) { - $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->errorState = 2; - }, 499 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 500 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 501 => function ($stackPos) { - $this->semValue = null; - }, 502 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 503 => function ($stackPos) { - $this->semValue = array(); - }, 504 => function ($stackPos) { - $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos - (1 - 1)], '`'), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); - }, 505 => function ($stackPos) { - foreach ($this->semStack[$stackPos - (1 - 1)] as $s) { - if ($s instanceof Node\Scalar\EncapsedStringPart) { - $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', \true); - } - } - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 506 => function ($stackPos) { - $this->semValue = array(); - }, 507 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 508 => function ($stackPos) { - $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 509 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 510 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 511 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 512 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 513 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 514 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 515 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 516 => function ($stackPos) { - $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 517 => function ($stackPos) { - $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 518 => function ($stackPos) { - $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], new Expr\Error($this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)]), $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - $this->errorState = 2; - }, 519 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; - $attrs['kind'] = Expr\Array_::KIND_SHORT; - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $attrs); - }, 520 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes; - $attrs['kind'] = Expr\Array_::KIND_LONG; - $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $attrs); - }, 521 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 522 => function ($stackPos) { - $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 523 => function ($stackPos) { - $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; - $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED; - foreach ($this->semStack[$stackPos - (3 - 2)] as $s) { - if ($s instanceof Node\Scalar\EncapsedStringPart) { - $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', \true); - } - } - $this->semValue = new Scalar\Encapsed($this->semStack[$stackPos - (3 - 2)], $attrs); - }, 524 => function ($stackPos) { - $this->semValue = $this->parseLNumber($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 525 => function ($stackPos) { - $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 526 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 527 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 528 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 529 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); - }, 530 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (2 - 1)], '', $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (2 - 2)] + $this->endAttributeStack[$stackPos - (2 - 2)], \true); - }, 531 => function ($stackPos) { - $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); - }, 532 => function ($stackPos) { - $this->semValue = null; - }, 533 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 534 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 535 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 536 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 537 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 538 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 539 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 540 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 541 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 542 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 543 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 544 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 545 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 546 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 547 => function ($stackPos) { - $this->semValue = new Expr\MethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 548 => function ($stackPos) { - $this->semValue = new Expr\NullsafeMethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 549 => function ($stackPos) { - $this->semValue = null; - }, 550 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 551 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 552 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 553 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 554 => function ($stackPos) { - $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 555 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 556 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 557 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 558 => function ($stackPos) { - $this->semValue = new Expr\Variable(new Expr\Error($this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - $this->errorState = 2; - }, 559 => function ($stackPos) { - $var = $this->semStack[$stackPos - (1 - 1)]->name; - $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes) : $var; - }, 560 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 561 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 562 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 563 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 564 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 565 => function ($stackPos) { - $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 566 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 567 => function ($stackPos) { - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 568 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 569 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 570 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 571 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 572 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 573 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 574 => function ($stackPos) { - $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - $this->errorState = 2; - }, 575 => function ($stackPos) { - $this->semValue = new Expr\List_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 576 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - $end = \count($this->semValue) - 1; - if ($this->semValue[$end] === null) { - \array_pop($this->semValue); - } - }, 577 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos]; - }, 578 => function ($stackPos) { - /* do nothing -- prevent default action of $$=$this->semStack[$1]. See $551. */ - }, 579 => function ($stackPos) { - $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; - $this->semValue = $this->semStack[$stackPos - (3 - 1)]; - }, 580 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 581 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 582 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 583 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 584 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 585 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 1)], \true, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 586 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 587 => function ($stackPos) { - $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 588 => function ($stackPos) { - $this->semValue = null; - }, 589 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 590 => function ($stackPos) { - $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; - $this->semValue = $this->semStack[$stackPos - (2 - 1)]; - }, 591 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); - }, 592 => function ($stackPos) { - $this->semValue = array($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); - }, 593 => function ($stackPos) { - $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 594 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 595 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }, 596 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); - }, 597 => function ($stackPos) { - $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 598 => function ($stackPos) { - $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 599 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 600 => function ($stackPos) { - $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); - }, 601 => function ($stackPos) { - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 4)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); - }, 602 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (3 - 2)]; - }, 603 => function ($stackPos) { - $this->semValue = new Scalar\String_($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 604 => function ($stackPos) { - $this->semValue = $this->parseNumString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); - }, 605 => function ($stackPos) { - $this->semValue = $this->parseNumString('-' . $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); - }, 606 => function ($stackPos) { - $this->semValue = $this->semStack[$stackPos - (1 - 1)]; - }]; - } -} -lexer = $lexer; - if (isset($options['throwOnError'])) { - throw new \LogicException('"throwOnError" is no longer supported, use "errorHandler" instead'); - } - $this->initReduceCallbacks(); - } - /** - * Parses PHP code into a node tree. - * - * If a non-throwing error handler is used, the parser will continue parsing after an error - * occurred and attempt to build a partial AST. - * - * @param string $code The source code to parse - * @param ErrorHandler|null $errorHandler Error handler to use for lexer/parser errors, defaults - * to ErrorHandler\Throwing. - * - * @return Node\Stmt[]|null Array of statements (or null non-throwing error handler is used and - * the parser was unable to recover from an error). - */ - public function parse(string $code, ErrorHandler $errorHandler = null) - { - $this->errorHandler = $errorHandler ?: new ErrorHandler\Throwing(); - $this->lexer->startLexing($code, $this->errorHandler); - $result = $this->doParse(); - // Clear out some of the interior state, so we don't hold onto unnecessary - // memory between uses of the parser - $this->startAttributeStack = []; - $this->endAttributeStack = []; - $this->semStack = []; - $this->semValue = null; - return $result; - } - protected function doParse() - { - // We start off with no lookahead-token - $symbol = self::SYMBOL_NONE; - // The attributes for a node are taken from the first and last token of the node. - // From the first token only the startAttributes are taken and from the last only - // the endAttributes. Both are merged using the array union operator (+). - $startAttributes = []; - $endAttributes = []; - $this->endAttributes = $endAttributes; - // Keep stack of start and end attributes - $this->startAttributeStack = []; - $this->endAttributeStack = [$endAttributes]; - // Start off in the initial state and keep a stack of previous states - $state = 0; - $stateStack = [$state]; - // Semantic value stack (contains values of tokens and semantic action results) - $this->semStack = []; - // Current position in the stack(s) - $stackPos = 0; - $this->errorState = 0; - for (;;) { - //$this->traceNewState($state, $symbol); - if ($this->actionBase[$state] === 0) { - $rule = $this->actionDefault[$state]; - } else { - if ($symbol === self::SYMBOL_NONE) { - // Fetch the next token id from the lexer and fetch additional info by-ref. - // The end attributes are fetched into a temporary variable and only set once the token is really - // shifted (not during read). Otherwise you would sometimes get off-by-one errors, when a rule is - // reduced after a token was read but not yet shifted. - $tokenId = $this->lexer->getNextToken($tokenValue, $startAttributes, $endAttributes); - // map the lexer token id to the internally used symbols - $symbol = $tokenId >= 0 && $tokenId < $this->tokenToSymbolMapSize ? $this->tokenToSymbol[$tokenId] : $this->invalidSymbol; - if ($symbol === $this->invalidSymbol) { - throw new \RangeException(\sprintf('The lexer returned an invalid token (id=%d, value=%s)', $tokenId, $tokenValue)); - } - // Allow productions to access the start attributes of the lookahead token. - $this->lookaheadStartAttributes = $startAttributes; - //$this->traceRead($symbol); - } - $idx = $this->actionBase[$state] + $symbol; - if (($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $symbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol) && ($action = $this->action[$idx]) !== $this->defaultAction) { - /* - * >= numNonLeafStates: shift and reduce - * > 0: shift - * = 0: accept - * < 0: reduce - * = -YYUNEXPECTED: error - */ - if ($action > 0) { - /* shift */ - //$this->traceShift($symbol); - ++$stackPos; - $stateStack[$stackPos] = $state = $action; - $this->semStack[$stackPos] = $tokenValue; - $this->startAttributeStack[$stackPos] = $startAttributes; - $this->endAttributeStack[$stackPos] = $endAttributes; - $this->endAttributes = $endAttributes; - $symbol = self::SYMBOL_NONE; - if ($this->errorState) { - --$this->errorState; - } - if ($action < $this->numNonLeafStates) { - continue; - } - /* $yyn >= numNonLeafStates means shift-and-reduce */ - $rule = $action - $this->numNonLeafStates; - } else { - $rule = -$action; - } - } else { - $rule = $this->actionDefault[$state]; - } - } - for (;;) { - if ($rule === 0) { - /* accept */ - //$this->traceAccept(); - return $this->semValue; - } elseif ($rule !== $this->unexpectedTokenRule) { - /* reduce */ - //$this->traceReduce($rule); - try { - $this->reduceCallbacks[$rule]($stackPos); - } catch (Error $e) { - if (-1 === $e->getStartLine() && isset($startAttributes['startLine'])) { - $e->setStartLine($startAttributes['startLine']); - } - $this->emitError($e); - // Can't recover from this type of error - return null; - } - /* Goto - shift nonterminal */ - $lastEndAttributes = $this->endAttributeStack[$stackPos]; - $ruleLength = $this->ruleToLength[$rule]; - $stackPos -= $ruleLength; - $nonTerminal = $this->ruleToNonTerminal[$rule]; - $idx = $this->gotoBase[$nonTerminal] + $stateStack[$stackPos]; - if ($idx >= 0 && $idx < $this->gotoTableSize && $this->gotoCheck[$idx] === $nonTerminal) { - $state = $this->goto[$idx]; - } else { - $state = $this->gotoDefault[$nonTerminal]; - } - ++$stackPos; - $stateStack[$stackPos] = $state; - $this->semStack[$stackPos] = $this->semValue; - $this->endAttributeStack[$stackPos] = $lastEndAttributes; - if ($ruleLength === 0) { - // Empty productions use the start attributes of the lookahead token. - $this->startAttributeStack[$stackPos] = $this->lookaheadStartAttributes; - } - } else { - /* error */ - switch ($this->errorState) { - case 0: - $msg = $this->getErrorMessage($symbol, $state); - $this->emitError(new Error($msg, $startAttributes + $endAttributes)); - // Break missing intentionally - case 1: - case 2: - $this->errorState = 3; - // Pop until error-expecting state uncovered - while (!(($idx = $this->actionBase[$state] + $this->errorSymbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $this->errorSymbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $this->errorSymbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $this->errorSymbol) || ($action = $this->action[$idx]) === $this->defaultAction) { - // Not totally sure about this - if ($stackPos <= 0) { - // Could not recover from error - return null; - } - $state = $stateStack[--$stackPos]; - //$this->tracePop($state); - } - //$this->traceShift($this->errorSymbol); - ++$stackPos; - $stateStack[$stackPos] = $state = $action; - // We treat the error symbol as being empty, so we reset the end attributes - // to the end attributes of the last non-error symbol - $this->startAttributeStack[$stackPos] = $this->lookaheadStartAttributes; - $this->endAttributeStack[$stackPos] = $this->endAttributeStack[$stackPos - 1]; - $this->endAttributes = $this->endAttributeStack[$stackPos - 1]; - break; - case 3: - if ($symbol === 0) { - // Reached EOF without recovering from error - return null; - } - //$this->traceDiscard($symbol); - $symbol = self::SYMBOL_NONE; - break 2; - } - } - if ($state < $this->numNonLeafStates) { - break; - } - /* >= numNonLeafStates means shift-and-reduce */ - $rule = $state - $this->numNonLeafStates; - } - } - throw new \RuntimeException('Reached end of parser loop'); - } - protected function emitError(Error $error) - { - $this->errorHandler->handleError($error); - } - /** - * Format error message including expected tokens. - * - * @param int $symbol Unexpected symbol - * @param int $state State at time of error - * - * @return string Formatted error message - */ - protected function getErrorMessage(int $symbol, int $state) : string - { - $expectedString = ''; - if ($expected = $this->getExpectedTokens($state)) { - $expectedString = ', expecting ' . \implode(' or ', $expected); - } - return 'Syntax error, unexpected ' . $this->symbolToName[$symbol] . $expectedString; - } - /** - * Get limited number of expected tokens in given state. - * - * @param int $state State - * - * @return string[] Expected tokens. If too many, an empty array is returned. - */ - protected function getExpectedTokens(int $state) : array - { - $expected = []; - $base = $this->actionBase[$state]; - foreach ($this->symbolToName as $symbol => $name) { - $idx = $base + $symbol; - if ($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $symbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol) { - if ($this->action[$idx] !== $this->unexpectedTokenRule && $this->action[$idx] !== $this->defaultAction && $symbol !== $this->errorSymbol) { - if (\count($expected) === 4) { - /* Too many expected tokens */ - return []; - } - $expected[] = $name; - } - } - } - return $expected; - } - /* - * Tracing functions used for debugging the parser. - */ - /* - protected function traceNewState($state, $symbol) { - echo '% State ' . $state - . ', Lookahead ' . ($symbol == self::SYMBOL_NONE ? '--none--' : $this->symbolToName[$symbol]) . "\n"; - } - - protected function traceRead($symbol) { - echo '% Reading ' . $this->symbolToName[$symbol] . "\n"; - } - - protected function traceShift($symbol) { - echo '% Shift ' . $this->symbolToName[$symbol] . "\n"; - } - - protected function traceAccept() { - echo "% Accepted.\n"; - } - - protected function traceReduce($n) { - echo '% Reduce by (' . $n . ') ' . $this->productions[$n] . "\n"; - } - - protected function tracePop($state) { - echo '% Recovering, uncovered state ' . $state . "\n"; - } - - protected function traceDiscard($symbol) { - echo '% Discard ' . $this->symbolToName[$symbol] . "\n"; - } - */ - /* - * Helper functions invoked by semantic actions - */ - /** - * Moves statements of semicolon-style namespaces into $ns->stmts and checks various error conditions. - * - * @param Node\Stmt[] $stmts - * @return Node\Stmt[] - */ - protected function handleNamespaces(array $stmts) : array - { - $hasErrored = \false; - $style = $this->getNamespacingStyle($stmts); - if (null === $style) { - // not namespaced, nothing to do - return $stmts; - } elseif ('brace' === $style) { - // For braced namespaces we only have to check that there are no invalid statements between the namespaces - $afterFirstNamespace = \false; - foreach ($stmts as $stmt) { - if ($stmt instanceof Node\Stmt\Namespace_) { - $afterFirstNamespace = \true; - } elseif (!$stmt instanceof Node\Stmt\HaltCompiler && !$stmt instanceof Node\Stmt\Nop && $afterFirstNamespace && !$hasErrored) { - $this->emitError(new Error('No code may exist outside of namespace {}', $stmt->getAttributes())); - $hasErrored = \true; - // Avoid one error for every statement - } - } - return $stmts; - } else { - // For semicolon namespaces we have to move the statements after a namespace declaration into ->stmts - $resultStmts = []; - $targetStmts =& $resultStmts; - $lastNs = null; - foreach ($stmts as $stmt) { - if ($stmt instanceof Node\Stmt\Namespace_) { - if ($lastNs !== null) { - $this->fixupNamespaceAttributes($lastNs); - } - if ($stmt->stmts === null) { - $stmt->stmts = []; - $targetStmts =& $stmt->stmts; - $resultStmts[] = $stmt; - } else { - // This handles the invalid case of mixed style namespaces - $resultStmts[] = $stmt; - $targetStmts =& $resultStmts; - } - $lastNs = $stmt; - } elseif ($stmt instanceof Node\Stmt\HaltCompiler) { - // __halt_compiler() is not moved into the namespace - $resultStmts[] = $stmt; - } else { - $targetStmts[] = $stmt; - } - } - if ($lastNs !== null) { - $this->fixupNamespaceAttributes($lastNs); - } - return $resultStmts; - } - } - private function fixupNamespaceAttributes(Node\Stmt\Namespace_ $stmt) - { - // We moved the statements into the namespace node, as such the end of the namespace node - // needs to be extended to the end of the statements. - if (empty($stmt->stmts)) { - return; - } - // We only move the builtin end attributes here. This is the best we can do with the - // knowledge we have. - $endAttributes = ['endLine', 'endFilePos', 'endTokenPos']; - $lastStmt = $stmt->stmts[\count($stmt->stmts) - 1]; - foreach ($endAttributes as $endAttribute) { - if ($lastStmt->hasAttribute($endAttribute)) { - $stmt->setAttribute($endAttribute, $lastStmt->getAttribute($endAttribute)); - } - } - } - /** - * Determine namespacing style (semicolon or brace) - * - * @param Node[] $stmts Top-level statements. - * - * @return null|string One of "semicolon", "brace" or null (no namespaces) - */ - private function getNamespacingStyle(array $stmts) - { - $style = null; - $hasNotAllowedStmts = \false; - foreach ($stmts as $i => $stmt) { - if ($stmt instanceof Node\Stmt\Namespace_) { - $currentStyle = null === $stmt->stmts ? 'semicolon' : 'brace'; - if (null === $style) { - $style = $currentStyle; - if ($hasNotAllowedStmts) { - $this->emitError(new Error('Namespace declaration statement has to be the very first statement in the script', $stmt->getLine())); - } - } elseif ($style !== $currentStyle) { - $this->emitError(new Error('Cannot mix bracketed namespace declarations with unbracketed namespace declarations', $stmt->getLine())); - // Treat like semicolon style for namespace normalization - return 'semicolon'; - } - continue; - } - /* declare(), __halt_compiler() and nops can be used before a namespace declaration */ - if ($stmt instanceof Node\Stmt\Declare_ || $stmt instanceof Node\Stmt\HaltCompiler || $stmt instanceof Node\Stmt\Nop) { - continue; - } - /* There may be a hashbang line at the very start of the file */ - if ($i === 0 && $stmt instanceof Node\Stmt\InlineHTML && \preg_match('/\\A#!.*\\r?\\n\\z/', $stmt->value)) { - continue; - } - /* Everything else if forbidden before namespace declarations */ - $hasNotAllowedStmts = \true; - } - return $style; - } - /** - * Fix up parsing of static property calls in PHP 5. - * - * In PHP 5 A::$b[c][d] and A::$b[c][d]() have very different interpretation. The former is - * interpreted as (A::$b)[c][d], while the latter is the same as A::{$b[c][d]}(). We parse the - * latter as the former initially and this method fixes the AST into the correct form when we - * encounter the "()". - * - * @param Node\Expr\StaticPropertyFetch|Node\Expr\ArrayDimFetch $prop - * @param Node\Arg[] $args - * @param array $attributes - * - * @return Expr\StaticCall - */ - protected function fixupPhp5StaticPropCall($prop, array $args, array $attributes) : Expr\StaticCall - { - if ($prop instanceof Node\Expr\StaticPropertyFetch) { - $name = $prop->name instanceof VarLikeIdentifier ? $prop->name->toString() : $prop->name; - $var = new Expr\Variable($name, $prop->name->getAttributes()); - return new Expr\StaticCall($prop->class, $var, $args, $attributes); - } elseif ($prop instanceof Node\Expr\ArrayDimFetch) { - $tmp = $prop; - while ($tmp->var instanceof Node\Expr\ArrayDimFetch) { - $tmp = $tmp->var; - } - /** @var Expr\StaticPropertyFetch $staticProp */ - $staticProp = $tmp->var; - // Set start attributes to attributes of innermost node - $tmp = $prop; - $this->fixupStartAttributes($tmp, $staticProp->name); - while ($tmp->var instanceof Node\Expr\ArrayDimFetch) { - $tmp = $tmp->var; - $this->fixupStartAttributes($tmp, $staticProp->name); - } - $name = $staticProp->name instanceof VarLikeIdentifier ? $staticProp->name->toString() : $staticProp->name; - $tmp->var = new Expr\Variable($name, $staticProp->name->getAttributes()); - return new Expr\StaticCall($staticProp->class, $prop, $args, $attributes); - } else { - throw new \Exception(); - } - } - protected function fixupStartAttributes(Node $to, Node $from) - { - $startAttributes = ['startLine', 'startFilePos', 'startTokenPos']; - foreach ($startAttributes as $startAttribute) { - if ($from->hasAttribute($startAttribute)) { - $to->setAttribute($startAttribute, $from->getAttribute($startAttribute)); - } - } - } - protected function handleBuiltinTypes(Name $name) - { - $builtinTypes = ['bool' => \true, 'int' => \true, 'float' => \true, 'string' => \true, 'iterable' => \true, 'void' => \true, 'object' => \true, 'null' => \true, 'false' => \true, 'mixed' => \true, 'never' => \true, 'true' => \true]; - if (!$name->isUnqualified()) { - return $name; - } - $lowerName = $name->toLowerString(); - if (!isset($builtinTypes[$lowerName])) { - return $name; - } - return new Node\Identifier($lowerName, $name->getAttributes()); - } - /** - * Get combined start and end attributes at a stack location - * - * @param int $pos Stack location - * - * @return array Combined start and end attributes - */ - protected function getAttributesAt(int $pos) : array - { - return $this->startAttributeStack[$pos] + $this->endAttributeStack[$pos]; - } - protected function getFloatCastKind(string $cast) : int - { - $cast = \strtolower($cast); - if (\strpos($cast, 'float') !== \false) { - return Double::KIND_FLOAT; - } - if (\strpos($cast, 'real') !== \false) { - return Double::KIND_REAL; - } - return Double::KIND_DOUBLE; - } - protected function parseLNumber($str, $attributes, $allowInvalidOctal = \false) - { - try { - return LNumber::fromString($str, $attributes, $allowInvalidOctal); - } catch (Error $error) { - $this->emitError($error); - // Use dummy value - return new LNumber(0, $attributes); - } - } - /** - * Parse a T_NUM_STRING token into either an integer or string node. - * - * @param string $str Number string - * @param array $attributes Attributes - * - * @return LNumber|String_ Integer or string node. - */ - protected function parseNumString(string $str, array $attributes) - { - if (!\preg_match('/^(?:0|-?[1-9][0-9]*)$/', $str)) { - return new String_($str, $attributes); - } - $num = +$str; - if (!\is_int($num)) { - return new String_($str, $attributes); - } - return new LNumber($num, $attributes); - } - protected function stripIndentation(string $string, int $indentLen, string $indentChar, bool $newlineAtStart, bool $newlineAtEnd, array $attributes) - { - if ($indentLen === 0) { - return $string; - } - $start = $newlineAtStart ? '(?:(?<=\\n)|\\A)' : '(?<=\\n)'; - $end = $newlineAtEnd ? '(?:(?=[\\r\\n])|\\z)' : '(?=[\\r\\n])'; - $regex = '/' . $start . '([ \\t]*)(' . $end . ')?/'; - return \preg_replace_callback($regex, function ($matches) use($indentLen, $indentChar, $attributes) { - $prefix = \substr($matches[1], 0, $indentLen); - if (\false !== \strpos($prefix, $indentChar === " " ? "\t" : " ")) { - $this->emitError(new Error('Invalid indentation - tabs and spaces cannot be mixed', $attributes)); - } elseif (\strlen($prefix) < $indentLen && !isset($matches[2])) { - $this->emitError(new Error('Invalid body indentation level ' . '(expecting an indentation level of at least ' . $indentLen . ')', $attributes)); - } - return \substr($matches[0], \strlen($prefix)); - }, $string); - } - protected function parseDocString(string $startToken, $contents, string $endToken, array $attributes, array $endTokenAttributes, bool $parseUnicodeEscape) - { - $kind = \strpos($startToken, "'") === \false ? String_::KIND_HEREDOC : String_::KIND_NOWDOC; - $regex = '/\\A[bB]?<<<[ \\t]*[\'"]?([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)[\'"]?(?:\\r\\n|\\n|\\r)\\z/'; - $result = \preg_match($regex, $startToken, $matches); - \assert($result === 1); - $label = $matches[1]; - $result = \preg_match('/\\A[ \\t]*/', $endToken, $matches); - \assert($result === 1); - $indentation = $matches[0]; - $attributes['kind'] = $kind; - $attributes['docLabel'] = $label; - $attributes['docIndentation'] = $indentation; - $indentHasSpaces = \false !== \strpos($indentation, " "); - $indentHasTabs = \false !== \strpos($indentation, "\t"); - if ($indentHasSpaces && $indentHasTabs) { - $this->emitError(new Error('Invalid indentation - tabs and spaces cannot be mixed', $endTokenAttributes)); - // Proceed processing as if this doc string is not indented - $indentation = ''; - } - $indentLen = \strlen($indentation); - $indentChar = $indentHasSpaces ? " " : "\t"; - if (\is_string($contents)) { - if ($contents === '') { - return new String_('', $attributes); - } - $contents = $this->stripIndentation($contents, $indentLen, $indentChar, \true, \true, $attributes); - $contents = \preg_replace('~(\\r\\n|\\n|\\r)\\z~', '', $contents); - if ($kind === String_::KIND_HEREDOC) { - $contents = String_::parseEscapeSequences($contents, null, $parseUnicodeEscape); - } - return new String_($contents, $attributes); - } else { - \assert(\count($contents) > 0); - if (!$contents[0] instanceof Node\Scalar\EncapsedStringPart) { - // If there is no leading encapsed string part, pretend there is an empty one - $this->stripIndentation('', $indentLen, $indentChar, \true, \false, $contents[0]->getAttributes()); - } - $newContents = []; - foreach ($contents as $i => $part) { - if ($part instanceof Node\Scalar\EncapsedStringPart) { - $isLast = $i === \count($contents) - 1; - $part->value = $this->stripIndentation($part->value, $indentLen, $indentChar, $i === 0, $isLast, $part->getAttributes()); - $part->value = String_::parseEscapeSequences($part->value, null, $parseUnicodeEscape); - if ($isLast) { - $part->value = \preg_replace('~(\\r\\n|\\n|\\r)\\z~', '', $part->value); - } - if ('' === $part->value) { - continue; - } - } - $newContents[] = $part; - } - return new Encapsed($newContents, $attributes); - } - } - /** - * Create attributes for a zero-length common-capturing nop. - * - * @param Comment[] $comments - * @return array - */ - protected function createCommentNopAttributes(array $comments) - { - $comment = $comments[\count($comments) - 1]; - $commentEndLine = $comment->getEndLine(); - $commentEndFilePos = $comment->getEndFilePos(); - $commentEndTokenPos = $comment->getEndTokenPos(); - $attributes = ['comments' => $comments]; - if (-1 !== $commentEndLine) { - $attributes['startLine'] = $commentEndLine; - $attributes['endLine'] = $commentEndLine; - } - if (-1 !== $commentEndFilePos) { - $attributes['startFilePos'] = $commentEndFilePos + 1; - $attributes['endFilePos'] = $commentEndFilePos; - } - if (-1 !== $commentEndTokenPos) { - $attributes['startTokenPos'] = $commentEndTokenPos + 1; - $attributes['endTokenPos'] = $commentEndTokenPos; - } - return $attributes; - } - protected function checkClassModifier($a, $b, $modifierPos) - { - try { - Class_::verifyClassModifier($a, $b); - } catch (Error $error) { - $error->setAttributes($this->getAttributesAt($modifierPos)); - $this->emitError($error); - } - } - protected function checkModifier($a, $b, $modifierPos) - { - // Jumping through some hoops here because verifyModifier() is also used elsewhere - try { - Class_::verifyModifier($a, $b); - } catch (Error $error) { - $error->setAttributes($this->getAttributesAt($modifierPos)); - $this->emitError($error); - } - } - protected function checkParam(Param $node) - { - if ($node->variadic && null !== $node->default) { - $this->emitError(new Error('Variadic parameter cannot have a default value', $node->default->getAttributes())); - } - } - protected function checkTryCatch(TryCatch $node) - { - if (empty($node->catches) && null === $node->finally) { - $this->emitError(new Error('Cannot use try without catch or finally', $node->getAttributes())); - } - } - protected function checkNamespace(Namespace_ $node) - { - if (null !== $node->stmts) { - foreach ($node->stmts as $stmt) { - if ($stmt instanceof Namespace_) { - $this->emitError(new Error('Namespace declarations cannot be nested', $stmt->getAttributes())); - } - } - } - } - private function checkClassName($name, $namePos) - { - if (null !== $name && $name->isSpecialClassName()) { - $this->emitError(new Error(\sprintf('Cannot use \'%s\' as class name as it is reserved', $name), $this->getAttributesAt($namePos))); - } - } - private function checkImplementedInterfaces(array $interfaces) - { - foreach ($interfaces as $interface) { - if ($interface->isSpecialClassName()) { - $this->emitError(new Error(\sprintf('Cannot use \'%s\' as interface name as it is reserved', $interface), $interface->getAttributes())); - } - } - } - protected function checkClass(Class_ $node, $namePos) - { - $this->checkClassName($node->name, $namePos); - if ($node->extends && $node->extends->isSpecialClassName()) { - $this->emitError(new Error(\sprintf('Cannot use \'%s\' as class name as it is reserved', $node->extends), $node->extends->getAttributes())); - } - $this->checkImplementedInterfaces($node->implements); - } - protected function checkInterface(Interface_ $node, $namePos) - { - $this->checkClassName($node->name, $namePos); - $this->checkImplementedInterfaces($node->extends); - } - protected function checkEnum(Enum_ $node, $namePos) - { - $this->checkClassName($node->name, $namePos); - $this->checkImplementedInterfaces($node->implements); - } - protected function checkClassMethod(ClassMethod $node, $modifierPos) - { - if ($node->flags & Class_::MODIFIER_STATIC) { - switch ($node->name->toLowerString()) { - case '__construct': - $this->emitError(new Error(\sprintf('Constructor %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); - break; - case '__destruct': - $this->emitError(new Error(\sprintf('Destructor %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); - break; - case '__clone': - $this->emitError(new Error(\sprintf('Clone method %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); - break; - } - } - if ($node->flags & Class_::MODIFIER_READONLY) { - $this->emitError(new Error(\sprintf('Method %s() cannot be readonly', $node->name), $this->getAttributesAt($modifierPos))); - } - } - protected function checkClassConst(ClassConst $node, $modifierPos) - { - if ($node->flags & Class_::MODIFIER_STATIC) { - $this->emitError(new Error("Cannot use 'static' as constant modifier", $this->getAttributesAt($modifierPos))); - } - if ($node->flags & Class_::MODIFIER_ABSTRACT) { - $this->emitError(new Error("Cannot use 'abstract' as constant modifier", $this->getAttributesAt($modifierPos))); - } - if ($node->flags & Class_::MODIFIER_READONLY) { - $this->emitError(new Error("Cannot use 'readonly' as constant modifier", $this->getAttributesAt($modifierPos))); - } - } - protected function checkProperty(Property $node, $modifierPos) - { - if ($node->flags & Class_::MODIFIER_ABSTRACT) { - $this->emitError(new Error('Properties cannot be declared abstract', $this->getAttributesAt($modifierPos))); - } - if ($node->flags & Class_::MODIFIER_FINAL) { - $this->emitError(new Error('Properties cannot be declared final', $this->getAttributesAt($modifierPos))); - } - } - protected function checkUseUse(UseUse $node, $namePos) - { - if ($node->alias && $node->alias->isSpecialClassName()) { - $this->emitError(new Error(\sprintf('Cannot use %s as %s because \'%2$s\' is a special class name', $node->name, $node->alias), $this->getAttributesAt($namePos))); - } - } -} -pAttrGroups($node->attrGroups, \true) . $this->pModifiers($node->flags) . ($node->type ? $this->p($node->type) . ' ' : '') . ($node->byRef ? '&' : '') . ($node->variadic ? '...' : '') . $this->p($node->var) . ($node->default ? ' = ' . $this->p($node->default) : ''); - } - protected function pArg(Node\Arg $node) - { - return ($node->name ? $node->name->toString() . ': ' : '') . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '') . $this->p($node->value); - } - protected function pVariadicPlaceholder(Node\VariadicPlaceholder $node) - { - return '...'; - } - protected function pConst(Node\Const_ $node) - { - return $node->name . ' = ' . $this->p($node->value); - } - protected function pNullableType(Node\NullableType $node) - { - return '?' . $this->p($node->type); - } - protected function pUnionType(Node\UnionType $node) - { - $types = []; - foreach ($node->types as $typeNode) { - if ($typeNode instanceof Node\IntersectionType) { - $types[] = '(' . $this->p($typeNode) . ')'; - continue; - } - $types[] = $this->p($typeNode); - } - return \implode('|', $types); - } - protected function pIntersectionType(Node\IntersectionType $node) - { - return $this->pImplode($node->types, '&'); - } - protected function pIdentifier(Node\Identifier $node) - { - return $node->name; - } - protected function pVarLikeIdentifier(Node\VarLikeIdentifier $node) - { - return '$' . $node->name; - } - protected function pAttribute(Node\Attribute $node) - { - return $this->p($node->name) . ($node->args ? '(' . $this->pCommaSeparated($node->args) . ')' : ''); - } - protected function pAttributeGroup(Node\AttributeGroup $node) - { - return '#[' . $this->pCommaSeparated($node->attrs) . ']'; - } - // Names - protected function pName(Name $node) - { - return \implode('\\', $node->parts); - } - protected function pName_FullyQualified(Name\FullyQualified $node) - { - return '\\' . \implode('\\', $node->parts); - } - protected function pName_Relative(Name\Relative $node) - { - return 'namespace\\' . \implode('\\', $node->parts); - } - // Magic Constants - protected function pScalar_MagicConst_Class(MagicConst\Class_ $node) - { - return '__CLASS__'; - } - protected function pScalar_MagicConst_Dir(MagicConst\Dir $node) - { - return '__DIR__'; - } - protected function pScalar_MagicConst_File(MagicConst\File $node) - { - return '__FILE__'; - } - protected function pScalar_MagicConst_Function(MagicConst\Function_ $node) - { - return '__FUNCTION__'; - } - protected function pScalar_MagicConst_Line(MagicConst\Line $node) - { - return '__LINE__'; - } - protected function pScalar_MagicConst_Method(MagicConst\Method $node) - { - return '__METHOD__'; - } - protected function pScalar_MagicConst_Namespace(MagicConst\Namespace_ $node) - { - return '__NAMESPACE__'; - } - protected function pScalar_MagicConst_Trait(MagicConst\Trait_ $node) - { - return '__TRAIT__'; - } - // Scalars - protected function pScalar_String(Scalar\String_ $node) - { - $kind = $node->getAttribute('kind', Scalar\String_::KIND_SINGLE_QUOTED); - switch ($kind) { - case Scalar\String_::KIND_NOWDOC: - $label = $node->getAttribute('docLabel'); - if ($label && !$this->containsEndLabel($node->value, $label)) { - if ($node->value === '') { - return "<<<'{$label}'\n{$label}" . $this->docStringEndToken; - } - return "<<<'{$label}'\n{$node->value}\n{$label}" . $this->docStringEndToken; - } - /* break missing intentionally */ - case Scalar\String_::KIND_SINGLE_QUOTED: - return $this->pSingleQuotedString($node->value); - case Scalar\String_::KIND_HEREDOC: - $label = $node->getAttribute('docLabel'); - if ($label && !$this->containsEndLabel($node->value, $label)) { - if ($node->value === '') { - return "<<<{$label}\n{$label}" . $this->docStringEndToken; - } - $escaped = $this->escapeString($node->value, null); - return "<<<{$label}\n" . $escaped . "\n{$label}" . $this->docStringEndToken; - } - /* break missing intentionally */ - case Scalar\String_::KIND_DOUBLE_QUOTED: - return '"' . $this->escapeString($node->value, '"') . '"'; - } - throw new \Exception('Invalid string kind'); - } - protected function pScalar_Encapsed(Scalar\Encapsed $node) - { - if ($node->getAttribute('kind') === Scalar\String_::KIND_HEREDOC) { - $label = $node->getAttribute('docLabel'); - if ($label && !$this->encapsedContainsEndLabel($node->parts, $label)) { - if (\count($node->parts) === 1 && $node->parts[0] instanceof Scalar\EncapsedStringPart && $node->parts[0]->value === '') { - return "<<<{$label}\n{$label}" . $this->docStringEndToken; - } - return "<<<{$label}\n" . $this->pEncapsList($node->parts, null) . "\n{$label}" . $this->docStringEndToken; - } - } - return '"' . $this->pEncapsList($node->parts, '"') . '"'; - } - protected function pScalar_LNumber(Scalar\LNumber $node) - { - if ($node->value === -\PHP_INT_MAX - 1) { - // PHP_INT_MIN cannot be represented as a literal, - // because the sign is not part of the literal - return '(-' . \PHP_INT_MAX . '-1)'; - } - $kind = $node->getAttribute('kind', Scalar\LNumber::KIND_DEC); - if (Scalar\LNumber::KIND_DEC === $kind) { - return (string) $node->value; - } - if ($node->value < 0) { - $sign = '-'; - $str = (string) -$node->value; - } else { - $sign = ''; - $str = (string) $node->value; - } - switch ($kind) { - case Scalar\LNumber::KIND_BIN: - return $sign . '0b' . \base_convert($str, 10, 2); - case Scalar\LNumber::KIND_OCT: - return $sign . '0' . \base_convert($str, 10, 8); - case Scalar\LNumber::KIND_HEX: - return $sign . '0x' . \base_convert($str, 10, 16); - } - throw new \Exception('Invalid number kind'); - } - protected function pScalar_DNumber(Scalar\DNumber $node) - { - if (!\is_finite($node->value)) { - if ($node->value === \INF) { - return '\\INF'; - } elseif ($node->value === -\INF) { - return '-\\INF'; - } else { - return '\\NAN'; - } - } - // Try to find a short full-precision representation - $stringValue = \sprintf('%.16G', $node->value); - if ($node->value !== (double) $stringValue) { - $stringValue = \sprintf('%.17G', $node->value); - } - // %G is locale dependent and there exists no locale-independent alternative. We don't want - // mess with switching locales here, so let's assume that a comma is the only non-standard - // decimal separator we may encounter... - $stringValue = \str_replace(',', '.', $stringValue); - // ensure that number is really printed as float - return \preg_match('/^-?[0-9]+$/', $stringValue) ? $stringValue . '.0' : $stringValue; - } - protected function pScalar_EncapsedStringPart(Scalar\EncapsedStringPart $node) - { - throw new \LogicException('Cannot directly print EncapsedStringPart'); - } - // Assignments - protected function pExpr_Assign(Expr\Assign $node) - { - return $this->pInfixOp(Expr\Assign::class, $node->var, ' = ', $node->expr); - } - protected function pExpr_AssignRef(Expr\AssignRef $node) - { - return $this->pInfixOp(Expr\AssignRef::class, $node->var, ' =& ', $node->expr); - } - protected function pExpr_AssignOp_Plus(AssignOp\Plus $node) - { - return $this->pInfixOp(AssignOp\Plus::class, $node->var, ' += ', $node->expr); - } - protected function pExpr_AssignOp_Minus(AssignOp\Minus $node) - { - return $this->pInfixOp(AssignOp\Minus::class, $node->var, ' -= ', $node->expr); - } - protected function pExpr_AssignOp_Mul(AssignOp\Mul $node) - { - return $this->pInfixOp(AssignOp\Mul::class, $node->var, ' *= ', $node->expr); - } - protected function pExpr_AssignOp_Div(AssignOp\Div $node) - { - return $this->pInfixOp(AssignOp\Div::class, $node->var, ' /= ', $node->expr); - } - protected function pExpr_AssignOp_Concat(AssignOp\Concat $node) - { - return $this->pInfixOp(AssignOp\Concat::class, $node->var, ' .= ', $node->expr); - } - protected function pExpr_AssignOp_Mod(AssignOp\Mod $node) - { - return $this->pInfixOp(AssignOp\Mod::class, $node->var, ' %= ', $node->expr); - } - protected function pExpr_AssignOp_BitwiseAnd(AssignOp\BitwiseAnd $node) - { - return $this->pInfixOp(AssignOp\BitwiseAnd::class, $node->var, ' &= ', $node->expr); - } - protected function pExpr_AssignOp_BitwiseOr(AssignOp\BitwiseOr $node) - { - return $this->pInfixOp(AssignOp\BitwiseOr::class, $node->var, ' |= ', $node->expr); - } - protected function pExpr_AssignOp_BitwiseXor(AssignOp\BitwiseXor $node) - { - return $this->pInfixOp(AssignOp\BitwiseXor::class, $node->var, ' ^= ', $node->expr); - } - protected function pExpr_AssignOp_ShiftLeft(AssignOp\ShiftLeft $node) - { - return $this->pInfixOp(AssignOp\ShiftLeft::class, $node->var, ' <<= ', $node->expr); - } - protected function pExpr_AssignOp_ShiftRight(AssignOp\ShiftRight $node) - { - return $this->pInfixOp(AssignOp\ShiftRight::class, $node->var, ' >>= ', $node->expr); - } - protected function pExpr_AssignOp_Pow(AssignOp\Pow $node) - { - return $this->pInfixOp(AssignOp\Pow::class, $node->var, ' **= ', $node->expr); - } - protected function pExpr_AssignOp_Coalesce(AssignOp\Coalesce $node) - { - return $this->pInfixOp(AssignOp\Coalesce::class, $node->var, ' ??= ', $node->expr); - } - // Binary expressions - protected function pExpr_BinaryOp_Plus(BinaryOp\Plus $node) - { - return $this->pInfixOp(BinaryOp\Plus::class, $node->left, ' + ', $node->right); - } - protected function pExpr_BinaryOp_Minus(BinaryOp\Minus $node) - { - return $this->pInfixOp(BinaryOp\Minus::class, $node->left, ' - ', $node->right); - } - protected function pExpr_BinaryOp_Mul(BinaryOp\Mul $node) - { - return $this->pInfixOp(BinaryOp\Mul::class, $node->left, ' * ', $node->right); - } - protected function pExpr_BinaryOp_Div(BinaryOp\Div $node) - { - return $this->pInfixOp(BinaryOp\Div::class, $node->left, ' / ', $node->right); - } - protected function pExpr_BinaryOp_Concat(BinaryOp\Concat $node) - { - return $this->pInfixOp(BinaryOp\Concat::class, $node->left, ' . ', $node->right); - } - protected function pExpr_BinaryOp_Mod(BinaryOp\Mod $node) - { - return $this->pInfixOp(BinaryOp\Mod::class, $node->left, ' % ', $node->right); - } - protected function pExpr_BinaryOp_BooleanAnd(BinaryOp\BooleanAnd $node) - { - return $this->pInfixOp(BinaryOp\BooleanAnd::class, $node->left, ' && ', $node->right); - } - protected function pExpr_BinaryOp_BooleanOr(BinaryOp\BooleanOr $node) - { - return $this->pInfixOp(BinaryOp\BooleanOr::class, $node->left, ' || ', $node->right); - } - protected function pExpr_BinaryOp_BitwiseAnd(BinaryOp\BitwiseAnd $node) - { - return $this->pInfixOp(BinaryOp\BitwiseAnd::class, $node->left, ' & ', $node->right); - } - protected function pExpr_BinaryOp_BitwiseOr(BinaryOp\BitwiseOr $node) - { - return $this->pInfixOp(BinaryOp\BitwiseOr::class, $node->left, ' | ', $node->right); - } - protected function pExpr_BinaryOp_BitwiseXor(BinaryOp\BitwiseXor $node) - { - return $this->pInfixOp(BinaryOp\BitwiseXor::class, $node->left, ' ^ ', $node->right); - } - protected function pExpr_BinaryOp_ShiftLeft(BinaryOp\ShiftLeft $node) - { - return $this->pInfixOp(BinaryOp\ShiftLeft::class, $node->left, ' << ', $node->right); - } - protected function pExpr_BinaryOp_ShiftRight(BinaryOp\ShiftRight $node) - { - return $this->pInfixOp(BinaryOp\ShiftRight::class, $node->left, ' >> ', $node->right); - } - protected function pExpr_BinaryOp_Pow(BinaryOp\Pow $node) - { - return $this->pInfixOp(BinaryOp\Pow::class, $node->left, ' ** ', $node->right); - } - protected function pExpr_BinaryOp_LogicalAnd(BinaryOp\LogicalAnd $node) - { - return $this->pInfixOp(BinaryOp\LogicalAnd::class, $node->left, ' and ', $node->right); - } - protected function pExpr_BinaryOp_LogicalOr(BinaryOp\LogicalOr $node) - { - return $this->pInfixOp(BinaryOp\LogicalOr::class, $node->left, ' or ', $node->right); - } - protected function pExpr_BinaryOp_LogicalXor(BinaryOp\LogicalXor $node) - { - return $this->pInfixOp(BinaryOp\LogicalXor::class, $node->left, ' xor ', $node->right); - } - protected function pExpr_BinaryOp_Equal(BinaryOp\Equal $node) - { - return $this->pInfixOp(BinaryOp\Equal::class, $node->left, ' == ', $node->right); - } - protected function pExpr_BinaryOp_NotEqual(BinaryOp\NotEqual $node) - { - return $this->pInfixOp(BinaryOp\NotEqual::class, $node->left, ' != ', $node->right); - } - protected function pExpr_BinaryOp_Identical(BinaryOp\Identical $node) - { - return $this->pInfixOp(BinaryOp\Identical::class, $node->left, ' === ', $node->right); - } - protected function pExpr_BinaryOp_NotIdentical(BinaryOp\NotIdentical $node) - { - return $this->pInfixOp(BinaryOp\NotIdentical::class, $node->left, ' !== ', $node->right); - } - protected function pExpr_BinaryOp_Spaceship(BinaryOp\Spaceship $node) - { - return $this->pInfixOp(BinaryOp\Spaceship::class, $node->left, ' <=> ', $node->right); - } - protected function pExpr_BinaryOp_Greater(BinaryOp\Greater $node) - { - return $this->pInfixOp(BinaryOp\Greater::class, $node->left, ' > ', $node->right); - } - protected function pExpr_BinaryOp_GreaterOrEqual(BinaryOp\GreaterOrEqual $node) - { - return $this->pInfixOp(BinaryOp\GreaterOrEqual::class, $node->left, ' >= ', $node->right); - } - protected function pExpr_BinaryOp_Smaller(BinaryOp\Smaller $node) - { - return $this->pInfixOp(BinaryOp\Smaller::class, $node->left, ' < ', $node->right); - } - protected function pExpr_BinaryOp_SmallerOrEqual(BinaryOp\SmallerOrEqual $node) - { - return $this->pInfixOp(BinaryOp\SmallerOrEqual::class, $node->left, ' <= ', $node->right); - } - protected function pExpr_BinaryOp_Coalesce(BinaryOp\Coalesce $node) - { - return $this->pInfixOp(BinaryOp\Coalesce::class, $node->left, ' ?? ', $node->right); - } - protected function pExpr_Instanceof(Expr\Instanceof_ $node) - { - list($precedence, $associativity) = $this->precedenceMap[Expr\Instanceof_::class]; - return $this->pPrec($node->expr, $precedence, $associativity, -1) . ' instanceof ' . $this->pNewVariable($node->class); - } - // Unary expressions - protected function pExpr_BooleanNot(Expr\BooleanNot $node) - { - return $this->pPrefixOp(Expr\BooleanNot::class, '!', $node->expr); - } - protected function pExpr_BitwiseNot(Expr\BitwiseNot $node) - { - return $this->pPrefixOp(Expr\BitwiseNot::class, '~', $node->expr); - } - protected function pExpr_UnaryMinus(Expr\UnaryMinus $node) - { - if ($node->expr instanceof Expr\UnaryMinus || $node->expr instanceof Expr\PreDec) { - // Enforce -(-$expr) instead of --$expr - return '-(' . $this->p($node->expr) . ')'; - } - return $this->pPrefixOp(Expr\UnaryMinus::class, '-', $node->expr); - } - protected function pExpr_UnaryPlus(Expr\UnaryPlus $node) - { - if ($node->expr instanceof Expr\UnaryPlus || $node->expr instanceof Expr\PreInc) { - // Enforce +(+$expr) instead of ++$expr - return '+(' . $this->p($node->expr) . ')'; - } - return $this->pPrefixOp(Expr\UnaryPlus::class, '+', $node->expr); - } - protected function pExpr_PreInc(Expr\PreInc $node) - { - return $this->pPrefixOp(Expr\PreInc::class, '++', $node->var); - } - protected function pExpr_PreDec(Expr\PreDec $node) - { - return $this->pPrefixOp(Expr\PreDec::class, '--', $node->var); - } - protected function pExpr_PostInc(Expr\PostInc $node) - { - return $this->pPostfixOp(Expr\PostInc::class, $node->var, '++'); - } - protected function pExpr_PostDec(Expr\PostDec $node) - { - return $this->pPostfixOp(Expr\PostDec::class, $node->var, '--'); - } - protected function pExpr_ErrorSuppress(Expr\ErrorSuppress $node) - { - return $this->pPrefixOp(Expr\ErrorSuppress::class, '@', $node->expr); - } - protected function pExpr_YieldFrom(Expr\YieldFrom $node) - { - return $this->pPrefixOp(Expr\YieldFrom::class, 'yield from ', $node->expr); - } - protected function pExpr_Print(Expr\Print_ $node) - { - return $this->pPrefixOp(Expr\Print_::class, 'print ', $node->expr); - } - // Casts - protected function pExpr_Cast_Int(Cast\Int_ $node) - { - return $this->pPrefixOp(Cast\Int_::class, '(int) ', $node->expr); - } - protected function pExpr_Cast_Double(Cast\Double $node) - { - $kind = $node->getAttribute('kind', Cast\Double::KIND_DOUBLE); - if ($kind === Cast\Double::KIND_DOUBLE) { - $cast = '(double)'; - } elseif ($kind === Cast\Double::KIND_FLOAT) { - $cast = '(float)'; - } elseif ($kind === Cast\Double::KIND_REAL) { - $cast = '(real)'; - } - return $this->pPrefixOp(Cast\Double::class, $cast . ' ', $node->expr); - } - protected function pExpr_Cast_String(Cast\String_ $node) - { - return $this->pPrefixOp(Cast\String_::class, '(string) ', $node->expr); - } - protected function pExpr_Cast_Array(Cast\Array_ $node) - { - return $this->pPrefixOp(Cast\Array_::class, '(array) ', $node->expr); - } - protected function pExpr_Cast_Object(Cast\Object_ $node) - { - return $this->pPrefixOp(Cast\Object_::class, '(object) ', $node->expr); - } - protected function pExpr_Cast_Bool(Cast\Bool_ $node) - { - return $this->pPrefixOp(Cast\Bool_::class, '(bool) ', $node->expr); - } - protected function pExpr_Cast_Unset(Cast\Unset_ $node) - { - return $this->pPrefixOp(Cast\Unset_::class, '(unset) ', $node->expr); - } - // Function calls and similar constructs - protected function pExpr_FuncCall(Expr\FuncCall $node) - { - return $this->pCallLhs($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; - } - protected function pExpr_MethodCall(Expr\MethodCall $node) - { - return $this->pDereferenceLhs($node->var) . '->' . $this->pObjectProperty($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; - } - protected function pExpr_NullsafeMethodCall(Expr\NullsafeMethodCall $node) - { - return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; - } - protected function pExpr_StaticCall(Expr\StaticCall $node) - { - return $this->pDereferenceLhs($node->class) . '::' . ($node->name instanceof Expr ? $node->name instanceof Expr\Variable ? $this->p($node->name) : '{' . $this->p($node->name) . '}' : $node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; - } - protected function pExpr_Empty(Expr\Empty_ $node) - { - return 'empty(' . $this->p($node->expr) . ')'; - } - protected function pExpr_Isset(Expr\Isset_ $node) - { - return 'isset(' . $this->pCommaSeparated($node->vars) . ')'; - } - protected function pExpr_Eval(Expr\Eval_ $node) - { - return 'eval(' . $this->p($node->expr) . ')'; - } - protected function pExpr_Include(Expr\Include_ $node) - { - static $map = [Expr\Include_::TYPE_INCLUDE => 'include', Expr\Include_::TYPE_INCLUDE_ONCE => 'include_once', Expr\Include_::TYPE_REQUIRE => 'require', Expr\Include_::TYPE_REQUIRE_ONCE => 'require_once']; - return $map[$node->type] . ' ' . $this->p($node->expr); - } - protected function pExpr_List(Expr\List_ $node) - { - return 'list(' . $this->pCommaSeparated($node->items) . ')'; - } - // Other - protected function pExpr_Error(Expr\Error $node) - { - throw new \LogicException('Cannot pretty-print AST with Error nodes'); - } - protected function pExpr_Variable(Expr\Variable $node) - { - if ($node->name instanceof Expr) { - return '${' . $this->p($node->name) . '}'; - } else { - return '$' . $node->name; - } - } - protected function pExpr_Array(Expr\Array_ $node) - { - $syntax = $node->getAttribute('kind', $this->options['shortArraySyntax'] ? Expr\Array_::KIND_SHORT : Expr\Array_::KIND_LONG); - if ($syntax === Expr\Array_::KIND_SHORT) { - return '[' . $this->pMaybeMultiline($node->items, \true) . ']'; - } else { - return 'array(' . $this->pMaybeMultiline($node->items, \true) . ')'; - } - } - protected function pExpr_ArrayItem(Expr\ArrayItem $node) - { - return (null !== $node->key ? $this->p($node->key) . ' => ' : '') . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '') . $this->p($node->value); - } - protected function pExpr_ArrayDimFetch(Expr\ArrayDimFetch $node) - { - return $this->pDereferenceLhs($node->var) . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']'; - } - protected function pExpr_ConstFetch(Expr\ConstFetch $node) - { - return $this->p($node->name); - } - protected function pExpr_ClassConstFetch(Expr\ClassConstFetch $node) - { - return $this->pDereferenceLhs($node->class) . '::' . $this->p($node->name); - } - protected function pExpr_PropertyFetch(Expr\PropertyFetch $node) - { - return $this->pDereferenceLhs($node->var) . '->' . $this->pObjectProperty($node->name); - } - protected function pExpr_NullsafePropertyFetch(Expr\NullsafePropertyFetch $node) - { - return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name); - } - protected function pExpr_StaticPropertyFetch(Expr\StaticPropertyFetch $node) - { - return $this->pDereferenceLhs($node->class) . '::$' . $this->pObjectProperty($node->name); - } - protected function pExpr_ShellExec(Expr\ShellExec $node) - { - return '`' . $this->pEncapsList($node->parts, '`') . '`'; - } - protected function pExpr_Closure(Expr\Closure $node) - { - return $this->pAttrGroups($node->attrGroups, \true) . ($node->static ? 'static ' : '') . 'function ' . ($node->byRef ? '&' : '') . '(' . $this->pCommaSeparated($node->params) . ')' . (!empty($node->uses) ? ' use(' . $this->pCommaSeparated($node->uses) . ')' : '') . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . ' {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pExpr_Match(Expr\Match_ $node) - { - return 'match (' . $this->p($node->cond) . ') {' . $this->pCommaSeparatedMultiline($node->arms, \true) . $this->nl . '}'; - } - protected function pMatchArm(Node\MatchArm $node) - { - return ($node->conds ? $this->pCommaSeparated($node->conds) : 'default') . ' => ' . $this->p($node->body); - } - protected function pExpr_ArrowFunction(Expr\ArrowFunction $node) - { - return $this->pAttrGroups($node->attrGroups, \true) . ($node->static ? 'static ' : '') . 'fn' . ($node->byRef ? '&' : '') . '(' . $this->pCommaSeparated($node->params) . ')' . (null !== $node->returnType ? ': ' . $this->p($node->returnType) : '') . ' => ' . $this->p($node->expr); - } - protected function pExpr_ClosureUse(Expr\ClosureUse $node) - { - return ($node->byRef ? '&' : '') . $this->p($node->var); - } - protected function pExpr_New(Expr\New_ $node) - { - if ($node->class instanceof Stmt\Class_) { - $args = $node->args ? '(' . $this->pMaybeMultiline($node->args) . ')' : ''; - return 'new ' . $this->pClassCommon($node->class, $args); - } - return 'new ' . $this->pNewVariable($node->class) . '(' . $this->pMaybeMultiline($node->args) . ')'; - } - protected function pExpr_Clone(Expr\Clone_ $node) - { - return 'clone ' . $this->p($node->expr); - } - protected function pExpr_Ternary(Expr\Ternary $node) - { - // a bit of cheating: we treat the ternary as a binary op where the ?...: part is the operator. - // this is okay because the part between ? and : never needs parentheses. - return $this->pInfixOp(Expr\Ternary::class, $node->cond, ' ?' . (null !== $node->if ? ' ' . $this->p($node->if) . ' ' : '') . ': ', $node->else); - } - protected function pExpr_Exit(Expr\Exit_ $node) - { - $kind = $node->getAttribute('kind', Expr\Exit_::KIND_DIE); - return ($kind === Expr\Exit_::KIND_EXIT ? 'exit' : 'die') . (null !== $node->expr ? '(' . $this->p($node->expr) . ')' : ''); - } - protected function pExpr_Throw(Expr\Throw_ $node) - { - return 'throw ' . $this->p($node->expr); - } - protected function pExpr_Yield(Expr\Yield_ $node) - { - if ($node->value === null) { - return 'yield'; - } else { - // this is a bit ugly, but currently there is no way to detect whether the parentheses are necessary - return '(yield ' . ($node->key !== null ? $this->p($node->key) . ' => ' : '') . $this->p($node->value) . ')'; - } - } - // Declarations - protected function pStmt_Namespace(Stmt\Namespace_ $node) - { - if ($this->canUseSemicolonNamespaces) { - return 'namespace ' . $this->p($node->name) . ';' . $this->nl . $this->pStmts($node->stmts, \false); - } else { - return 'namespace' . (null !== $node->name ? ' ' . $this->p($node->name) : '') . ' {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - } - protected function pStmt_Use(Stmt\Use_ $node) - { - return 'use ' . $this->pUseType($node->type) . $this->pCommaSeparated($node->uses) . ';'; - } - protected function pStmt_GroupUse(Stmt\GroupUse $node) - { - return 'use ' . $this->pUseType($node->type) . $this->pName($node->prefix) . '\\{' . $this->pCommaSeparated($node->uses) . '};'; - } - protected function pStmt_UseUse(Stmt\UseUse $node) - { - return $this->pUseType($node->type) . $this->p($node->name) . (null !== $node->alias ? ' as ' . $node->alias : ''); - } - protected function pUseType($type) - { - return $type === Stmt\Use_::TYPE_FUNCTION ? 'function ' : ($type === Stmt\Use_::TYPE_CONSTANT ? 'const ' : ''); - } - protected function pStmt_Interface(Stmt\Interface_ $node) - { - return $this->pAttrGroups($node->attrGroups) . 'interface ' . $node->name . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Enum(Stmt\Enum_ $node) - { - return $this->pAttrGroups($node->attrGroups) . 'enum ' . $node->name . ($node->scalarType ? " : {$node->scalarType}" : '') . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Class(Stmt\Class_ $node) - { - return $this->pClassCommon($node, ' ' . $node->name); - } - protected function pStmt_Trait(Stmt\Trait_ $node) - { - return $this->pAttrGroups($node->attrGroups) . 'trait ' . $node->name . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_EnumCase(Stmt\EnumCase $node) - { - return $this->pAttrGroups($node->attrGroups) . 'case ' . $node->name . ($node->expr ? ' = ' . $this->p($node->expr) : '') . ';'; - } - protected function pStmt_TraitUse(Stmt\TraitUse $node) - { - return 'use ' . $this->pCommaSeparated($node->traits) . (empty($node->adaptations) ? ';' : ' {' . $this->pStmts($node->adaptations) . $this->nl . '}'); - } - protected function pStmt_TraitUseAdaptation_Precedence(Stmt\TraitUseAdaptation\Precedence $node) - { - return $this->p($node->trait) . '::' . $node->method . ' insteadof ' . $this->pCommaSeparated($node->insteadof) . ';'; - } - protected function pStmt_TraitUseAdaptation_Alias(Stmt\TraitUseAdaptation\Alias $node) - { - return (null !== $node->trait ? $this->p($node->trait) . '::' : '') . $node->method . ' as' . (null !== $node->newModifier ? ' ' . \rtrim($this->pModifiers($node->newModifier), ' ') : '') . (null !== $node->newName ? ' ' . $node->newName : '') . ';'; - } - protected function pStmt_Property(Stmt\Property $node) - { - return $this->pAttrGroups($node->attrGroups) . (0 === $node->flags ? 'var ' : $this->pModifiers($node->flags)) . ($node->type ? $this->p($node->type) . ' ' : '') . $this->pCommaSeparated($node->props) . ';'; - } - protected function pStmt_PropertyProperty(Stmt\PropertyProperty $node) - { - return '$' . $node->name . (null !== $node->default ? ' = ' . $this->p($node->default) : ''); - } - protected function pStmt_ClassMethod(Stmt\ClassMethod $node) - { - return $this->pAttrGroups($node->attrGroups) . $this->pModifiers($node->flags) . 'function ' . ($node->byRef ? '&' : '') . $node->name . '(' . $this->pMaybeMultiline($node->params) . ')' . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . (null !== $node->stmts ? $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}' : ';'); - } - protected function pStmt_ClassConst(Stmt\ClassConst $node) - { - return $this->pAttrGroups($node->attrGroups) . $this->pModifiers($node->flags) . 'const ' . $this->pCommaSeparated($node->consts) . ';'; - } - protected function pStmt_Function(Stmt\Function_ $node) - { - return $this->pAttrGroups($node->attrGroups) . 'function ' . ($node->byRef ? '&' : '') . $node->name . '(' . $this->pCommaSeparated($node->params) . ')' . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Const(Stmt\Const_ $node) - { - return 'const ' . $this->pCommaSeparated($node->consts) . ';'; - } - protected function pStmt_Declare(Stmt\Declare_ $node) - { - return 'declare (' . $this->pCommaSeparated($node->declares) . ')' . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';'); - } - protected function pStmt_DeclareDeclare(Stmt\DeclareDeclare $node) - { - return $node->key . '=' . $this->p($node->value); - } - // Control flow - protected function pStmt_If(Stmt\If_ $node) - { - return 'if (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}' . ($node->elseifs ? ' ' . $this->pImplode($node->elseifs, ' ') : '') . (null !== $node->else ? ' ' . $this->p($node->else) : ''); - } - protected function pStmt_ElseIf(Stmt\ElseIf_ $node) - { - return 'elseif (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Else(Stmt\Else_ $node) - { - return 'else {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_For(Stmt\For_ $node) - { - return 'for (' . $this->pCommaSeparated($node->init) . ';' . (!empty($node->cond) ? ' ' : '') . $this->pCommaSeparated($node->cond) . ';' . (!empty($node->loop) ? ' ' : '') . $this->pCommaSeparated($node->loop) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Foreach(Stmt\Foreach_ $node) - { - return 'foreach (' . $this->p($node->expr) . ' as ' . (null !== $node->keyVar ? $this->p($node->keyVar) . ' => ' : '') . ($node->byRef ? '&' : '') . $this->p($node->valueVar) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_While(Stmt\While_ $node) - { - return 'while (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Do(Stmt\Do_ $node) - { - return 'do {' . $this->pStmts($node->stmts) . $this->nl . '} while (' . $this->p($node->cond) . ');'; - } - protected function pStmt_Switch(Stmt\Switch_ $node) - { - return 'switch (' . $this->p($node->cond) . ') {' . $this->pStmts($node->cases) . $this->nl . '}'; - } - protected function pStmt_Case(Stmt\Case_ $node) - { - return (null !== $node->cond ? 'case ' . $this->p($node->cond) : 'default') . ':' . $this->pStmts($node->stmts); - } - protected function pStmt_TryCatch(Stmt\TryCatch $node) - { - return 'try {' . $this->pStmts($node->stmts) . $this->nl . '}' . ($node->catches ? ' ' . $this->pImplode($node->catches, ' ') : '') . ($node->finally !== null ? ' ' . $this->p($node->finally) : ''); - } - protected function pStmt_Catch(Stmt\Catch_ $node) - { - return 'catch (' . $this->pImplode($node->types, '|') . ($node->var !== null ? ' ' . $this->p($node->var) : '') . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Finally(Stmt\Finally_ $node) - { - return 'finally {' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pStmt_Break(Stmt\Break_ $node) - { - return 'break' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';'; - } - protected function pStmt_Continue(Stmt\Continue_ $node) - { - return 'continue' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';'; - } - protected function pStmt_Return(Stmt\Return_ $node) - { - return 'return' . (null !== $node->expr ? ' ' . $this->p($node->expr) : '') . ';'; - } - protected function pStmt_Throw(Stmt\Throw_ $node) - { - return 'throw ' . $this->p($node->expr) . ';'; - } - protected function pStmt_Label(Stmt\Label $node) - { - return $node->name . ':'; - } - protected function pStmt_Goto(Stmt\Goto_ $node) - { - return 'goto ' . $node->name . ';'; - } - // Other - protected function pStmt_Expression(Stmt\Expression $node) - { - return $this->p($node->expr) . ';'; - } - protected function pStmt_Echo(Stmt\Echo_ $node) - { - return 'echo ' . $this->pCommaSeparated($node->exprs) . ';'; - } - protected function pStmt_Static(Stmt\Static_ $node) - { - return 'static ' . $this->pCommaSeparated($node->vars) . ';'; - } - protected function pStmt_Global(Stmt\Global_ $node) - { - return 'global ' . $this->pCommaSeparated($node->vars) . ';'; - } - protected function pStmt_StaticVar(Stmt\StaticVar $node) - { - return $this->p($node->var) . (null !== $node->default ? ' = ' . $this->p($node->default) : ''); - } - protected function pStmt_Unset(Stmt\Unset_ $node) - { - return 'unset(' . $this->pCommaSeparated($node->vars) . ');'; - } - protected function pStmt_InlineHTML(Stmt\InlineHTML $node) - { - $newline = $node->getAttribute('hasLeadingNewline', \true) ? "\n" : ''; - return '?>' . $newline . $node->value . 'remaining; - } - protected function pStmt_Nop(Stmt\Nop $node) - { - return ''; - } - // Helpers - protected function pClassCommon(Stmt\Class_ $node, $afterClassToken) - { - return $this->pAttrGroups($node->attrGroups, $node->name === null) . $this->pModifiers($node->flags) . 'class' . $afterClassToken . (null !== $node->extends ? ' extends ' . $this->p($node->extends) : '') . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; - } - protected function pObjectProperty($node) - { - if ($node instanceof Expr) { - return '{' . $this->p($node) . '}'; - } else { - return $node; - } - } - protected function pEncapsList(array $encapsList, $quote) - { - $return = ''; - foreach ($encapsList as $element) { - if ($element instanceof Scalar\EncapsedStringPart) { - $return .= $this->escapeString($element->value, $quote); - } else { - $return .= '{' . $this->p($element) . '}'; - } - } - return $return; - } - protected function pSingleQuotedString(string $string) - { - return '\'' . \addcslashes($string, '\'\\') . '\''; - } - protected function escapeString($string, $quote) - { - if (null === $quote) { - // For doc strings, don't escape newlines - $escaped = \addcslashes($string, "\t\f\v\$\\"); - } else { - $escaped = \addcslashes($string, "\n\r\t\f\v\$" . $quote . "\\"); - } - // Escape control characters and non-UTF-8 characters. - // Regex based on https://stackoverflow.com/a/11709412/385378. - $regex = '/( - [\\x00-\\x08\\x0E-\\x1F] # Control characters - | [\\xC0-\\xC1] # Invalid UTF-8 Bytes - | [\\xF5-\\xFF] # Invalid UTF-8 Bytes - | \\xE0(?=[\\x80-\\x9F]) # Overlong encoding of prior code point - | \\xF0(?=[\\x80-\\x8F]) # Overlong encoding of prior code point - | [\\xC2-\\xDF](?![\\x80-\\xBF]) # Invalid UTF-8 Sequence Start - | [\\xE0-\\xEF](?![\\x80-\\xBF]{2}) # Invalid UTF-8 Sequence Start - | [\\xF0-\\xF4](?![\\x80-\\xBF]{3}) # Invalid UTF-8 Sequence Start - | (?<=[\\x00-\\x7F\\xF5-\\xFF])[\\x80-\\xBF] # Invalid UTF-8 Sequence Middle - | (? $part) { - $atStart = $i === 0; - $atEnd = $i === \count($parts) - 1; - if ($part instanceof Scalar\EncapsedStringPart && $this->containsEndLabel($part->value, $label, $atStart, $atEnd)) { - return \true; - } - } - return \false; - } - protected function pDereferenceLhs(Node $node) - { - if (!$this->dereferenceLhsRequiresParens($node)) { - return $this->p($node); - } else { - return '(' . $this->p($node) . ')'; - } - } - protected function pCallLhs(Node $node) - { - if (!$this->callLhsRequiresParens($node)) { - return $this->p($node); - } else { - return '(' . $this->p($node) . ')'; - } - } - protected function pNewVariable(Node $node) - { - // TODO: This is not fully accurate. - return $this->pDereferenceLhs($node); - } - /** - * @param Node[] $nodes - * @return bool - */ - protected function hasNodeWithComments(array $nodes) - { - foreach ($nodes as $node) { - if ($node && $node->getComments()) { - return \true; - } - } - return \false; - } - protected function pMaybeMultiline(array $nodes, bool $trailingComma = \false) - { - if (!$this->hasNodeWithComments($nodes)) { - return $this->pCommaSeparated($nodes); - } else { - return $this->pCommaSeparatedMultiline($nodes, $trailingComma) . $this->nl; - } - } - protected function pAttrGroups(array $nodes, bool $inline = \false) : string - { - $result = ''; - $sep = $inline ? ' ' : $this->nl; - foreach ($nodes as $node) { - $result .= $this->p($node) . $sep; - } - return $result; - } -} - [0, 1], - Expr\BitwiseNot::class => [10, 1], - Expr\PreInc::class => [10, 1], - Expr\PreDec::class => [10, 1], - Expr\PostInc::class => [10, -1], - Expr\PostDec::class => [10, -1], - Expr\UnaryPlus::class => [10, 1], - Expr\UnaryMinus::class => [10, 1], - Cast\Int_::class => [10, 1], - Cast\Double::class => [10, 1], - Cast\String_::class => [10, 1], - Cast\Array_::class => [10, 1], - Cast\Object_::class => [10, 1], - Cast\Bool_::class => [10, 1], - Cast\Unset_::class => [10, 1], - Expr\ErrorSuppress::class => [10, 1], - Expr\Instanceof_::class => [20, 0], - Expr\BooleanNot::class => [30, 1], - BinaryOp\Mul::class => [40, -1], - BinaryOp\Div::class => [40, -1], - BinaryOp\Mod::class => [40, -1], - BinaryOp\Plus::class => [50, -1], - BinaryOp\Minus::class => [50, -1], - BinaryOp\Concat::class => [50, -1], - BinaryOp\ShiftLeft::class => [60, -1], - BinaryOp\ShiftRight::class => [60, -1], - BinaryOp\Smaller::class => [70, 0], - BinaryOp\SmallerOrEqual::class => [70, 0], - BinaryOp\Greater::class => [70, 0], - BinaryOp\GreaterOrEqual::class => [70, 0], - BinaryOp\Equal::class => [80, 0], - BinaryOp\NotEqual::class => [80, 0], - BinaryOp\Identical::class => [80, 0], - BinaryOp\NotIdentical::class => [80, 0], - BinaryOp\Spaceship::class => [80, 0], - BinaryOp\BitwiseAnd::class => [90, -1], - BinaryOp\BitwiseXor::class => [100, -1], - BinaryOp\BitwiseOr::class => [110, -1], - BinaryOp\BooleanAnd::class => [120, -1], - BinaryOp\BooleanOr::class => [130, -1], - BinaryOp\Coalesce::class => [140, 1], - Expr\Ternary::class => [150, 0], - // parser uses %left for assignments, but they really behave as %right - Expr\Assign::class => [160, 1], - Expr\AssignRef::class => [160, 1], - AssignOp\Plus::class => [160, 1], - AssignOp\Minus::class => [160, 1], - AssignOp\Mul::class => [160, 1], - AssignOp\Div::class => [160, 1], - AssignOp\Concat::class => [160, 1], - AssignOp\Mod::class => [160, 1], - AssignOp\BitwiseAnd::class => [160, 1], - AssignOp\BitwiseOr::class => [160, 1], - AssignOp\BitwiseXor::class => [160, 1], - AssignOp\ShiftLeft::class => [160, 1], - AssignOp\ShiftRight::class => [160, 1], - AssignOp\Pow::class => [160, 1], - AssignOp\Coalesce::class => [160, 1], - Expr\YieldFrom::class => [165, 1], - Expr\Print_::class => [168, 1], - BinaryOp\LogicalAnd::class => [170, -1], - BinaryOp\LogicalXor::class => [180, -1], - BinaryOp\LogicalOr::class => [190, -1], - Expr\Include_::class => [200, -1], - ]; - /** @var int Current indentation level. */ - protected $indentLevel; - /** @var string Newline including current indentation. */ - protected $nl; - /** @var string Token placed at end of doc string to ensure it is followed by a newline. */ - protected $docStringEndToken; - /** @var bool Whether semicolon namespaces can be used (i.e. no global namespace is used) */ - protected $canUseSemicolonNamespaces; - /** @var array Pretty printer options */ - protected $options; - /** @var TokenStream Original tokens for use in format-preserving pretty print */ - protected $origTokens; - /** @var Internal\Differ Differ for node lists */ - protected $nodeListDiffer; - /** @var bool[] Map determining whether a certain character is a label character */ - protected $labelCharMap; - /** - * @var int[][] Map from token classes and subnode names to FIXUP_* constants. This is used - * during format-preserving prints to place additional parens/braces if necessary. - */ - protected $fixupMap; - /** - * @var int[][] Map from "{$node->getType()}->{$subNode}" to ['left' => $l, 'right' => $r], - * where $l and $r specify the token type that needs to be stripped when removing - * this node. - */ - protected $removalMap; - /** - * @var mixed[] Map from "{$node->getType()}->{$subNode}" to [$find, $beforeToken, $extraLeft, $extraRight]. - * $find is an optional token after which the insertion occurs. $extraLeft/Right - * are optionally added before/after the main insertions. - */ - protected $insertionMap; - /** - * @var string[] Map From "{$node->getType()}->{$subNode}" to string that should be inserted - * between elements of this list subnode. - */ - protected $listInsertionMap; - protected $emptyListInsertionMap; - /** @var int[] Map from "{$node->getType()}->{$subNode}" to token before which the modifiers - * should be reprinted. */ - protected $modifierChangeMap; - /** - * Creates a pretty printer instance using the given options. - * - * Supported options: - * * bool $shortArraySyntax = false: Whether to use [] instead of array() as the default array - * syntax, if the node does not specify a format. - * - * @param array $options Dictionary of formatting options - */ - public function __construct(array $options = []) - { - $this->docStringEndToken = '_DOC_STRING_END_' . \mt_rand(); - $defaultOptions = ['shortArraySyntax' => \false]; - $this->options = $options + $defaultOptions; - } - /** - * Reset pretty printing state. - */ - protected function resetState() - { - $this->indentLevel = 0; - $this->nl = "\n"; - $this->origTokens = null; - } - /** - * Set indentation level - * - * @param int $level Level in number of spaces - */ - protected function setIndentLevel(int $level) - { - $this->indentLevel = $level; - $this->nl = "\n" . \str_repeat(' ', $level); - } - /** - * Increase indentation level. - */ - protected function indent() - { - $this->indentLevel += 4; - $this->nl .= ' '; - } - /** - * Decrease indentation level. - */ - protected function outdent() - { - \assert($this->indentLevel >= 4); - $this->indentLevel -= 4; - $this->nl = "\n" . \str_repeat(' ', $this->indentLevel); - } - /** - * Pretty prints an array of statements. - * - * @param Node[] $stmts Array of statements - * - * @return string Pretty printed statements - */ - public function prettyPrint(array $stmts) : string - { - $this->resetState(); - $this->preprocessNodes($stmts); - return \ltrim($this->handleMagicTokens($this->pStmts($stmts, \false))); - } - /** - * Pretty prints an expression. - * - * @param Expr $node Expression node - * - * @return string Pretty printed node - */ - public function prettyPrintExpr(Expr $node) : string - { - $this->resetState(); - return $this->handleMagicTokens($this->p($node)); - } - /** - * Pretty prints a file of statements (includes the opening prettyPrint($stmts); - if ($stmts[0] instanceof Stmt\InlineHTML) { - $p = \preg_replace('/^<\\?php\\s+\\?>\\n?/', '', $p); - } - if ($stmts[\count($stmts) - 1] instanceof Stmt\InlineHTML) { - $p = \preg_replace('/<\\?php$/', '', \rtrim($p)); - } - return $p; - } - /** - * Preprocesses the top-level nodes to initialize pretty printer state. - * - * @param Node[] $nodes Array of nodes - */ - protected function preprocessNodes(array $nodes) - { - /* We can use semicolon-namespaces unless there is a global namespace declaration */ - $this->canUseSemicolonNamespaces = \true; - foreach ($nodes as $node) { - if ($node instanceof Stmt\Namespace_ && null === $node->name) { - $this->canUseSemicolonNamespaces = \false; - break; - } - } - } - /** - * Handles (and removes) no-indent and doc-string-end tokens. - * - * @param string $str - * @return string - */ - protected function handleMagicTokens(string $str) : string - { - // Replace doc-string-end tokens with nothing or a newline - $str = \str_replace($this->docStringEndToken . ";\n", ";\n", $str); - $str = \str_replace($this->docStringEndToken, "\n", $str); - return $str; - } - /** - * Pretty prints an array of nodes (statements) and indents them optionally. - * - * @param Node[] $nodes Array of nodes - * @param bool $indent Whether to indent the printed nodes - * - * @return string Pretty printed statements - */ - protected function pStmts(array $nodes, bool $indent = \true) : string - { - if ($indent) { - $this->indent(); - } - $result = ''; - foreach ($nodes as $node) { - $comments = $node->getComments(); - if ($comments) { - $result .= $this->nl . $this->pComments($comments); - if ($node instanceof Stmt\Nop) { - continue; - } - } - $result .= $this->nl . $this->p($node); - } - if ($indent) { - $this->outdent(); - } - return $result; - } - /** - * Pretty-print an infix operation while taking precedence into account. - * - * @param string $class Node class of operator - * @param Node $leftNode Left-hand side node - * @param string $operatorString String representation of the operator - * @param Node $rightNode Right-hand side node - * - * @return string Pretty printed infix operation - */ - protected function pInfixOp(string $class, Node $leftNode, string $operatorString, Node $rightNode) : string - { - list($precedence, $associativity) = $this->precedenceMap[$class]; - return $this->pPrec($leftNode, $precedence, $associativity, -1) . $operatorString . $this->pPrec($rightNode, $precedence, $associativity, 1); - } - /** - * Pretty-print a prefix operation while taking precedence into account. - * - * @param string $class Node class of operator - * @param string $operatorString String representation of the operator - * @param Node $node Node - * - * @return string Pretty printed prefix operation - */ - protected function pPrefixOp(string $class, string $operatorString, Node $node) : string - { - list($precedence, $associativity) = $this->precedenceMap[$class]; - return $operatorString . $this->pPrec($node, $precedence, $associativity, 1); - } - /** - * Pretty-print a postfix operation while taking precedence into account. - * - * @param string $class Node class of operator - * @param string $operatorString String representation of the operator - * @param Node $node Node - * - * @return string Pretty printed postfix operation - */ - protected function pPostfixOp(string $class, Node $node, string $operatorString) : string - { - list($precedence, $associativity) = $this->precedenceMap[$class]; - return $this->pPrec($node, $precedence, $associativity, -1) . $operatorString; - } - /** - * Prints an expression node with the least amount of parentheses necessary to preserve the meaning. - * - * @param Node $node Node to pretty print - * @param int $parentPrecedence Precedence of the parent operator - * @param int $parentAssociativity Associativity of parent operator - * (-1 is left, 0 is nonassoc, 1 is right) - * @param int $childPosition Position of the node relative to the operator - * (-1 is left, 1 is right) - * - * @return string The pretty printed node - */ - protected function pPrec(Node $node, int $parentPrecedence, int $parentAssociativity, int $childPosition) : string - { - $class = \get_class($node); - if (isset($this->precedenceMap[$class])) { - $childPrecedence = $this->precedenceMap[$class][0]; - if ($childPrecedence > $parentPrecedence || $parentPrecedence === $childPrecedence && $parentAssociativity !== $childPosition) { - return '(' . $this->p($node) . ')'; - } - } - return $this->p($node); - } - /** - * Pretty prints an array of nodes and implodes the printed values. - * - * @param Node[] $nodes Array of Nodes to be printed - * @param string $glue Character to implode with - * - * @return string Imploded pretty printed nodes - */ - protected function pImplode(array $nodes, string $glue = '') : string - { - $pNodes = []; - foreach ($nodes as $node) { - if (null === $node) { - $pNodes[] = ''; - } else { - $pNodes[] = $this->p($node); - } - } - return \implode($glue, $pNodes); - } - /** - * Pretty prints an array of nodes and implodes the printed values with commas. - * - * @param Node[] $nodes Array of Nodes to be printed - * - * @return string Comma separated pretty printed nodes - */ - protected function pCommaSeparated(array $nodes) : string - { - return $this->pImplode($nodes, ', '); - } - /** - * Pretty prints a comma-separated list of nodes in multiline style, including comments. - * - * The result includes a leading newline and one level of indentation (same as pStmts). - * - * @param Node[] $nodes Array of Nodes to be printed - * @param bool $trailingComma Whether to use a trailing comma - * - * @return string Comma separated pretty printed nodes in multiline style - */ - protected function pCommaSeparatedMultiline(array $nodes, bool $trailingComma) : string - { - $this->indent(); - $result = ''; - $lastIdx = \count($nodes) - 1; - foreach ($nodes as $idx => $node) { - if ($node !== null) { - $comments = $node->getComments(); - if ($comments) { - $result .= $this->nl . $this->pComments($comments); - } - $result .= $this->nl . $this->p($node); - } else { - $result .= $this->nl; - } - if ($trailingComma || $idx !== $lastIdx) { - $result .= ','; - } - } - $this->outdent(); - return $result; - } - /** - * Prints reformatted text of the passed comments. - * - * @param Comment[] $comments List of comments - * - * @return string Reformatted text of comments - */ - protected function pComments(array $comments) : string - { - $formattedComments = []; - foreach ($comments as $comment) { - $formattedComments[] = \str_replace("\n", $this->nl, $comment->getReformattedText()); - } - return \implode($this->nl, $formattedComments); - } - /** - * Perform a format-preserving pretty print of an AST. - * - * The format preservation is best effort. For some changes to the AST the formatting will not - * be preserved (at least not locally). - * - * In order to use this method a number of prerequisites must be satisfied: - * * The startTokenPos and endTokenPos attributes in the lexer must be enabled. - * * The CloningVisitor must be run on the AST prior to modification. - * * The original tokens must be provided, using the getTokens() method on the lexer. - * - * @param Node[] $stmts Modified AST with links to original AST - * @param Node[] $origStmts Original AST with token offset information - * @param array $origTokens Tokens of the original code - * - * @return string - */ - public function printFormatPreserving(array $stmts, array $origStmts, array $origTokens) : string - { - $this->initializeNodeListDiffer(); - $this->initializeLabelCharMap(); - $this->initializeFixupMap(); - $this->initializeRemovalMap(); - $this->initializeInsertionMap(); - $this->initializeListInsertionMap(); - $this->initializeEmptyListInsertionMap(); - $this->initializeModifierChangeMap(); - $this->resetState(); - $this->origTokens = new TokenStream($origTokens); - $this->preprocessNodes($stmts); - $pos = 0; - $result = $this->pArray($stmts, $origStmts, $pos, 0, 'File', 'stmts', null); - if (null !== $result) { - $result .= $this->origTokens->getTokenCode($pos, \count($origTokens), 0); - } else { - // Fallback - // TODO Add pStmts($stmts, \false); - } - return \ltrim($this->handleMagicTokens($result)); - } - protected function pFallback(Node $node) - { - return $this->{'p' . $node->getType()}($node); - } - /** - * Pretty prints a node. - * - * This method also handles formatting preservation for nodes. - * - * @param Node $node Node to be pretty printed - * @param bool $parentFormatPreserved Whether parent node has preserved formatting - * - * @return string Pretty printed node - */ - protected function p(Node $node, $parentFormatPreserved = \false) : string - { - // No orig tokens means this is a normal pretty print without preservation of formatting - if (!$this->origTokens) { - return $this->{'p' . $node->getType()}($node); - } - /** @var Node $origNode */ - $origNode = $node->getAttribute('origNode'); - if (null === $origNode) { - return $this->pFallback($node); - } - $class = \get_class($node); - \assert($class === \get_class($origNode)); - $startPos = $origNode->getStartTokenPos(); - $endPos = $origNode->getEndTokenPos(); - \assert($startPos >= 0 && $endPos >= 0); - $fallbackNode = $node; - if ($node instanceof Expr\New_ && $node->class instanceof Stmt\Class_) { - // Normalize node structure of anonymous classes - $node = PrintableNewAnonClassNode::fromNewNode($node); - $origNode = PrintableNewAnonClassNode::fromNewNode($origNode); - } - // InlineHTML node does not contain closing and opening PHP tags. If the parent formatting - // is not preserved, then we need to use the fallback code to make sure the tags are - // printed. - if ($node instanceof Stmt\InlineHTML && !$parentFormatPreserved) { - return $this->pFallback($fallbackNode); - } - $indentAdjustment = $this->indentLevel - $this->origTokens->getIndentationBefore($startPos); - $type = $node->getType(); - $fixupInfo = $this->fixupMap[$class] ?? null; - $result = ''; - $pos = $startPos; - foreach ($node->getSubNodeNames() as $subNodeName) { - $subNode = $node->{$subNodeName}; - $origSubNode = $origNode->{$subNodeName}; - if (!$subNode instanceof Node && $subNode !== null || !$origSubNode instanceof Node && $origSubNode !== null) { - if ($subNode === $origSubNode) { - // Unchanged, can reuse old code - continue; - } - if (\is_array($subNode) && \is_array($origSubNode)) { - // Array subnode changed, we might be able to reconstruct it - $listResult = $this->pArray($subNode, $origSubNode, $pos, $indentAdjustment, $type, $subNodeName, $fixupInfo[$subNodeName] ?? null); - if (null === $listResult) { - return $this->pFallback($fallbackNode); - } - $result .= $listResult; - continue; - } - if (\is_int($subNode) && \is_int($origSubNode)) { - // Check if this is a modifier change - $key = $type . '->' . $subNodeName; - if (!isset($this->modifierChangeMap[$key])) { - return $this->pFallback($fallbackNode); - } - $findToken = $this->modifierChangeMap[$key]; - $result .= $this->pModifiers($subNode); - $pos = $this->origTokens->findRight($pos, $findToken); - continue; - } - // If a non-node, non-array subnode changed, we don't be able to do a partial - // reconstructions, as we don't have enough offset information. Pretty print the - // whole node instead. - return $this->pFallback($fallbackNode); - } - $extraLeft = ''; - $extraRight = ''; - if ($origSubNode !== null) { - $subStartPos = $origSubNode->getStartTokenPos(); - $subEndPos = $origSubNode->getEndTokenPos(); - \assert($subStartPos >= 0 && $subEndPos >= 0); - } else { - if ($subNode === null) { - // Both null, nothing to do - continue; - } - // A node has been inserted, check if we have insertion information for it - $key = $type . '->' . $subNodeName; - if (!isset($this->insertionMap[$key])) { - return $this->pFallback($fallbackNode); - } - list($findToken, $beforeToken, $extraLeft, $extraRight) = $this->insertionMap[$key]; - if (null !== $findToken) { - $subStartPos = $this->origTokens->findRight($pos, $findToken) + (int) (!$beforeToken); - } else { - $subStartPos = $pos; - } - if (null === $extraLeft && null !== $extraRight) { - // If inserting on the right only, skipping whitespace looks better - $subStartPos = $this->origTokens->skipRightWhitespace($subStartPos); - } - $subEndPos = $subStartPos - 1; - } - if (null === $subNode) { - // A node has been removed, check if we have removal information for it - $key = $type . '->' . $subNodeName; - if (!isset($this->removalMap[$key])) { - return $this->pFallback($fallbackNode); - } - // Adjust positions to account for additional tokens that must be skipped - $removalInfo = $this->removalMap[$key]; - if (isset($removalInfo['left'])) { - $subStartPos = $this->origTokens->skipLeft($subStartPos - 1, $removalInfo['left']) + 1; - } - if (isset($removalInfo['right'])) { - $subEndPos = $this->origTokens->skipRight($subEndPos + 1, $removalInfo['right']) - 1; - } - } - $result .= $this->origTokens->getTokenCode($pos, $subStartPos, $indentAdjustment); - if (null !== $subNode) { - $result .= $extraLeft; - $origIndentLevel = $this->indentLevel; - $this->setIndentLevel($this->origTokens->getIndentationBefore($subStartPos) + $indentAdjustment); - // If it's the same node that was previously in this position, it certainly doesn't - // need fixup. It's important to check this here, because our fixup checks are more - // conservative than strictly necessary. - if (isset($fixupInfo[$subNodeName]) && $subNode->getAttribute('origNode') !== $origSubNode) { - $fixup = $fixupInfo[$subNodeName]; - $res = $this->pFixup($fixup, $subNode, $class, $subStartPos, $subEndPos); - } else { - $res = $this->p($subNode, \true); - } - $this->safeAppend($result, $res); - $this->setIndentLevel($origIndentLevel); - $result .= $extraRight; - } - $pos = $subEndPos + 1; - } - $result .= $this->origTokens->getTokenCode($pos, $endPos + 1, $indentAdjustment); - return $result; - } - /** - * Perform a format-preserving pretty print of an array. - * - * @param array $nodes New nodes - * @param array $origNodes Original nodes - * @param int $pos Current token position (updated by reference) - * @param int $indentAdjustment Adjustment for indentation - * @param string $parentNodeType Type of the containing node. - * @param string $subNodeName Name of array subnode. - * @param null|int $fixup Fixup information for array item nodes - * - * @return null|string Result of pretty print or null if cannot preserve formatting - */ - protected function pArray(array $nodes, array $origNodes, int &$pos, int $indentAdjustment, string $parentNodeType, string $subNodeName, $fixup) - { - $diff = $this->nodeListDiffer->diffWithReplacements($origNodes, $nodes); - $mapKey = $parentNodeType . '->' . $subNodeName; - $insertStr = $this->listInsertionMap[$mapKey] ?? null; - $isStmtList = $subNodeName === 'stmts'; - $beforeFirstKeepOrReplace = \true; - $skipRemovedNode = \false; - $delayedAdd = []; - $lastElemIndentLevel = $this->indentLevel; - $insertNewline = \false; - if ($insertStr === "\n") { - $insertStr = ''; - $insertNewline = \true; - } - if ($isStmtList && \count($origNodes) === 1 && \count($nodes) !== 1) { - $startPos = $origNodes[0]->getStartTokenPos(); - $endPos = $origNodes[0]->getEndTokenPos(); - \assert($startPos >= 0 && $endPos >= 0); - if (!$this->origTokens->haveBraces($startPos, $endPos)) { - // This was a single statement without braces, but either additional statements - // have been added, or the single statement has been removed. This requires the - // addition of braces. For now fall back. - // TODO: Try to preserve formatting - return null; - } - } - $result = ''; - foreach ($diff as $i => $diffElem) { - $diffType = $diffElem->type; - /** @var Node|null $arrItem */ - $arrItem = $diffElem->new; - /** @var Node|null $origArrItem */ - $origArrItem = $diffElem->old; - if ($diffType === DiffElem::TYPE_KEEP || $diffType === DiffElem::TYPE_REPLACE) { - $beforeFirstKeepOrReplace = \false; - if ($origArrItem === null || $arrItem === null) { - // We can only handle the case where both are null - if ($origArrItem === $arrItem) { - continue; - } - return null; - } - if (!$arrItem instanceof Node || !$origArrItem instanceof Node) { - // We can only deal with nodes. This can occur for Names, which use string arrays. - return null; - } - $itemStartPos = $origArrItem->getStartTokenPos(); - $itemEndPos = $origArrItem->getEndTokenPos(); - \assert($itemStartPos >= 0 && $itemEndPos >= 0 && $itemStartPos >= $pos); - $origIndentLevel = $this->indentLevel; - $lastElemIndentLevel = $this->origTokens->getIndentationBefore($itemStartPos) + $indentAdjustment; - $this->setIndentLevel($lastElemIndentLevel); - $comments = $arrItem->getComments(); - $origComments = $origArrItem->getComments(); - $commentStartPos = $origComments ? $origComments[0]->getStartTokenPos() : $itemStartPos; - \assert($commentStartPos >= 0); - if ($commentStartPos < $pos) { - // Comments may be assigned to multiple nodes if they start at the same position. - // Make sure we don't try to print them multiple times. - $commentStartPos = $itemStartPos; - } - if ($skipRemovedNode) { - if ($isStmtList && $this->origTokens->haveBracesInRange($pos, $itemStartPos)) { - // We'd remove the brace of a code block. - // TODO: Preserve formatting. - $this->setIndentLevel($origIndentLevel); - return null; - } - } else { - $result .= $this->origTokens->getTokenCode($pos, $commentStartPos, $indentAdjustment); - } - if (!empty($delayedAdd)) { - /** @var Node $delayedAddNode */ - foreach ($delayedAdd as $delayedAddNode) { - if ($insertNewline) { - $delayedAddComments = $delayedAddNode->getComments(); - if ($delayedAddComments) { - $result .= $this->pComments($delayedAddComments) . $this->nl; - } - } - $this->safeAppend($result, $this->p($delayedAddNode, \true)); - if ($insertNewline) { - $result .= $insertStr . $this->nl; - } else { - $result .= $insertStr; - } - } - $delayedAdd = []; - } - if ($comments !== $origComments) { - if ($comments) { - $result .= $this->pComments($comments) . $this->nl; - } - } else { - $result .= $this->origTokens->getTokenCode($commentStartPos, $itemStartPos, $indentAdjustment); - } - // If we had to remove anything, we have done so now. - $skipRemovedNode = \false; - } elseif ($diffType === DiffElem::TYPE_ADD) { - if (null === $insertStr) { - // We don't have insertion information for this list type - return null; - } - // We go multiline if the original code was multiline, - // or if it's an array item with a comment above it. - if ($insertStr === ', ' && ($this->isMultiline($origNodes) || $arrItem->getComments())) { - $insertStr = ','; - $insertNewline = \true; - } - if ($beforeFirstKeepOrReplace) { - // Will be inserted at the next "replace" or "keep" element - $delayedAdd[] = $arrItem; - continue; - } - $itemStartPos = $pos; - $itemEndPos = $pos - 1; - $origIndentLevel = $this->indentLevel; - $this->setIndentLevel($lastElemIndentLevel); - if ($insertNewline) { - $result .= $insertStr . $this->nl; - $comments = $arrItem->getComments(); - if ($comments) { - $result .= $this->pComments($comments) . $this->nl; - } - } else { - $result .= $insertStr; - } - } elseif ($diffType === DiffElem::TYPE_REMOVE) { - if (!$origArrItem instanceof Node) { - // We only support removal for nodes - return null; - } - $itemStartPos = $origArrItem->getStartTokenPos(); - $itemEndPos = $origArrItem->getEndTokenPos(); - \assert($itemStartPos >= 0 && $itemEndPos >= 0); - // Consider comments part of the node. - $origComments = $origArrItem->getComments(); - if ($origComments) { - $itemStartPos = $origComments[0]->getStartTokenPos(); - } - if ($i === 0) { - // If we're removing from the start, keep the tokens before the node and drop those after it, - // instead of the other way around. - $result .= $this->origTokens->getTokenCode($pos, $itemStartPos, $indentAdjustment); - $skipRemovedNode = \true; - } else { - if ($isStmtList && $this->origTokens->haveBracesInRange($pos, $itemStartPos)) { - // We'd remove the brace of a code block. - // TODO: Preserve formatting. - return null; - } - } - $pos = $itemEndPos + 1; - continue; - } else { - throw new \Exception("Shouldn't happen"); - } - if (null !== $fixup && $arrItem->getAttribute('origNode') !== $origArrItem) { - $res = $this->pFixup($fixup, $arrItem, null, $itemStartPos, $itemEndPos); - } else { - $res = $this->p($arrItem, \true); - } - $this->safeAppend($result, $res); - $this->setIndentLevel($origIndentLevel); - $pos = $itemEndPos + 1; - } - if ($skipRemovedNode) { - // TODO: Support removing single node. - return null; - } - if (!empty($delayedAdd)) { - if (!isset($this->emptyListInsertionMap[$mapKey])) { - return null; - } - list($findToken, $extraLeft, $extraRight) = $this->emptyListInsertionMap[$mapKey]; - if (null !== $findToken) { - $insertPos = $this->origTokens->findRight($pos, $findToken) + 1; - $result .= $this->origTokens->getTokenCode($pos, $insertPos, $indentAdjustment); - $pos = $insertPos; - } - $first = \true; - $result .= $extraLeft; - foreach ($delayedAdd as $delayedAddNode) { - if (!$first) { - $result .= $insertStr; - if ($insertNewline) { - $result .= $this->nl; - } - } - $result .= $this->p($delayedAddNode, \true); - $first = \false; - } - $result .= $extraRight === "\n" ? $this->nl : $extraRight; - } - return $result; - } - /** - * Print node with fixups. - * - * Fixups here refer to the addition of extra parentheses, braces or other characters, that - * are required to preserve program semantics in a certain context (e.g. to maintain precedence - * or because only certain expressions are allowed in certain places). - * - * @param int $fixup Fixup type - * @param Node $subNode Subnode to print - * @param string|null $parentClass Class of parent node - * @param int $subStartPos Original start pos of subnode - * @param int $subEndPos Original end pos of subnode - * - * @return string Result of fixed-up print of subnode - */ - protected function pFixup(int $fixup, Node $subNode, $parentClass, int $subStartPos, int $subEndPos) : string - { - switch ($fixup) { - case self::FIXUP_PREC_LEFT: - case self::FIXUP_PREC_RIGHT: - if (!$this->origTokens->haveParens($subStartPos, $subEndPos)) { - list($precedence, $associativity) = $this->precedenceMap[$parentClass]; - return $this->pPrec($subNode, $precedence, $associativity, $fixup === self::FIXUP_PREC_LEFT ? -1 : 1); - } - break; - case self::FIXUP_CALL_LHS: - if ($this->callLhsRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { - return '(' . $this->p($subNode) . ')'; - } - break; - case self::FIXUP_DEREF_LHS: - if ($this->dereferenceLhsRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { - return '(' . $this->p($subNode) . ')'; - } - break; - case self::FIXUP_BRACED_NAME: - case self::FIXUP_VAR_BRACED_NAME: - if ($subNode instanceof Expr && !$this->origTokens->haveBraces($subStartPos, $subEndPos)) { - return ($fixup === self::FIXUP_VAR_BRACED_NAME ? '$' : '') . '{' . $this->p($subNode) . '}'; - } - break; - case self::FIXUP_ENCAPSED: - if (!$subNode instanceof Scalar\EncapsedStringPart && !$this->origTokens->haveBraces($subStartPos, $subEndPos)) { - return '{' . $this->p($subNode) . '}'; - } - break; - default: - throw new \Exception('Cannot happen'); - } - // Nothing special to do - return $this->p($subNode); - } - /** - * Appends to a string, ensuring whitespace between label characters. - * - * Example: "echo" and "$x" result in "echo$x", but "echo" and "x" result in "echo x". - * Without safeAppend the result would be "echox", which does not preserve semantics. - * - * @param string $str - * @param string $append - */ - protected function safeAppend(string &$str, string $append) - { - if ($str === "") { - $str = $append; - return; - } - if ($append === "") { - return; - } - if (!$this->labelCharMap[$append[0]] || !$this->labelCharMap[$str[\strlen($str) - 1]]) { - $str .= $append; - } else { - $str .= " " . $append; - } - } - /** - * Determines whether the LHS of a call must be wrapped in parenthesis. - * - * @param Node $node LHS of a call - * - * @return bool Whether parentheses are required - */ - protected function callLhsRequiresParens(Node $node) : bool - { - return !($node instanceof Node\Name || $node instanceof Expr\Variable || $node instanceof Expr\ArrayDimFetch || $node instanceof Expr\FuncCall || $node instanceof Expr\MethodCall || $node instanceof Expr\NullsafeMethodCall || $node instanceof Expr\StaticCall || $node instanceof Expr\Array_); - } - /** - * Determines whether the LHS of a dereferencing operation must be wrapped in parenthesis. - * - * @param Node $node LHS of dereferencing operation - * - * @return bool Whether parentheses are required - */ - protected function dereferenceLhsRequiresParens(Node $node) : bool - { - return !($node instanceof Expr\Variable || $node instanceof Node\Name || $node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch || $node instanceof Expr\NullsafePropertyFetch || $node instanceof Expr\StaticPropertyFetch || $node instanceof Expr\FuncCall || $node instanceof Expr\MethodCall || $node instanceof Expr\NullsafeMethodCall || $node instanceof Expr\StaticCall || $node instanceof Expr\Array_ || $node instanceof Scalar\String_ || $node instanceof Expr\ConstFetch || $node instanceof Expr\ClassConstFetch); - } - /** - * Print modifiers, including trailing whitespace. - * - * @param int $modifiers Modifier mask to print - * - * @return string Printed modifiers - */ - protected function pModifiers(int $modifiers) - { - return ($modifiers & Stmt\Class_::MODIFIER_PUBLIC ? 'public ' : '') . ($modifiers & Stmt\Class_::MODIFIER_PROTECTED ? 'protected ' : '') . ($modifiers & Stmt\Class_::MODIFIER_PRIVATE ? 'private ' : '') . ($modifiers & Stmt\Class_::MODIFIER_STATIC ? 'static ' : '') . ($modifiers & Stmt\Class_::MODIFIER_ABSTRACT ? 'abstract ' : '') . ($modifiers & Stmt\Class_::MODIFIER_FINAL ? 'final ' : '') . ($modifiers & Stmt\Class_::MODIFIER_READONLY ? 'readonly ' : ''); - } - /** - * Determine whether a list of nodes uses multiline formatting. - * - * @param (Node|null)[] $nodes Node list - * - * @return bool Whether multiline formatting is used - */ - protected function isMultiline(array $nodes) : bool - { - if (\count($nodes) < 2) { - return \false; - } - $pos = -1; - foreach ($nodes as $node) { - if (null === $node) { - continue; - } - $endPos = $node->getEndTokenPos() + 1; - if ($pos >= 0) { - $text = $this->origTokens->getTokenCode($pos, $endPos, 0); - if (\false === \strpos($text, "\n")) { - // We require that a newline is present between *every* item. If the formatting - // is inconsistent, with only some items having newlines, we don't consider it - // as multiline - return \false; - } - } - $pos = $endPos; - } - return \true; - } - /** - * Lazily initializes label char map. - * - * The label char map determines whether a certain character may occur in a label. - */ - protected function initializeLabelCharMap() - { - if ($this->labelCharMap) { - return; - } - $this->labelCharMap = []; - for ($i = 0; $i < 256; $i++) { - // Since PHP 7.1 The lower range is 0x80. However, we also want to support code for - // older versions. - $chr = \chr($i); - $this->labelCharMap[$chr] = $i >= 0x7f || \ctype_alnum($chr); - } - } - /** - * Lazily initializes node list differ. - * - * The node list differ is used to determine differences between two array subnodes. - */ - protected function initializeNodeListDiffer() - { - if ($this->nodeListDiffer) { - return; - } - $this->nodeListDiffer = new Internal\Differ(function ($a, $b) { - if ($a instanceof Node && $b instanceof Node) { - return $a === $b->getAttribute('origNode'); - } - // Can happen for array destructuring - return $a === null && $b === null; - }); - } - /** - * Lazily initializes fixup map. - * - * The fixup map is used to determine whether a certain subnode of a certain node may require - * some kind of "fixup" operation, e.g. the addition of parenthesis or braces. - */ - protected function initializeFixupMap() - { - if ($this->fixupMap) { - return; - } - $this->fixupMap = [ - Expr\PreInc::class => ['var' => self::FIXUP_PREC_RIGHT], - Expr\PreDec::class => ['var' => self::FIXUP_PREC_RIGHT], - Expr\PostInc::class => ['var' => self::FIXUP_PREC_LEFT], - Expr\PostDec::class => ['var' => self::FIXUP_PREC_LEFT], - Expr\Instanceof_::class => ['expr' => self::FIXUP_PREC_LEFT, 'class' => self::FIXUP_PREC_RIGHT], - Expr\Ternary::class => ['cond' => self::FIXUP_PREC_LEFT, 'else' => self::FIXUP_PREC_RIGHT], - Expr\FuncCall::class => ['name' => self::FIXUP_CALL_LHS], - Expr\StaticCall::class => ['class' => self::FIXUP_DEREF_LHS], - Expr\ArrayDimFetch::class => ['var' => self::FIXUP_DEREF_LHS], - Expr\ClassConstFetch::class => ['var' => self::FIXUP_DEREF_LHS], - Expr\New_::class => ['class' => self::FIXUP_DEREF_LHS], - // TODO: FIXUP_NEW_VARIABLE - Expr\MethodCall::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], - Expr\NullsafeMethodCall::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], - Expr\StaticPropertyFetch::class => ['class' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_VAR_BRACED_NAME], - Expr\PropertyFetch::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], - Expr\NullsafePropertyFetch::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], - Scalar\Encapsed::class => ['parts' => self::FIXUP_ENCAPSED], - ]; - $binaryOps = [BinaryOp\Pow::class, BinaryOp\Mul::class, BinaryOp\Div::class, BinaryOp\Mod::class, BinaryOp\Plus::class, BinaryOp\Minus::class, BinaryOp\Concat::class, BinaryOp\ShiftLeft::class, BinaryOp\ShiftRight::class, BinaryOp\Smaller::class, BinaryOp\SmallerOrEqual::class, BinaryOp\Greater::class, BinaryOp\GreaterOrEqual::class, BinaryOp\Equal::class, BinaryOp\NotEqual::class, BinaryOp\Identical::class, BinaryOp\NotIdentical::class, BinaryOp\Spaceship::class, BinaryOp\BitwiseAnd::class, BinaryOp\BitwiseXor::class, BinaryOp\BitwiseOr::class, BinaryOp\BooleanAnd::class, BinaryOp\BooleanOr::class, BinaryOp\Coalesce::class, BinaryOp\LogicalAnd::class, BinaryOp\LogicalXor::class, BinaryOp\LogicalOr::class]; - foreach ($binaryOps as $binaryOp) { - $this->fixupMap[$binaryOp] = ['left' => self::FIXUP_PREC_LEFT, 'right' => self::FIXUP_PREC_RIGHT]; - } - $assignOps = [Expr\Assign::class, Expr\AssignRef::class, AssignOp\Plus::class, AssignOp\Minus::class, AssignOp\Mul::class, AssignOp\Div::class, AssignOp\Concat::class, AssignOp\Mod::class, AssignOp\BitwiseAnd::class, AssignOp\BitwiseOr::class, AssignOp\BitwiseXor::class, AssignOp\ShiftLeft::class, AssignOp\ShiftRight::class, AssignOp\Pow::class, AssignOp\Coalesce::class]; - foreach ($assignOps as $assignOp) { - $this->fixupMap[$assignOp] = ['var' => self::FIXUP_PREC_LEFT, 'expr' => self::FIXUP_PREC_RIGHT]; - } - $prefixOps = [Expr\BitwiseNot::class, Expr\BooleanNot::class, Expr\UnaryPlus::class, Expr\UnaryMinus::class, Cast\Int_::class, Cast\Double::class, Cast\String_::class, Cast\Array_::class, Cast\Object_::class, Cast\Bool_::class, Cast\Unset_::class, Expr\ErrorSuppress::class, Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class]; - foreach ($prefixOps as $prefixOp) { - $this->fixupMap[$prefixOp] = ['expr' => self::FIXUP_PREC_RIGHT]; - } - } - /** - * Lazily initializes the removal map. - * - * The removal map is used to determine which additional tokens should be removed when a - * certain node is replaced by null. - */ - protected function initializeRemovalMap() - { - if ($this->removalMap) { - return; - } - $stripBoth = ['left' => \T_WHITESPACE, 'right' => \T_WHITESPACE]; - $stripLeft = ['left' => \T_WHITESPACE]; - $stripRight = ['right' => \T_WHITESPACE]; - $stripDoubleArrow = ['right' => \T_DOUBLE_ARROW]; - $stripColon = ['left' => ':']; - $stripEquals = ['left' => '=']; - $this->removalMap = ['Expr_ArrayDimFetch->dim' => $stripBoth, 'Expr_ArrayItem->key' => $stripDoubleArrow, 'Expr_ArrowFunction->returnType' => $stripColon, 'Expr_Closure->returnType' => $stripColon, 'Expr_Exit->expr' => $stripBoth, 'Expr_Ternary->if' => $stripBoth, 'Expr_Yield->key' => $stripDoubleArrow, 'Expr_Yield->value' => $stripBoth, 'Param->type' => $stripRight, 'Param->default' => $stripEquals, 'Stmt_Break->num' => $stripBoth, 'Stmt_Catch->var' => $stripLeft, 'Stmt_ClassMethod->returnType' => $stripColon, 'Stmt_Class->extends' => ['left' => \T_EXTENDS], 'Stmt_Enum->scalarType' => $stripColon, 'Stmt_EnumCase->expr' => $stripEquals, 'Expr_PrintableNewAnonClass->extends' => ['left' => \T_EXTENDS], 'Stmt_Continue->num' => $stripBoth, 'Stmt_Foreach->keyVar' => $stripDoubleArrow, 'Stmt_Function->returnType' => $stripColon, 'Stmt_If->else' => $stripLeft, 'Stmt_Namespace->name' => $stripLeft, 'Stmt_Property->type' => $stripRight, 'Stmt_PropertyProperty->default' => $stripEquals, 'Stmt_Return->expr' => $stripBoth, 'Stmt_StaticVar->default' => $stripEquals, 'Stmt_TraitUseAdaptation_Alias->newName' => $stripLeft, 'Stmt_TryCatch->finally' => $stripLeft]; - } - protected function initializeInsertionMap() - { - if ($this->insertionMap) { - return; - } - // TODO: "yield" where both key and value are inserted doesn't work - // [$find, $beforeToken, $extraLeft, $extraRight] - $this->insertionMap = [ - 'Expr_ArrayDimFetch->dim' => ['[', \false, null, null], - 'Expr_ArrayItem->key' => [null, \false, null, ' => '], - 'Expr_ArrowFunction->returnType' => [')', \false, ' : ', null], - 'Expr_Closure->returnType' => [')', \false, ' : ', null], - 'Expr_Ternary->if' => ['?', \false, ' ', ' '], - 'Expr_Yield->key' => [\T_YIELD, \false, null, ' => '], - 'Expr_Yield->value' => [\T_YIELD, \false, ' ', null], - 'Param->type' => [null, \false, null, ' '], - 'Param->default' => [null, \false, ' = ', null], - 'Stmt_Break->num' => [\T_BREAK, \false, ' ', null], - 'Stmt_Catch->var' => [null, \false, ' ', null], - 'Stmt_ClassMethod->returnType' => [')', \false, ' : ', null], - 'Stmt_Class->extends' => [null, \false, ' extends ', null], - 'Stmt_Enum->scalarType' => [null, \false, ' : ', null], - 'Stmt_EnumCase->expr' => [null, \false, ' = ', null], - 'Expr_PrintableNewAnonClass->extends' => [null, ' extends ', null], - 'Stmt_Continue->num' => [\T_CONTINUE, \false, ' ', null], - 'Stmt_Foreach->keyVar' => [\T_AS, \false, null, ' => '], - 'Stmt_Function->returnType' => [')', \false, ' : ', null], - 'Stmt_If->else' => [null, \false, ' ', null], - 'Stmt_Namespace->name' => [\T_NAMESPACE, \false, ' ', null], - 'Stmt_Property->type' => [\T_VARIABLE, \true, null, ' '], - 'Stmt_PropertyProperty->default' => [null, \false, ' = ', null], - 'Stmt_Return->expr' => [\T_RETURN, \false, ' ', null], - 'Stmt_StaticVar->default' => [null, \false, ' = ', null], - //'Stmt_TraitUseAdaptation_Alias->newName' => [T_AS, false, ' ', null], // TODO - 'Stmt_TryCatch->finally' => [null, \false, ' ', null], - ]; - } - protected function initializeListInsertionMap() - { - if ($this->listInsertionMap) { - return; - } - $this->listInsertionMap = [ - // special - //'Expr_ShellExec->parts' => '', // TODO These need to be treated more carefully - //'Scalar_Encapsed->parts' => '', - 'Stmt_Catch->types' => '|', - 'UnionType->types' => '|', - 'IntersectionType->types' => '&', - 'Stmt_If->elseifs' => ' ', - 'Stmt_TryCatch->catches' => ' ', - // comma-separated lists - 'Expr_Array->items' => ', ', - 'Expr_ArrowFunction->params' => ', ', - 'Expr_Closure->params' => ', ', - 'Expr_Closure->uses' => ', ', - 'Expr_FuncCall->args' => ', ', - 'Expr_Isset->vars' => ', ', - 'Expr_List->items' => ', ', - 'Expr_MethodCall->args' => ', ', - 'Expr_NullsafeMethodCall->args' => ', ', - 'Expr_New->args' => ', ', - 'Expr_PrintableNewAnonClass->args' => ', ', - 'Expr_StaticCall->args' => ', ', - 'Stmt_ClassConst->consts' => ', ', - 'Stmt_ClassMethod->params' => ', ', - 'Stmt_Class->implements' => ', ', - 'Stmt_Enum->implements' => ', ', - 'Expr_PrintableNewAnonClass->implements' => ', ', - 'Stmt_Const->consts' => ', ', - 'Stmt_Declare->declares' => ', ', - 'Stmt_Echo->exprs' => ', ', - 'Stmt_For->init' => ', ', - 'Stmt_For->cond' => ', ', - 'Stmt_For->loop' => ', ', - 'Stmt_Function->params' => ', ', - 'Stmt_Global->vars' => ', ', - 'Stmt_GroupUse->uses' => ', ', - 'Stmt_Interface->extends' => ', ', - 'Stmt_Match->arms' => ', ', - 'Stmt_Property->props' => ', ', - 'Stmt_StaticVar->vars' => ', ', - 'Stmt_TraitUse->traits' => ', ', - 'Stmt_TraitUseAdaptation_Precedence->insteadof' => ', ', - 'Stmt_Unset->vars' => ', ', - 'Stmt_Use->uses' => ', ', - 'MatchArm->conds' => ', ', - 'AttributeGroup->attrs' => ', ', - // statement lists - 'Expr_Closure->stmts' => "\n", - 'Stmt_Case->stmts' => "\n", - 'Stmt_Catch->stmts' => "\n", - 'Stmt_Class->stmts' => "\n", - 'Stmt_Enum->stmts' => "\n", - 'Expr_PrintableNewAnonClass->stmts' => "\n", - 'Stmt_Interface->stmts' => "\n", - 'Stmt_Trait->stmts' => "\n", - 'Stmt_ClassMethod->stmts' => "\n", - 'Stmt_Declare->stmts' => "\n", - 'Stmt_Do->stmts' => "\n", - 'Stmt_ElseIf->stmts' => "\n", - 'Stmt_Else->stmts' => "\n", - 'Stmt_Finally->stmts' => "\n", - 'Stmt_Foreach->stmts' => "\n", - 'Stmt_For->stmts' => "\n", - 'Stmt_Function->stmts' => "\n", - 'Stmt_If->stmts' => "\n", - 'Stmt_Namespace->stmts' => "\n", - 'Stmt_Class->attrGroups' => "\n", - 'Stmt_Enum->attrGroups' => "\n", - 'Stmt_EnumCase->attrGroups' => "\n", - 'Stmt_Interface->attrGroups' => "\n", - 'Stmt_Trait->attrGroups' => "\n", - 'Stmt_Function->attrGroups' => "\n", - 'Stmt_ClassMethod->attrGroups' => "\n", - 'Stmt_ClassConst->attrGroups' => "\n", - 'Stmt_Property->attrGroups' => "\n", - 'Expr_PrintableNewAnonClass->attrGroups' => ' ', - 'Expr_Closure->attrGroups' => ' ', - 'Expr_ArrowFunction->attrGroups' => ' ', - 'Param->attrGroups' => ' ', - 'Stmt_Switch->cases' => "\n", - 'Stmt_TraitUse->adaptations' => "\n", - 'Stmt_TryCatch->stmts' => "\n", - 'Stmt_While->stmts' => "\n", - // dummy for top-level context - 'File->stmts' => "\n", - ]; - } - protected function initializeEmptyListInsertionMap() - { - if ($this->emptyListInsertionMap) { - return; - } - // TODO Insertion into empty statement lists. - // [$find, $extraLeft, $extraRight] - $this->emptyListInsertionMap = ['Expr_ArrowFunction->params' => ['(', '', ''], 'Expr_Closure->uses' => [')', ' use(', ')'], 'Expr_Closure->params' => ['(', '', ''], 'Expr_FuncCall->args' => ['(', '', ''], 'Expr_MethodCall->args' => ['(', '', ''], 'Expr_NullsafeMethodCall->args' => ['(', '', ''], 'Expr_New->args' => ['(', '', ''], 'Expr_PrintableNewAnonClass->args' => ['(', '', ''], 'Expr_PrintableNewAnonClass->implements' => [null, ' implements ', ''], 'Expr_StaticCall->args' => ['(', '', ''], 'Stmt_Class->implements' => [null, ' implements ', ''], 'Stmt_Enum->implements' => [null, ' implements ', ''], 'Stmt_ClassMethod->params' => ['(', '', ''], 'Stmt_Interface->extends' => [null, ' extends ', ''], 'Stmt_Function->params' => ['(', '', ''], 'Stmt_Interface->attrGroups' => [null, '', "\n"], 'Stmt_Class->attrGroups' => [null, '', "\n"], 'Stmt_ClassConst->attrGroups' => [null, '', "\n"], 'Stmt_ClassMethod->attrGroups' => [null, '', "\n"], 'Stmt_Function->attrGroups' => [null, '', "\n"], 'Stmt_Property->attrGroups' => [null, '', "\n"], 'Stmt_Trait->attrGroups' => [null, '', "\n"], 'Expr_ArrowFunction->attrGroups' => [null, '', ' '], 'Expr_Closure->attrGroups' => [null, '', ' '], 'Expr_PrintableNewAnonClass->attrGroups' => [\T_NEW, ' ', '']]; - } - protected function initializeModifierChangeMap() - { - if ($this->modifierChangeMap) { - return; - } - $this->modifierChangeMap = ['Stmt_ClassConst->flags' => \T_CONST, 'Stmt_ClassMethod->flags' => \T_FUNCTION, 'Stmt_Class->flags' => \T_CLASS, 'Stmt_Property->flags' => \T_VARIABLE, 'Param->flags' => \T_VARIABLE]; - // List of integer subnodes that are not modifiers: - // Expr_Include->type - // Stmt_GroupUse->type - // Stmt_Use->type - // Stmt_UseUse->type - } -} -Object Enumerator - -Copyright (c) 2016-2020, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. -Object Reflector - -Copyright (c) 2017-2020, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. -Phar.io - Manifest - -Copyright (c) 2016-2019 Arne Blankerts , Sebastian Heuer , Sebastian Bergmann , and contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of Arne Blankerts nor the names of contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -use PHPUnit\PharIo\Version\Exception as VersionException; -use PHPUnit\PharIo\Version\Version; -use PHPUnit\PharIo\Version\VersionConstraintParser; -class ManifestDocumentMapper -{ - public function map(ManifestDocument $document) : Manifest - { - try { - $contains = $document->getContainsElement(); - $type = $this->mapType($contains); - $copyright = $this->mapCopyright($document->getCopyrightElement()); - $requirements = $this->mapRequirements($document->getRequiresElement()); - $bundledComponents = $this->mapBundledComponents($document); - return new Manifest(new ApplicationName($contains->getName()), new Version($contains->getVersion()), $type, $copyright, $requirements, $bundledComponents); - } catch (VersionException $e) { - throw new ManifestDocumentMapperException($e->getMessage(), (int) $e->getCode(), $e); - } catch (Exception $e) { - throw new ManifestDocumentMapperException($e->getMessage(), (int) $e->getCode(), $e); - } - } - private function mapType(ContainsElement $contains) : Type - { - switch ($contains->getType()) { - case 'application': - return Type::application(); - case 'library': - return Type::library(); - case 'extension': - return $this->mapExtension($contains->getExtensionElement()); - } - throw new ManifestDocumentMapperException(\sprintf('Unsupported type %s', $contains->getType())); - } - private function mapCopyright(CopyrightElement $copyright) : CopyrightInformation - { - $authors = new AuthorCollection(); - foreach ($copyright->getAuthorElements() as $authorElement) { - $authors->add(new Author($authorElement->getName(), new Email($authorElement->getEmail()))); - } - $licenseElement = $copyright->getLicenseElement(); - $license = new License($licenseElement->getType(), new Url($licenseElement->getUrl())); - return new CopyrightInformation($authors, $license); - } - private function mapRequirements(RequiresElement $requires) : RequirementCollection - { - $collection = new RequirementCollection(); - $phpElement = $requires->getPHPElement(); - $parser = new VersionConstraintParser(); - try { - $versionConstraint = $parser->parse($phpElement->getVersion()); - } catch (VersionException $e) { - throw new ManifestDocumentMapperException(\sprintf('Unsupported version constraint - %s', $e->getMessage()), (int) $e->getCode(), $e); - } - $collection->add(new PhpVersionRequirement($versionConstraint)); - if (!$phpElement->hasExtElements()) { - return $collection; - } - foreach ($phpElement->getExtElements() as $extElement) { - $collection->add(new PhpExtensionRequirement($extElement->getName())); - } - return $collection; - } - private function mapBundledComponents(ManifestDocument $document) : BundledComponentCollection - { - $collection = new BundledComponentCollection(); - if (!$document->hasBundlesElement()) { - return $collection; - } - foreach ($document->getBundlesElement()->getComponentElements() as $componentElement) { - $collection->add(new BundledComponent($componentElement->getName(), new Version($componentElement->getVersion()))); - } - return $collection; - } - private function mapExtension(ExtensionElement $extension) : Extension - { - try { - $versionConstraint = (new VersionConstraintParser())->parse($extension->getCompatible()); - return Type::extension(new ApplicationName($extension->getFor()), $versionConstraint); - } catch (VersionException $e) { - throw new ManifestDocumentMapperException(\sprintf('Unsupported version constraint - %s', $e->getMessage()), (int) $e->getCode(), $e); - } - } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class ManifestLoader -{ - public static function fromFile(string $filename) : Manifest - { - try { - return (new ManifestDocumentMapper())->map(ManifestDocument::fromFile($filename)); - } catch (Exception $e) { - throw new ManifestLoaderException(\sprintf('Loading %s failed.', $filename), (int) $e->getCode(), $e); - } - } - public static function fromPhar(string $filename) : Manifest - { - return self::fromFile('phar://' . $filename . '/manifest.xml'); - } - public static function fromString(string $manifest) : Manifest - { - try { - return (new ManifestDocumentMapper())->map(ManifestDocument::fromString($manifest)); - } catch (Exception $e) { - throw new ManifestLoaderException('Processing string failed', (int) $e->getCode(), $e); - } - } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -use PHPUnit\PharIo\Version\AnyVersionConstraint; -use PHPUnit\PharIo\Version\Version; -use PHPUnit\PharIo\Version\VersionConstraint; -use XMLWriter; -/** @psalm-suppress MissingConstructor */ -class ManifestSerializer -{ - /** @var XMLWriter */ - private $xmlWriter; - public function serializeToFile(Manifest $manifest, string $filename) : void - { - \file_put_contents($filename, $this->serializeToString($manifest)); - } - public function serializeToString(Manifest $manifest) : string - { - $this->startDocument(); - $this->addContains($manifest->getName(), $manifest->getVersion(), $manifest->getType()); - $this->addCopyright($manifest->getCopyrightInformation()); - $this->addRequirements($manifest->getRequirements()); - $this->addBundles($manifest->getBundledComponents()); - return $this->finishDocument(); - } - private function startDocument() : void - { - $xmlWriter = new XMLWriter(); - $xmlWriter->openMemory(); - $xmlWriter->setIndent(\true); - $xmlWriter->setIndentString(\str_repeat(' ', 4)); - $xmlWriter->startDocument('1.0', 'UTF-8'); - $xmlWriter->startElement('phar'); - $xmlWriter->writeAttribute('xmlns', 'https://phar.io/xml/manifest/1.0'); - $this->xmlWriter = $xmlWriter; - } - private function finishDocument() : string - { - $this->xmlWriter->endElement(); - $this->xmlWriter->endDocument(); - return $this->xmlWriter->outputMemory(); - } - private function addContains(ApplicationName $name, Version $version, Type $type) : void - { - $this->xmlWriter->startElement('contains'); - $this->xmlWriter->writeAttribute('name', $name->asString()); - $this->xmlWriter->writeAttribute('version', $version->getVersionString()); - switch (\true) { - case $type->isApplication(): - $this->xmlWriter->writeAttribute('type', 'application'); - break; - case $type->isLibrary(): - $this->xmlWriter->writeAttribute('type', 'library'); - break; - case $type->isExtension(): - $this->xmlWriter->writeAttribute('type', 'extension'); - /* @var $type Extension */ - $this->addExtension($type->getApplicationName(), $type->getVersionConstraint()); - break; - default: - $this->xmlWriter->writeAttribute('type', 'custom'); - } - $this->xmlWriter->endElement(); - } - private function addCopyright(CopyrightInformation $copyrightInformation) : void - { - $this->xmlWriter->startElement('copyright'); - foreach ($copyrightInformation->getAuthors() as $author) { - $this->xmlWriter->startElement('author'); - $this->xmlWriter->writeAttribute('name', $author->getName()); - $this->xmlWriter->writeAttribute('email', $author->getEmail()->asString()); - $this->xmlWriter->endElement(); - } - $license = $copyrightInformation->getLicense(); - $this->xmlWriter->startElement('license'); - $this->xmlWriter->writeAttribute('type', $license->getName()); - $this->xmlWriter->writeAttribute('url', $license->getUrl()->asString()); - $this->xmlWriter->endElement(); - $this->xmlWriter->endElement(); - } - private function addRequirements(RequirementCollection $requirementCollection) : void - { - $phpRequirement = new AnyVersionConstraint(); - $extensions = []; - foreach ($requirementCollection as $requirement) { - if ($requirement instanceof PhpVersionRequirement) { - $phpRequirement = $requirement->getVersionConstraint(); - continue; - } - if ($requirement instanceof PhpExtensionRequirement) { - $extensions[] = $requirement->asString(); - } - } - $this->xmlWriter->startElement('requires'); - $this->xmlWriter->startElement('php'); - $this->xmlWriter->writeAttribute('version', $phpRequirement->asString()); - foreach ($extensions as $extension) { - $this->xmlWriter->startElement('ext'); - $this->xmlWriter->writeAttribute('name', $extension); - $this->xmlWriter->endElement(); - } - $this->xmlWriter->endElement(); - $this->xmlWriter->endElement(); - } - private function addBundles(BundledComponentCollection $bundledComponentCollection) : void - { - if (\count($bundledComponentCollection) === 0) { - return; } - $this->xmlWriter->startElement('bundles'); - foreach ($bundledComponentCollection as $bundledComponent) { - $this->xmlWriter->startElement('component'); - $this->xmlWriter->writeAttribute('name', $bundledComponent->getName()); - $this->xmlWriter->writeAttribute('version', $bundledComponent->getVersion()->getVersionString()); - $this->xmlWriter->endElement(); + if (is_object($argument) && property_exists($argument, $this->name)) { + return $argument->{$this->name} === $this->value ? 8 : \false; } - $this->xmlWriter->endElement(); - } - private function addExtension(ApplicationName $applicationName, VersionConstraint $versionConstraint) : void - { - $this->xmlWriter->startElement('extension'); - $this->xmlWriter->writeAttribute('for', $applicationName->asString()); - $this->xmlWriter->writeAttribute('compatible', $versionConstraint->asString()); - $this->xmlWriter->endElement(); + return \false; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class ElementCollectionException extends \InvalidArgumentException implements Exception -{ -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -interface Exception extends \Throwable -{ -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class InvalidApplicationNameException extends \InvalidArgumentException implements Exception -{ - public const InvalidFormat = 2; -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class InvalidEmailException extends \InvalidArgumentException implements Exception -{ -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class InvalidUrlException extends \InvalidArgumentException implements Exception -{ -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -use LibXMLError; -class ManifestDocumentLoadingException extends \Exception implements Exception -{ - /** @var LibXMLError[] */ - private $libxmlErrors; /** - * ManifestDocumentLoadingException constructor. + * Returns false. * - * @param LibXMLError[] $libxmlErrors + * @return bool */ - public function __construct(array $libxmlErrors) + public function isLast() { - $this->libxmlErrors = $libxmlErrors; - $first = $this->libxmlErrors[0]; - parent::__construct(\sprintf('%s (Line: %d / Column: %d / File: %s)', $first->message, $first->line, $first->column, $first->file), $first->code); + return \false; } /** - * @return LibXMLError[] + * Returns string representation for token. + * + * @return string */ - public function getLibxmlErrors() : array + public function __toString() { - return $this->libxmlErrors; + return sprintf('state(%s(), %s)', $this->name, $this->util->stringify($this->value)); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class Application extends Type -{ - public function isApplication() : bool - { - return \true; - } -} -, Sebastian Heuer , Sebastian Bergmann +/** + * Any single value token. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @author Konstantin Kudryashov */ -namespace PHPUnit\PharIo\Manifest; - -class ApplicationName +class AnyValueToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var string */ - private $name; - public function __construct(string $name) - { - $this->ensureValidFormat($name); - $this->name = $name; - } - public function asString() : string + /** + * Always scores 3 for any argument. + * + * @param mixed $argument + * + * @return int + */ + public function scoreArgument($argument) { - return $this->name; + return 3; } - public function isEqual(ApplicationName $name) : bool + /** + * Returns false. + * + * @return bool + */ + public function isLast() { - return $this->name === $name->name; + return \false; } - private function ensureValidFormat(string $name) : void + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() { - if (!\preg_match('#\\w/\\w#', $name)) { - throw new InvalidApplicationNameException(\sprintf('Format of name "%s" is not valid - expected: vendor/packagename', $name), InvalidApplicationNameException::InvalidFormat); - } + return '*'; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class Author -{ - /** @var string */ - private $name; - /** @var Email */ - private $email; - public function __construct(string $name, Email $email) - { - $this->name = $name; - $this->email = $email; - } - public function asString() : string - { - return \sprintf('%s <%s>', $this->name, $this->email->asString()); - } - public function getName() : string - { - return $this->name; - } - public function getEmail() : Email - { - return $this->email; - } -} -, Sebastian Heuer , Sebastian Bergmann +/** + * Check if values is not in array * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @author Vinícius Alonso */ -namespace PHPUnit\PharIo\Manifest; - -class AuthorCollection implements \Countable, \IteratorAggregate +class NotInArrayToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var Author[] */ - private $authors = []; - public function add(Author $author) : void + private $token = array(); + private $strict; + /** + * @param array $arguments tokens + * @param bool $strict + */ + public function __construct(array $arguments, $strict = \true) { - $this->authors[] = $author; + $this->token = $arguments; + $this->strict = $strict; } /** - * @return Author[] + * Return scores 8 score if argument is in array. + * + * @param $argument + * + * @return bool|int */ - public function getAuthors() : array + public function scoreArgument($argument) { - return $this->authors; + if (count($this->token) === 0) { + return \false; + } + if (!\in_array($argument, $this->token, $this->strict)) { + return 8; + } + return \false; } - public function count() : int + /** + * Returns false. + * + * @return boolean + */ + public function isLast() { - return \count($this->authors); + return \false; } - public function getIterator() : AuthorCollectionIterator + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() { - return new AuthorCollectionIterator($this); + $arrayAsString = implode(', ', $this->token); + return "[{$arrayAsString}]"; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class AuthorCollectionIterator implements \Iterator -{ - /** @var Author[] */ - private $authors; - /** @var int */ - private $position = 0; - public function __construct(AuthorCollection $authors) - { - $this->authors = $authors->getAuthors(); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < \count($this->authors); - } - public function key() : int - { - return $this->position; - } - public function current() : Author - { - return $this->authors[$this->position]; - } - public function next() : void - { - $this->position++; - } -} -, Sebastian Heuer , Sebastian Bergmann +/** + * Argument token interface. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @author Konstantin Kudryashov */ -namespace PHPUnit\PharIo\Manifest; - -use PHPUnit\PharIo\Version\Version; -class BundledComponent +interface TokenInterface { - /** @var string */ - private $name; - /** @var Version */ - private $version; - public function __construct(string $name, Version $version) - { - $this->name = $name; - $this->version = $version; - } - public function getName() : string - { - return $this->name; - } - public function getVersion() : Version - { - return $this->version; - } + /** + * Calculates token match score for provided argument. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument); + /** + * Returns true if this token prevents check of other tokens (is last one). + * + * @return bool + */ + public function isLast(); + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString(); } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument\Token; -class BundledComponentCollection implements \Countable, \IteratorAggregate +/** + * Logical NOT token. + * + * @author Boris Mikhaylov + */ +class LogicalNotToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var BundledComponent[] */ - private $bundledComponents = []; - public function add(BundledComponent $bundledComponent) : void + /** @var TokenInterface */ + private $token; + /** + * @param mixed $value exact value or token + */ + public function __construct($value) { - $this->bundledComponents[] = $bundledComponent; + $this->token = $value instanceof \Prophecy\Argument\Token\TokenInterface ? $value : new \Prophecy\Argument\Token\ExactValueToken($value); } /** - * @return BundledComponent[] + * Scores 4 when preset token does not match the argument. + * + * @param mixed $argument + * + * @return false|int */ - public function getBundledComponents() : array + public function scoreArgument($argument) { - return $this->bundledComponents; + return \false === $this->token->scoreArgument($argument) ? 4 : \false; } - public function count() : int + /** + * Returns true if preset token is last. + * + * @return bool + */ + public function isLast() { - return \count($this->bundledComponents); + return $this->token->isLast(); } - public function getIterator() : BundledComponentCollectionIterator + /** + * Returns originating token. + * + * @return TokenInterface + */ + public function getOriginatingToken() { - return new BundledComponentCollectionIterator($this); + return $this->token; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return sprintf('not(%s)', $this->token); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument\Token; -class BundledComponentCollectionIterator implements \Iterator +/** + * Array every entry token. + * + * @author Adrien Brault + */ +class ArrayEveryEntryToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var BundledComponent[] */ - private $bundledComponents; - /** @var int */ - private $position = 0; - public function __construct(BundledComponentCollection $bundledComponents) - { - $this->bundledComponents = $bundledComponents->getBundledComponents(); - } - public function rewind() : void + /** + * @var TokenInterface + */ + private $value; + /** + * @param mixed $value exact value or token + */ + public function __construct($value) { - $this->position = 0; + if (!$value instanceof \Prophecy\Argument\Token\TokenInterface) { + $value = new \Prophecy\Argument\Token\ExactValueToken($value); + } + $this->value = $value; } - public function valid() : bool + /** + * {@inheritdoc} + */ + public function scoreArgument($argument) { - return $this->position < \count($this->bundledComponents); + if (!$argument instanceof \Traversable && !is_array($argument)) { + return \false; + } + $scores = array(); + foreach ($argument as $key => $argumentEntry) { + $scores[] = $this->value->scoreArgument($argumentEntry); + } + if (empty($scores) || in_array(\false, $scores, \true)) { + return \false; + } + return array_sum($scores) / count($scores); } - public function key() : int + /** + * {@inheritdoc} + */ + public function isLast() { - return $this->position; + return \false; } - public function current() : BundledComponent + /** + * {@inheritdoc} + */ + public function __toString() { - return $this->bundledComponents[$this->position]; + return sprintf('[%s, ..., %s]', $this->value, $this->value); } - public function next() : void + /** + * @return TokenInterface + */ + public function getValue() { - $this->position++; + return $this->value; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument\Token; -class CopyrightInformation +/** + * String contains token. + * + * @author Peter Mitchell + */ +class StringContainsToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var AuthorCollection */ - private $authors; - /** @var License */ - private $license; - public function __construct(AuthorCollection $authors, License $license) - { - $this->authors = $authors; - $this->license = $license; - } - public function getAuthors() : AuthorCollection + private $value; + /** + * Initializes token. + * + * @param string $value + */ + public function __construct($value) { - return $this->authors; + $this->value = $value; } - public function getLicense() : License + public function scoreArgument($argument) { - return $this->license; + return is_string($argument) && strpos($argument, $this->value) !== \false ? 6 : \false; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class Email -{ - /** @var string */ - private $email; - public function __construct(string $email) + /** + * Returns preset value against which token checks arguments. + * + * @return mixed + */ + public function getValue() { - $this->ensureEmailIsValid($email); - $this->email = $email; + return $this->value; } - public function asString() : string + /** + * Returns false. + * + * @return bool + */ + public function isLast() { - return $this->email; + return \false; } - private function ensureEmailIsValid(string $url) : void + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() { - if (\filter_var($url, \FILTER_VALIDATE_EMAIL) === \false) { - throw new InvalidEmailException(); - } + return sprintf('contains("%s")', $this->value); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument\Token; -use PHPUnit\PharIo\Version\Version; -use PHPUnit\PharIo\Version\VersionConstraint; -class Extension extends Type +/** + * Array elements count token. + * + * @author Boris Mikhaylov + */ +class ArrayCountToken implements \Prophecy\Argument\Token\TokenInterface { - /** @var ApplicationName */ - private $application; - /** @var VersionConstraint */ - private $versionConstraint; - public function __construct(ApplicationName $application, VersionConstraint $versionConstraint) + private $count; + /** + * @param integer $value + */ + public function __construct($value) { - $this->application = $application; - $this->versionConstraint = $versionConstraint; + $this->count = $value; } - public function getApplicationName() : ApplicationName + /** + * Scores 6 when argument has preset number of elements. + * + * @param mixed $argument + * + * @return false|int + */ + public function scoreArgument($argument) { - return $this->application; + return $this->isCountable($argument) && $this->hasProperCount($argument) ? 6 : \false; } - public function getVersionConstraint() : VersionConstraint + /** + * Returns false. + * + * @return boolean + */ + public function isLast() { - return $this->versionConstraint; + return \false; } - public function isExtension() : bool + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() { - return \true; + return sprintf('count(%s)', $this->count); } - public function isExtensionFor(ApplicationName $name) : bool + /** + * Returns true if object is either array or instance of \Countable + * + * @param mixed $argument + * @return bool + * + * @phpstan-assert-if-true array|\Countable $argument + */ + private function isCountable($argument) { - return $this->application->isEqual($name); + return is_array($argument) || $argument instanceof \Countable; } - public function isCompatibleWith(ApplicationName $name, Version $version) : bool + /** + * Returns true if $argument has expected number of elements + * + * @param array|\Countable $argument + * + * @return bool + */ + private function hasProperCount($argument) { - return $this->isExtensionFor($name) && $this->versionConstraint->complies($version); + return $this->count === count($argument); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument\Token; -class Library extends Type +/** + * Approximate value token + * + * @author Daniel Leech + */ +class ApproximateValueToken implements \Prophecy\Argument\Token\TokenInterface { - public function isLibrary() : bool + private $value; + private $precision; + /** + * @param float $value + * @param int $precision + */ + public function __construct($value, $precision = 0) { - return \true; + $this->value = $value; + $this->precision = $precision; + } + /** + * {@inheritdoc} + */ + public function scoreArgument($argument) + { + if (!\is_float($argument) && !\is_int($argument) && !\is_numeric($argument)) { + return \false; + } + return round((float) $argument, $this->precision) === round($this->value, $this->precision) ? 10 : \false; + } + /** + * {@inheritdoc} + */ + public function isLast() + { + return \false; + } + /** + * Returns string representation for token. + * + * @return string + */ + public function __toString() + { + return sprintf('≅%s', round($this->value, $this->precision)); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Argument; -class License +/** + * Arguments wildcarding. + * + * @author Konstantin Kudryashov + */ +class ArgumentsWildcard { - /** @var string */ - private $name; - /** @var Url */ - private $url; - public function __construct(string $name, Url $url) + /** + * @var list + */ + private $tokens = array(); + /** + * @var string|null + */ + private $string; + /** + * Initializes wildcard. + * + * @param array $arguments Array of argument tokens or values + */ + public function __construct(array $arguments) { - $this->name = $name; - $this->url = $url; + foreach ($arguments as $argument) { + if (!$argument instanceof \Prophecy\Argument\Token\TokenInterface) { + $argument = new \Prophecy\Argument\Token\ExactValueToken($argument); + } + $this->tokens[] = $argument; + } } - public function getName() : string + /** + * Calculates wildcard match score for provided arguments. + * + * @param array $arguments + * + * @return false|int False OR integer score (higher - better) + */ + public function scoreArguments(array $arguments) { - return $this->name; + if (0 == count($arguments) && 0 == count($this->tokens)) { + return 1; + } + $arguments = array_values($arguments); + $totalScore = 0; + foreach ($this->tokens as $i => $token) { + $argument = isset($arguments[$i]) ? $arguments[$i] : null; + if (1 >= $score = $token->scoreArgument($argument)) { + return \false; + } + $totalScore += $score; + if (\true === $token->isLast()) { + return $totalScore; + } + } + if (count($arguments) > count($this->tokens)) { + return \false; + } + return $totalScore; } - public function getUrl() : Url + /** + * Returns string representation for wildcard. + * + * @return string + */ + public function __toString() { - return $this->url; + if (null === $this->string) { + $this->string = implode(', ', array_map(function ($token) { + return (string) $token; + }, $this->tokens)); + } + return $this->string; + } + /** + * @return list + */ + public function getTokens() + { + return $this->tokens; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy; -use PHPUnit\PharIo\Version\Version; -class Manifest +use Prophecy\Doubler\CachedDoubler; +use Prophecy\Doubler\Doubler; +use Prophecy\Doubler\LazyDouble; +use Prophecy\Doubler\ClassPatch; +use Prophecy\Exception\Doubler\ClassNotFoundException; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\RevealerInterface; +use Prophecy\Prophecy\Revealer; +use Prophecy\Call\CallCenter; +use Prophecy\Util\StringUtil; +use Prophecy\Exception\Prediction\PredictionException; +use Prophecy\Exception\Prediction\AggregateException; +/** + * Prophet creates prophecies. + * + * @author Konstantin Kudryashov + */ +class Prophet { - /** @var ApplicationName */ - private $name; - /** @var Version */ - private $version; - /** @var Type */ - private $type; - /** @var CopyrightInformation */ - private $copyrightInformation; - /** @var RequirementCollection */ - private $requirements; - /** @var BundledComponentCollection */ - private $bundledComponents; - public function __construct(ApplicationName $name, Version $version, Type $type, CopyrightInformation $copyrightInformation, RequirementCollection $requirements, BundledComponentCollection $bundledComponents) - { - $this->name = $name; - $this->version = $version; - $this->type = $type; - $this->copyrightInformation = $copyrightInformation; - $this->requirements = $requirements; - $this->bundledComponents = $bundledComponents; - } - public function getName() : ApplicationName - { - return $this->name; - } - public function getVersion() : Version - { - return $this->version; - } - public function getType() : Type - { - return $this->type; - } - public function getCopyrightInformation() : CopyrightInformation - { - return $this->copyrightInformation; - } - public function getRequirements() : RequirementCollection - { - return $this->requirements; - } - public function getBundledComponents() : BundledComponentCollection + /** + * @var Doubler + */ + private $doubler; + private $revealer; + private $util; + /** + * @var list> + */ + private $prophecies = array(); + public function __construct(Doubler $doubler = null, RevealerInterface $revealer = null, StringUtil $util = null) { - return $this->bundledComponents; + if (null === $doubler) { + $doubler = new CachedDoubler(); + $doubler->registerClassPatch(new ClassPatch\SplFileInfoPatch()); + $doubler->registerClassPatch(new ClassPatch\TraversablePatch()); + $doubler->registerClassPatch(new ClassPatch\ThrowablePatch()); + $doubler->registerClassPatch(new ClassPatch\DisableConstructorPatch()); + $doubler->registerClassPatch(new ClassPatch\ProphecySubjectPatch()); + $doubler->registerClassPatch(new ClassPatch\ReflectionClassNewInstancePatch()); + $doubler->registerClassPatch(new ClassPatch\MagicCallPatch()); + $doubler->registerClassPatch(new ClassPatch\KeywordPatch()); + } + $this->doubler = $doubler; + $this->revealer = $revealer ?: new Revealer(); + $this->util = $util ?: new StringUtil(); } - public function isApplication() : bool + /** + * Creates new object prophecy. + * + * @param null|string $classOrInterface Class or interface name + * + * @return ObjectProphecy + * + * @template T of object + * @phpstan-param class-string|null $classOrInterface + * @phpstan-return ($classOrInterface is null ? ObjectProphecy : ObjectProphecy) + */ + public function prophesize($classOrInterface = null) { - return $this->type->isApplication(); + $this->prophecies[] = $prophecy = new ObjectProphecy(new LazyDouble($this->doubler), new CallCenter($this->util), $this->revealer); + if ($classOrInterface) { + if (class_exists($classOrInterface)) { + return $prophecy->willExtend($classOrInterface); + } + if (interface_exists($classOrInterface)) { + return $prophecy->willImplement($classOrInterface); + } + throw new ClassNotFoundException(sprintf('Cannot prophesize class %s, because it cannot be found.', $classOrInterface), $classOrInterface); + } + return $prophecy; } - public function isLibrary() : bool + /** + * Returns all created object prophecies. + * + * @return list> + */ + public function getProphecies() { - return $this->type->isLibrary(); + return $this->prophecies; } - public function isExtension() : bool + /** + * Returns Doubler instance assigned to this Prophet. + * + * @return Doubler + */ + public function getDoubler() { - return $this->type->isExtension(); + return $this->doubler; } - public function isExtensionFor(ApplicationName $application, Version $version = null) : bool + /** + * Checks all predictions defined by prophecies of this Prophet. + * + * @return void + * + * @throws Exception\Prediction\AggregateException If any prediction fails + */ + public function checkPredictions() { - if (!$this->isExtension()) { - return \false; + $exception = new AggregateException("Some predictions failed:\n"); + foreach ($this->prophecies as $prophecy) { + try { + $prophecy->checkProphecyMethodsPredictions(); + } catch (PredictionException $e) { + $exception->append($e); + } } - /** @var Extension $type */ - $type = $this->type; - if ($version !== null) { - return $type->isCompatibleWith($application, $version); + if (count($exception->getExceptions())) { + throw $exception; } - return $type->isExtensionFor($application); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\PhpDocumentor; -class PhpExtensionRequirement implements Requirement +use PHPUnitPHAR\phpDocumentor\Reflection\DocBlock\Tags\Method; +/** + * @author Théo FIDRY + * + * @internal + */ +interface MethodTagRetrieverInterface { - /** @var string */ - private $extension; - public function __construct(string $extension) - { - $this->extension = $extension; - } - public function asString() : string - { - return $this->extension; - } + /** + * @param \ReflectionClass $reflectionClass + * + * @return list + */ + public function getTagList(\ReflectionClass $reflectionClass); } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\PhpDocumentor; -use PHPUnit\PharIo\Version\VersionConstraint; -class PhpVersionRequirement implements Requirement +use PHPUnitPHAR\phpDocumentor\Reflection\DocBlock\Tags\Method; +use PHPUnitPHAR\phpDocumentor\Reflection\DocBlockFactory; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\ContextFactory; +/** + * @author Théo FIDRY + * + * @internal + */ +final class ClassTagRetriever implements \Prophecy\PhpDocumentor\MethodTagRetrieverInterface { - /** @var VersionConstraint */ - private $versionConstraint; - public function __construct(VersionConstraint $versionConstraint) + private $docBlockFactory; + private $contextFactory; + public function __construct() { - $this->versionConstraint = $versionConstraint; + $this->docBlockFactory = DocBlockFactory::createInstance(); + $this->contextFactory = new ContextFactory(); } - public function getVersionConstraint() : VersionConstraint + public function getTagList(\ReflectionClass $reflectionClass) { - return $this->versionConstraint; + try { + $phpdoc = $this->docBlockFactory->create($reflectionClass, $this->contextFactory->createFromReflector($reflectionClass)); + $methods = array(); + foreach ($phpdoc->getTagsByName('method') as $tag) { + if ($tag instanceof Method) { + $methods[] = $tag; + } + } + return $methods; + } catch (\InvalidArgumentException $e) { + return array(); + } } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -interface Requirement -{ -} -, Sebastian Heuer , Sebastian Bergmann +use PHPUnitPHAR\phpDocumentor\Reflection\DocBlock\Tags\Method; +/** + * @author Théo FIDRY * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @internal */ -namespace PHPUnit\PharIo\Manifest; - -class RequirementCollection implements \Countable, \IteratorAggregate +final class ClassAndInterfaceTagRetriever implements \Prophecy\PhpDocumentor\MethodTagRetrieverInterface { - /** @var Requirement[] */ - private $requirements = []; - public function add(Requirement $requirement) : void - { - $this->requirements[] = $requirement; - } /** - * @return Requirement[] + * @var MethodTagRetrieverInterface */ - public function getRequirements() : array + private $classRetriever; + public function __construct(\Prophecy\PhpDocumentor\MethodTagRetrieverInterface $classRetriever = null) { - return $this->requirements; + if (null !== $classRetriever) { + $this->classRetriever = $classRetriever; + return; + } + $this->classRetriever = new \Prophecy\PhpDocumentor\ClassTagRetriever(); } - public function count() : int + public function getTagList(\ReflectionClass $reflectionClass) { - return \count($this->requirements); + return array_merge($this->classRetriever->getTagList($reflectionClass), $this->getInterfacesTagList($reflectionClass)); } - public function getIterator() : RequirementCollectionIterator + /** + * @param \ReflectionClass $reflectionClass + * + * @return list + */ + private function getInterfacesTagList(\ReflectionClass $reflectionClass) { - return new RequirementCollectionIterator($this); + $interfaces = $reflectionClass->getInterfaces(); + $tagList = array(); + foreach ($interfaces as $interface) { + $tagList = array_merge($tagList, $this->classRetriever->getTagList($interface)); + } + return $tagList; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Prediction; -class RequirementCollectionIterator implements \Iterator +use Prophecy\Call\Call; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Util\StringUtil; +use Prophecy\Exception\Prediction\UnexpectedCallsException; +/** + * Tests that there were no calls made. + * + * @author Konstantin Kudryashov + */ +class NoCallsPrediction implements \Prophecy\Prediction\PredictionInterface { - /** @var Requirement[] */ - private $requirements; - /** @var int */ - private $position = 0; - public function __construct(RequirementCollection $requirements) - { - $this->requirements = $requirements->getRequirements(); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < \count($this->requirements); - } - public function key() : int - { - return $this->position; - } - public function current() : Requirement + private $util; + public function __construct(StringUtil $util = null) { - return $this->requirements[$this->position]; + $this->util = $util ?: new StringUtil(); } - public function next() : void + public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) { - $this->position++; + if (!count($calls)) { + return; + } + $verb = count($calls) === 1 ? 'was' : 'were'; + throw new UnexpectedCallsException(sprintf("No calls expected that match:\n" . " %s->%s(%s)\n" . "but %d %s made:\n%s", get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), count($calls), $verb, $this->util->stringifyCalls($calls)), $method, $calls); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Prediction; -use PHPUnit\PharIo\Version\VersionConstraint; -abstract class Type +use Prophecy\Call\Call; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Exception\InvalidArgumentException; +use Closure; +use ReflectionFunction; +/** + * Executes preset callback. + * + * @author Konstantin Kudryashov + */ +class CallbackPrediction implements \Prophecy\Prediction\PredictionInterface { - public static function application() : Application - { - return new Application(); - } - public static function library() : Library - { - return new Library(); - } - public static function extension(ApplicationName $application, VersionConstraint $versionConstraint) : Extension - { - return new Extension($application, $versionConstraint); - } - /** @psalm-assert-if-true Application $this */ - public function isApplication() : bool - { - return \false; - } - /** @psalm-assert-if-true Library $this */ - public function isLibrary() : bool + private $callback; + /** + * @param callable $callback Custom callback + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function __construct($callback) { - return \false; + if (!is_callable($callback)) { + throw new InvalidArgumentException(sprintf('Callable expected as an argument to CallbackPrediction, but got %s.', gettype($callback))); + } + $this->callback = $callback; } - /** @psalm-assert-if-true Extension $this */ - public function isExtension() : bool + public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) { - return \false; + $callback = $this->callback; + if ($callback instanceof Closure && method_exists('Closure', 'bind') && (new ReflectionFunction($callback))->getClosureThis() !== null) { + $callback = Closure::bind($callback, $object) ?? $this->callback; + } + call_user_func($callback, $calls, $object, $method); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Prediction; -class Url +use Prophecy\Call\Call; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Argument\ArgumentsWildcard; +use Prophecy\Argument\Token\AnyValuesToken; +use Prophecy\Util\StringUtil; +use Prophecy\Exception\Prediction\NoCallsException; +/** + * Tests that there was at least one call. + * + * @author Konstantin Kudryashov + */ +class CallPrediction implements \Prophecy\Prediction\PredictionInterface { - /** @var string */ - private $url; - public function __construct(string $url) - { - $this->ensureUrlIsValid($url); - $this->url = $url; - } - public function asString() : string + private $util; + public function __construct(StringUtil $util = null) { - return $this->url; + $this->util = $util ?: new StringUtil(); } - /** - * @param string $url - * - * @throws InvalidUrlException - */ - private function ensureUrlIsValid($url) : void + public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) { - if (\filter_var($url, \FILTER_VALIDATE_URL) === \false) { - throw new InvalidUrlException(); + if (count($calls)) { + return; } + $methodCalls = $object->findProphecyMethodCalls($method->getMethodName(), new ArgumentsWildcard(array(new AnyValuesToken()))); + if (count($methodCalls)) { + throw new NoCallsException(sprintf("No calls have been made that match:\n" . " %s->%s(%s)\n" . "but expected at least one.\n" . "Recorded `%s(...)` calls:\n%s", get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), $method->getMethodName(), $this->util->stringifyCalls($methodCalls)), $method); + } + throw new NoCallsException(sprintf("No calls have been made that match:\n" . " %s->%s(%s)\n" . "but expected at least one.", get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard()), $method); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Prediction; -class AuthorElement extends ManifestElement +use Prophecy\Call\Call; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Argument\ArgumentsWildcard; +use Prophecy\Argument\Token\AnyValuesToken; +use Prophecy\Util\StringUtil; +use Prophecy\Exception\Prediction\UnexpectedCallsCountException; +/** + * Tests that there was exact amount of calls made. + * + * @author Konstantin Kudryashov + */ +class CallTimesPrediction implements \Prophecy\Prediction\PredictionInterface { - public function getName() : string + private $times; + private $util; + /** + * @param int $times + */ + public function __construct($times, StringUtil $util = null) { - return $this->getAttributeValue('name'); + $this->times = intval($times); + $this->util = $util ?: new StringUtil(); } - public function getEmail() : string + public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) { - return $this->getAttributeValue('email'); + if ($this->times == count($calls)) { + return; + } + $methodCalls = $object->findProphecyMethodCalls($method->getMethodName(), new ArgumentsWildcard(array(new AnyValuesToken()))); + if (count($calls)) { + $message = sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but %d were made:\n%s", $this->times, get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), count($calls), $this->util->stringifyCalls($calls)); + } elseif (count($methodCalls)) { + $message = sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but none were made.\n" . "Recorded `%s(...)` calls:\n%s", $this->times, get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), $method->getMethodName(), $this->util->stringifyCalls($methodCalls)); + } else { + $message = sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but none were made.", $this->times, get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard()); + } + throw new UnexpectedCallsCountException($message, $method, $this->times, $calls); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class AuthorElementCollection extends ElementCollection -{ - public function current() : AuthorElement - { - return new AuthorElement($this->getCurrentElement()); - } -} -, Sebastian Heuer , Sebastian Bergmann +use Prophecy\Call\Call; +use Prophecy\Exception\Prediction\PredictionException; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +/** + * Prediction interface. + * Predictions are logical test blocks, tied to `should...` keyword. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @author Konstantin Kudryashov */ -namespace PHPUnit\PharIo\Manifest; - -class BundlesElement extends ManifestElement +interface PredictionInterface { - public function getComponentElements() : ComponentElementCollection - { - return new ComponentElementCollection($this->getChildrenByName('component')); - } + /** + * Tests that double fulfilled prediction. + * + * @param Call[] $calls + * @param ObjectProphecy $object + * @param MethodProphecy $method + * + * @throws PredictionException + * @return void + */ + public function check(array $calls, ObjectProphecy $object, MethodProphecy $method); } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Call; -class ComponentElement extends ManifestElement +use Prophecy\Exception\Prophecy\MethodProphecyException; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Argument\ArgumentsWildcard; +use Prophecy\Util\StringUtil; +use Prophecy\Exception\Call\UnexpectedCallException; +use SplObjectStorage; +/** + * Calls receiver & manager. + * + * @author Konstantin Kudryashov + */ +class CallCenter { - public function getName() : string + private $util; + /** + * @var Call[] + */ + private $recordedCalls = array(); + /** + * @var SplObjectStorage> + */ + private $unexpectedCalls; + /** + * Initializes call center. + * + * @param StringUtil $util + */ + public function __construct(StringUtil $util = null) { - return $this->getAttributeValue('name'); + $this->util = $util ?: new StringUtil(); + $this->unexpectedCalls = new SplObjectStorage(); } - public function getVersion() : string + /** + * Makes and records specific method call for object prophecy. + * + * @param ObjectProphecy $prophecy + * @param string $methodName + * @param array $arguments + * + * @return mixed Returns null if no promise for prophecy found or promise return value. + * + * @throws \Prophecy\Exception\Call\UnexpectedCallException If no appropriate method prophecy found + */ + public function makeCall(ObjectProphecy $prophecy, $methodName, array $arguments) { - return $this->getAttributeValue('version'); + // For efficiency exclude 'args' from the generated backtrace + // Limit backtrace to last 3 calls as we don't use the rest + $backtrace = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 3); + $file = $line = null; + if (isset($backtrace[2]) && isset($backtrace[2]['file']) && isset($backtrace[2]['line'])) { + $file = $backtrace[2]['file']; + $line = $backtrace[2]['line']; + } + // If no method prophecies defined, then it's a dummy, so we'll just return null + if ('__destruct' === strtolower($methodName) || 0 == count($prophecy->getMethodProphecies())) { + $this->recordedCalls[] = new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line); + return null; + } + // There are method prophecies, so it's a fake/stub. Searching prophecy for this call + $matches = $this->findMethodProphecies($prophecy, $methodName, $arguments); + // If fake/stub doesn't have method prophecy for this call - throw exception + if (!count($matches)) { + $this->unexpectedCalls->attach(new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line), $prophecy); + $this->recordedCalls[] = new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line); + return null; + } + // Sort matches by their score value + @usort($matches, function ($match1, $match2) { + return $match2[0] - $match1[0]; + }); + $score = $matches[0][0]; + // If Highest rated method prophecy has a promise - execute it or return null instead + $methodProphecy = $matches[0][1]; + $returnValue = null; + $exception = null; + if ($promise = $methodProphecy->getPromise()) { + try { + $returnValue = $promise->execute($arguments, $prophecy, $methodProphecy); + } catch (\Exception $e) { + $exception = $e; + } + } + if ($methodProphecy->hasReturnVoid() && $returnValue !== null) { + throw new MethodProphecyException("The method \"{$methodName}\" has a void return type, but the promise returned a value", $methodProphecy); + } + $this->recordedCalls[] = $call = new \Prophecy\Call\Call($methodName, $arguments, $returnValue, $exception, $file, $line); + $call->addScore($methodProphecy->getArgumentsWildcard(), $score); + if (null !== $exception) { + throw $exception; + } + return $returnValue; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class ComponentElementCollection extends ElementCollection -{ - public function current() : ComponentElement + /** + * Searches for calls by method name & arguments wildcard. + * + * @param string $methodName + * @param ArgumentsWildcard $wildcard + * + * @return list + */ + public function findCalls($methodName, ArgumentsWildcard $wildcard) { - return new ComponentElement($this->getCurrentElement()); + $methodName = strtolower($methodName); + return array_values(array_filter($this->recordedCalls, function (\Prophecy\Call\Call $call) use ($methodName, $wildcard) { + return $methodName === strtolower($call->getMethodName()) && 0 < $call->getScore($wildcard); + })); } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class ContainsElement extends ManifestElement -{ - public function getName() : string + /** + * @return void + * @throws UnexpectedCallException + */ + public function checkUnexpectedCalls() { - return $this->getAttributeValue('name'); + foreach ($this->unexpectedCalls as $call) { + $prophecy = $this->unexpectedCalls[$call]; + // If fake/stub doesn't have method prophecy for this call - throw exception + if (!count($this->findMethodProphecies($prophecy, $call->getMethodName(), $call->getArguments()))) { + throw $this->createUnexpectedCallException($prophecy, $call->getMethodName(), $call->getArguments()); + } + } } - public function getVersion() : string + /** + * @param ObjectProphecy $prophecy + * @param string $methodName + * @param array $arguments + * + * @return UnexpectedCallException + */ + private function createUnexpectedCallException(ObjectProphecy $prophecy, $methodName, array $arguments) { - return $this->getAttributeValue('version'); + $classname = get_class($prophecy->reveal()); + $indentationLength = 8; + // looks good + $argstring = implode(",\n", $this->indentArguments(array_map(array($this->util, 'stringify'), $arguments), $indentationLength)); + $expected = array(); + foreach (array_merge(...array_values($prophecy->getMethodProphecies())) as $methodProphecy) { + $expected[] = sprintf(" - %s(\n" . "%s\n" . " )", $methodProphecy->getMethodName(), implode(",\n", $this->indentArguments(array_map('strval', $methodProphecy->getArgumentsWildcard()->getTokens()), $indentationLength))); + } + return new UnexpectedCallException(sprintf("Unexpected method call on %s:\n" . " - %s(\n" . "%s\n" . " )\n" . "expected calls were:\n" . "%s", $classname, $methodName, $argstring, implode("\n", $expected)), $prophecy, $methodName, $arguments); } - public function getType() : string + /** + * @param string[] $arguments + * @param int $indentationLength + * + * @return string[] + */ + private function indentArguments(array $arguments, $indentationLength) { - return $this->getAttributeValue('type'); + return preg_replace_callback('/^/m', function () use ($indentationLength) { + return str_repeat(' ', $indentationLength); + }, $arguments); } - public function getExtensionElement() : ExtensionElement + /** + * @param ObjectProphecy $prophecy + * @param string $methodName + * @param array $arguments + * + * @return array + * + * @phpstan-return list + */ + private function findMethodProphecies(ObjectProphecy $prophecy, $methodName, array $arguments) { - return new ExtensionElement($this->getChildByName('extension')); + $matches = array(); + foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { + if (0 < $score = $methodProphecy->getArgumentsWildcard()->scoreArguments($arguments)) { + $matches[] = array($score, $methodProphecy); + } + } + return $matches; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Call; -class CopyrightElement extends ManifestElement +use Exception; +use Prophecy\Argument\ArgumentsWildcard; +/** + * Call object. + * + * @author Konstantin Kudryashov + */ +class Call { - public function getAuthorElements() : AuthorElementCollection + private $methodName; + private $arguments; + private $returnValue; + private $exception; + /** + * @var string|null + */ + private $file; + /** + * @var int|null + */ + private $line; + /** + * @var \SplObjectStorage + */ + private $scores; + /** + * Initializes call. + * + * @param string $methodName + * @param array $arguments + * @param mixed $returnValue + * @param Exception|null $exception + * @param null|string $file + * @param null|int $line + */ + public function __construct($methodName, array $arguments, $returnValue, Exception $exception = null, $file, $line) { - return new AuthorElementCollection($this->getChildrenByName('author')); + $this->methodName = $methodName; + $this->arguments = $arguments; + $this->returnValue = $returnValue; + $this->exception = $exception; + $this->scores = new \SplObjectStorage(); + if ($file) { + $this->file = $file; + $this->line = intval($line); + } } - public function getLicenseElement() : LicenseElement + /** + * Returns called method name. + * + * @return string + */ + public function getMethodName() { - return new LicenseElement($this->getChildByName('license')); + return $this->methodName; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -use DOMElement; -use DOMNodeList; -abstract class ElementCollection implements \Iterator -{ - /** @var DOMElement[] */ - private $nodes = []; - /** @var int */ - private $position; - public function __construct(DOMNodeList $nodeList) + /** + * Returns called method arguments. + * + * @return array + */ + public function getArguments() { - $this->position = 0; - $this->importNodes($nodeList); + return $this->arguments; } - #[\ReturnTypeWillChange] - public abstract function current(); - public function next() : void + /** + * Returns called method return value. + * + * @return null|mixed + */ + public function getReturnValue() { - $this->position++; + return $this->returnValue; } - public function key() : int + /** + * Returns exception that call thrown. + * + * @return null|Exception + */ + public function getException() { - return $this->position; + return $this->exception; } - public function valid() : bool + /** + * Returns callee filename. + * + * @return string|null + */ + public function getFile() { - return $this->position < \count($this->nodes); + return $this->file; } - public function rewind() : void + /** + * Returns callee line number. + * + * @return int|null + */ + public function getLine() { - $this->position = 0; + return $this->line; } - protected function getCurrentElement() : DOMElement + /** + * Returns short notation for callee place. + * + * @return string + */ + public function getCallPlace() { - return $this->nodes[$this->position]; + if (null === $this->file) { + return 'unknown'; + } + return sprintf('%s:%d', $this->file, $this->line); } - private function importNodes(DOMNodeList $nodeList) : void + /** + * Adds the wildcard match score for the provided wildcard. + * + * @param ArgumentsWildcard $wildcard + * @param false|int $score + * + * @return $this + */ + public function addScore(ArgumentsWildcard $wildcard, $score) { - foreach ($nodeList as $node) { - if (!$node instanceof DOMElement) { - throw new ElementCollectionException(\sprintf('\\DOMElement expected, got \\%s', \get_class($node))); - } - $this->nodes[] = $node; - } + $this->scores[$wildcard] = $score; + return $this; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class ExtElement extends ManifestElement -{ - public function getName() : string + /** + * Returns wildcard match score for the provided wildcard. The score is + * calculated if not already done. + * + * @param ArgumentsWildcard $wildcard + * + * @return false|int False OR integer score (higher - better) + */ + public function getScore(ArgumentsWildcard $wildcard) { - return $this->getAttributeValue('name'); + if (isset($this->scores[$wildcard])) { + return $this->scores[$wildcard]; + } + return $this->scores[$wildcard] = $wildcard->scoreArguments($this->getArguments()); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class ExtElementCollection extends ElementCollection -{ - public function current() : ExtElement - { - return new ExtElement($this->getCurrentElement()); - } -} -, Sebastian Heuer , Sebastian Bergmann +/** + * Prophecies revealer interface. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @author Konstantin Kudryashov */ -namespace PHPUnit\PharIo\Manifest; - -class ExtensionElement extends ManifestElement +interface RevealerInterface { - public function getFor() : string - { - return $this->getAttributeValue('for'); - } - public function getCompatible() : string - { - return $this->getAttributeValue('compatible'); - } + /** + * Unwraps value(s). + * + * @param mixed $value + * + * @return mixed + */ + public function reveal($value); } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; - -class LicenseElement extends ManifestElement -{ - public function getType() : string - { - return $this->getAttributeValue('type'); - } - public function getUrl() : string - { - return $this->getAttributeValue('url'); - } -} -, Sebastian Heuer , Sebastian Bergmann +use Prophecy\Comparator\FactoryProvider; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory as ComparatorFactory; +use Prophecy\Call\Call; +use Prophecy\Doubler\LazyDouble; +use Prophecy\Argument\ArgumentsWildcard; +use Prophecy\Call\CallCenter; +use Prophecy\Exception\Prophecy\ObjectProphecyException; +use Prophecy\Exception\Prophecy\MethodProphecyException; +use Prophecy\Exception\Prediction\AggregateException; +use Prophecy\Exception\Prediction\PredictionException; +/** + * @author Konstantin Kudryashov * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @template-covariant T of object + * @template-implements ProphecyInterface */ -namespace PHPUnit\PharIo\Manifest; - -use DOMDocument; -use DOMElement; -class ManifestDocument +class ObjectProphecy implements \Prophecy\Prophecy\ProphecyInterface { - public const XMLNS = 'https://phar.io/xml/manifest/1.0'; - /** @var DOMDocument */ - private $dom; - public static function fromFile(string $filename) : ManifestDocument - { - if (!\file_exists($filename)) { - throw new ManifestDocumentException(\sprintf('File "%s" not found', $filename)); - } - return self::fromString(\file_get_contents($filename)); - } - public static function fromString(string $xmlString) : ManifestDocument - { - $prev = \libxml_use_internal_errors(\true); - \libxml_clear_errors(); - $dom = new DOMDocument(); - $dom->loadXML($xmlString); - $errors = \libxml_get_errors(); - \libxml_use_internal_errors($prev); - if (\count($errors) !== 0) { - throw new ManifestDocumentLoadingException($errors); - } - return new self($dom); - } - private function __construct(DOMDocument $dom) - { - $this->ensureCorrectDocumentType($dom); - $this->dom = $dom; - } - public function getContainsElement() : ContainsElement + /** + * @var LazyDouble + */ + private $lazyDouble; + private $callCenter; + private $revealer; + private $comparatorFactory; + /** + * @var array> + */ + private $methodProphecies = array(); + /** + * @param LazyDouble $lazyDouble + */ + public function __construct(LazyDouble $lazyDouble, CallCenter $callCenter = null, \Prophecy\Prophecy\RevealerInterface $revealer = null, ComparatorFactory $comparatorFactory = null) { - return new ContainsElement($this->fetchElementByName('contains')); + $this->lazyDouble = $lazyDouble; + $this->callCenter = $callCenter ?: new CallCenter(); + $this->revealer = $revealer ?: new \Prophecy\Prophecy\Revealer(); + $this->comparatorFactory = $comparatorFactory ?: FactoryProvider::getInstance(); } - public function getCopyrightElement() : CopyrightElement + /** + * Forces double to extend specific class. + * + * @param string $class + * + * @return $this + * + * @template U of object + * @phpstan-param class-string $class + * @phpstan-this-out static + */ + public function willExtend($class) { - return new CopyrightElement($this->fetchElementByName('copyright')); + $this->lazyDouble->setParentClass($class); + return $this; } - public function getRequiresElement() : RequiresElement + /** + * Forces double to implement specific interface. + * + * @param string $interface + * + * @return $this + * + * @template U of object + * @phpstan-param class-string $interface + * @phpstan-this-out static + */ + public function willImplement($interface) { - return new RequiresElement($this->fetchElementByName('requires')); + $this->lazyDouble->addInterface($interface); + return $this; } - public function hasBundlesElement() : bool + /** + * Sets constructor arguments. + * + * @param array $arguments + * + * @return $this + */ + public function willBeConstructedWith(array $arguments = null) { - return $this->dom->getElementsByTagNameNS(self::XMLNS, 'bundles')->length === 1; + $this->lazyDouble->setArguments($arguments); + return $this; } - public function getBundlesElement() : BundlesElement + /** + * Reveals double. + * + * @return object + * + * @throws \Prophecy\Exception\Prophecy\ObjectProphecyException If double doesn't implement needed interface + * + * @phpstan-return T + */ + public function reveal() { - return new BundlesElement($this->fetchElementByName('bundles')); + $double = $this->lazyDouble->getInstance(); + if (!$double instanceof \Prophecy\Prophecy\ProphecySubjectInterface) { + throw new ObjectProphecyException("Generated double must implement ProphecySubjectInterface, but it does not.\n" . 'It seems you have wrongly configured doubler without required ClassPatch.', $this); + } + $double->setProphecy($this); + return $double; } - private function ensureCorrectDocumentType(DOMDocument $dom) : void + /** + * Adds method prophecy to object prophecy. + * + * @param MethodProphecy $methodProphecy + * + * @return void + */ + public function addMethodProphecy(\Prophecy\Prophecy\MethodProphecy $methodProphecy) { - $root = $dom->documentElement; - if ($root->localName !== 'phar' || $root->namespaceURI !== self::XMLNS) { - throw new ManifestDocumentException('Not a phar.io manifest document'); + $methodName = strtolower($methodProphecy->getMethodName()); + if (!isset($this->methodProphecies[$methodName])) { + $this->methodProphecies[$methodName] = array(); } + $this->methodProphecies[$methodName][] = $methodProphecy; } - private function fetchElementByName(string $elementName) : DOMElement + /** + * Returns either all or related to single method prophecies. + * + * @param null|string $methodName + * + * @return MethodProphecy[]|array + * + * @phpstan-return ($methodName is string ? list : array>) + */ + public function getMethodProphecies($methodName = null) { - $element = $this->dom->getElementsByTagNameNS(self::XMLNS, $elementName)->item(0); - if (!$element instanceof DOMElement) { - throw new ManifestDocumentException(\sprintf('Element %s missing', $elementName)); + if (null === $methodName) { + return $this->methodProphecies; } - return $element; + $methodName = strtolower($methodName); + if (!isset($this->methodProphecies[$methodName])) { + return array(); + } + return $this->methodProphecies[$methodName]; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -use DOMElement; -use DOMNodeList; -class ManifestElement -{ - public const XMLNS = 'https://phar.io/xml/manifest/1.0'; - /** @var DOMElement */ - private $element; - public function __construct(DOMElement $element) + /** + * Makes specific method call. + * + * @param string $methodName + * @param array $arguments + * + * @return mixed + */ + public function makeProphecyMethodCall($methodName, array $arguments) { - $this->element = $element; + $arguments = $this->revealer->reveal($arguments); + \assert(\is_array($arguments)); + $return = $this->callCenter->makeCall($this, $methodName, $arguments); + return $this->revealer->reveal($return); } - protected function getAttributeValue(string $name) : string + /** + * Finds calls by method name & arguments wildcard. + * + * @param string $methodName + * @param ArgumentsWildcard $wildcard + * + * @return list + */ + public function findProphecyMethodCalls($methodName, ArgumentsWildcard $wildcard) { - if (!$this->element->hasAttribute($name)) { - throw new ManifestElementException(\sprintf('Attribute %s not set on element %s', $name, $this->element->localName)); - } - return $this->element->getAttribute($name); + return $this->callCenter->findCalls($methodName, $wildcard); } - protected function getChildByName(string $elementName) : DOMElement + /** + * Checks that registered method predictions do not fail. + * + * @return void + * + * @throws \Prophecy\Exception\Prediction\AggregateException If any of registered predictions fail + * @throws \Prophecy\Exception\Call\UnexpectedCallException + */ + public function checkProphecyMethodsPredictions() { - $element = $this->element->getElementsByTagNameNS(self::XMLNS, $elementName)->item(0); - if (!$element instanceof DOMElement) { - throw new ManifestElementException(\sprintf('Element %s missing', $elementName)); + $exception = new AggregateException(sprintf("%s:\n", get_class($this->reveal()))); + $exception->setObjectProphecy($this); + $this->callCenter->checkUnexpectedCalls(); + foreach ($this->methodProphecies as $prophecies) { + foreach ($prophecies as $prophecy) { + try { + $prophecy->checkPrediction(); + } catch (PredictionException $e) { + $exception->append($e); + } + } } - return $element; - } - protected function getChildrenByName(string $elementName) : DOMNodeList - { - $elementList = $this->element->getElementsByTagNameNS(self::XMLNS, $elementName); - if ($elementList->length === 0) { - throw new ManifestElementException(\sprintf('Element(s) %s missing', $elementName)); + if (count($exception->getExceptions())) { + throw $exception; } - return $elementList; - } - protected function hasChild(string $elementName) : bool - { - return $this->element->getElementsByTagNameNS(self::XMLNS, $elementName)->length !== 0; } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Manifest; - -class PhpElement extends ManifestElement -{ - public function getVersion() : string + /** + * Creates new method prophecy using specified method name and arguments. + * + * @param string $methodName + * @param array $arguments + * + * @return MethodProphecy + */ + public function __call($methodName, array $arguments) { - return $this->getAttributeValue('version'); + $arguments = $this->revealer->reveal($arguments); + \assert(\is_array($arguments)); + $arguments = new ArgumentsWildcard($arguments); + foreach ($this->getMethodProphecies($methodName) as $prophecy) { + $argumentsWildcard = $prophecy->getArgumentsWildcard(); + $comparator = $this->comparatorFactory->getComparatorFor($argumentsWildcard, $arguments); + try { + $comparator->assertEquals($argumentsWildcard, $arguments); + return $prophecy; + } catch (ComparisonFailure $failure) { + } + } + return new \Prophecy\Prophecy\MethodProphecy($this, $methodName, $arguments); } - public function hasExtElements() : bool + /** + * Tries to get property value from double. + * + * @param string $name + * + * @return mixed + */ + public function __get($name) { - return $this->hasChild('ext'); + return $this->reveal()->{$name}; } - public function getExtElements() : ExtElementCollection + /** + * Tries to set property value to double. + * + * @param string $name + * @param mixed $value + * + * @return void + */ + public function __set($name, $value) { - return new ExtElementCollection($this->getChildrenByName('ext')); + $this->reveal()->{$name} = $this->revealer->reveal($value); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Manifest; +namespace Prophecy\Prophecy; -class RequiresElement extends ManifestElement +/** + * Controllable doubles interface. + * + * @author Konstantin Kudryashov + */ +interface ProphecySubjectInterface { - public function getPHPElement() : PhpElement - { - return new PhpElement($this->getChildByName('php')); - } + /** + * Sets subject prophecy. + * + * @param ProphecyInterface $prophecy + * + * @return void + */ + public function setProphecy(\Prophecy\Prophecy\ProphecyInterface $prophecy); + /** + * Returns subject prophecy. + * + * @return ProphecyInterface + */ + public function getProphecy(); } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Prophecy; -class BuildMetaData +/** + * Basic prophecies revealer. + * + * @author Konstantin Kudryashov + */ +class Revealer implements \Prophecy\Prophecy\RevealerInterface { - /** @var string */ - private $value; - public function __construct(string $value) - { - $this->value = $value; - } - public function asString() : string - { - return $this->value; - } - public function equals(BuildMetaData $other) : bool + /** + * Unwraps value(s). + * + * @param mixed $value + * + * @return mixed + */ + public function reveal($value) { - return $this->asString() === $other->asString(); + if (is_array($value)) { + return array_map(array($this, __FUNCTION__), $value); + } + if (!is_object($value)) { + return $value; + } + if ($value instanceof \Prophecy\Prophecy\ProphecyInterface) { + $value = $value->reveal(); + } + return $value; } } -Copyright (c) 2016-2017 Arne Blankerts , Sebastian Heuer and contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holder nor the names of contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Prophecy; -class PreReleaseSuffix +use Prophecy\Argument; +use Prophecy\Exception\Prediction\PredictionException; +use Prophecy\Prophet; +use Prophecy\Promise; +use Prophecy\Prediction; +use Prophecy\Exception\Doubler\MethodNotFoundException; +use Prophecy\Exception\InvalidArgumentException; +use Prophecy\Exception\Prophecy\MethodProphecyException; +use ReflectionNamedType; +use ReflectionUnionType; +/** + * Method prophecy. + * + * @author Konstantin Kudryashov + */ +class MethodProphecy { - private const valueScoreMap = ['dev' => 0, 'a' => 1, 'alpha' => 1, 'b' => 2, 'beta' => 2, 'rc' => 3, 'p' => 4, 'pl' => 4, 'patch' => 4]; - /** @var string */ - private $value; - /** @var int */ - private $valueScore; - /** @var int */ - private $number = 0; - /** @var string */ - private $full; + private $objectProphecy; + private $methodName; /** - * @throws InvalidPreReleaseSuffixException + * @var Argument\ArgumentsWildcard */ - public function __construct(string $value) + private $argumentsWildcard; + /** + * @var Promise\PromiseInterface|null + */ + private $promise; + /** + * @var Prediction\PredictionInterface|null + */ + private $prediction; + /** + * @var list + */ + private $checkedPredictions = array(); + /** + * @var bool + */ + private $bound = \false; + /** + * @var bool + */ + private $voidReturnType = \false; + /** + * @param ObjectProphecy $objectProphecy + * @param string $methodName + * @param Argument\ArgumentsWildcard|array $arguments + * + * @throws \Prophecy\Exception\Doubler\MethodNotFoundException If method not found + * + * @internal + */ + public function __construct(\Prophecy\Prophecy\ObjectProphecy $objectProphecy, $methodName, $arguments) { - $this->parseValue($value); + $double = $objectProphecy->reveal(); + if (!method_exists($double, $methodName)) { + throw new MethodNotFoundException(sprintf('Method `%s::%s()` is not defined.', get_class($double), $methodName), get_class($double), $methodName, $arguments); + } + $this->objectProphecy = $objectProphecy; + $this->methodName = $methodName; + $reflectedMethod = new \ReflectionMethod($double, $methodName); + if ($reflectedMethod->isFinal()) { + throw new MethodProphecyException(sprintf("Can not add prophecy for a method `%s::%s()`\n" . "as it is a final method.", get_class($double), $methodName), $this); + } + $this->withArguments($arguments); + $hasTentativeReturnType = method_exists($reflectedMethod, 'hasTentativeReturnType') && $reflectedMethod->hasTentativeReturnType(); + if (\true === $reflectedMethod->hasReturnType() || $hasTentativeReturnType) { + if ($hasTentativeReturnType) { + $reflectionType = $reflectedMethod->getTentativeReturnType(); + } else { + $reflectionType = $reflectedMethod->getReturnType(); + } + if ($reflectionType instanceof ReflectionNamedType) { + $types = [$reflectionType]; + } elseif ($reflectionType instanceof ReflectionUnionType) { + $types = $reflectionType->getTypes(); + } else { + throw new MethodProphecyException(sprintf("Can not add prophecy for a method `%s::%s()`\nas its return type is not supported by Prophecy yet.", get_class($double), $methodName), $this); + } + $types = array_map(function (ReflectionNamedType $type) { + return $type->getName(); + }, $types); + usort($types, static function (string $type1, string $type2) { + // null is lowest priority + if ($type2 == 'null') { + return -1; + } elseif ($type1 == 'null') { + return 1; + } + // objects are higher priority than scalars + $isObject = static function ($type) { + return class_exists($type) || interface_exists($type); + }; + if ($isObject($type1) && !$isObject($type2)) { + return -1; + } elseif (!$isObject($type1) && $isObject($type2)) { + return 1; + } + // don't sort both-scalars or both-objects + return 0; + }); + $defaultType = $types[0]; + if ('void' === $defaultType) { + $this->voidReturnType = \true; + } + $this->will(function ($args, \Prophecy\Prophecy\ObjectProphecy $object, \Prophecy\Prophecy\MethodProphecy $method) use ($defaultType) { + switch ($defaultType) { + case 'void': + return; + case 'string': + return ''; + case 'float': + return 0.0; + case 'int': + return 0; + case 'bool': + return \false; + case 'array': + return array(); + case 'true': + return \true; + case 'false': + return \false; + case 'null': + return null; + case 'callable': + case 'Closure': + return function () { + }; + case 'Traversable': + case 'Generator': + return (function () { + yield; + })(); + case 'object': + $prophet = new Prophet(); + return $prophet->prophesize()->reveal(); + default: + if (!class_exists($defaultType) && !interface_exists($defaultType)) { + throw new MethodProphecyException(sprintf('Cannot create a return value for the method as the type "%s" is not supported. Configure an explicit return value instead.', $defaultType), $method); + } + $prophet = new Prophet(); + return $prophet->prophesize($defaultType)->reveal(); + } + }); + } } - public function asString() : string + /** + * Sets argument wildcard. + * + * @param array|Argument\ArgumentsWildcard $arguments + * + * @return $this + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function withArguments($arguments) { - return $this->full; + if (is_array($arguments)) { + $arguments = new Argument\ArgumentsWildcard($arguments); + } + if (!$arguments instanceof Argument\ArgumentsWildcard) { + throw new InvalidArgumentException(sprintf("Either an array or an instance of ArgumentsWildcard expected as\n" . 'a `MethodProphecy::withArguments()` argument, but got %s.', gettype($arguments))); + } + $this->argumentsWildcard = $arguments; + return $this; } - public function getValue() : string + /** + * Sets custom promise to the prophecy. + * + * @param callable|Promise\PromiseInterface $promise + * + * @return $this + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function will($promise) { - return $this->value; + if (is_callable($promise)) { + $promise = new Promise\CallbackPromise($promise); + } + if (!$promise instanceof Promise\PromiseInterface) { + throw new InvalidArgumentException(sprintf('Expected callable or instance of PromiseInterface, but got %s.', gettype($promise))); + } + $this->bindToObjectProphecy(); + $this->promise = $promise; + return $this; } - public function getNumber() : ?int + /** + * Sets return promise to the prophecy. + * + * @see \Prophecy\Promise\ReturnPromise + * + * @param mixed ...$return a list of return values + * + * @return $this + */ + public function willReturn(...$return) { - return $this->number; + if ($this->voidReturnType) { + throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type, and so cannot return anything", $this); + } + return $this->will(new Promise\ReturnPromise($return)); } - public function isGreaterThan(PreReleaseSuffix $suffix) : bool + /** + * @param array $items + * @param mixed $return + * + * @return $this + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function willYield($items, $return = null) { - if ($this->valueScore > $suffix->valueScore) { - return \true; + if ($this->voidReturnType) { + throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type, and so cannot yield anything", $this); } - if ($this->valueScore < $suffix->valueScore) { - return \false; + if (!is_array($items)) { + throw new InvalidArgumentException(sprintf('Expected array, but got %s.', gettype($items))); } - return $this->getNumber() > $suffix->getNumber(); - } - private function mapValueToScore(string $value) : int - { - $value = \strtolower($value); - return self::valueScoreMap[$value]; + $generator = function () use ($items, $return) { + yield from $items; + return $return; + }; + return $this->will($generator); } - private function parseValue(string $value) : void + /** + * Sets return argument promise to the prophecy. + * + * @param int $index The zero-indexed number of the argument to return + * + * @see \Prophecy\Promise\ReturnArgumentPromise + * + * @return $this + */ + public function willReturnArgument($index = 0) { - $regex = '/-?((dev|beta|b|rc|alpha|a|patch|p|pl)\\.?(\\d*)).*$/i'; - if (\preg_match($regex, $value, $matches) !== 1) { - throw new InvalidPreReleaseSuffixException(\sprintf('Invalid label %s', $value)); - } - $this->full = $matches[1]; - $this->value = $matches[2]; - if ($matches[3] !== '') { - $this->number = (int) $matches[3]; + if ($this->voidReturnType) { + throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type", $this); } - $this->valueScore = $this->mapValueToScore($matches[2]); + return $this->will(new Promise\ReturnArgumentPromise($index)); } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Version; - -class Version -{ - /** @var string */ - private $originalVersionString; - /** @var VersionNumber */ - private $major; - /** @var VersionNumber */ - private $minor; - /** @var VersionNumber */ - private $patch; - /** @var null|PreReleaseSuffix */ - private $preReleaseSuffix; - /** @var null|BuildMetaData */ - private $buildMetadata; - public function __construct(string $versionString) + /** + * Sets throw promise to the prophecy. + * + * @see \Prophecy\Promise\ThrowPromise + * + * @param string|\Throwable $exception Exception class or instance + * + * @return $this + * + * @phpstan-param class-string<\Throwable>|\Throwable $exception + */ + public function willThrow($exception) { - $this->ensureVersionStringIsValid($versionString); - $this->originalVersionString = $versionString; + return $this->will(new Promise\ThrowPromise($exception)); } /** - * @throws NoPreReleaseSuffixException + * Sets custom prediction to the prophecy. + * + * @param callable|Prediction\PredictionInterface $prediction + * + * @return $this + * + * @throws \Prophecy\Exception\InvalidArgumentException */ - public function getPreReleaseSuffix() : PreReleaseSuffix + public function should($prediction) { - if ($this->preReleaseSuffix === null) { - throw new NoPreReleaseSuffixException('No pre-release suffix set'); + if (is_callable($prediction)) { + $prediction = new Prediction\CallbackPrediction($prediction); } - return $this->preReleaseSuffix; + if (!$prediction instanceof Prediction\PredictionInterface) { + throw new InvalidArgumentException(sprintf('Expected callable or instance of PredictionInterface, but got %s.', gettype($prediction))); + } + $this->bindToObjectProphecy(); + $this->prediction = $prediction; + return $this; } - public function getOriginalString() : string + /** + * Sets call prediction to the prophecy. + * + * @see \Prophecy\Prediction\CallPrediction + * + * @return $this + */ + public function shouldBeCalled() { - return $this->originalVersionString; + return $this->should(new Prediction\CallPrediction()); } - public function getVersionString() : string + /** + * Sets no calls prediction to the prophecy. + * + * @see \Prophecy\Prediction\NoCallsPrediction + * + * @return $this + */ + public function shouldNotBeCalled() { - $str = \sprintf('%d.%d.%d', $this->getMajor()->getValue() ?? 0, $this->getMinor()->getValue() ?? 0, $this->getPatch()->getValue() ?? 0); - if (!$this->hasPreReleaseSuffix()) { - return $str; - } - return $str . '-' . $this->getPreReleaseSuffix()->asString(); + return $this->should(new Prediction\NoCallsPrediction()); } - public function hasPreReleaseSuffix() : bool + /** + * Sets call times prediction to the prophecy. + * + * @see \Prophecy\Prediction\CallTimesPrediction + * + * @param int $count + * + * @return $this + */ + public function shouldBeCalledTimes($count) { - return $this->preReleaseSuffix !== null; + return $this->should(new Prediction\CallTimesPrediction($count)); } - public function equals(Version $other) : bool + /** + * Sets call times prediction to the prophecy. + * + * @see \Prophecy\Prediction\CallTimesPrediction + * + * @return $this + */ + public function shouldBeCalledOnce() { - if ($this->getVersionString() !== $other->getVersionString()) { - return \false; - } - if ($this->hasBuildMetaData() !== $other->hasBuildMetaData()) { - return \false; - } - if ($this->hasBuildMetaData() && $other->hasBuildMetaData() && !$this->getBuildMetaData()->equals($other->getBuildMetaData())) { - return \false; - } - return \true; + return $this->shouldBeCalledTimes(1); } - public function isGreaterThan(Version $version) : bool + /** + * Checks provided prediction immediately. + * + * @param callable|Prediction\PredictionInterface $prediction + * + * @return $this + * + * @throws \Prophecy\Exception\InvalidArgumentException + * @throws PredictionException + */ + public function shouldHave($prediction) { - if ($version->getMajor()->getValue() > $this->getMajor()->getValue()) { - return \false; - } - if ($version->getMajor()->getValue() < $this->getMajor()->getValue()) { - return \true; - } - if ($version->getMinor()->getValue() > $this->getMinor()->getValue()) { - return \false; - } - if ($version->getMinor()->getValue() < $this->getMinor()->getValue()) { - return \true; - } - if ($version->getPatch()->getValue() > $this->getPatch()->getValue()) { - return \false; - } - if ($version->getPatch()->getValue() < $this->getPatch()->getValue()) { - return \true; + if (is_callable($prediction)) { + $prediction = new Prediction\CallbackPrediction($prediction); } - if (!$version->hasPreReleaseSuffix() && !$this->hasPreReleaseSuffix()) { - return \false; + if (!$prediction instanceof Prediction\PredictionInterface) { + throw new InvalidArgumentException(sprintf('Expected callable or instance of PredictionInterface, but got %s.', gettype($prediction))); } - if ($version->hasPreReleaseSuffix() && !$this->hasPreReleaseSuffix()) { - return \true; + if (null === $this->promise && !$this->voidReturnType) { + $this->willReturn(); } - if (!$version->hasPreReleaseSuffix() && $this->hasPreReleaseSuffix()) { - return \false; + $calls = $this->getObjectProphecy()->findProphecyMethodCalls($this->getMethodName(), $this->getArgumentsWildcard()); + try { + $prediction->check($calls, $this->getObjectProphecy(), $this); + $this->checkedPredictions[] = $prediction; + } catch (\Exception $e) { + $this->checkedPredictions[] = $prediction; + throw $e; } - return $this->getPreReleaseSuffix()->isGreaterThan($version->getPreReleaseSuffix()); - } - public function getMajor() : VersionNumber - { - return $this->major; + return $this; } - public function getMinor() : VersionNumber + /** + * Checks call prediction. + * + * @see \Prophecy\Prediction\CallPrediction + * + * @return $this + * + * @throws PredictionException + */ + public function shouldHaveBeenCalled() { - return $this->minor; + return $this->shouldHave(new Prediction\CallPrediction()); } - public function getPatch() : VersionNumber + /** + * Checks no calls prediction. + * + * @see \Prophecy\Prediction\NoCallsPrediction + * + * @return $this + * + * @throws PredictionException + */ + public function shouldNotHaveBeenCalled() { - return $this->patch; + return $this->shouldHave(new Prediction\NoCallsPrediction()); } /** - * @psalm-assert-if-true BuildMetaData $this->buildMetadata - * @psalm-assert-if-true BuildMetaData $this->getBuildMetaData() + * Checks no calls prediction. + * + * @see \Prophecy\Prediction\NoCallsPrediction + * @deprecated + * + * @return $this */ - public function hasBuildMetaData() : bool + public function shouldNotBeenCalled() { - return $this->buildMetadata !== null; + return $this->shouldNotHaveBeenCalled(); } /** - * @throws NoBuildMetaDataException + * Checks call times prediction. + * + * @see \Prophecy\Prediction\CallTimesPrediction + * + * @param int $count + * + * @return $this */ - public function getBuildMetaData() : BuildMetaData + public function shouldHaveBeenCalledTimes($count) { - if (!$this->hasBuildMetaData()) { - throw new NoBuildMetaDataException('No build metadata set'); - } - return $this->buildMetadata; + return $this->shouldHave(new Prediction\CallTimesPrediction($count)); } /** - * @param string[] $matches + * Checks call times prediction. * - * @throws InvalidPreReleaseSuffixException + * @see \Prophecy\Prediction\CallTimesPrediction + * + * @return $this */ - private function parseVersion(array $matches) : void + public function shouldHaveBeenCalledOnce() { - $this->major = new VersionNumber((int) $matches['Major']); - $this->minor = new VersionNumber((int) $matches['Minor']); - $this->patch = isset($matches['Patch']) ? new VersionNumber((int) $matches['Patch']) : new VersionNumber(0); - if (isset($matches['PreReleaseSuffix']) && $matches['PreReleaseSuffix'] !== '') { - $this->preReleaseSuffix = new PreReleaseSuffix($matches['PreReleaseSuffix']); - } - if (isset($matches['BuildMetadata'])) { - $this->buildMetadata = new BuildMetaData($matches['BuildMetadata']); - } + return $this->shouldHaveBeenCalledTimes(1); } /** - * @param string $version + * Checks currently registered [with should(...)] prediction. * - * @throws InvalidVersionException + * @return void + * + * @throws PredictionException */ - private function ensureVersionStringIsValid($version) : void + public function checkPrediction() { - $regex = '/^v? - (?P0|[1-9]\\d*) - \\. - (?P0|[1-9]\\d*) - (\\. - (?P0|[1-9]\\d*) - )? - (?: - - - (?(?:(dev|beta|b|rc|alpha|a|patch|p|pl)\\.?\\d*)) - )? - (?: - \\+ - (?P[0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-@]+)*) - )? - $/xi'; - if (\preg_match($regex, $version, $matches) !== 1) { - throw new InvalidVersionException(\sprintf("Version string '%s' does not follow SemVer semantics", $version)); + if (null === $this->prediction) { + return; } - $this->parseVersion($matches); + $this->shouldHave($this->prediction); } -} -, Sebastian Heuer , Sebastian Bergmann - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\PharIo\Version; - -class VersionConstraintParser -{ /** - * @throws UnsupportedVersionConstraintException + * Returns currently registered promise. + * + * @return null|Promise\PromiseInterface */ - public function parse(string $value) : VersionConstraint - { - if (\strpos($value, '|') !== \false) { - return $this->handleOrGroup($value); - } - if (!\preg_match('/^[\\^~*]?v?[\\d.*]+(?:-.*)?$/i', $value)) { - throw new UnsupportedVersionConstraintException(\sprintf('Version constraint %s is not supported.', $value)); - } - switch ($value[0]) { - case '~': - return $this->handleTildeOperator($value); - case '^': - return $this->handleCaretOperator($value); - } - $constraint = new VersionConstraintValue($value); - if ($constraint->getMajor()->isAny()) { - return new AnyVersionConstraint(); - } - if ($constraint->getMinor()->isAny()) { - return new SpecificMajorVersionConstraint($constraint->getVersionString(), $constraint->getMajor()->getValue() ?? 0); - } - if ($constraint->getPatch()->isAny()) { - return new SpecificMajorAndMinorVersionConstraint($constraint->getVersionString(), $constraint->getMajor()->getValue() ?? 0, $constraint->getMinor()->getValue() ?? 0); - } - return new ExactVersionConstraint($constraint->getVersionString()); - } - private function handleOrGroup(string $value) : OrVersionConstraintGroup - { - $constraints = []; - foreach (\preg_split('{\\s*\\|\\|?\\s*}', \trim($value)) as $groupSegment) { - $constraints[] = $this->parse(\trim($groupSegment)); - } - return new OrVersionConstraintGroup($value, $constraints); - } - private function handleTildeOperator(string $value) : AndVersionConstraintGroup - { - $constraintValue = new VersionConstraintValue(\substr($value, 1)); - if ($constraintValue->getPatch()->isAny()) { - return $this->handleCaretOperator($value); - } - $constraints = [new GreaterThanOrEqualToVersionConstraint($value, new Version(\substr($value, 1))), new SpecificMajorAndMinorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0, $constraintValue->getMinor()->getValue() ?? 0)]; - return new AndVersionConstraintGroup($value, $constraints); - } - private function handleCaretOperator(string $value) : AndVersionConstraintGroup - { - $constraintValue = new VersionConstraintValue(\substr($value, 1)); - $constraints = [new GreaterThanOrEqualToVersionConstraint($value, new Version(\substr($value, 1)))]; - if ($constraintValue->getMajor()->getValue() === 0) { - $constraints[] = new SpecificMajorAndMinorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0, $constraintValue->getMinor()->getValue() ?? 0); - } else { - $constraints[] = new SpecificMajorVersionConstraint($value, $constraintValue->getMajor()->getValue() ?? 0); - } - return new AndVersionConstraintGroup($value, $constraints); - } -} -versionString = $versionString; - $this->parseVersion($versionString); - } - public function getLabel() : string - { - return $this->label; - } - public function getBuildMetaData() : string - { - return $this->buildMetaData; - } - public function getVersionString() : string + public function getPromise() { - return $this->versionString; + return $this->promise; } - public function getMajor() : VersionNumber + /** + * Returns currently registered prediction. + * + * @return null|Prediction\PredictionInterface + */ + public function getPrediction() { - return $this->major; + return $this->prediction; } - public function getMinor() : VersionNumber + /** + * Returns predictions that were checked on this object. + * + * @return list + */ + public function getCheckedPredictions() { - return $this->minor; + return $this->checkedPredictions; } - public function getPatch() : VersionNumber + /** + * Returns object prophecy this method prophecy is tied to. + * + * @return ObjectProphecy + */ + public function getObjectProphecy() { - return $this->patch; + return $this->objectProphecy; } - private function parseVersion(string $versionString) : void + /** + * Returns method name. + * + * @return string + */ + public function getMethodName() { - $this->extractBuildMetaData($versionString); - $this->extractLabel($versionString); - $this->stripPotentialVPrefix($versionString); - $versionSegments = \explode('.', $versionString); - $this->major = new VersionNumber(\is_numeric($versionSegments[0]) ? (int) $versionSegments[0] : null); - $minorValue = isset($versionSegments[1]) && \is_numeric($versionSegments[1]) ? (int) $versionSegments[1] : null; - $patchValue = isset($versionSegments[2]) && \is_numeric($versionSegments[2]) ? (int) $versionSegments[2] : null; - $this->minor = new VersionNumber($minorValue); - $this->patch = new VersionNumber($patchValue); + return $this->methodName; } - private function extractBuildMetaData(string &$versionString) : void + /** + * Returns arguments wildcard. + * + * @return Argument\ArgumentsWildcard + */ + public function getArgumentsWildcard() { - if (\preg_match('/\\+(.*)/', $versionString, $matches) === 1) { - $this->buildMetaData = $matches[1]; - $versionString = \str_replace($matches[0], '', $versionString); - } + return $this->argumentsWildcard; } - private function extractLabel(string &$versionString) : void + /** + * @return bool + */ + public function hasReturnVoid() { - if (\preg_match('/-(.*)/', $versionString, $matches) === 1) { - $this->label = $matches[1]; - $versionString = \str_replace($matches[0], '', $versionString); - } + return $this->voidReturnType; } - private function stripPotentialVPrefix(string &$versionString) : void + /** + * @return void + */ + private function bindToObjectProphecy() { - if ($versionString[0] !== 'v') { + if ($this->bound) { return; } - $versionString = \substr($versionString, 1); + $this->getObjectProphecy()->addMethodProphecy($this); + $this->bound = \true; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Prophecy; -class VersionNumber +/** + * Core Prophecy interface. + * + * @author Konstantin Kudryashov + * + * @template-covariant T of object + */ +interface ProphecyInterface { - /** @var ?int */ - private $value; - public function __construct(?int $value) - { - $this->value = $value; - } - public function isAny() : bool - { - return $this->value === null; - } - public function getValue() : ?int - { - return $this->value; - } + /** + * Reveals prophecy object (double) . + * + * @return object + * + * @phpstan-return T + */ + public function reveal(); } + * Marcello Duarte * - * (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Promise; + +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +/** + * Promise interface. + * Promises are logical blocks, tied to `will...` keyword. + * + * @author Konstantin Kudryashov + */ +interface PromiseInterface +{ + /** + * Evaluates promise. + * + * @param array $args + * @param ObjectProphecy $object + * @param MethodProphecy $method + * + * @return mixed + */ + public function execute(array $args, ObjectProphecy $object, MethodProphecy $method); +} + + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Promise; -abstract class AbstractVersionConstraint implements VersionConstraint +use Prophecy\Exception\InvalidArgumentException; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +/** + * Returns nth argument if has one, null otherwise. + * + * @author Konstantin Kudryashov + */ +class ReturnArgumentPromise implements \Prophecy\Promise\PromiseInterface { - /** @var string */ - private $originalValue; - public function __construct(string $originalValue) + /** + * @var int + */ + private $index; + /** + * Initializes callback promise. + * + * @param int $index The zero-indexed number of the argument to return + * + * @throws \Prophecy\Exception\InvalidArgumentException + */ + public function __construct($index = 0) { - $this->originalValue = $originalValue; + if (!is_int($index) || $index < 0) { + throw new InvalidArgumentException(sprintf('Zero-based index expected as argument to ReturnArgumentPromise, but got %s.', $index)); + } + $this->index = $index; } - public function asString() : string + public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) { - return $this->originalValue; + return count($args) > $this->index ? $args[$this->index] : null; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Promise; -class AndVersionConstraintGroup extends AbstractVersionConstraint +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Exception\InvalidArgumentException; +use Closure; +use ReflectionFunction; +/** + * Evaluates promise callback. + * + * @author Konstantin Kudryashov + */ +class CallbackPromise implements \Prophecy\Promise\PromiseInterface { - /** @var VersionConstraint[] */ - private $constraints = []; + private $callback; /** - * @param VersionConstraint[] $constraints + * Initializes callback promise. + * + * @param callable $callback Custom callback + * + * @throws \Prophecy\Exception\InvalidArgumentException */ - public function __construct(string $originalValue, array $constraints) + public function __construct($callback) { - parent::__construct($originalValue); - $this->constraints = $constraints; + if (!is_callable($callback)) { + throw new InvalidArgumentException(sprintf('Callable expected as an argument to CallbackPromise, but got %s.', gettype($callback))); + } + $this->callback = $callback; } - public function complies(Version $version) : bool + public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) { - foreach ($this->constraints as $constraint) { - if (!$constraint->complies($version)) { - return \false; - } + $callback = $this->callback; + if ($callback instanceof Closure && method_exists('Closure', 'bind') && (new ReflectionFunction($callback))->getClosureThis() !== null) { + $callback = Closure::bind($callback, $object) ?? $this->callback; } - return \true; + return call_user_func($callback, $args, $object, $method); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Promise; -class AnyVersionConstraint implements VersionConstraint +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +/** + * Returns saved values one by one until last one, then continuously returns last value. + * + * @author Konstantin Kudryashov + */ +class ReturnPromise implements \Prophecy\Promise\PromiseInterface { - public function complies(Version $version) : bool + private $returnValues = array(); + /** + * Initializes promise. + * + * @param array $returnValues Array of values + */ + public function __construct(array $returnValues) { - return \true; + $this->returnValues = $returnValues; } - public function asString() : string + public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) { - return '*'; + $value = array_shift($this->returnValues); + if (!count($this->returnValues)) { + $this->returnValues[] = $value; + } + return $value; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Promise; -class ExactVersionConstraint extends AbstractVersionConstraint +use PHPUnitPHAR\Doctrine\Instantiator\Instantiator; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Exception\InvalidArgumentException; +use ReflectionClass; +/** + * Throws predefined exception. + * + * @author Konstantin Kudryashov + */ +class ThrowPromise implements \Prophecy\Promise\PromiseInterface { - public function complies(Version $version) : bool + private $exception; + /** + * @var Instantiator|null + */ + private $instantiator; + /** + * Initializes promise. + * + * @param string|\Throwable $exception Exception class name or instance + * + * @throws \Prophecy\Exception\InvalidArgumentException + * + * @phpstan-param class-string<\Throwable>|\Throwable $exception + */ + public function __construct($exception) { - $other = $version->getVersionString(); - if ($version->hasBuildMetaData()) { - $other .= '+' . $version->getBuildMetaData()->asString(); + if (is_string($exception)) { + if (!class_exists($exception) && !interface_exists($exception) || !$this->isAValidThrowable($exception)) { + throw new InvalidArgumentException(sprintf('Exception / Throwable class or instance expected as argument to ThrowPromise, but got %s.', $exception)); + } + } elseif (!$exception instanceof \Exception && !$exception instanceof \Throwable) { + throw new InvalidArgumentException(sprintf('Exception / Throwable class or instance expected as argument to ThrowPromise, but got %s.', is_object($exception) ? get_class($exception) : gettype($exception))); } - return $this->asString() === $other; + $this->exception = $exception; + } + public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) + { + if (is_string($this->exception)) { + $classname = $this->exception; + $reflection = new ReflectionClass($classname); + $constructor = $reflection->getConstructor(); + if ($constructor === null || $constructor->isPublic() && 0 == $constructor->getNumberOfRequiredParameters()) { + throw $reflection->newInstance(); + } + if (!$this->instantiator) { + $this->instantiator = new Instantiator(); + } + throw $this->instantiator->instantiate($classname); + } + throw $this->exception; + } + /** + * @param string $exception + * + * @return bool + */ + private function isAValidThrowable($exception) + { + return is_a($exception, 'Exception', \true) || is_a($exception, 'Throwable', \true); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -class GreaterThanOrEqualToVersionConstraint extends AbstractVersionConstraint +use Prophecy\Argument\ArgumentsWildcard; +class MethodNotFoundException extends \Prophecy\Exception\Doubler\DoubleException { - /** @var Version */ - private $minimalVersion; - public function __construct(string $originalValue, Version $minimalVersion) + /** + * @var string|object + */ + private $classname; + /** + * @var string + */ + private $methodName; + /** + * @var null|ArgumentsWildcard|array + */ + private $arguments; + /** + * @param string $message + * @param string|object $classname + * @param string $methodName + * @param null|ArgumentsWildcard|array $arguments + */ + public function __construct($message, $classname, $methodName, $arguments = null) { - parent::__construct($originalValue); - $this->minimalVersion = $minimalVersion; + parent::__construct($message); + $this->classname = $classname; + $this->methodName = $methodName; + $this->arguments = $arguments; + } + /** + * @return object|string + */ + public function getClassname() + { + return $this->classname; + } + /** + * @return string + */ + public function getMethodName() + { + return $this->methodName; } - public function complies(Version $version) : bool + /** + * @return null|ArgumentsWildcard|array + */ + public function getArguments() { - return $version->getVersionString() === $this->minimalVersion->getVersionString() || $version->isGreaterThan($this->minimalVersion); + return $this->arguments; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -class OrVersionConstraintGroup extends AbstractVersionConstraint +class InterfaceNotFoundException extends \Prophecy\Exception\Doubler\ClassNotFoundException { - /** @var VersionConstraint[] */ - private $constraints = []; /** - * @param string $originalValue - * @param VersionConstraint[] $constraints + * @return string */ - public function __construct($originalValue, array $constraints) - { - parent::__construct($originalValue); - $this->constraints = $constraints; - } - public function complies(Version $version) : bool + public function getInterfaceName() { - foreach ($this->constraints as $constraint) { - if ($constraint->complies($version)) { - return \true; - } - } - return \false; + return $this->getClassname(); } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -class SpecificMajorAndMinorVersionConstraint extends AbstractVersionConstraint +class ReturnByReferenceException extends \Prophecy\Exception\Doubler\DoubleException { - /** @var int */ - private $major; - /** @var int */ - private $minor; - public function __construct(string $originalValue, int $major, int $minor) + private $classname; + private $methodName; + /** + * @param string $message + * @param string $classname + * @param string $methodName + */ + public function __construct($message, $classname, $methodName) { - parent::__construct($originalValue); - $this->major = $major; - $this->minor = $minor; + parent::__construct($message); + $this->classname = $classname; + $this->methodName = $methodName; + } + /** + * @return string + */ + public function getClassname() + { + return $this->classname; } - public function complies(Version $version) : bool + /** + * @return string + */ + public function getMethodName() { - if ($version->getMajor()->getValue() !== $this->major) { - return \false; - } - return $version->getMinor()->getValue() === $this->minor; + return $this->methodName; } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -class SpecificMajorVersionConstraint extends AbstractVersionConstraint +use Prophecy\Exception\Exception; +interface DoublerException extends Exception { - /** @var int */ - private $major; - public function __construct(string $originalValue, int $major) - { - parent::__construct($originalValue); - $this->major = $major; - } - public function complies(Version $version) : bool - { - return $version->getMajor()->getValue() === $this->major; - } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -interface VersionConstraint +use Prophecy\Doubler\Generator\Node\ClassNode; +class ClassCreatorException extends \RuntimeException implements \Prophecy\Exception\Doubler\DoublerException { - public function complies(Version $version) : bool; - public function asString() : string; + private $node; + /** + * @param string $message + * @param ClassNode $node + */ + public function __construct($message, ClassNode $node) + { + parent::__construct($message); + $this->node = $node; + } + /** + * @return ClassNode + */ + public function getClassNode() + { + return $this->node; + } } , Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; - -use Throwable; -interface Exception extends Throwable -{ -} -, Sebastian Heuer , Sebastian Bergmann + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\PharIo\Version; +namespace Prophecy\Exception\Doubler; -final class UnsupportedVersionConstraintException extends \RuntimeException implements Exception +class ClassNotFoundException extends \Prophecy\Exception\Doubler\DoubleException { + private $classname; + /** + * @param string $message + * @param string $classname + */ + public function __construct($message, $classname) + { + parent::__construct($message); + $this->classname = $classname; + } + /** + * @return string + */ + public function getClassname() + { + return $this->classname; + } } + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace Prophecy\Exception\Doubler; -use function array_diff; -use function array_diff_key; -use function array_flip; -use function array_keys; -use function array_merge; -use function array_unique; -use function array_values; -use function count; -use function explode; -use function get_class; -use function is_array; -use function sort; -use PHPUnit\Framework\TestCase; -use PHPUnit\Runner\PhptTestCase; -use PHPUnit\Util\Test; use ReflectionClass; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\Driver; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Builder; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory; -use PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis\CachingFileAnalyser; -use PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser; -use PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis\ParsingFileAnalyser; -use PHPUnit\SebastianBergmann\CodeUnitReverseLookup\Wizard; -/** - * Provides collection functionality for PHP code coverage information. - */ -final class CodeCoverage +class ClassMirrorException extends \RuntimeException implements \Prophecy\Exception\Doubler\DoublerException { - private const UNCOVERED_FILES = 'UNCOVERED_FILES'; - /** - * @var Driver - */ - private $driver; - /** - * @var Filter - */ - private $filter; - /** - * @var Wizard - */ - private $wizard; - /** - * @var bool - */ - private $checkForUnintentionallyCoveredCode = \false; - /** - * @var bool - */ - private $includeUncoveredFiles = \true; - /** - * @var bool - */ - private $processUncoveredFiles = \false; - /** - * @var bool - */ - private $ignoreDeprecatedCode = \false; - /** - * @var null|PhptTestCase|string|TestCase - */ - private $currentId; - /** - * Code coverage data. - * - * @var ProcessedCodeCoverageData - */ - private $data; - /** - * @var bool - */ - private $useAnnotationsForIgnoringCode = \true; - /** - * Test data. - * - * @var array - */ - private $tests = []; - /** - * @psalm-var list - */ - private $parentClassesExcludedFromUnintentionallyCoveredCodeCheck = []; - /** - * @var ?FileAnalyser - */ - private $analyser; - /** - * @var ?string - */ - private $cacheDirectory; - public function __construct(Driver $driver, Filter $filter) - { - $this->driver = $driver; - $this->filter = $filter; - $this->data = new ProcessedCodeCoverageData(); - $this->wizard = new Wizard(); - } - /** - * Returns the code coverage information as a graph of node objects. - */ - public function getReport() : Directory - { - return (new Builder($this->analyser()))->build($this); - } + private $class; /** - * Clears collected code coverage data. + * @param string $message + * @param ReflectionClass $class */ - public function clear() : void + public function __construct($message, ReflectionClass $class) { - $this->currentId = null; - $this->data = new ProcessedCodeCoverageData(); - $this->tests = []; + parent::__construct($message); + $this->class = $class; } /** - * Returns the filter object used. + * @return ReflectionClass */ - public function filter() : Filter + public function getReflectedClass() { - return $this->filter; + return $this->class; } +} +processUncoveredFiles) { - $this->processUncoveredFilesFromFilter(); - } elseif ($this->includeUncoveredFiles) { - $this->addUncoveredFilesFromFilter(); - } - } - return $this->data; + parent::__construct($message); + $this->methodName = $methodName; + $this->className = $className; } /** - * Sets the coverage data. + * @return string */ - public function setData(ProcessedCodeCoverageData $data) : void + public function getMethodName() { - $this->data = $data; + return $this->methodName; } /** - * Returns the test data. + * @return string */ - public function getTests() : array + public function getClassName() { - return $this->tests; + return $this->className; } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use Prophecy\Call\Call; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Exception\Prophecy\MethodProphecyException; +class UnexpectedCallsException extends MethodProphecyException implements \Prophecy\Exception\Prediction\PredictionException +{ + private $calls = array(); /** - * Sets the test data. + * @param string $message + * @param MethodProphecy $methodProphecy + * @param list $calls */ - public function setTests(array $tests) : void + public function __construct($message, MethodProphecy $methodProphecy, array $calls) { - $this->tests = $tests; + parent::__construct($message, $methodProphecy); + $this->calls = $calls; } /** - * Start collection of code coverage information. - * - * @param PhptTestCase|string|TestCase $id + * @return list */ - public function start($id, bool $clear = \false) : void + public function getCalls() { - if ($clear) { - $this->clear(); - } - $this->currentId = $id; - $this->driver->start(); + return $this->calls; } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use Prophecy\Call\Call; +use Prophecy\Prophecy\MethodProphecy; +class UnexpectedCallsCountException extends \Prophecy\Exception\Prediction\UnexpectedCallsException +{ + private $expectedCount; /** - * Stop collection of code coverage information. - * - * @param array|false $linesToBeCovered + * @param string $message + * @param MethodProphecy $methodProphecy + * @param int $count + * @param list $calls */ - public function stop(bool $append = \true, $linesToBeCovered = [], array $linesToBeUsed = []) : RawCodeCoverageData + public function __construct($message, MethodProphecy $methodProphecy, $count, array $calls) { - if (!is_array($linesToBeCovered) && $linesToBeCovered !== \false) { - throw new InvalidArgumentException('$linesToBeCovered must be an array or false'); - } - $data = $this->driver->stop(); - $this->append($data, null, $append, $linesToBeCovered, $linesToBeUsed); - $this->currentId = null; - return $data; + parent::__construct($message, $methodProphecy, $calls); + $this->expectedCount = intval($count); } /** - * Appends code coverage data. - * - * @param PhptTestCase|string|TestCase $id - * @param array|false $linesToBeCovered - * - * @throws ReflectionException - * @throws TestIdMissingException - * @throws UnintentionallyCoveredCodeException + * @return int */ - public function append(RawCodeCoverageData $rawData, $id = null, bool $append = \true, $linesToBeCovered = [], array $linesToBeUsed = []) : void + public function getExpectedCount() { - if ($id === null) { - $id = $this->currentId; - } - if ($id === null) { - throw new TestIdMissingException(); - } - $this->applyFilter($rawData); - $this->applyExecutableLinesFilter($rawData); - if ($this->useAnnotationsForIgnoringCode) { - $this->applyIgnoredLinesFilter($rawData); - } - $this->data->initializeUnseenData($rawData); - if (!$append) { - return; - } - if ($id !== self::UNCOVERED_FILES) { - $this->applyCoversAnnotationFilter($rawData, $linesToBeCovered, $linesToBeUsed); - if (empty($rawData->lineCoverage())) { - return; - } - $size = 'unknown'; - $status = -1; - $fromTestcase = \false; - if ($id instanceof TestCase) { - $fromTestcase = \true; - $_size = $id->getSize(); - if ($_size === Test::SMALL) { - $size = 'small'; - } elseif ($_size === Test::MEDIUM) { - $size = 'medium'; - } elseif ($_size === Test::LARGE) { - $size = 'large'; - } - $status = $id->getStatus(); - $id = get_class($id) . '::' . $id->getName(); - } elseif ($id instanceof PhptTestCase) { - $fromTestcase = \true; - $size = 'large'; - $id = $id->getName(); - } - $this->tests[$id] = ['size' => $size, 'status' => $status, 'fromTestcase' => $fromTestcase]; - $this->data->markCodeAsExecutedByTestCase($id, $rawData); - } + return $this->expectedCount; } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use Prophecy\Exception\Exception; +interface PredictionException extends Exception +{ +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use RuntimeException; +/** + * Basic failed prediction exception. + * Use it for custom prediction failures. + * + * @author Konstantin Kudryashov + */ +class FailedPredictionException extends RuntimeException implements \Prophecy\Exception\Prediction\PredictionException +{ +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use Prophecy\Exception\Prophecy\MethodProphecyException; +class NoCallsException extends MethodProphecyException implements \Prophecy\Exception\Prediction\PredictionException +{ +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prediction; + +use Prophecy\Prophecy\ObjectProphecy; +class AggregateException extends \RuntimeException implements \Prophecy\Exception\Prediction\PredictionException +{ /** - * Merges the data from another instance. + * @var list */ - public function merge(self $that) : void - { - $this->filter->includeFiles($that->filter()->files()); - $this->data->merge($that->data); - $this->tests = array_merge($this->tests, $that->getTests()); - } - public function enableCheckForUnintentionallyCoveredCode() : void - { - $this->checkForUnintentionallyCoveredCode = \true; - } - public function disableCheckForUnintentionallyCoveredCode() : void - { - $this->checkForUnintentionallyCoveredCode = \false; - } - public function includeUncoveredFiles() : void - { - $this->includeUncoveredFiles = \true; - } - public function excludeUncoveredFiles() : void - { - $this->includeUncoveredFiles = \false; - } - public function processUncoveredFiles() : void - { - $this->processUncoveredFiles = \true; - } - public function doNotProcessUncoveredFiles() : void - { - $this->processUncoveredFiles = \false; - } - public function enableAnnotationsForIgnoringCode() : void - { - $this->useAnnotationsForIgnoringCode = \true; - } - public function disableAnnotationsForIgnoringCode() : void - { - $this->useAnnotationsForIgnoringCode = \false; - } - public function ignoreDeprecatedCode() : void - { - $this->ignoreDeprecatedCode = \true; - } - public function doNotIgnoreDeprecatedCode() : void - { - $this->ignoreDeprecatedCode = \false; - } + private $exceptions = array(); /** - * @psalm-assert-if-true !null $this->cacheDirectory + * @var ObjectProphecy|null */ - public function cachesStaticAnalysis() : bool - { - return $this->cacheDirectory !== null; - } - public function cacheStaticAnalysis(string $directory) : void - { - $this->cacheDirectory = $directory; - } - public function doNotCacheStaticAnalysis() : void - { - $this->cacheDirectory = null; - } + private $objectProphecy; /** - * @throws StaticAnalysisCacheNotConfiguredException + * @return void */ - public function cacheDirectory() : string + public function append(\Prophecy\Exception\Prediction\PredictionException $exception) { - if (!$this->cachesStaticAnalysis()) { - throw new StaticAnalysisCacheNotConfiguredException('The static analysis cache is not configured'); - } - return $this->cacheDirectory; + $message = $exception->getMessage(); + $message = strtr($message, array("\n" => "\n ")) . "\n"; + $message = empty($this->exceptions) ? $message : "\n" . $message; + $this->message = rtrim($this->message . $message); + $this->exceptions[] = $exception; } /** - * @psalm-param class-string $className + * @return list */ - public function excludeSubclassesOfThisClassFromUnintentionallyCoveredCodeCheck(string $className) : void - { - $this->parentClassesExcludedFromUnintentionallyCoveredCodeCheck[] = $className; - } - public function enableBranchAndPathCoverage() : void - { - $this->driver->enableBranchAndPathCoverage(); - } - public function disableBranchAndPathCoverage() : void - { - $this->driver->disableBranchAndPathCoverage(); - } - public function collectsBranchAndPathCoverage() : bool - { - return $this->driver->collectsBranchAndPathCoverage(); - } - public function detectsDeadCode() : bool + public function getExceptions() { - return $this->driver->detectsDeadCode(); + return $this->exceptions; } /** - * Applies the @covers annotation filtering. + * @param ObjectProphecy $objectProphecy * - * @param array|false $linesToBeCovered - * - * @throws ReflectionException - * @throws UnintentionallyCoveredCodeException + * @return void */ - private function applyCoversAnnotationFilter(RawCodeCoverageData $rawData, $linesToBeCovered, array $linesToBeUsed) : void - { - if ($linesToBeCovered === \false) { - $rawData->clear(); - return; - } - if (empty($linesToBeCovered)) { - return; - } - if ($this->checkForUnintentionallyCoveredCode && (!$this->currentId instanceof TestCase || !$this->currentId->isMedium() && !$this->currentId->isLarge())) { - $this->performUnintentionallyCoveredCodeCheck($rawData, $linesToBeCovered, $linesToBeUsed); - } - $rawLineData = $rawData->lineCoverage(); - $filesWithNoCoverage = array_diff_key($rawLineData, $linesToBeCovered); - foreach (array_keys($filesWithNoCoverage) as $fileWithNoCoverage) { - $rawData->removeCoverageDataForFile($fileWithNoCoverage); - } - if (is_array($linesToBeCovered)) { - foreach ($linesToBeCovered as $fileToBeCovered => $includedLines) { - $rawData->keepLineCoverageDataOnlyForLines($fileToBeCovered, $includedLines); - $rawData->keepFunctionCoverageDataOnlyForLines($fileToBeCovered, $includedLines); - } - } - } - private function applyFilter(RawCodeCoverageData $data) : void + public function setObjectProphecy(ObjectProphecy $objectProphecy) { - if ($this->filter->isEmpty()) { - return; - } - foreach (array_keys($data->lineCoverage()) as $filename) { - if ($this->filter->isExcluded($filename)) { - $data->removeCoverageDataForFile($filename); - } - } + $this->objectProphecy = $objectProphecy; } - private function applyExecutableLinesFilter(RawCodeCoverageData $data) : void + /** + * @return ObjectProphecy|null + */ + public function getObjectProphecy() { - foreach (array_keys($data->lineCoverage()) as $filename) { - if (!$this->filter->isFile($filename)) { - continue; - } - $data->keepLineCoverageDataOnlyForLines($filename, $this->analyser()->executableLinesIn($filename)); - } + return $this->objectProphecy; } - private function applyIgnoredLinesFilter(RawCodeCoverageData $data) : void +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception; + +class InvalidArgumentException extends \InvalidArgumentException implements \Prophecy\Exception\Exception +{ +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Call; + +use Prophecy\Exception\Prophecy\ObjectProphecyException; +use Prophecy\Prophecy\ObjectProphecy; +class UnexpectedCallException extends ObjectProphecyException +{ + private $methodName; + private $arguments; + /** + * @param string $message + * @param ObjectProphecy $objectProphecy + * @param string $methodName + * @param array $arguments + */ + public function __construct($message, ObjectProphecy $objectProphecy, $methodName, array $arguments) { - foreach (array_keys($data->lineCoverage()) as $filename) { - if (!$this->filter->isFile($filename)) { - continue; - } - $data->removeCoverageDataForLines($filename, $this->analyser()->ignoredLinesFor($filename)); - } + parent::__construct($message, $objectProphecy); + $this->methodName = $methodName; + $this->arguments = $arguments; } /** - * @throws UnintentionallyCoveredCodeException + * @return string */ - private function addUncoveredFilesFromFilter() : void + public function getMethodName() { - $uncoveredFiles = array_diff($this->filter->files(), $this->data->coveredFiles()); - foreach ($uncoveredFiles as $uncoveredFile) { - if ($this->filter->isFile($uncoveredFile)) { - $this->append(RawCodeCoverageData::fromUncoveredFile($uncoveredFile, $this->analyser()), self::UNCOVERED_FILES); - } - } + return $this->methodName; } /** - * @throws UnintentionallyCoveredCodeException + * @return array */ - private function processUncoveredFilesFromFilter() : void + public function getArguments() { - $uncoveredFiles = array_diff($this->filter->files(), $this->data->coveredFiles()); - $this->driver->start(); - foreach ($uncoveredFiles as $uncoveredFile) { - if ($this->filter->isFile($uncoveredFile)) { - include_once $uncoveredFile; - } - } - $this->append($this->driver->stop(), self::UNCOVERED_FILES); + return $this->arguments; } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prophecy; + +use Prophecy\Prophecy\MethodProphecy; +class MethodProphecyException extends \Prophecy\Exception\Prophecy\ObjectProphecyException +{ + private $methodProphecy; /** - * @throws ReflectionException - * @throws UnintentionallyCoveredCodeException + * @param string $message */ - private function performUnintentionallyCoveredCodeCheck(RawCodeCoverageData $data, array $linesToBeCovered, array $linesToBeUsed) : void + public function __construct($message, MethodProphecy $methodProphecy) { - $allowedLines = $this->getAllowedLines($linesToBeCovered, $linesToBeUsed); - $unintentionallyCoveredUnits = []; - foreach ($data->lineCoverage() as $file => $_data) { - foreach ($_data as $line => $flag) { - if ($flag === 1 && !isset($allowedLines[$file][$line])) { - $unintentionallyCoveredUnits[] = $this->wizard->lookup($file, $line); - } - } - } - $unintentionallyCoveredUnits = $this->processUnintentionallyCoveredUnits($unintentionallyCoveredUnits); - if (!empty($unintentionallyCoveredUnits)) { - throw new UnintentionallyCoveredCodeException($unintentionallyCoveredUnits); - } + parent::__construct($message, $methodProphecy->getObjectProphecy()); + $this->methodProphecy = $methodProphecy; } - private function getAllowedLines(array $linesToBeCovered, array $linesToBeUsed) : array + /** + * @return MethodProphecy + */ + public function getMethodProphecy() { - $allowedLines = []; - foreach (array_keys($linesToBeCovered) as $file) { - if (!isset($allowedLines[$file])) { - $allowedLines[$file] = []; - } - $allowedLines[$file] = array_merge($allowedLines[$file], $linesToBeCovered[$file]); - } - foreach (array_keys($linesToBeUsed) as $file) { - if (!isset($allowedLines[$file])) { - $allowedLines[$file] = []; - } - $allowedLines[$file] = array_merge($allowedLines[$file], $linesToBeUsed[$file]); - } - foreach (array_keys($allowedLines) as $file) { - $allowedLines[$file] = array_flip(array_unique($allowedLines[$file])); - } - return $allowedLines; + return $this->methodProphecy; } +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prophecy; + +use Prophecy\Exception\Exception; +interface ProphecyException extends Exception +{ +} + + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Prophecy\Exception\Prophecy; + +use Prophecy\Prophecy\ObjectProphecy; +class ObjectProphecyException extends \RuntimeException implements \Prophecy\Exception\Prophecy\ProphecyException +{ + private $objectProphecy; /** - * @throws ReflectionException + * @param string $message + * @param ObjectProphecy $objectProphecy */ - private function processUnintentionallyCoveredUnits(array $unintentionallyCoveredUnits) : array + public function __construct($message, ObjectProphecy $objectProphecy) { - $unintentionallyCoveredUnits = array_unique($unintentionallyCoveredUnits); - sort($unintentionallyCoveredUnits); - foreach (array_keys($unintentionallyCoveredUnits) as $k => $v) { - $unit = explode('::', $unintentionallyCoveredUnits[$k]); - if (count($unit) !== 2) { - continue; - } - try { - $class = new ReflectionClass($unit[0]); - foreach ($this->parentClassesExcludedFromUnintentionallyCoveredCodeCheck as $parentClass) { - if ($class->isSubclassOf($parentClass)) { - unset($unintentionallyCoveredUnits[$k]); - break; - } - } - } catch (\ReflectionException $e) { - throw new ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - } - return array_values($unintentionallyCoveredUnits); + parent::__construct($message); + $this->objectProphecy = $objectProphecy; } - private function analyser() : FileAnalyser + /** + * @return ObjectProphecy + */ + public function getObjectProphecy() { - if ($this->analyser !== null) { - return $this->analyser; - } - $this->analyser = new ParsingFileAnalyser($this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode); - if ($this->cachesStaticAnalysis()) { - $this->analyser = new CachingFileAnalyser($this->cacheDirectory, $this->analyser); - } - return $this->analyser; + return $this->objectProphecy; } } + * This file is part of the Prophecy. + * (c) Konstantin Kudryashov + * Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace Prophecy\Exception; -use function sprintf; -use PHPUnit\SebastianBergmann\CodeCoverage\BranchAndPathCoverageNotSupportedException; -use PHPUnit\SebastianBergmann\CodeCoverage\DeadCodeDetectionNotSupportedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -use PHPUnit\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverAvailableException; -use PHPUnit\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverWithPathCoverageSupportAvailableException; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Core Prophecy exception interface. + * All Prophecy exceptions implement it. + * + * @author Konstantin Kudryashov */ -abstract class Driver +interface Exception extends \Throwable { +} +Object Reflector + +Copyright (c) 2017-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + List of recognized keywords and unto which Value Object they map + * @psalm-var array> */ - public const BRANCH_NOT_HIT = 0; + private $keywords = ['string' => String_::class, 'class-string' => ClassString::class, 'interface-string' => InterfaceString::class, 'html-escaped-string' => HtmlEscapedString::class, 'lowercase-string' => LowercaseString::class, 'non-empty-lowercase-string' => NonEmptyLowercaseString::class, 'non-empty-string' => NonEmptyString::class, 'numeric-string' => NumericString::class, 'numeric' => Numeric_::class, 'trait-string' => TraitString::class, 'int' => Integer::class, 'integer' => Integer::class, 'positive-int' => PositiveInteger::class, 'negative-int' => NegativeInteger::class, 'bool' => Boolean::class, 'boolean' => Boolean::class, 'real' => Float_::class, 'float' => Float_::class, 'double' => Float_::class, 'object' => Object_::class, 'mixed' => Mixed_::class, 'array' => Array_::class, 'array-key' => ArrayKey::class, 'resource' => Resource_::class, 'void' => Void_::class, 'null' => Null_::class, 'scalar' => Scalar::class, 'callback' => Callable_::class, 'callable' => Callable_::class, 'callable-string' => CallableString::class, 'false' => False_::class, 'true' => True_::class, 'literal-string' => LiteralString::class, 'self' => Self_::class, '$this' => This::class, 'static' => Static_::class, 'parent' => Parent_::class, 'iterable' => Iterable_::class, 'never' => Never_::class, 'list' => List_::class, 'non-empty-list' => NonEmptyList::class]; /** - * @var int - * - * @see http://xdebug.org/docs/code_coverage + * @psalm-readonly + * @var FqsenResolver */ - public const BRANCH_HIT = 1; + private $fqsenResolver; /** - * @var bool + * @psalm-readonly + * @var TypeParser */ - private $collectBranchAndPathCoverage = \false; + private $typeParser; /** - * @var bool + * @psalm-readonly + * @var Lexer */ - private $detectDeadCode = \false; + private $lexer; /** - * @throws NoCodeCoverageDriverAvailableException - * @throws PcovNotAvailableException - * @throws PhpdbgNotAvailableException - * @throws Xdebug2NotEnabledException - * @throws Xdebug3NotEnabledException - * @throws XdebugNotAvailableException - * - * @deprecated Use DriverSelector::forLineCoverage() instead + * Initializes this TypeResolver with the means to create and resolve Fqsen objects. */ - public static function forLineCoverage(Filter $filter) : self + public function __construct(?FqsenResolver $fqsenResolver = null) { - return (new Selector())->forLineCoverage($filter); + $this->fqsenResolver = $fqsenResolver ?: new FqsenResolver(); + $this->typeParser = new TypeParser(new ConstExprParser()); + $this->lexer = new Lexer(); } /** - * @throws NoCodeCoverageDriverWithPathCoverageSupportAvailableException - * @throws Xdebug2NotEnabledException - * @throws Xdebug3NotEnabledException - * @throws XdebugNotAvailableException + * Analyzes the given type and returns the FQCN variant. * - * @deprecated Use DriverSelector::forLineAndPathCoverage() instead + * When a type is provided this method checks whether it is not a keyword or + * Fully Qualified Class Name. If so it will use the given namespace and + * aliases to expand the type to a FQCN representation. + * + * This method only works as expected if the namespace and aliases are set; + * no dynamic reflection is being performed here. + * + * @uses Context::getNamespace() to determine with what to prefix the type name. + * @uses Context::getNamespaceAliases() to check whether the first part of the relative type name should not be + * replaced with another namespace. + * + * @param string $type The relative or absolute type. */ - public static function forLineAndPathCoverage(Filter $filter) : self - { - return (new Selector())->forLineAndPathCoverage($filter); - } - public function canCollectBranchAndPathCoverage() : bool - { - return \false; - } - public function collectsBranchAndPathCoverage() : bool + public function resolve(string $type, ?Context $context = null): Type { - return $this->collectBranchAndPathCoverage; + $type = trim($type); + if (!$type) { + throw new InvalidArgumentException('Attempted to resolve "' . $type . '" but it appears to be empty'); + } + if ($context === null) { + $context = new Context(''); + } + $tokens = $this->lexer->tokenize($type); + $tokenIterator = new TokenIterator($tokens); + $ast = $this->parse($tokenIterator); + $type = $this->createType($ast, $context); + return $this->tryParseRemainingCompoundTypes($tokenIterator, $context, $type); + } + public function createType(?TypeNode $type, Context $context): Type + { + if ($type === null) { + return new Mixed_(); + } + switch (get_class($type)) { + case ArrayTypeNode::class: + return new Array_($this->createType($type->type, $context)); + case ArrayShapeNode::class: + return new ArrayShape(...array_map(function (ArrayShapeItemNode $item) use ($context): ArrayShapeItem { + return new ArrayShapeItem((string) $item->keyName, $this->createType($item->valueType, $context), $item->optional); + }, $type->items)); + case CallableTypeNode::class: + return $this->createFromCallable($type, $context); + case ConstTypeNode::class: + return $this->createFromConst($type, $context); + case GenericTypeNode::class: + return $this->createFromGeneric($type, $context); + case IdentifierTypeNode::class: + return $this->resolveSingleType($type->name, $context); + case IntersectionTypeNode::class: + return new Intersection(array_filter(array_map(function (TypeNode $nestedType) use ($context): Type { + $type = $this->createType($nestedType, $context); + if ($type instanceof AggregatedType) { + return new Expression($type); + } + return $type; + }, $type->types))); + case NullableTypeNode::class: + $nestedType = $this->createType($type->type, $context); + return new Nullable($nestedType); + case UnionTypeNode::class: + return new Compound(array_filter(array_map(function (TypeNode $nestedType) use ($context): Type { + $type = $this->createType($nestedType, $context); + if ($type instanceof AggregatedType) { + return new Expression($type); + } + return $type; + }, $type->types))); + case ThisTypeNode::class: + return new This(); + case ConditionalTypeNode::class: + case ConditionalTypeForParameterNode::class: + case OffsetAccessTypeNode::class: + default: + return new Mixed_(); + } } - /** - * @throws BranchAndPathCoverageNotSupportedException - */ - public function enableBranchAndPathCoverage() : void + private function createFromGeneric(GenericTypeNode $type, Context $context): Type { - if (!$this->canCollectBranchAndPathCoverage()) { - throw new BranchAndPathCoverageNotSupportedException(sprintf('%s does not support branch and path coverage', $this->nameAndVersion())); + switch (strtolower($type->type->name)) { + case 'array': + return $this->createArray($type->genericTypes, $context); + case 'class-string': + $subType = $this->createType($type->genericTypes[0], $context); + if (!$subType instanceof Object_ || $subType->getFqsen() === null) { + throw new RuntimeException($subType . ' is not a class string'); + } + return new ClassString($subType->getFqsen()); + case 'interface-string': + $subType = $this->createType($type->genericTypes[0], $context); + if (!$subType instanceof Object_ || $subType->getFqsen() === null) { + throw new RuntimeException($subType . ' is not a class string'); + } + return new InterfaceString($subType->getFqsen()); + case 'list': + return new List_($this->createType($type->genericTypes[0], $context)); + case 'non-empty-list': + return new NonEmptyList($this->createType($type->genericTypes[0], $context)); + case 'int': + if (isset($type->genericTypes[1]) === \false) { + throw new RuntimeException('int has not the correct format'); + } + return new IntegerRange((string) $type->genericTypes[0], (string) $type->genericTypes[1]); + case 'iterable': + return new Iterable_(...array_reverse(array_map(function (TypeNode $genericType) use ($context): Type { + return $this->createType($genericType, $context); + }, $type->genericTypes))); + default: + $collectionType = $this->createType($type->type, $context); + if ($collectionType instanceof Object_ === \false) { + throw new RuntimeException(sprintf('%s is not a collection', (string) $collectionType)); + } + return new Collection($collectionType->getFqsen(), ...array_reverse(array_map(function (TypeNode $genericType) use ($context): Type { + return $this->createType($genericType, $context); + }, $type->genericTypes))); } - $this->collectBranchAndPathCoverage = \true; - } - public function disableBranchAndPathCoverage() : void - { - $this->collectBranchAndPathCoverage = \false; } - public function canDetectDeadCode() : bool + private function createFromCallable(CallableTypeNode $type, Context $context): Callable_ { - return \false; + return new Callable_(array_map(function (CallableTypeParameterNode $param) use ($context): CallableParameter { + return new CallableParameter($this->createType($param->type, $context), $param->parameterName !== '' ? trim($param->parameterName, '$') : null, $param->isReference, $param->isVariadic, $param->isOptional); + }, $type->parameters), $this->createType($type->returnType, $context)); } - public function detectsDeadCode() : bool + private function createFromConst(ConstTypeNode $type, Context $context): Type { - return $this->detectDeadCode; + switch (\true) { + case $type->constExpr instanceof ConstExprIntegerNode: + return new IntegerValue((int) $type->constExpr->value); + case $type->constExpr instanceof ConstExprFloatNode: + return new FloatValue((float) $type->constExpr->value); + case $type->constExpr instanceof ConstExprStringNode: + return new StringValue($type->constExpr->value); + case $type->constExpr instanceof ConstFetchNode: + return new ConstExpression($this->resolve($type->constExpr->className, $context), $type->constExpr->name); + default: + throw new RuntimeException(sprintf('Unsupported constant type %s', get_class($type))); + } } /** - * @throws DeadCodeDetectionNotSupportedException + * resolve the given type into a type object + * + * @param string $type the type string, representing a single type + * + * @return Type|Array_|Object_ + * + * @psalm-mutation-free */ - public function enableDeadCodeDetection() : void + private function resolveSingleType(string $type, Context $context): object { - if (!$this->canDetectDeadCode()) { - throw new DeadCodeDetectionNotSupportedException(sprintf('%s does not support dead code detection', $this->nameAndVersion())); + switch (\true) { + case $this->isKeyword($type): + return $this->resolveKeyword($type); + case $this->isFqsen($type): + return $this->resolveTypedObject($type); + case $this->isPartialStructuralElementName($type): + return $this->resolveTypedObject($type, $context); + // @codeCoverageIgnoreStart + default: + // I haven't got the foggiest how the logic would come here but added this as a defense. + throw new RuntimeException('Unable to resolve type "' . $type . '", there is no known method to resolve it'); } - $this->detectDeadCode = \true; - } - public function disableDeadCodeDetection() : void - { - $this->detectDeadCode = \false; + // @codeCoverageIgnoreEnd } - public abstract function nameAndVersion() : string; - public abstract function start() : void; - public abstract function stop() : RawCodeCoverageData; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; - -use const pcov\inclusive; -use function array_intersect; -use function extension_loaded; -use function pcov\clear; -use function pcov\collect; -use function pcov\start; -use function pcov\stop; -use function pcov\waiting; -use function phpversion; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class PcovDriver extends Driver -{ - /** - * @var Filter - */ - private $filter; /** - * @throws PcovNotAvailableException + * Adds a keyword to the list of Keywords and associates it with a specific Value Object. + * + * @psalm-param class-string $typeClassName */ - public function __construct(Filter $filter) + public function addKeyword(string $keyword, string $typeClassName): void { - if (!extension_loaded('pcov')) { - throw new PcovNotAvailableException(); + if (!class_exists($typeClassName)) { + throw new InvalidArgumentException('The Value Object that needs to be created with a keyword "' . $keyword . '" must be an existing class' . ' but we could not find the class ' . $typeClassName); } - $this->filter = $filter; + $interfaces = class_implements($typeClassName); + if ($interfaces === \false) { + throw new InvalidArgumentException('The Value Object that needs to be created with a keyword "' . $keyword . '" must be an existing class' . ' but we could not find the class ' . $typeClassName); + } + if (!in_array(Type::class, $interfaces, \true)) { + throw new InvalidArgumentException('The class "' . $typeClassName . '" must implement the interface "phpDocumentor\Reflection\Type"'); + } + $this->keywords[$keyword] = $typeClassName; } - public function start() : void + /** + * Detects whether the given type represents a PHPDoc keyword. + * + * @param string $type A relative or absolute type as defined in the phpDocumentor documentation. + * + * @psalm-mutation-free + */ + private function isKeyword(string $type): bool { - start(); + return array_key_exists(strtolower($type), $this->keywords); } - public function stop() : RawCodeCoverageData + /** + * Detects whether the given type represents a relative structural element name. + * + * @param string $type A relative or absolute type as defined in the phpDocumentor documentation. + * + * @psalm-mutation-free + */ + private function isPartialStructuralElementName(string $type): bool { - stop(); - $filesToCollectCoverageFor = waiting(); - $collected = []; - if ($filesToCollectCoverageFor) { - if (!$this->filter->isEmpty()) { - $filesToCollectCoverageFor = array_intersect($filesToCollectCoverageFor, $this->filter->files()); - } - $collected = collect(inclusive, $filesToCollectCoverageFor); - clear(); - } - return RawCodeCoverageData::fromXdebugWithoutPathCoverage($collected); + return isset($type[0]) && $type[0] !== self::OPERATOR_NAMESPACE && !$this->isKeyword($type); } - public function nameAndVersion() : string + /** + * Tests whether the given type is a Fully Qualified Structural Element Name. + * + * @psalm-mutation-free + */ + private function isFqsen(string $type): bool { - return 'PCOV ' . phpversion('pcov'); + return strpos($type, self::OPERATOR_NAMESPACE) === 0; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; - -use const PHP_SAPI; -use const PHP_VERSION; -use function array_diff; -use function array_keys; -use function array_merge; -use function get_included_files; -use function phpdbg_end_oplog; -use function phpdbg_get_executable; -use function phpdbg_start_oplog; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class PhpdbgDriver extends Driver -{ /** - * @throws PhpdbgNotAvailableException + * Resolves the given keyword (such as `string`) into a Type object representing that keyword. + * + * @psalm-mutation-free */ - public function __construct() + private function resolveKeyword(string $type): Type { - if (PHP_SAPI !== 'phpdbg') { - throw new PhpdbgNotAvailableException(); - } + $className = $this->keywords[strtolower($type)]; + return new $className(); } - public function start() : void + /** + * Resolves the given FQSEN string into an FQSEN object. + * + * @psalm-mutation-free + */ + private function resolveTypedObject(string $type, ?Context $context = null): Object_ { - phpdbg_start_oplog(); + return new Object_($this->fqsenResolver->resolve($type, $context)); } - public function stop() : RawCodeCoverageData + /** @param TypeNode[] $typeNodes */ + private function createArray(array $typeNodes, Context $context): Array_ { - static $fetchedLines = []; - $dbgData = phpdbg_end_oplog(); - if ($fetchedLines === []) { - $sourceLines = phpdbg_get_executable(); - } else { - $newFiles = array_diff(get_included_files(), array_keys($fetchedLines)); - $sourceLines = []; - if ($newFiles) { - $sourceLines = phpdbg_get_executable(['files' => $newFiles]); - } + $types = array_reverse(array_map(function (TypeNode $node) use ($context): Type { + return $this->createType($node, $context); + }, $typeNodes)); + if (isset($types[1]) === \false) { + return new Array_(...$types); } - foreach ($sourceLines as $file => $lines) { - foreach ($lines as $lineNo => $numExecuted) { - $sourceLines[$file][$lineNo] = self::LINE_NOT_EXECUTED; + if ($this->validArrayKeyType($types[1]) || $types[1] instanceof ArrayKey) { + return new Array_(...$types); + } + if ($types[1] instanceof Compound && $types[1]->getIterator()->count() === 2) { + if ($this->validArrayKeyType($types[1]->get(0)) && $this->validArrayKeyType($types[1]->get(1))) { + return new Array_(...$types); } } - $fetchedLines = array_merge($fetchedLines, $sourceLines); - return RawCodeCoverageData::fromXdebugWithoutPathCoverage($this->detectExecutedLines($fetchedLines, $dbgData)); + throw new RuntimeException('An array can have only integers or strings as keys'); } - public function nameAndVersion() : string + private function validArrayKeyType(?Type $type): bool { - return 'PHPDBG ' . PHP_VERSION; + return $type instanceof String_ || $type instanceof Integer; } - private function detectExecutedLines(array $sourceLines, array $dbgData) : array + private function parse(TokenIterator $tokenIterator): TypeNode { - foreach ($dbgData as $file => $coveredLines) { - foreach ($coveredLines as $lineNo => $numExecuted) { - // phpdbg also reports $lineNo=0 when e.g. exceptions get thrown. - // make sure we only mark lines executed which are actually executable. - if (isset($sourceLines[$file][$lineNo])) { - $sourceLines[$file][$lineNo] = self::LINE_EXECUTED; - } - } + try { + $ast = $this->typeParser->parse($tokenIterator); + } catch (ParserException $e) { + throw new RuntimeException($e->getMessage(), 0, $e); } - return $sourceLines; + return $ast; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; - -use function phpversion; -use function version_compare; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -use PHPUnit\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverAvailableException; -use PHPUnit\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverWithPathCoverageSupportAvailableException; -use PHPUnit\SebastianBergmann\Environment\Runtime; -final class Selector -{ /** - * @throws NoCodeCoverageDriverAvailableException - * @throws PcovNotAvailableException - * @throws PhpdbgNotAvailableException - * @throws Xdebug2NotEnabledException - * @throws Xdebug3NotEnabledException - * @throws XdebugNotAvailableException + * Will try to parse unsupported type notations by phpstan + * + * The phpstan parser doesn't support the illegal nullable combinations like this library does. + * This method will warn the user about those notations but for bc purposes we will still have it here. */ - public function forLineCoverage(Filter $filter) : Driver + private function tryParseRemainingCompoundTypes(TokenIterator $tokenIterator, Context $context, Type $type): Type { - $runtime = new Runtime(); - if ($runtime->hasPHPDBGCodeCoverage()) { - return new PhpdbgDriver(); - } - if ($runtime->hasPCOV()) { - return new PcovDriver($filter); + if ($tokenIterator->isCurrentTokenType(Lexer::TOKEN_UNION) || $tokenIterator->isCurrentTokenType(Lexer::TOKEN_INTERSECTION)) { + Deprecation::trigger('phpdocumentor/type-resolver', 'https://github.com/phpDocumentor/TypeResolver/issues/184', 'Legacy nullable type detected, please update your code as + you are using nullable types in a docblock. support will be removed in v2.0.0'); } - if ($runtime->hasXdebug()) { - if (version_compare(phpversion('xdebug'), '3', '>=')) { - $driver = new Xdebug3Driver($filter); - } else { - $driver = new Xdebug2Driver($filter); + $continue = \true; + while ($continue) { + $continue = \false; + while ($tokenIterator->tryConsumeTokenType(Lexer::TOKEN_UNION)) { + $ast = $this->parse($tokenIterator); + $type2 = $this->createType($ast, $context); + $type = new Compound([$type, $type2]); + $continue = \true; } - $driver->enableDeadCodeDetection(); - return $driver; - } - throw new NoCodeCoverageDriverAvailableException(); - } - /** - * @throws NoCodeCoverageDriverWithPathCoverageSupportAvailableException - * @throws Xdebug2NotEnabledException - * @throws Xdebug3NotEnabledException - * @throws XdebugNotAvailableException - */ - public function forLineAndPathCoverage(Filter $filter) : Driver - { - if ((new Runtime())->hasXdebug()) { - if (version_compare(phpversion('xdebug'), '3', '>=')) { - $driver = new Xdebug3Driver($filter); - } else { - $driver = new Xdebug2Driver($filter); + while ($tokenIterator->tryConsumeTokenType(Lexer::TOKEN_INTERSECTION)) { + $ast = $this->typeParser->parse($tokenIterator); + $type2 = $this->createType($ast, $context); + $type = new Intersection([$type, $type2]); + $continue = \true; } - $driver->enableDeadCodeDetection(); - $driver->enableBranchAndPathCoverage(); - return $driver; } - throw new NoCodeCoverageDriverWithPathCoverageSupportAvailableException(); + return $type; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use const XDEBUG_CC_BRANCH_CHECK; -use const XDEBUG_CC_DEAD_CODE; -use const XDEBUG_CC_UNUSED; -use const XDEBUG_FILTER_CODE_COVERAGE; -use const XDEBUG_PATH_INCLUDE; -use const XDEBUG_PATH_WHITELIST; -use function defined; -use function extension_loaded; -use function ini_get; -use function phpversion; -use function sprintf; -use function version_compare; -use function xdebug_get_code_coverage; -use function xdebug_set_filter; -use function xdebug_start_code_coverage; -use function xdebug_stop_code_coverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Represents an expression type as described in the PSR-5, the PHPDoc Standard. + * + * @psalm-immutable */ -final class Xdebug2Driver extends Driver +final class Expression implements Type { + /** @var Type */ + protected $valueType; /** - * @var bool - */ - private $pathCoverageIsMixedCoverage; - /** - * @throws WrongXdebugVersionException - * @throws Xdebug2NotEnabledException - * @throws XdebugNotAvailableException + * Initializes this representation of an array with the given Type. */ - public function __construct(Filter $filter) - { - if (!extension_loaded('xdebug')) { - throw new XdebugNotAvailableException(); - } - if (version_compare(phpversion('xdebug'), '3', '>=')) { - throw new WrongXdebugVersionException(sprintf('This driver requires Xdebug 2 but version %s is loaded', phpversion('xdebug'))); - } - if (!ini_get('xdebug.coverage_enable')) { - throw new Xdebug2NotEnabledException(); - } - if (!$filter->isEmpty()) { - if (defined('XDEBUG_PATH_WHITELIST')) { - $listType = XDEBUG_PATH_WHITELIST; - } else { - $listType = XDEBUG_PATH_INCLUDE; - } - xdebug_set_filter(XDEBUG_FILTER_CODE_COVERAGE, $listType, $filter->files()); - } - $this->pathCoverageIsMixedCoverage = version_compare(phpversion('xdebug'), '2.9.6', '<'); - } - public function canCollectBranchAndPathCoverage() : bool - { - return \true; - } - public function canDetectDeadCode() : bool - { - return \true; - } - public function start() : void + public function __construct(Type $valueType) { - $flags = XDEBUG_CC_UNUSED; - if ($this->detectsDeadCode() || $this->collectsBranchAndPathCoverage()) { - $flags |= XDEBUG_CC_DEAD_CODE; - } - if ($this->collectsBranchAndPathCoverage()) { - $flags |= XDEBUG_CC_BRANCH_CHECK; - } - xdebug_start_code_coverage($flags); + $this->valueType = $valueType; } - public function stop() : RawCodeCoverageData + /** + * Returns the value for the keys of this array. + */ + public function getValueType(): Type { - $data = xdebug_get_code_coverage(); - xdebug_stop_code_coverage(); - if ($this->collectsBranchAndPathCoverage()) { - if ($this->pathCoverageIsMixedCoverage) { - return RawCodeCoverageData::fromXdebugWithMixedCoverage($data); - } - return RawCodeCoverageData::fromXdebugWithPathCoverage($data); - } - return RawCodeCoverageData::fromXdebugWithoutPathCoverage($data); + return $this->valueType; } - public function nameAndVersion() : string + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - return 'Xdebug ' . phpversion('xdebug'); + return '(' . $this->valueType . ')'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use const XDEBUG_CC_BRANCH_CHECK; -use const XDEBUG_CC_DEAD_CODE; -use const XDEBUG_CC_UNUSED; -use const XDEBUG_FILTER_CODE_COVERAGE; -use const XDEBUG_PATH_INCLUDE; -use function explode; -use function extension_loaded; -use function getenv; -use function in_array; -use function ini_get; -use function phpversion; -use function sprintf; -use function version_compare; -use function xdebug_get_code_coverage; -use function xdebug_set_filter; -use function xdebug_start_code_coverage; -use function xdebug_stop_code_coverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing a Boolean type. + * + * @psalm-immutable */ -final class Xdebug3Driver extends Driver +class Boolean implements Type { /** - * @throws WrongXdebugVersionException - * @throws Xdebug3NotEnabledException - * @throws XdebugNotAvailableException + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function __construct(Filter $filter) - { - if (!extension_loaded('xdebug')) { - throw new XdebugNotAvailableException(); - } - if (version_compare(phpversion('xdebug'), '3', '<')) { - throw new WrongXdebugVersionException(sprintf('This driver requires Xdebug 3 but version %s is loaded', phpversion('xdebug'))); - } - $mode = getenv('XDEBUG_MODE'); - if ($mode === \false || $mode === '') { - $mode = ini_get('xdebug.mode'); - } - if ($mode === \false || !in_array('coverage', explode(',', $mode), \true)) { - throw new Xdebug3NotEnabledException(); - } - if (!$filter->isEmpty()) { - xdebug_set_filter(XDEBUG_FILTER_CODE_COVERAGE, XDEBUG_PATH_INCLUDE, $filter->files()); - } - } - public function canCollectBranchAndPathCoverage() : bool - { - return \true; - } - public function canDetectDeadCode() : bool - { - return \true; - } - public function start() : void - { - $flags = XDEBUG_CC_UNUSED; - if ($this->detectsDeadCode() || $this->collectsBranchAndPathCoverage()) { - $flags |= XDEBUG_CC_DEAD_CODE; - } - if ($this->collectsBranchAndPathCoverage()) { - $flags |= XDEBUG_CC_BRANCH_CHECK; - } - xdebug_start_code_coverage($flags); - } - public function stop() : RawCodeCoverageData + public function __toString(): string { - $data = xdebug_get_code_coverage(); - xdebug_stop_code_coverage(); - if ($this->collectsBranchAndPathCoverage()) { - return RawCodeCoverageData::fromXdebugWithPathCoverage($data); - } - return RawCodeCoverageData::fromXdebugWithoutPathCoverage($data); - } - public function nameAndVersion() : string - { - return 'Xdebug ' . phpversion('xdebug'); + return 'bool'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -use RuntimeException; -final class BranchAndPathCoverageNotSupportedException extends RuntimeException implements Exception -{ -} - +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value object representing Integer type * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @psalm-immutable */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -use RuntimeException; -final class DeadCodeDetectionNotSupportedException extends RuntimeException implements Exception +class Integer implements Type { + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'int'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Util; - -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class DirectoryCouldNotBeCreatedException extends RuntimeException implements Exception -{ -} - + * Self, as a Type, represents the class in which the associated element was defined. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @psalm-immutable */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -use Throwable; -interface Exception extends Throwable +final class Self_ implements Type { + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'self'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -final class InvalidArgumentException extends \InvalidArgumentException implements Exception -{ -} - + * Void is generally only used when working with return types as it signifies that the method intentionally does not + * return any value. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @psalm-immutable */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -use RuntimeException; -final class NoCodeCoverageDriverAvailableException extends RuntimeException implements Exception +final class Void_ implements Type { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('No code coverage driver available'); + return 'void'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class NoCodeCoverageDriverWithPathCoverageSupportAvailableException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a null value or type. + * + * @psalm-immutable + */ +final class Null_ implements Type { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('No code coverage driver with path coverage support available'); + return 'null'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class ParserException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the 'resource' Type. + * + * @psalm-immutable + */ +final class Resource_ implements Type { + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'resource'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function sprintf; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class PathExistsButIsNotDirectoryException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a Float. + * + * @psalm-immutable + */ +class Float_ implements Type { - public function __construct(string $path) + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct(sprintf('"%s" exists but is not a directory', $path)); + return 'float'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class PcovNotAvailableException extends RuntimeException implements Exception +use InvalidArgumentException; +use PHPUnitPHAR\phpDocumentor\Reflection\Fqsen; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use function strpos; +/** + * Value Object representing an object. + * + * An object can be either typed or untyped. When an object is typed it means that it has an identifier, the FQSEN, + * pointing to an element in PHP. Object types that are untyped do not refer to a specific class but represent objects + * in general. + * + * @psalm-immutable + */ +final class Object_ implements Type { - public function __construct() + /** @var Fqsen|null */ + private $fqsen; + /** + * Initializes this object with an optional FQSEN, if not provided this object is considered 'untyped'. + * + * @throws InvalidArgumentException When provided $fqsen is not a valid type. + */ + public function __construct(?Fqsen $fqsen = null) { - parent::__construct('The PCOV extension is not available'); + if (strpos((string) $fqsen, '::') !== \false || strpos((string) $fqsen, '()') !== \false) { + throw new InvalidArgumentException('Object types can only refer to a class, interface or trait but a method, function, constant or ' . 'property was received: ' . (string) $fqsen); + } + $this->fqsen = $fqsen; + } + /** + * Returns the FQSEN associated with this object. + */ + public function getFqsen(): ?Fqsen + { + return $this->fqsen; + } + public function __toString(): string + { + if ($this->fqsen) { + return (string) $this->fqsen; + } + return 'object'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class PhpdbgNotAvailableException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the type 'string'. + * + * @psalm-immutable + */ +class String_ implements Type { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('The PHPDBG SAPI is not available'); + return 'string'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class ReflectionException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a nullable type. The real type is wrapped. + * + * @psalm-immutable + */ +final class Nullable implements Type { + /** @var Type The actual type that is wrapped */ + private $realType; + /** + * Initialises this nullable type using the real type embedded + */ + public function __construct(Type $realType) + { + $this->realType = $realType; + } + /** + * Provide access to the actual type directly, if needed. + */ + public function getActualType(): Type + { + return $this->realType; + } + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return '?' . $this->realType->__toString(); + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class ReportAlreadyFinalizedException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a Callable type. + * + * @psalm-immutable + */ +final class Callable_ implements Type { - public function __construct() + /** @var Type|null */ + private $returnType; + /** @var CallableParameter[] */ + private $parameters; + /** + * @param CallableParameter[] $parameters + */ + public function __construct(array $parameters = [], ?Type $returnType = null) { - parent::__construct('The code coverage report has already been finalized'); + $this->parameters = $parameters; + $this->returnType = $returnType; + } + /** @return CallableParameter[] */ + public function getParameters(): array + { + return $this->parameters; + } + public function getReturnType(): ?Type + { + return $this->returnType; + } + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'callable'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class StaticAnalysisCacheNotConfiguredException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Fqsen; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the type 'string'. + * + * @psalm-immutable + */ +final class InterfaceString implements Type { + /** @var Fqsen|null */ + private $fqsen; + /** + * Initializes this representation of a class string with the given Fqsen. + */ + public function __construct(?Fqsen $fqsen = null) + { + $this->fqsen = $fqsen; + } + /** + * Returns the FQSEN associated with this object. + */ + public function getFqsen(): ?Fqsen + { + return $this->fqsen; + } + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + if ($this->fqsen === null) { + return 'interface-string'; + } + return 'interface-string<' . (string) $this->fqsen . '>'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class TestIdMissingException extends RuntimeException implements Exception +/** + * Value Object representing iterable type + * + * @psalm-immutable + */ +final class Iterable_ extends AbstractList { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('Test ID is missing'); + if ($this->keyType) { + return 'iterable<' . $this->keyType . ',' . $this->valueType . '>'; + } + if ($this->valueType instanceof Mixed_) { + return 'iterable'; + } + return 'iterable<' . $this->valueType . '>'; } } + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +declare (strict_types=1); +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class UnintentionallyCoveredCodeException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a Callable parameters. + * + * @psalm-immutable + */ +final class CallableParameter { - /** - * @var array - */ - private $unintentionallyCoveredUnits; - public function __construct(array $unintentionallyCoveredUnits) + /** @var Type */ + private $type; + /** @var bool */ + private $isReference; + /** @var bool */ + private $isVariadic; + /** @var bool */ + private $isOptional; + /** @var string|null */ + private $name; + public function __construct(Type $type, ?string $name = null, bool $isReference = \false, bool $isVariadic = \false, bool $isOptional = \false) { - $this->unintentionallyCoveredUnits = $unintentionallyCoveredUnits; - parent::__construct($this->toString()); + $this->type = $type; + $this->isReference = $isReference; + $this->isVariadic = $isVariadic; + $this->isOptional = $isOptional; + $this->name = $name; } - public function getUnintentionallyCoveredUnits() : array + public function getName(): ?string { - return $this->unintentionallyCoveredUnits; + return $this->name; } - private function toString() : string + public function getType(): Type { - $message = ''; - foreach ($this->unintentionallyCoveredUnits as $unit) { - $message .= '- ' . $unit . "\n"; - } - return $message; + return $this->type; + } + public function isReference(): bool + { + return $this->isReference; + } + public function isVariadic(): bool + { + return $this->isVariadic; + } + public function isOptional(): bool + { + return $this->isOptional; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function sprintf; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class WriteOperationFailedException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing a array-key Type. + * + * A array-key Type is the supertype (but not a union) of int and string. + * + * @psalm-immutable + */ +final class ArrayKey extends AggregatedType implements PseudoType { - public function __construct(string $path) + public function __construct() { - parent::__construct(sprintf('Cannot write to "%s"', $path)); + parent::__construct([new String_(), new Integer()], '|'); + } + public function underlyingType(): Type + { + return new Compound([new String_(), new Integer()]); + } + public function __toString(): string + { + return 'array-key'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class WrongXdebugVersionException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the return-type 'never'. + * + * Never is generally only used when working with return types as it signifies that the method that only + * ever throw or exit. + * + * @psalm-immutable + */ +final class Never_ implements Type { + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'never'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class Xdebug2NotEnabledException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the 'static' type. + * + * Self, as a Type, represents the class in which the associated element was called. This differs from self as self does + * not take inheritance into account but static means that the return type is always that of the class of the called + * element. + * + * See the documentation on late static binding in the PHP Documentation for more information on the difference between + * static and self. + * + * @psalm-immutable + */ +final class Static_ implements Type { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('xdebug.coverage_enable=On has to be set'); + return 'static'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class Xdebug3NotEnabledException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Fqsen; +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the type 'string'. + * + * @psalm-immutable + */ +final class ClassString extends String_ implements PseudoType { - public function __construct() + /** @var Fqsen|null */ + private $fqsen; + /** + * Initializes this representation of a class string with the given Fqsen. + */ + public function __construct(?Fqsen $fqsen = null) + { + $this->fqsen = $fqsen; + } + public function underlyingType(): Type + { + return new String_(); + } + /** + * Returns the FQSEN associated with this object. + */ + public function getFqsen(): ?Fqsen + { + return $this->fqsen; + } + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('XDEBUG_MODE=coverage or xdebug.mode=coverage has to be set'); + if ($this->fqsen === null) { + return 'class-string'; + } + return 'class-string<' . (string) $this->fqsen . '>'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Driver; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -use PHPUnit\SebastianBergmann\CodeCoverage\Exception; -final class XdebugNotAvailableException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the 'parent' type. + * + * Parent, as a Type, represents the parent class of class in which the associated element was defined. + * + * @psalm-immutable + */ +final class Parent_ implements Type { - public function __construct() + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - parent::__construct('The Xdebug extension is not available'); + return 'parent'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use RuntimeException; -final class XmlException extends RuntimeException implements Exception +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +/** + * Value Object representing the 'scalar' pseudo-type, which is either a string, integer, float or boolean. + * + * @psalm-immutable + */ +final class Scalar implements Type { + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string + { + return 'scalar'; + } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function array_keys; -use function is_file; -use function realpath; -use function strpos; -use PHPUnit\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; -final class Filter +use function strlen; +use function substr; +use function trim; +/** + * Provides information about the Context in which the DocBlock occurs that receives this context. + * + * A DocBlock does not know of its own accord in which namespace it occurs and which namespace aliases are applicable + * for the block of code in which it is in. This information is however necessary to resolve Class names in tags since + * you can provide a short form or make use of namespace aliases. + * + * The phpDocumentor Reflection component knows how to create this class but if you use the DocBlock parser from your + * own application it is possible to generate a Context class using the ContextFactory; this will analyze the file in + * which an associated class resides for its namespace and imports. + * + * @see ContextFactory::createFromClassReflector() + * @see ContextFactory::createForNamespace() + * + * @psalm-immutable + */ +final class Context { + /** @var string The current namespace. */ + private $namespace; /** - * @psalm-var array + * @var string[] List of namespace aliases => Fully Qualified Namespace. + * @psalm-var array */ - private $files = []; + private $namespaceAliases; /** - * @psalm-var array + * Initializes the new context and normalizes all passed namespaces to be in Qualified Namespace Name (QNN) + * format (without a preceding `\`). + * + * @param string $namespace The namespace where this DocBlock resides in. + * @param string[] $namespaceAliases List of namespace aliases => Fully Qualified Namespace. + * @psalm-param array $namespaceAliases */ - private $isFileCache = []; - public function includeDirectory(string $directory, string $suffix = '.php', string $prefix = '') : void + public function __construct(string $namespace, array $namespaceAliases = []) { - foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) { - $this->includeFile($file); + $this->namespace = $namespace !== 'global' && $namespace !== 'default' ? trim($namespace, '\\') : ''; + foreach ($namespaceAliases as $alias => $fqnn) { + if ($fqnn[0] === '\\') { + $fqnn = substr($fqnn, 1); + } + if ($fqnn[strlen($fqnn) - 1] === '\\') { + $fqnn = substr($fqnn, 0, -1); + } + $namespaceAliases[$alias] = $fqnn; } + $this->namespaceAliases = $namespaceAliases; } /** - * @psalm-param list $files + * Returns the Qualified Namespace Name (thus without `\` in front) where the associated element is in. */ - public function includeFiles(array $filenames) : void - { - foreach ($filenames as $filename) { - $this->includeFile($filename); - } - } - public function includeFile(string $filename) : void - { - $filename = realpath($filename); - if (!$filename) { - return; - } - $this->files[$filename] = \true; - } - public function excludeDirectory(string $directory, string $suffix = '.php', string $prefix = '') : void - { - foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) { - $this->excludeFile($file); - } - } - public function excludeFile(string $filename) : void - { - $filename = realpath($filename); - if (!$filename || !isset($this->files[$filename])) { - return; - } - unset($this->files[$filename]); - } - public function isFile(string $filename) : bool - { - if (isset($this->isFileCache[$filename])) { - return $this->isFileCache[$filename]; - } - if ($filename === '-' || strpos($filename, 'vfs://') === 0 || strpos($filename, 'xdebug://debug-eval') !== \false || strpos($filename, 'eval()\'d code') !== \false || strpos($filename, 'runtime-created function') !== \false || strpos($filename, 'runkit created function') !== \false || strpos($filename, 'assert code') !== \false || strpos($filename, 'regexp code') !== \false || strpos($filename, 'Standard input code') !== \false) { - $isFile = \false; - } else { - $isFile = is_file($filename); - } - $this->isFileCache[$filename] = $isFile; - return $isFile; - } - public function isExcluded(string $filename) : bool + public function getNamespace(): string { - return !isset($this->files[$filename]) || !$this->isFile($filename); + return $this->namespace; } /** - * @psalm-return list + * Returns a list of Qualified Namespace Names (thus without `\` in front) that are imported, the keys represent + * the alias for the imported Namespace. + * + * @return string[] + * @psalm-return array */ - public function files() : array - { - return array_keys($this->files); - } - public function isEmpty() : bool + public function getNamespaceAliases(): array { - return empty($this->files); + return $this->namespaceAliases; } } -php-code-coverage - -Copyright (c) 2009-2022, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use const DIRECTORY_SEPARATOR; -use function array_merge; -use function str_replace; -use function substr; -use Countable; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Percentage; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Represents a list of values. This is an abstract class for Array_ and Collection. + * + * @psalm-immutable */ -abstract class AbstractNode implements Countable +abstract class AbstractList implements Type { + /** @var Type */ + protected $valueType; + /** @var Type|null */ + protected $keyType; + /** @var Type */ + protected $defaultKeyType; /** - * @var string - */ - private $name; - /** - * @var string - */ - private $pathAsString; - /** - * @var array - */ - private $pathAsArray; - /** - * @var AbstractNode - */ - private $parent; - /** - * @var string + * Initializes this representation of an array with the given Type. */ - private $id; - public function __construct(string $name, self $parent = null) + public function __construct(?Type $valueType = null, ?Type $keyType = null) { - if (substr($name, -1) === DIRECTORY_SEPARATOR) { - $name = substr($name, 0, -1); + if ($valueType === null) { + $valueType = new Mixed_(); } - $this->name = $name; - $this->parent = $parent; + $this->valueType = $valueType; + $this->defaultKeyType = new Compound([new String_(), new Integer()]); + $this->keyType = $keyType; } - public function name() : string + /** + * Returns the type for the keys of this array. + */ + public function getKeyType(): Type { - return $this->name; + return $this->keyType ?? $this->defaultKeyType; } - public function id() : string + /** + * Returns the type for the values of this array. + */ + public function getValueType(): Type { - if ($this->id === null) { - $parent = $this->parent(); - if ($parent === null) { - $this->id = 'index'; - } else { - $parentId = $parent->id(); - if ($parentId === 'index') { - $this->id = str_replace(':', '_', $this->name); - } else { - $this->id = $parentId . '/' . $this->name; - } - } - } - return $this->id; + return $this->valueType; } - public function pathAsString() : string + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - if ($this->pathAsString === null) { - if ($this->parent === null) { - $this->pathAsString = $this->name; - } else { - $this->pathAsString = $this->parent->pathAsString() . DIRECTORY_SEPARATOR . $this->name; - } + if ($this->keyType) { + return 'array<' . $this->keyType . ',' . $this->valueType . '>'; } - return $this->pathAsString; - } - public function pathAsArray() : array - { - if ($this->pathAsArray === null) { - if ($this->parent === null) { - $this->pathAsArray = []; - } else { - $this->pathAsArray = $this->parent->pathAsArray(); - } - $this->pathAsArray[] = $this; + if ($this->valueType instanceof Mixed_) { + return 'array'; } - return $this->pathAsArray; - } - public function parent() : ?self - { - return $this->parent; - } - public function percentageOfTestedClasses() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedClasses(), $this->numberOfClasses()); - } - public function percentageOfTestedTraits() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedTraits(), $this->numberOfTraits()); - } - public function percentageOfTestedClassesAndTraits() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedClassesAndTraits(), $this->numberOfClassesAndTraits()); - } - public function percentageOfTestedFunctions() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedFunctions(), $this->numberOfFunctions()); - } - public function percentageOfTestedMethods() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedMethods(), $this->numberOfMethods()); - } - public function percentageOfTestedFunctionsAndMethods() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfTestedFunctionsAndMethods(), $this->numberOfFunctionsAndMethods()); - } - public function percentageOfExecutedLines() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfExecutedLines(), $this->numberOfExecutableLines()); - } - public function percentageOfExecutedBranches() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfExecutedBranches(), $this->numberOfExecutableBranches()); - } - public function percentageOfExecutedPaths() : Percentage - { - return Percentage::fromFractionAndTotal($this->numberOfExecutedPaths(), $this->numberOfExecutablePaths()); - } - public function numberOfClassesAndTraits() : int - { - return $this->numberOfClasses() + $this->numberOfTraits(); - } - public function numberOfTestedClassesAndTraits() : int - { - return $this->numberOfTestedClasses() + $this->numberOfTestedTraits(); - } - public function classesAndTraits() : array - { - return array_merge($this->classes(), $this->traits()); - } - public function numberOfFunctionsAndMethods() : int - { - return $this->numberOfFunctions() + $this->numberOfMethods(); - } - public function numberOfTestedFunctionsAndMethods() : int - { - return $this->numberOfTestedFunctions() + $this->numberOfTestedMethods(); + if ($this->valueType instanceof Compound) { + return '(' . $this->valueType . ')[]'; + } + return $this->valueType . '[]'; } - public abstract function classes() : array; - public abstract function traits() : array; - public abstract function functions() : array; - /** - * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} - */ - public abstract function linesOfCode() : array; - public abstract function numberOfExecutableLines() : int; - public abstract function numberOfExecutedLines() : int; - public abstract function numberOfExecutableBranches() : int; - public abstract function numberOfExecutedBranches() : int; - public abstract function numberOfExecutablePaths() : int; - public abstract function numberOfExecutedPaths() : int; - public abstract function numberOfClasses() : int; - public abstract function numberOfTestedClasses() : int; - public abstract function numberOfTraits() : int; - public abstract function numberOfTestedTraits() : int; - public abstract function numberOfMethods() : int; - public abstract function numberOfTestedMethods() : int; - public abstract function numberOfFunctions() : int; - public abstract function numberOfTestedFunctions() : int; } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use const DIRECTORY_SEPARATOR; -use function array_shift; -use function basename; -use function count; -use function dirname; -use function explode; -use function implode; -use function is_file; -use function str_replace; -use function strpos; -use function substr; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\ProcessedCodeCoverageData; -use PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser; +use PHPUnitPHAR\phpDocumentor\Reflection\Fqsen; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Represents a collection type as described in the PSR-5, the PHPDoc Standard. + * + * A collection can be represented in two forms: + * + * 1. `ACollectionObject` + * 2. `ACollectionObject` + * + * - ACollectionObject can be 'array' or an object that can act as an array + * - aValueType and aKeyType can be any type expression + * + * @psalm-immutable */ -final class Builder +final class Collection extends AbstractList { + /** @var Fqsen|null */ + private $fqsen; /** - * @var FileAnalyser + * Initializes this representation of an array with the given Type or Fqsen. */ - private $analyser; - public function __construct(FileAnalyser $analyser) - { - $this->analyser = $analyser; - } - public function build(CodeCoverage $coverage) : Directory - { - $data = clone $coverage->getData(); - // clone because path munging is destructive to the original data - $commonPath = $this->reducePaths($data); - $root = new Directory($commonPath, null); - $this->addItems($root, $this->buildDirectoryStructure($data), $coverage->getTests()); - return $root; - } - private function addItems(Directory $root, array $items, array $tests) : void + public function __construct(?Fqsen $fqsen, Type $valueType, ?Type $keyType = null) { - foreach ($items as $key => $value) { - $key = (string) $key; - if (substr($key, -2) === '/f') { - $key = substr($key, 0, -2); - $filename = $root->pathAsString() . DIRECTORY_SEPARATOR . $key; - if (is_file($filename)) { - $root->addFile(new File($key, $root, $value['lineCoverage'], $value['functionCoverage'], $tests, $this->analyser->classesIn($filename), $this->analyser->traitsIn($filename), $this->analyser->functionsIn($filename), $this->analyser->linesOfCodeFor($filename))); - } - } else { - $child = $root->addDirectory($key); - $this->addItems($child, $value, $tests); - } - } + parent::__construct($valueType, $keyType); + $this->fqsen = $fqsen; } /** - * Builds an array representation of the directory structure. - * - * For instance, - * - * - * Array - * ( - * [Money.php] => Array - * ( - * ... - * ) - * - * [MoneyBag.php] => Array - * ( - * ... - * ) - * ) - * - * - * is transformed into - * - * - * Array - * ( - * [.] => Array - * ( - * [Money.php] => Array - * ( - * ... - * ) - * - * [MoneyBag.php] => Array - * ( - * ... - * ) - * ) - * ) - * + * Returns the FQSEN associated with this object. */ - private function buildDirectoryStructure(ProcessedCodeCoverageData $data) : array + public function getFqsen(): ?Fqsen { - $result = []; - foreach ($data->coveredFiles() as $originalPath) { - $path = explode(DIRECTORY_SEPARATOR, $originalPath); - $pointer =& $result; - $max = count($path); - for ($i = 0; $i < $max; $i++) { - $type = ''; - if ($i === $max - 1) { - $type = '/f'; - } - $pointer =& $pointer[$path[$i] . $type]; - } - $pointer = ['lineCoverage' => $data->lineCoverage()[$originalPath] ?? [], 'functionCoverage' => $data->functionCoverage()[$originalPath] ?? []]; - } - return $result; + return $this->fqsen; } /** - * Reduces the paths by cutting the longest common start path. - * - * For instance, - * - * - * Array - * ( - * [/home/sb/Money/Money.php] => Array - * ( - * ... - * ) - * - * [/home/sb/Money/MoneyBag.php] => Array - * ( - * ... - * ) - * ) - * - * - * is reduced to - * - * - * Array - * ( - * [Money.php] => Array - * ( - * ... - * ) - * - * [MoneyBag.php] => Array - * ( - * ... - * ) - * ) - * + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - private function reducePaths(ProcessedCodeCoverageData $coverage) : string + public function __toString(): string { - if (empty($coverage->coveredFiles())) { - return '.'; - } - $commonPath = ''; - $paths = $coverage->coveredFiles(); - if (count($paths) === 1) { - $commonPath = dirname($paths[0]) . DIRECTORY_SEPARATOR; - $coverage->renameFile($paths[0], basename($paths[0])); - return $commonPath; - } - $max = count($paths); - for ($i = 0; $i < $max; $i++) { - // strip phar:// prefixes - if (strpos($paths[$i], 'phar://') === 0) { - $paths[$i] = substr($paths[$i], 7); - $paths[$i] = str_replace('/', DIRECTORY_SEPARATOR, $paths[$i]); - } - $paths[$i] = explode(DIRECTORY_SEPARATOR, $paths[$i]); - if (empty($paths[$i][0])) { - $paths[$i][0] = DIRECTORY_SEPARATOR; - } - } - $done = \false; - $max = count($paths); - while (!$done) { - for ($i = 0; $i < $max - 1; $i++) { - if (!isset($paths[$i][0]) || !isset($paths[$i + 1][0]) || $paths[$i][0] !== $paths[$i + 1][0]) { - $done = \true; - break; - } - } - if (!$done) { - $commonPath .= $paths[0][0]; - if ($paths[0][0] !== DIRECTORY_SEPARATOR) { - $commonPath .= DIRECTORY_SEPARATOR; - } - for ($i = 0; $i < $max; $i++) { - array_shift($paths[$i]); - } - } - } - $original = $coverage->coveredFiles(); - $max = count($original); - for ($i = 0; $i < $max; $i++) { - $coverage->renameFile($original[$i], implode(DIRECTORY_SEPARATOR, $paths[$i])); + $objectType = (string) ($this->fqsen ?? 'object'); + if ($this->keyType === null) { + return $objectType . '<' . $this->valueType . '>'; } - return substr($commonPath, 0, -1); + return $objectType . '<' . $this->keyType . ',' . $this->valueType . '>'; } } + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +declare (strict_types=1); +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function sprintf; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing a Compound Type. + * + * A Intersection Type is not so much a special keyword or object reference but is a series of Types that are separated + * using an AND operator (`&`). This combination of types signifies that whatever is associated with this Intersection + * type may contain a value with any of the given types. + * + * @psalm-immutable */ -final class CrapIndex +final class Intersection extends AggregatedType { /** - * @var int - */ - private $cyclomaticComplexity; - /** - * @var float + * Initializes a intersection type (i.e. `\A&\B`) and tests if the provided types all implement the Type interface. + * + * @param array $types */ - private $codeCoverage; - public function __construct(int $cyclomaticComplexity, float $codeCoverage) - { - $this->cyclomaticComplexity = $cyclomaticComplexity; - $this->codeCoverage = $codeCoverage; - } - public function asString() : string + public function __construct(array $types) { - if ($this->codeCoverage === 0.0) { - return (string) ($this->cyclomaticComplexity ** 2 + $this->cyclomaticComplexity); - } - if ($this->codeCoverage >= 95) { - return (string) $this->cyclomaticComplexity; - } - return sprintf('%01.2F', $this->cyclomaticComplexity ** 2 * (1 - $this->codeCoverage / 100) ** 3 + $this->cyclomaticComplexity); + parent::__construct($types, '&'); } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function array_merge; -use function count; -use IteratorAggregate; -use RecursiveIteratorIterator; +use ArrayIterator; +use InvalidArgumentException; +use ReflectionClass; +use ReflectionClassConstant; +use ReflectionMethod; +use ReflectionParameter; +use ReflectionProperty; +use Reflector; +use RuntimeException; +use UnexpectedValueException; +use function define; +use function defined; +use function file_exists; +use function file_get_contents; +use function get_class; +use function in_array; +use function is_string; +use function strrpos; +use function substr; +use function token_get_all; +use function trim; +use const T_AS; +use const T_CLASS; +use const T_CURLY_OPEN; +use const T_DOLLAR_OPEN_CURLY_BRACES; +use const T_NAME_FULLY_QUALIFIED; +use const T_NAME_QUALIFIED; +use const T_NAMESPACE; +use const T_NS_SEPARATOR; +use const T_STRING; +use const T_TRAIT; +use const T_USE; +if (!defined('T_NAME_QUALIFIED')) { + define('T_NAME_QUALIFIED', 10001); +} +if (!defined('T_NAME_FULLY_QUALIFIED')) { + define('T_NAME_FULLY_QUALIFIED', 10002); +} /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Convenience class to create a Context for DocBlocks when not using the Reflection Component of phpDocumentor. + * + * For a DocBlock to be able to resolve types that use partial namespace names or rely on namespace imports we need to + * provide a bit of context so that the DocBlock can read that and based on it decide how to resolve the types to + * Fully Qualified names. + * + * @see Context for more information. */ -final class Directory extends AbstractNode implements IteratorAggregate +final class ContextFactory { + /** The literal used at the end of a use statement. */ + private const T_LITERAL_END_OF_USE = ';'; + /** The literal used between sets of use statements */ + private const T_LITERAL_USE_SEPARATOR = ','; /** - * @var AbstractNode[] - */ - private $children = []; - /** - * @var Directory[] - */ - private $directories = []; - /** - * @var File[] - */ - private $files = []; - /** - * @var array - */ - private $classes; - /** - * @var array - */ - private $traits; - /** - * @var array - */ - private $functions; - /** - * @psalm-var null|array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} - */ - private $linesOfCode; - /** - * @var int - */ - private $numFiles = -1; - /** - * @var int - */ - private $numExecutableLines = -1; - /** - * @var int - */ - private $numExecutedLines = -1; - /** - * @var int - */ - private $numExecutableBranches = -1; - /** - * @var int - */ - private $numExecutedBranches = -1; - /** - * @var int - */ - private $numExecutablePaths = -1; - /** - * @var int - */ - private $numExecutedPaths = -1; - /** - * @var int - */ - private $numClasses = -1; - /** - * @var int - */ - private $numTestedClasses = -1; - /** - * @var int - */ - private $numTraits = -1; - /** - * @var int - */ - private $numTestedTraits = -1; - /** - * @var int - */ - private $numMethods = -1; - /** - * @var int - */ - private $numTestedMethods = -1; - /** - * @var int - */ - private $numFunctions = -1; - /** - * @var int + * Build a Context given a Class Reflection. + * + * @see Context for more information on Contexts. */ - private $numTestedFunctions = -1; - public function count() : int + public function createFromReflector(Reflector $reflector): Context { - if ($this->numFiles === -1) { - $this->numFiles = 0; - foreach ($this->children as $child) { - $this->numFiles += count($child); - } + if ($reflector instanceof ReflectionClass) { + //phpcs:ignore SlevomatCodingStandard.Commenting.InlineDocCommentDeclaration.MissingVariable + /** @var ReflectionClass $reflector */ + return $this->createFromReflectionClass($reflector); } - return $this->numFiles; - } - public function getIterator() : RecursiveIteratorIterator - { - return new RecursiveIteratorIterator(new Iterator($this), RecursiveIteratorIterator::SELF_FIRST); - } - public function addDirectory(string $name) : self - { - $directory = new self($name, $this); - $this->children[] = $directory; - $this->directories[] =& $this->children[count($this->children) - 1]; - return $directory; - } - public function addFile(File $file) : void - { - $this->children[] = $file; - $this->files[] =& $this->children[count($this->children) - 1]; - $this->numExecutableLines = -1; - $this->numExecutedLines = -1; + if ($reflector instanceof ReflectionParameter) { + return $this->createFromReflectionParameter($reflector); + } + if ($reflector instanceof ReflectionMethod) { + return $this->createFromReflectionMethod($reflector); + } + if ($reflector instanceof ReflectionProperty) { + return $this->createFromReflectionProperty($reflector); + } + if ($reflector instanceof ReflectionClassConstant) { + return $this->createFromReflectionClassConstant($reflector); + } + throw new UnexpectedValueException('Unhandled \Reflector instance given: ' . get_class($reflector)); } - public function directories() : array + private function createFromReflectionParameter(ReflectionParameter $parameter): Context { - return $this->directories; + $class = $parameter->getDeclaringClass(); + if (!$class) { + throw new InvalidArgumentException('Unable to get class of ' . $parameter->getName()); + } + return $this->createFromReflectionClass($class); } - public function files() : array + private function createFromReflectionMethod(ReflectionMethod $method): Context { - return $this->files; + $class = $method->getDeclaringClass(); + return $this->createFromReflectionClass($class); } - public function children() : array + private function createFromReflectionProperty(ReflectionProperty $property): Context { - return $this->children; + $class = $property->getDeclaringClass(); + return $this->createFromReflectionClass($class); } - public function classes() : array + private function createFromReflectionClassConstant(ReflectionClassConstant $constant): Context { - if ($this->classes === null) { - $this->classes = []; - foreach ($this->children as $child) { - $this->classes = array_merge($this->classes, $child->classes()); - } - } - return $this->classes; + //phpcs:ignore SlevomatCodingStandard.Commenting.InlineDocCommentDeclaration.MissingVariable + /** @phpstan-var ReflectionClass $class */ + $class = $constant->getDeclaringClass(); + return $this->createFromReflectionClass($class); } - public function traits() : array + /** + * @phpstan-param ReflectionClass $class + */ + private function createFromReflectionClass(ReflectionClass $class): Context { - if ($this->traits === null) { - $this->traits = []; - foreach ($this->children as $child) { - $this->traits = array_merge($this->traits, $child->traits()); + $fileName = $class->getFileName(); + $namespace = $class->getNamespaceName(); + if (is_string($fileName) && file_exists($fileName)) { + $contents = file_get_contents($fileName); + if ($contents === \false) { + throw new RuntimeException('Unable to read file "' . $fileName . '"'); } + return $this->createForNamespace($namespace, $contents); } - return $this->traits; + return new Context($namespace, []); } - public function functions() : array + /** + * Build a Context for a namespace in the provided file contents. + * + * @see Context for more information on Contexts. + * + * @param string $namespace It does not matter if a `\` precedes the namespace name, + * this method first normalizes. + * @param string $fileContents The file's contents to retrieve the aliases from with the given namespace. + */ + public function createForNamespace(string $namespace, string $fileContents): Context { - if ($this->functions === null) { - $this->functions = []; - foreach ($this->children as $child) { - $this->functions = array_merge($this->functions, $child->functions()); + $namespace = trim($namespace, '\\'); + $useStatements = []; + $currentNamespace = ''; + $tokens = new ArrayIterator(token_get_all($fileContents)); + while ($tokens->valid()) { + $currentToken = $tokens->current(); + switch ($currentToken[0]) { + case T_NAMESPACE: + $currentNamespace = $this->parseNamespace($tokens); + break; + case T_CLASS: + case T_TRAIT: + // Fast-forward the iterator through the class so that any + // T_USE tokens found within are skipped - these are not + // valid namespace use statements so should be ignored. + $braceLevel = 0; + $firstBraceFound = \false; + while ($tokens->valid() && ($braceLevel > 0 || !$firstBraceFound)) { + $currentToken = $tokens->current(); + if ($currentToken === '{' || in_array($currentToken[0], [T_CURLY_OPEN, T_DOLLAR_OPEN_CURLY_BRACES], \true)) { + if (!$firstBraceFound) { + $firstBraceFound = \true; + } + ++$braceLevel; + } + if ($currentToken === '}') { + --$braceLevel; + } + $tokens->next(); + } + break; + case T_USE: + if ($currentNamespace === $namespace) { + $useStatements += $this->parseUseStatement($tokens); + } + break; } + $tokens->next(); } - return $this->functions; + return new Context($namespace, $useStatements); } /** - * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + * Deduce the name from tokens when we are at the T_NAMESPACE token. + * + * @param ArrayIterator $tokens */ - public function linesOfCode() : array + private function parseNamespace(ArrayIterator $tokens): string { - if ($this->linesOfCode === null) { - $this->linesOfCode = ['linesOfCode' => 0, 'commentLinesOfCode' => 0, 'nonCommentLinesOfCode' => 0]; - foreach ($this->children as $child) { - $childLinesOfCode = $child->linesOfCode(); - $this->linesOfCode['linesOfCode'] += $childLinesOfCode['linesOfCode']; - $this->linesOfCode['commentLinesOfCode'] += $childLinesOfCode['commentLinesOfCode']; - $this->linesOfCode['nonCommentLinesOfCode'] += $childLinesOfCode['nonCommentLinesOfCode']; - } + // skip to the first string or namespace separator + $this->skipToNextStringOrNamespaceSeparator($tokens); + $name = ''; + $acceptedTokens = [T_STRING, T_NS_SEPARATOR, T_NAME_QUALIFIED]; + while ($tokens->valid() && in_array($tokens->current()[0], $acceptedTokens, \true)) { + $name .= $tokens->current()[1]; + $tokens->next(); } - return $this->linesOfCode; + return $name; } - public function numberOfExecutableLines() : int + /** + * Deduce the names of all imports when we are at the T_USE token. + * + * @param ArrayIterator $tokens + * + * @return string[] + * @psalm-return array + */ + private function parseUseStatement(ArrayIterator $tokens): array { - if ($this->numExecutableLines === -1) { - $this->numExecutableLines = 0; - foreach ($this->children as $child) { - $this->numExecutableLines += $child->numberOfExecutableLines(); + $uses = []; + while ($tokens->valid()) { + $this->skipToNextStringOrNamespaceSeparator($tokens); + $uses += $this->extractUseStatements($tokens); + $currentToken = $tokens->current(); + if ($currentToken[0] === self::T_LITERAL_END_OF_USE) { + return $uses; } } - return $this->numExecutableLines; + return $uses; } - public function numberOfExecutedLines() : int + /** + * Fast-forwards the iterator as longs as we don't encounter a T_STRING or T_NS_SEPARATOR token. + * + * @param ArrayIterator $tokens + */ + private function skipToNextStringOrNamespaceSeparator(ArrayIterator $tokens): void { - if ($this->numExecutedLines === -1) { - $this->numExecutedLines = 0; - foreach ($this->children as $child) { - $this->numExecutedLines += $child->numberOfExecutedLines(); + while ($tokens->valid()) { + $currentToken = $tokens->current(); + if (in_array($currentToken[0], [T_STRING, T_NS_SEPARATOR], \true)) { + break; } - } - return $this->numExecutedLines; - } - public function numberOfExecutableBranches() : int - { - if ($this->numExecutableBranches === -1) { - $this->numExecutableBranches = 0; - foreach ($this->children as $child) { - $this->numExecutableBranches += $child->numberOfExecutableBranches(); + if ($currentToken[0] === T_NAME_QUALIFIED) { + break; } - } - return $this->numExecutableBranches; - } - public function numberOfExecutedBranches() : int - { - if ($this->numExecutedBranches === -1) { - $this->numExecutedBranches = 0; - foreach ($this->children as $child) { - $this->numExecutedBranches += $child->numberOfExecutedBranches(); + if (defined('T_NAME_FULLY_QUALIFIED') && $currentToken[0] === T_NAME_FULLY_QUALIFIED) { + break; } + $tokens->next(); } - return $this->numExecutedBranches; } - public function numberOfExecutablePaths() : int + /** + * Deduce the namespace name and alias of an import when we are at the T_USE token or have not reached the end of + * a USE statement yet. This will return a key/value array of the alias => namespace. + * + * @param ArrayIterator $tokens + * + * @return string[] + * @psalm-return array + * + * @psalm-suppress TypeDoesNotContainType + */ + private function extractUseStatements(ArrayIterator $tokens): array { - if ($this->numExecutablePaths === -1) { - $this->numExecutablePaths = 0; - foreach ($this->children as $child) { - $this->numExecutablePaths += $child->numberOfExecutablePaths(); + $extractedUseStatements = []; + $groupedNs = ''; + $currentNs = ''; + $currentAlias = ''; + $state = 'start'; + while ($tokens->valid()) { + $currentToken = $tokens->current(); + $tokenId = is_string($currentToken) ? $currentToken : $currentToken[0]; + $tokenValue = is_string($currentToken) ? null : $currentToken[1]; + switch ($state) { + case 'start': + switch ($tokenId) { + case T_STRING: + case T_NS_SEPARATOR: + $currentNs .= (string) $tokenValue; + $currentAlias = $tokenValue; + break; + case T_NAME_QUALIFIED: + case T_NAME_FULLY_QUALIFIED: + $currentNs .= (string) $tokenValue; + $currentAlias = substr((string) $tokenValue, (int) strrpos((string) $tokenValue, '\\') + 1); + break; + case T_CURLY_OPEN: + case '{': + $state = 'grouped'; + $groupedNs = $currentNs; + break; + case T_AS: + $state = 'start-alias'; + break; + case self::T_LITERAL_USE_SEPARATOR: + case self::T_LITERAL_END_OF_USE: + $state = 'end'; + break; + default: + break; + } + break; + case 'start-alias': + switch ($tokenId) { + case T_STRING: + $currentAlias = $tokenValue; + break; + case self::T_LITERAL_USE_SEPARATOR: + case self::T_LITERAL_END_OF_USE: + $state = 'end'; + break; + default: + break; + } + break; + case 'grouped': + switch ($tokenId) { + case T_STRING: + case T_NS_SEPARATOR: + $currentNs .= (string) $tokenValue; + $currentAlias = $tokenValue; + break; + case T_AS: + $state = 'grouped-alias'; + break; + case self::T_LITERAL_USE_SEPARATOR: + $state = 'grouped'; + $extractedUseStatements[(string) $currentAlias] = $currentNs; + $currentNs = $groupedNs; + $currentAlias = ''; + break; + case self::T_LITERAL_END_OF_USE: + $state = 'end'; + break; + default: + break; + } + break; + case 'grouped-alias': + switch ($tokenId) { + case T_STRING: + $currentAlias = $tokenValue; + break; + case self::T_LITERAL_USE_SEPARATOR: + $state = 'grouped'; + $extractedUseStatements[(string) $currentAlias] = $currentNs; + $currentNs = $groupedNs; + $currentAlias = ''; + break; + case self::T_LITERAL_END_OF_USE: + $state = 'end'; + break; + default: + break; + } } - } - return $this->numExecutablePaths; - } - public function numberOfExecutedPaths() : int - { - if ($this->numExecutedPaths === -1) { - $this->numExecutedPaths = 0; - foreach ($this->children as $child) { - $this->numExecutedPaths += $child->numberOfExecutedPaths(); + if ($state === 'end') { + break; } + $tokens->next(); } - return $this->numExecutedPaths; - } - public function numberOfClasses() : int - { - if ($this->numClasses === -1) { - $this->numClasses = 0; - foreach ($this->children as $child) { - $this->numClasses += $child->numberOfClasses(); - } + if ($groupedNs !== $currentNs) { + $extractedUseStatements[(string) $currentAlias] = $currentNs; } - return $this->numClasses; + return $extractedUseStatements; } - public function numberOfTestedClasses() : int +} + + */ +abstract class AggregatedType implements Type, IteratorAggregate +{ + /** + * @psalm-allow-private-mutation + * @var array + */ + private $types = []; + /** @var string */ + private $token; + /** + * @param array $types + */ + public function __construct(array $types, string $token) { - if ($this->numTestedClasses === -1) { - $this->numTestedClasses = 0; - foreach ($this->children as $child) { - $this->numTestedClasses += $child->numberOfTestedClasses(); - } + foreach ($types as $type) { + $this->add($type); } - return $this->numTestedClasses; + $this->token = $token; } - public function numberOfTraits() : int + /** + * Returns the type at the given index. + */ + public function get(int $index): ?Type { - if ($this->numTraits === -1) { - $this->numTraits = 0; - foreach ($this->children as $child) { - $this->numTraits += $child->numberOfTraits(); - } + if (!$this->has($index)) { + return null; } - return $this->numTraits; + return $this->types[$index]; } - public function numberOfTestedTraits() : int + /** + * Tests if this compound type has a type with the given index. + */ + public function has(int $index): bool { - if ($this->numTestedTraits === -1) { - $this->numTestedTraits = 0; - foreach ($this->children as $child) { - $this->numTestedTraits += $child->numberOfTestedTraits(); - } - } - return $this->numTestedTraits; + return array_key_exists($index, $this->types); } - public function numberOfMethods() : int + /** + * Tests if this compound type contains the given type. + */ + public function contains(Type $type): bool { - if ($this->numMethods === -1) { - $this->numMethods = 0; - foreach ($this->children as $child) { - $this->numMethods += $child->numberOfMethods(); + foreach ($this->types as $typePart) { + // if the type is duplicate; do not add it + if ((string) $typePart === (string) $type) { + return \true; } } - return $this->numMethods; + return \false; } - public function numberOfTestedMethods() : int + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - if ($this->numTestedMethods === -1) { - $this->numTestedMethods = 0; - foreach ($this->children as $child) { - $this->numTestedMethods += $child->numberOfTestedMethods(); - } - } - return $this->numTestedMethods; + return implode($this->token, $this->types); } - public function numberOfFunctions() : int + /** + * @return ArrayIterator + */ + public function getIterator(): ArrayIterator { - if ($this->numFunctions === -1) { - $this->numFunctions = 0; - foreach ($this->children as $child) { - $this->numFunctions += $child->numberOfFunctions(); - } - } - return $this->numFunctions; + return new ArrayIterator($this->types); } - public function numberOfTestedFunctions() : int + /** + * @psalm-suppress ImpureMethodCall + */ + private function add(Type $type): void { - if ($this->numTestedFunctions === -1) { - $this->numTestedFunctions = 0; - foreach ($this->children as $child) { - $this->numTestedFunctions += $child->numberOfTestedFunctions(); + if ($type instanceof static) { + foreach ($type->getIterator() as $subType) { + $this->add($subType); } + return; } - return $this->numTestedFunctions; + // if the type is duplicate; do not add it + if ($this->contains($type)) { + return; + } + $this->types[] = $type; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +namespace PHPUnitPHAR\phpDocumentor\Reflection\Types; -use function array_filter; -use function count; -use function range; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing a Compound Type. + * + * A Compound Type is not so much a special keyword or object reference but is a series of Types that are separated + * using an OR operator (`|`). This combination of types signifies that whatever is associated with this compound type + * may contain a value with any of the given types. + * + * @psalm-immutable */ -final class File extends AbstractNode +final class Compound extends AggregatedType { /** - * @var array - */ - private $lineCoverageData; - /** - * @var array - */ - private $functionCoverageData; - /** - * @var array - */ - private $testData; - /** - * @var int - */ - private $numExecutableLines = 0; - /** - * @var int - */ - private $numExecutedLines = 0; - /** - * @var int - */ - private $numExecutableBranches = 0; - /** - * @var int - */ - private $numExecutedBranches = 0; - /** - * @var int - */ - private $numExecutablePaths = 0; - /** - * @var int - */ - private $numExecutedPaths = 0; - /** - * @var array - */ - private $classes = []; - /** - * @var array - */ - private $traits = []; - /** - * @var array - */ - private $functions = []; - /** - * @psalm-var array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} - */ - private $linesOfCode; - /** - * @var int - */ - private $numClasses; - /** - * @var int - */ - private $numTestedClasses = 0; - /** - * @var int - */ - private $numTraits; - /** - * @var int - */ - private $numTestedTraits = 0; - /** - * @var int - */ - private $numMethods; - /** - * @var int - */ - private $numTestedMethods; - /** - * @var int - */ - private $numTestedFunctions; - /** - * @var array - */ - private $codeUnitsByLine = []; - /** - * @psalm-param array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} $linesOfCode + * Initializes a compound type (i.e. `string|int`) and tests if the provided types all implement the Type interface. + * + * @param array $types */ - public function __construct(string $name, AbstractNode $parent, array $lineCoverageData, array $functionCoverageData, array $testData, array $classes, array $traits, array $functions, array $linesOfCode) - { - parent::__construct($name, $parent); - $this->lineCoverageData = $lineCoverageData; - $this->functionCoverageData = $functionCoverageData; - $this->testData = $testData; - $this->linesOfCode = $linesOfCode; - $this->calculateStatistics($classes, $traits, $functions); - } - public function count() : int - { - return 1; - } - public function lineCoverageData() : array - { - return $this->lineCoverageData; - } - public function functionCoverageData() : array - { - return $this->functionCoverageData; - } - public function testData() : array - { - return $this->testData; - } - public function classes() : array - { - return $this->classes; - } - public function traits() : array - { - return $this->traits; - } - public function functions() : array + public function __construct(array $types) { - return $this->functions; + parent::__construct($types, '|'); } +} +linesOfCode; - } - public function numberOfExecutableLines() : int - { - return $this->numExecutableLines; - } - public function numberOfExecutedLines() : int - { - return $this->numExecutedLines; - } - public function numberOfExecutableBranches() : int - { - return $this->numExecutableBranches; - } - public function numberOfExecutedBranches() : int - { - return $this->numExecutedBranches; - } - public function numberOfExecutablePaths() : int - { - return $this->numExecutablePaths; - } - public function numberOfExecutedPaths() : int - { - return $this->numExecutedPaths; - } - public function numberOfClasses() : int - { - if ($this->numClasses === null) { - $this->numClasses = 0; - foreach ($this->classes as $class) { - foreach ($class['methods'] as $method) { - if ($method['executableLines'] > 0) { - $this->numClasses++; - continue 2; - } - } - } - } - return $this->numClasses; - } - public function numberOfTestedClasses() : int - { - return $this->numTestedClasses; - } - public function numberOfTraits() : int - { - if ($this->numTraits === null) { - $this->numTraits = 0; - foreach ($this->traits as $trait) { - foreach ($trait['methods'] as $method) { - if ($method['executableLines'] > 0) { - $this->numTraits++; - continue 2; - } - } - } - } - return $this->numTraits; - } - public function numberOfTestedTraits() : int + public function __toString(): string { - return $this->numTestedTraits; + return '$this'; } - public function numberOfMethods() : int +} +numMethods === null) { - $this->numMethods = 0; - foreach ($this->classes as $class) { - foreach ($class['methods'] as $method) { - if ($method['executableLines'] > 0) { - $this->numMethods++; - } - } - } - foreach ($this->traits as $trait) { - foreach ($trait['methods'] as $method) { - if ($method['executableLines'] > 0) { - $this->numMethods++; - } - } - } - } - return $this->numMethods; + return 'mixed'; } - public function numberOfTestedMethods() : int +} +numTestedMethods === null) { - $this->numTestedMethods = 0; - foreach ($this->classes as $class) { - foreach ($class['methods'] as $method) { - if ($method['executableLines'] > 0 && $method['coverage'] === 100) { - $this->numTestedMethods++; - } - } - } - foreach ($this->traits as $trait) { - foreach ($trait['methods'] as $method) { - if ($method['executableLines'] > 0 && $method['coverage'] === 100) { - $this->numTestedMethods++; - } - } - } + if ($context === null) { + $context = new Context(''); } - return $this->numTestedMethods; - } - public function numberOfFunctions() : int - { - return count($this->functions); + if ($this->isFqsen($fqsen)) { + return new Fqsen($fqsen); + } + return $this->resolvePartialStructuralElementName($fqsen, $context); } - public function numberOfTestedFunctions() : int + /** + * Tests whether the given type is a Fully Qualified Structural Element Name. + */ + private function isFqsen(string $type): bool { - if ($this->numTestedFunctions === null) { - $this->numTestedFunctions = 0; - foreach ($this->functions as $function) { - if ($function['executableLines'] > 0 && $function['coverage'] === 100) { - $this->numTestedFunctions++; - } - } - } - return $this->numTestedFunctions; + return strpos($type, self::OPERATOR_NAMESPACE) === 0; } - private function calculateStatistics(array $classes, array $traits, array $functions) : void + /** + * Resolves a partial Structural Element Name (i.e. `Reflection\DocBlock`) to its FQSEN representation + * (i.e. `\phpDocumentor\Reflection\DocBlock`) based on the Namespace and aliases mentioned in the Context. + * + * @throws InvalidArgumentException When type is not a valid FQSEN. + */ + private function resolvePartialStructuralElementName(string $type, Context $context): Fqsen { - foreach (range(1, $this->linesOfCode['linesOfCode']) as $lineNumber) { - $this->codeUnitsByLine[$lineNumber] = []; - } - $this->processClasses($classes); - $this->processTraits($traits); - $this->processFunctions($functions); - foreach (range(1, $this->linesOfCode['linesOfCode']) as $lineNumber) { - if (isset($this->lineCoverageData[$lineNumber])) { - foreach ($this->codeUnitsByLine[$lineNumber] as &$codeUnit) { - $codeUnit['executableLines']++; - } - unset($codeUnit); - $this->numExecutableLines++; - if (count($this->lineCoverageData[$lineNumber]) > 0) { - foreach ($this->codeUnitsByLine[$lineNumber] as &$codeUnit) { - $codeUnit['executedLines']++; - } - unset($codeUnit); - $this->numExecutedLines++; - } - } - } - foreach ($this->traits as &$trait) { - foreach ($trait['methods'] as &$method) { - $methodLineCoverage = $method['executableLines'] ? $method['executedLines'] / $method['executableLines'] * 100 : 100; - $methodBranchCoverage = $method['executableBranches'] ? $method['executedBranches'] / $method['executableBranches'] * 100 : 0; - $methodPathCoverage = $method['executablePaths'] ? $method['executedPaths'] / $method['executablePaths'] * 100 : 0; - $method['coverage'] = $methodBranchCoverage ?: $methodLineCoverage; - $method['crap'] = (new CrapIndex($method['ccn'], $methodPathCoverage ?: $methodLineCoverage))->asString(); - $trait['ccn'] += $method['ccn']; - } - unset($method); - $traitLineCoverage = $trait['executableLines'] ? $trait['executedLines'] / $trait['executableLines'] * 100 : 100; - $traitBranchCoverage = $trait['executableBranches'] ? $trait['executedBranches'] / $trait['executableBranches'] * 100 : 0; - $traitPathCoverage = $trait['executablePaths'] ? $trait['executedPaths'] / $trait['executablePaths'] * 100 : 0; - $trait['coverage'] = $traitBranchCoverage ?: $traitLineCoverage; - $trait['crap'] = (new CrapIndex($trait['ccn'], $traitPathCoverage ?: $traitLineCoverage))->asString(); - if ($trait['executableLines'] > 0 && $trait['coverage'] === 100) { - $this->numTestedClasses++; - } - } - unset($trait); - foreach ($this->classes as &$class) { - foreach ($class['methods'] as &$method) { - $methodLineCoverage = $method['executableLines'] ? $method['executedLines'] / $method['executableLines'] * 100 : 100; - $methodBranchCoverage = $method['executableBranches'] ? $method['executedBranches'] / $method['executableBranches'] * 100 : 0; - $methodPathCoverage = $method['executablePaths'] ? $method['executedPaths'] / $method['executablePaths'] * 100 : 0; - $method['coverage'] = $methodBranchCoverage ?: $methodLineCoverage; - $method['crap'] = (new CrapIndex($method['ccn'], $methodPathCoverage ?: $methodLineCoverage))->asString(); - $class['ccn'] += $method['ccn']; - } - unset($method); - $classLineCoverage = $class['executableLines'] ? $class['executedLines'] / $class['executableLines'] * 100 : 100; - $classBranchCoverage = $class['executableBranches'] ? $class['executedBranches'] / $class['executableBranches'] * 100 : 0; - $classPathCoverage = $class['executablePaths'] ? $class['executedPaths'] / $class['executablePaths'] * 100 : 0; - $class['coverage'] = $classBranchCoverage ?: $classLineCoverage; - $class['crap'] = (new CrapIndex($class['ccn'], $classPathCoverage ?: $classLineCoverage))->asString(); - if ($class['executableLines'] > 0 && $class['coverage'] === 100) { - $this->numTestedClasses++; - } - } - unset($class); - foreach ($this->functions as &$function) { - $functionLineCoverage = $function['executableLines'] ? $function['executedLines'] / $function['executableLines'] * 100 : 100; - $functionBranchCoverage = $function['executableBranches'] ? $function['executedBranches'] / $function['executableBranches'] * 100 : 0; - $functionPathCoverage = $function['executablePaths'] ? $function['executedPaths'] / $function['executablePaths'] * 100 : 0; - $function['coverage'] = $functionBranchCoverage ?: $functionLineCoverage; - $function['crap'] = (new CrapIndex($function['ccn'], $functionPathCoverage ?: $functionLineCoverage))->asString(); - if ($function['coverage'] === 100) { - $this->numTestedFunctions++; + $typeParts = explode(self::OPERATOR_NAMESPACE, $type, 2); + $namespaceAliases = $context->getNamespaceAliases(); + // if the first segment is not an alias; prepend namespace name and return + if (!isset($namespaceAliases[$typeParts[0]])) { + $namespace = $context->getNamespace(); + if ($namespace !== '') { + $namespace .= self::OPERATOR_NAMESPACE; } + return new Fqsen(self::OPERATOR_NAMESPACE . $namespace . $type); } + $typeParts[0] = $namespaceAliases[$typeParts[0]]; + return new Fqsen(self::OPERATOR_NAMESPACE . implode(self::OPERATOR_NAMESPACE, $typeParts)); } - private function processClasses(array $classes) : void +} +id() . '.html#'; - foreach ($classes as $className => $class) { - $this->classes[$className] = ['className' => $className, 'namespace' => $class['namespace'], 'methods' => [], 'startLine' => $class['startLine'], 'executableLines' => 0, 'executedLines' => 0, 'executableBranches' => 0, 'executedBranches' => 0, 'executablePaths' => 0, 'executedPaths' => 0, 'ccn' => 0, 'coverage' => 0, 'crap' => 0, 'link' => $link . $class['startLine']]; - foreach ($class['methods'] as $methodName => $method) { - $methodData = $this->newMethod($className, $methodName, $method, $link); - $this->classes[$className]['methods'][$methodName] = $methodData; - $this->classes[$className]['executableBranches'] += $methodData['executableBranches']; - $this->classes[$className]['executedBranches'] += $methodData['executedBranches']; - $this->classes[$className]['executablePaths'] += $methodData['executablePaths']; - $this->classes[$className]['executedPaths'] += $methodData['executedPaths']; - $this->numExecutableBranches += $methodData['executableBranches']; - $this->numExecutedBranches += $methodData['executedBranches']; - $this->numExecutablePaths += $methodData['executablePaths']; - $this->numExecutedPaths += $methodData['executedPaths']; - foreach (range($method['startLine'], $method['endLine']) as $lineNumber) { - $this->codeUnitsByLine[$lineNumber] = [&$this->classes[$className], &$this->classes[$className]['methods'][$methodName]]; - } - } - } + $this->value = $value; } - private function processTraits(array $traits) : void + public function getValue(): string { - $link = $this->id() . '.html#'; - foreach ($traits as $traitName => $trait) { - $this->traits[$traitName] = ['traitName' => $traitName, 'namespace' => $trait['namespace'], 'methods' => [], 'startLine' => $trait['startLine'], 'executableLines' => 0, 'executedLines' => 0, 'executableBranches' => 0, 'executedBranches' => 0, 'executablePaths' => 0, 'executedPaths' => 0, 'ccn' => 0, 'coverage' => 0, 'crap' => 0, 'link' => $link . $trait['startLine']]; - foreach ($trait['methods'] as $methodName => $method) { - $methodData = $this->newMethod($traitName, $methodName, $method, $link); - $this->traits[$traitName]['methods'][$methodName] = $methodData; - $this->traits[$traitName]['executableBranches'] += $methodData['executableBranches']; - $this->traits[$traitName]['executedBranches'] += $methodData['executedBranches']; - $this->traits[$traitName]['executablePaths'] += $methodData['executablePaths']; - $this->traits[$traitName]['executedPaths'] += $methodData['executedPaths']; - $this->numExecutableBranches += $methodData['executableBranches']; - $this->numExecutedBranches += $methodData['executedBranches']; - $this->numExecutablePaths += $methodData['executablePaths']; - $this->numExecutedPaths += $methodData['executedPaths']; - foreach (range($method['startLine'], $method['endLine']) as $lineNumber) { - $this->codeUnitsByLine[$lineNumber] = [&$this->traits[$traitName], &$this->traits[$traitName]['methods'][$methodName]]; - } - } - } + return $this->value; } - private function processFunctions(array $functions) : void + public function underlyingType(): Type { - $link = $this->id() . '.html#'; - foreach ($functions as $functionName => $function) { - $this->functions[$functionName] = ['functionName' => $functionName, 'namespace' => $function['namespace'], 'signature' => $function['signature'], 'startLine' => $function['startLine'], 'endLine' => $function['endLine'], 'executableLines' => 0, 'executedLines' => 0, 'executableBranches' => 0, 'executedBranches' => 0, 'executablePaths' => 0, 'executedPaths' => 0, 'ccn' => $function['ccn'], 'coverage' => 0, 'crap' => 0, 'link' => $link . $function['startLine']]; - foreach (range($function['startLine'], $function['endLine']) as $lineNumber) { - $this->codeUnitsByLine[$lineNumber] = [&$this->functions[$functionName]]; - } - if (isset($this->functionCoverageData[$functionName]['branches'])) { - $this->functions[$functionName]['executableBranches'] = count($this->functionCoverageData[$functionName]['branches']); - $this->functions[$functionName]['executedBranches'] = count(array_filter($this->functionCoverageData[$functionName]['branches'], static function (array $branch) { - return (bool) $branch['hit']; - })); - } - if (isset($this->functionCoverageData[$functionName]['paths'])) { - $this->functions[$functionName]['executablePaths'] = count($this->functionCoverageData[$functionName]['paths']); - $this->functions[$functionName]['executedPaths'] = count(array_filter($this->functionCoverageData[$functionName]['paths'], static function (array $path) { - return (bool) $path['hit']; - })); - } - $this->numExecutableBranches += $this->functions[$functionName]['executableBranches']; - $this->numExecutedBranches += $this->functions[$functionName]['executedBranches']; - $this->numExecutablePaths += $this->functions[$functionName]['executablePaths']; - $this->numExecutedPaths += $this->functions[$functionName]['executedPaths']; - } + return new String_(); } - private function newMethod(string $className, string $methodName, array $method, string $link) : array + public function __toString(): string { - $methodData = ['methodName' => $methodName, 'visibility' => $method['visibility'], 'signature' => $method['signature'], 'startLine' => $method['startLine'], 'endLine' => $method['endLine'], 'executableLines' => 0, 'executedLines' => 0, 'executableBranches' => 0, 'executedBranches' => 0, 'executablePaths' => 0, 'executedPaths' => 0, 'ccn' => $method['ccn'], 'coverage' => 0, 'crap' => 0, 'link' => $link . $method['startLine']]; - $key = $className . '->' . $methodName; - if (isset($this->functionCoverageData[$key]['branches'])) { - $methodData['executableBranches'] = count($this->functionCoverageData[$key]['branches']); - $methodData['executedBranches'] = count(array_filter($this->functionCoverageData[$key]['branches'], static function (array $branch) { - return (bool) $branch['hit']; - })); - } - if (isset($this->functionCoverageData[$key]['paths'])) { - $methodData['executablePaths'] = count($this->functionCoverageData[$key]['paths']); - $methodData['executedPaths'] = count(array_filter($this->functionCoverageData[$key]['paths'], static function (array $path) { - return (bool) $path['hit']; - })); - } - return $methodData; + return sprintf('"%s"', $this->value); } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Node; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function count; -use RecursiveIterator; +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Array_; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Integer; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Mixed_; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing the type 'list'. + * + * @psalm-immutable */ -final class Iterator implements RecursiveIterator +final class List_ extends Array_ implements PseudoType { - /** - * @var int - */ - private $position; - /** - * @var AbstractNode[] - */ - private $nodes; - public function __construct(Directory $node) + public function underlyingType(): Type { - $this->nodes = $node->children(); + return new Array_(); } - /** - * Rewinds the Iterator to the first element. - */ - public function rewind() : void + public function __construct(?Type $valueType = null) { - $this->position = 0; + parent::__construct($valueType, new Integer()); } /** - * Checks if there is a current element after calls to rewind() or next(). + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function valid() : bool + public function __toString(): string { - return $this->position < count($this->nodes); + if ($this->valueType instanceof Mixed_) { + return 'list'; + } + return 'list<' . $this->valueType . '>'; } - /** - * Returns the key of the current element. - */ - public function key() : int +} +position; + return new String_(); } /** - * Returns the current element. + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function current() : ?AbstractNode + public function __toString(): string { - return $this->valid() ? $this->nodes[$this->position] : null; + return 'non-empty-string'; } - /** - * Moves forward to next element. - */ - public function next() : void +} +position++; + $this->minValue = $minValue; + $this->maxValue = $maxValue; } - /** - * Returns the sub iterator for the current element. - */ - public function getChildren() : self + public function underlyingType(): Type { - return new self($this->nodes[$this->position]); + return new Integer(); + } + public function getMinValue(): string + { + return $this->minValue; + } + public function getMaxValue(): string + { + return $this->maxValue; } /** - * Checks whether the current element has children. + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function hasChildren() : bool + public function __toString(): string { - return $this->nodes[$this->position] instanceof Directory; + return 'int<' . $this->minValue . ', ' . $this->maxValue . '>'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function array_key_exists; -use function array_keys; -use function array_merge; -use function array_unique; -use function count; -use function is_array; -use function ksort; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\Driver; +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\String_; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing the type 'string'. + * + * @psalm-immutable */ -final class ProcessedCodeCoverageData +final class CallableString extends String_ implements PseudoType { - /** - * Line coverage data. - * An array of filenames, each having an array of linenumbers, each executable line having an array of testcase ids. - * - * @var array - */ - private $lineCoverage = []; - /** - * Function coverage data. - * Maintains base format of raw data (@see https://xdebug.org/docs/code_coverage), but each 'hit' entry is an array - * of testcase ids. - * - * @var array - */ - private $functionCoverage = []; - public function initializeUnseenData(RawCodeCoverageData $rawData) : void + public function underlyingType(): Type { - foreach ($rawData->lineCoverage() as $file => $lines) { - if (!isset($this->lineCoverage[$file])) { - $this->lineCoverage[$file] = []; - foreach ($lines as $k => $v) { - $this->lineCoverage[$file][$k] = $v === Driver::LINE_NOT_EXECUTABLE ? null : []; - } - } - } - foreach ($rawData->functionCoverage() as $file => $functions) { - foreach ($functions as $functionName => $functionData) { - if (isset($this->functionCoverage[$file][$functionName])) { - $this->initPreviouslySeenFunction($file, $functionName, $functionData); - } else { - $this->initPreviouslyUnseenFunction($file, $functionName, $functionData); - } - } - } - } - public function markCodeAsExecutedByTestCase(string $testCaseId, RawCodeCoverageData $executedCode) : void - { - foreach ($executedCode->lineCoverage() as $file => $lines) { - foreach ($lines as $k => $v) { - if ($v === Driver::LINE_EXECUTED) { - $this->lineCoverage[$file][$k][] = $testCaseId; - } - } - } - foreach ($executedCode->functionCoverage() as $file => $functions) { - foreach ($functions as $functionName => $functionData) { - foreach ($functionData['branches'] as $branchId => $branchData) { - if ($branchData['hit'] === Driver::BRANCH_HIT) { - $this->functionCoverage[$file][$functionName]['branches'][$branchId]['hit'][] = $testCaseId; - } - } - foreach ($functionData['paths'] as $pathId => $pathData) { - if ($pathData['hit'] === Driver::BRANCH_HIT) { - $this->functionCoverage[$file][$functionName]['paths'][$pathId]['hit'][] = $testCaseId; - } - } - } - } + return new String_(); } - public function setLineCoverage(array $lineCoverage) : void + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - $this->lineCoverage = $lineCoverage; + return 'callable-string'; } - public function lineCoverage() : array +} +lineCoverage); - return $this->lineCoverage; + AggregatedType::__construct([new NumericString(), new Integer(), new Float_()], '|'); } - public function setFunctionCoverage(array $functionCoverage) : void + public function underlyingType(): Type { - $this->functionCoverage = $functionCoverage; + return new Compound([new NumericString(), new Integer(), new Float_()]); } - public function functionCoverage() : array + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - ksort($this->functionCoverage); - return $this->functionCoverage; + return 'numeric'; } - public function coveredFiles() : array +} +lineCoverage); - return array_keys($this->lineCoverage); + return new Boolean(); } - public function renameFile(string $oldFile, string $newFile) : void + public function __toString(): string { - $this->lineCoverage[$newFile] = $this->lineCoverage[$oldFile]; - if (isset($this->functionCoverage[$oldFile])) { - $this->functionCoverage[$newFile] = $this->functionCoverage[$oldFile]; - } - unset($this->lineCoverage[$oldFile], $this->functionCoverage[$oldFile]); + return 'false'; } - public function merge(self $newData) : void - { - foreach ($newData->lineCoverage as $file => $lines) { - if (!isset($this->lineCoverage[$file])) { - $this->lineCoverage[$file] = $lines; - continue; - } - // we should compare the lines if any of two contains data - $compareLineNumbers = array_unique(array_merge(array_keys($this->lineCoverage[$file]), array_keys($newData->lineCoverage[$file]))); - foreach ($compareLineNumbers as $line) { - $thatPriority = $this->priorityForLine($newData->lineCoverage[$file], $line); - $thisPriority = $this->priorityForLine($this->lineCoverage[$file], $line); - if ($thatPriority > $thisPriority) { - $this->lineCoverage[$file][$line] = $newData->lineCoverage[$file][$line]; - } elseif ($thatPriority === $thisPriority && is_array($this->lineCoverage[$file][$line])) { - $this->lineCoverage[$file][$line] = array_unique(array_merge($this->lineCoverage[$file][$line], $newData->lineCoverage[$file][$line])); - } - } - } - foreach ($newData->functionCoverage as $file => $functions) { - if (!isset($this->functionCoverage[$file])) { - $this->functionCoverage[$file] = $functions; - continue; - } - foreach ($functions as $functionName => $functionData) { - if (isset($this->functionCoverage[$file][$functionName])) { - $this->initPreviouslySeenFunction($file, $functionName, $functionData); - } else { - $this->initPreviouslyUnseenFunction($file, $functionName, $functionData); - } - foreach ($functionData['branches'] as $branchId => $branchData) { - $this->functionCoverage[$file][$functionName]['branches'][$branchId]['hit'] = array_unique(array_merge($this->functionCoverage[$file][$functionName]['branches'][$branchId]['hit'], $branchData['hit'])); - } - foreach ($functionData['paths'] as $pathId => $pathData) { - $this->functionCoverage[$file][$functionName]['paths'][$pathId]['hit'] = array_unique(array_merge($this->functionCoverage[$file][$functionName]['paths'][$pathId]['hit'], $pathData['hit'])); - } - } - } +} +class_alias(False_::class, 'PHPUnitPHAR\phpDocumentor\Reflection\Types\False_', \false); +functionCoverage[$file][$functionName] = $functionData; - foreach (array_keys($functionData['branches']) as $branchId) { - $this->functionCoverage[$file][$functionName]['branches'][$branchId]['hit'] = []; - } - foreach (array_keys($functionData['paths']) as $pathId) { - $this->functionCoverage[$file][$functionName]['paths'][$pathId]['hit'] = []; - } + $this->value = $value; } - /** - * For a function we have seen before, only copy over and init the 'hit' array for any unseen branches and paths. - * Techniques such as mocking and where the contents of a file are different vary during tests (e.g. compiling - * containers) mean that the functions inside a file cannot be relied upon to be static. - */ - private function initPreviouslySeenFunction(string $file, string $functionName, array $functionData) : void + public function getValue(): float { - foreach ($functionData['branches'] as $branchId => $branchData) { - if (!isset($this->functionCoverage[$file][$functionName]['branches'][$branchId])) { - $this->functionCoverage[$file][$functionName]['branches'][$branchId] = $branchData; - $this->functionCoverage[$file][$functionName]['branches'][$branchId]['hit'] = []; - } - } - foreach ($functionData['paths'] as $pathId => $pathData) { - if (!isset($this->functionCoverage[$file][$functionName]['paths'][$pathId])) { - $this->functionCoverage[$file][$functionName]['paths'][$pathId] = $pathData; - $this->functionCoverage[$file][$functionName]['paths'][$pathId]['hit'] = []; - } - } + return $this->value; + } + public function underlyingType(): Type + { + return new Float_(); + } + public function __toString(): string + { + return (string) $this->value; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function array_diff; -use function array_diff_key; -use function array_flip; -use function array_intersect; -use function array_intersect_key; -use function count; -use function in_array; -use function range; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\Driver; -use PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser; +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\String_; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Value Object representing the type 'string'. + * + * @psalm-immutable */ -final class RawCodeCoverageData +final class NumericString extends String_ implements PseudoType { + public function underlyingType(): Type + { + return new String_(); + } /** - * @var array> - */ - private static $emptyLineCache = []; - /** - * @var array - * - * @see https://xdebug.org/docs/code_coverage for format + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - private $lineCoverage; + public function __toString(): string + { + return 'numeric-string'; + } +} + $fileCoverageData) { - $lineCoverage[$file] = $fileCoverageData['lines']; - $functionCoverage[$file] = $fileCoverageData['functions']; - } - return new self($lineCoverage, $functionCoverage); + $this->value = $value; } - public static function fromXdebugWithMixedCoverage(array $rawCoverage) : self + public function getValue(): int { - $lineCoverage = []; - $functionCoverage = []; - foreach ($rawCoverage as $file => $fileCoverageData) { - if (!isset($fileCoverageData['functions'])) { - // Current file does not have functions, so line coverage - // is stored in $fileCoverageData, not in $fileCoverageData['lines'] - $lineCoverage[$file] = $fileCoverageData; - continue; - } - $lineCoverage[$file] = $fileCoverageData['lines']; - $functionCoverage[$file] = $fileCoverageData['functions']; - } - return new self($lineCoverage, $functionCoverage); + return $this->value; } - public static function fromUncoveredFile(string $filename, FileAnalyser $analyser) : self + public function underlyingType(): Type { - $lineCoverage = []; - foreach ($analyser->executableLinesIn($filename) as $line) { - $lineCoverage[$line] = Driver::LINE_NOT_EXECUTED; - } - return new self([$filename => $lineCoverage], []); + return new Integer(); } - private function __construct(array $lineCoverage, array $functionCoverage) + public function __toString(): string { - $this->lineCoverage = $lineCoverage; - $this->functionCoverage = $functionCoverage; - $this->skipEmptyLines(); + return (string) $this->value; } - public function clear() : void +} +lineCoverage = $this->functionCoverage = []; + return new String_(); } - public function lineCoverage() : array + /** + * Returns a rendered output of the Type as it would be used in a DocBlock. + */ + public function __toString(): string { - return $this->lineCoverage; + return 'literal-string'; } - public function functionCoverage() : array +} +functionCoverage; + return new Array_(); } - public function removeCoverageDataForFile(string $filename) : void + public function __construct(?Type $valueType = null) { - unset($this->lineCoverage[$filename], $this->functionCoverage[$filename]); + parent::__construct($valueType, new Integer()); } /** - * @param int[] $lines + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function keepLineCoverageDataOnlyForLines(string $filename, array $lines) : void + public function __toString(): string { - if (!isset($this->lineCoverage[$filename])) { - return; + if ($this->valueType instanceof Mixed_) { + return 'non-empty-list'; } - $this->lineCoverage[$filename] = array_intersect_key($this->lineCoverage[$filename], array_flip($lines)); + return 'non-empty-list<' . $this->valueType . '>'; } - /** - * @param int[] $lines - */ - public function keepFunctionCoverageDataOnlyForLines(string $filename, array $lines) : void +} +functionCoverage[$filename])) { - return; - } - foreach ($this->functionCoverage[$filename] as $functionName => $functionData) { - foreach ($functionData['branches'] as $branchId => $branch) { - if (count(array_diff(range($branch['line_start'], $branch['line_end']), $lines)) > 0) { - unset($this->functionCoverage[$filename][$functionName]['branches'][$branchId]); - foreach ($functionData['paths'] as $pathId => $path) { - if (in_array($branchId, $path['path'], \true)) { - unset($this->functionCoverage[$filename][$functionName]['paths'][$pathId]); - } - } - } - } - } + $this->owner = $owner; + $this->expression = $expression; } - /** - * @param int[] $lines - */ - public function removeCoverageDataForLines(string $filename, array $lines) : void + public function getOwner(): Type { - if (empty($lines)) { - return; - } - if (!isset($this->lineCoverage[$filename])) { - return; - } - $this->lineCoverage[$filename] = array_diff_key($this->lineCoverage[$filename], array_flip($lines)); - if (isset($this->functionCoverage[$filename])) { - foreach ($this->functionCoverage[$filename] as $functionName => $functionData) { - foreach ($functionData['branches'] as $branchId => $branch) { - if (count(array_intersect($lines, range($branch['line_start'], $branch['line_end']))) > 0) { - unset($this->functionCoverage[$filename][$functionName]['branches'][$branchId]); - foreach ($functionData['paths'] as $pathId => $path) { - if (in_array($branchId, $path['path'], \true)) { - unset($this->functionCoverage[$filename][$functionName]['paths'][$pathId]); - } - } - } - } - } - } + return $this->owner; } - /** - * At the end of a file, the PHP interpreter always sees an implicit return. Where this occurs in a file that has - * e.g. a class definition, that line cannot be invoked from a test and results in confusing coverage. This engine - * implementation detail therefore needs to be masked which is done here by simply ensuring that all empty lines - * are skipped over for coverage purposes. - * - * @see https://github.com/sebastianbergmann/php-code-coverage/issues/799 - */ - private function skipEmptyLines() : void + public function getExpression(): string { - foreach ($this->lineCoverage as $filename => $coverage) { - foreach ($this->getEmptyLinesForFile($filename) as $emptyLine) { - unset($this->lineCoverage[$filename][$emptyLine]); - } - } + return $this->expression; } - private function getEmptyLinesForFile(string $filename) : array + public function underlyingType(): Type { - if (!isset(self::$emptyLineCache[$filename])) { - self::$emptyLineCache[$filename] = []; - if (\is_file($filename)) { - $sourceLines = \explode("\n", \file_get_contents($filename)); - foreach ($sourceLines as $line => $source) { - if (\trim($source) === '') { - self::$emptyLineCache[$filename][] = $line + 1; - } - } - } - } - return self::$emptyLineCache[$filename]; + return new Mixed_(); + } + public function __toString(): string + { + return sprintf('%s::%s', (string) $this->owner, $this->expression); } } + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @link http://phpdoc.org * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report; +declare (strict_types=1); +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function count; -use function dirname; -use function file_put_contents; -use function is_string; -use function ksort; -use function max; -use function range; -use function time; -use DOMDocument; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -final class Clover +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Array_; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\ArrayKey; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Mixed_; +use function implode; +/** @psalm-immutable */ +class ArrayShape implements PseudoType { + /** @var ArrayShapeItem[] */ + private $items; + public function __construct(ArrayShapeItem ...$items) + { + $this->items = $items; + } /** - * @throws WriteOperationFailedException + * @return ArrayShapeItem[] */ - public function process(CodeCoverage $coverage, ?string $target = null, ?string $name = null) : string + public function getItems(): array { - $time = (string) time(); - $xmlDocument = new DOMDocument('1.0', 'UTF-8'); - $xmlDocument->formatOutput = \true; - $xmlCoverage = $xmlDocument->createElement('coverage'); - $xmlCoverage->setAttribute('generated', $time); - $xmlDocument->appendChild($xmlCoverage); - $xmlProject = $xmlDocument->createElement('project'); - $xmlProject->setAttribute('timestamp', $time); - if (is_string($name)) { - $xmlProject->setAttribute('name', $name); - } - $xmlCoverage->appendChild($xmlProject); - $packages = []; - $report = $coverage->getReport(); - foreach ($report as $item) { - if (!$item instanceof File) { - continue; - } - /* @var File $item */ - $xmlFile = $xmlDocument->createElement('file'); - $xmlFile->setAttribute('name', $item->pathAsString()); - $classes = $item->classesAndTraits(); - $coverageData = $item->lineCoverageData(); - $lines = []; - $namespace = 'global'; - foreach ($classes as $className => $class) { - $classStatements = 0; - $coveredClassStatements = 0; - $coveredMethods = 0; - $classMethods = 0; - foreach ($class['methods'] as $methodName => $method) { - if ($method['executableLines'] == 0) { - continue; - } - $classMethods++; - $classStatements += $method['executableLines']; - $coveredClassStatements += $method['executedLines']; - if ($method['coverage'] == 100) { - $coveredMethods++; - } - $methodCount = 0; - foreach (range($method['startLine'], $method['endLine']) as $line) { - if (isset($coverageData[$line]) && $coverageData[$line] !== null) { - $methodCount = max($methodCount, count($coverageData[$line])); - } - } - $lines[$method['startLine']] = ['ccn' => $method['ccn'], 'count' => $methodCount, 'crap' => $method['crap'], 'type' => 'method', 'visibility' => $method['visibility'], 'name' => $methodName]; - } - if (!empty($class['package']['namespace'])) { - $namespace = $class['package']['namespace']; - } - $xmlClass = $xmlDocument->createElement('class'); - $xmlClass->setAttribute('name', $className); - $xmlClass->setAttribute('namespace', $namespace); - if (!empty($class['package']['fullPackage'])) { - $xmlClass->setAttribute('fullPackage', $class['package']['fullPackage']); - } - if (!empty($class['package']['category'])) { - $xmlClass->setAttribute('category', $class['package']['category']); - } - if (!empty($class['package']['package'])) { - $xmlClass->setAttribute('package', $class['package']['package']); - } - if (!empty($class['package']['subpackage'])) { - $xmlClass->setAttribute('subpackage', $class['package']['subpackage']); - } - $xmlFile->appendChild($xmlClass); - $xmlMetrics = $xmlDocument->createElement('metrics'); - $xmlMetrics->setAttribute('complexity', (string) $class['ccn']); - $xmlMetrics->setAttribute('methods', (string) $classMethods); - $xmlMetrics->setAttribute('coveredmethods', (string) $coveredMethods); - $xmlMetrics->setAttribute('conditionals', (string) $class['executableBranches']); - $xmlMetrics->setAttribute('coveredconditionals', (string) $class['executedBranches']); - $xmlMetrics->setAttribute('statements', (string) $classStatements); - $xmlMetrics->setAttribute('coveredstatements', (string) $coveredClassStatements); - $xmlMetrics->setAttribute('elements', (string) ($classMethods + $classStatements + $class['executableBranches'])); - $xmlMetrics->setAttribute('coveredelements', (string) ($coveredMethods + $coveredClassStatements + $class['executedBranches'])); - $xmlClass->appendChild($xmlMetrics); - } - foreach ($coverageData as $line => $data) { - if ($data === null || isset($lines[$line])) { - continue; - } - $lines[$line] = ['count' => count($data), 'type' => 'stmt']; - } - ksort($lines); - foreach ($lines as $line => $data) { - $xmlLine = $xmlDocument->createElement('line'); - $xmlLine->setAttribute('num', (string) $line); - $xmlLine->setAttribute('type', $data['type']); - if (isset($data['name'])) { - $xmlLine->setAttribute('name', $data['name']); - } - if (isset($data['visibility'])) { - $xmlLine->setAttribute('visibility', $data['visibility']); - } - if (isset($data['ccn'])) { - $xmlLine->setAttribute('complexity', (string) $data['ccn']); - } - if (isset($data['crap'])) { - $xmlLine->setAttribute('crap', (string) $data['crap']); - } - $xmlLine->setAttribute('count', (string) $data['count']); - $xmlFile->appendChild($xmlLine); - } - $linesOfCode = $item->linesOfCode(); - $xmlMetrics = $xmlDocument->createElement('metrics'); - $xmlMetrics->setAttribute('loc', (string) $linesOfCode['linesOfCode']); - $xmlMetrics->setAttribute('ncloc', (string) $linesOfCode['nonCommentLinesOfCode']); - $xmlMetrics->setAttribute('classes', (string) $item->numberOfClassesAndTraits()); - $xmlMetrics->setAttribute('methods', (string) $item->numberOfMethods()); - $xmlMetrics->setAttribute('coveredmethods', (string) $item->numberOfTestedMethods()); - $xmlMetrics->setAttribute('conditionals', (string) $item->numberOfExecutableBranches()); - $xmlMetrics->setAttribute('coveredconditionals', (string) $item->numberOfExecutedBranches()); - $xmlMetrics->setAttribute('statements', (string) $item->numberOfExecutableLines()); - $xmlMetrics->setAttribute('coveredstatements', (string) $item->numberOfExecutedLines()); - $xmlMetrics->setAttribute('elements', (string) ($item->numberOfMethods() + $item->numberOfExecutableLines() + $item->numberOfExecutableBranches())); - $xmlMetrics->setAttribute('coveredelements', (string) ($item->numberOfTestedMethods() + $item->numberOfExecutedLines() + $item->numberOfExecutedBranches())); - $xmlFile->appendChild($xmlMetrics); - if ($namespace === 'global') { - $xmlProject->appendChild($xmlFile); - } else { - if (!isset($packages[$namespace])) { - $packages[$namespace] = $xmlDocument->createElement('package'); - $packages[$namespace]->setAttribute('name', $namespace); - $xmlProject->appendChild($packages[$namespace]); - } - $packages[$namespace]->appendChild($xmlFile); - } - } - $linesOfCode = $report->linesOfCode(); - $xmlMetrics = $xmlDocument->createElement('metrics'); - $xmlMetrics->setAttribute('files', (string) count($report)); - $xmlMetrics->setAttribute('loc', (string) $linesOfCode['linesOfCode']); - $xmlMetrics->setAttribute('ncloc', (string) $linesOfCode['nonCommentLinesOfCode']); - $xmlMetrics->setAttribute('classes', (string) $report->numberOfClassesAndTraits()); - $xmlMetrics->setAttribute('methods', (string) $report->numberOfMethods()); - $xmlMetrics->setAttribute('coveredmethods', (string) $report->numberOfTestedMethods()); - $xmlMetrics->setAttribute('conditionals', (string) $report->numberOfExecutableBranches()); - $xmlMetrics->setAttribute('coveredconditionals', (string) $report->numberOfExecutedBranches()); - $xmlMetrics->setAttribute('statements', (string) $report->numberOfExecutableLines()); - $xmlMetrics->setAttribute('coveredstatements', (string) $report->numberOfExecutedLines()); - $xmlMetrics->setAttribute('elements', (string) ($report->numberOfMethods() + $report->numberOfExecutableLines() + $report->numberOfExecutableBranches())); - $xmlMetrics->setAttribute('coveredelements', (string) ($report->numberOfTestedMethods() + $report->numberOfExecutedLines() + $report->numberOfExecutedBranches())); - $xmlProject->appendChild($xmlMetrics); - $buffer = $xmlDocument->saveXML(); - if ($target !== null) { - Filesystem::createDirectory(dirname($target)); - if (@file_put_contents($target, $buffer) === \false) { - throw new WriteOperationFailedException($target); - } - } - return $buffer; + return $this->items; + } + public function underlyingType(): Type + { + return new Array_(new Mixed_(), new ArrayKey()); + } + public function __toString(): string + { + return 'array{' . implode(', ', $this->items) . '}'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function count; -use function dirname; -use function file_put_contents; -use function range; -use function time; -use DOMImplementation; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -final class Cobertura +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\String_; +/** + * Value Object representing the type 'string'. + * + * @psalm-immutable + */ +final class NonEmptyLowercaseString extends String_ implements PseudoType { + public function underlyingType(): Type + { + return new String_(); + } /** - * @throws WriteOperationFailedException + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function process(CodeCoverage $coverage, ?string $target = null) : string + public function __toString(): string { - $time = (string) time(); - $report = $coverage->getReport(); - $implementation = new DOMImplementation(); - $documentType = $implementation->createDocumentType('coverage', '', 'http://cobertura.sourceforge.net/xml/coverage-04.dtd'); - $document = $implementation->createDocument('', '', $documentType); - $document->xmlVersion = '1.0'; - $document->encoding = 'UTF-8'; - $document->formatOutput = \true; - $coverageElement = $document->createElement('coverage'); - $linesValid = $report->numberOfExecutableLines(); - $linesCovered = $report->numberOfExecutedLines(); - $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; - $coverageElement->setAttribute('line-rate', (string) $lineRate); - $branchesValid = $report->numberOfExecutableBranches(); - $branchesCovered = $report->numberOfExecutedBranches(); - $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; - $coverageElement->setAttribute('branch-rate', (string) $branchRate); - $coverageElement->setAttribute('lines-covered', (string) $report->numberOfExecutedLines()); - $coverageElement->setAttribute('lines-valid', (string) $report->numberOfExecutableLines()); - $coverageElement->setAttribute('branches-covered', (string) $report->numberOfExecutedBranches()); - $coverageElement->setAttribute('branches-valid', (string) $report->numberOfExecutableBranches()); - $coverageElement->setAttribute('complexity', ''); - $coverageElement->setAttribute('version', '0.4'); - $coverageElement->setAttribute('timestamp', $time); - $document->appendChild($coverageElement); - $sourcesElement = $document->createElement('sources'); - $coverageElement->appendChild($sourcesElement); - $sourceElement = $document->createElement('source', $report->pathAsString()); - $sourcesElement->appendChild($sourceElement); - $packagesElement = $document->createElement('packages'); - $coverageElement->appendChild($packagesElement); - $complexity = 0; - foreach ($report as $item) { - if (!$item instanceof File) { - continue; - } - $packageElement = $document->createElement('package'); - $packageComplexity = 0; - $packageElement->setAttribute('name', \str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); - $linesValid = $item->numberOfExecutableLines(); - $linesCovered = $item->numberOfExecutedLines(); - $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; - $packageElement->setAttribute('line-rate', (string) $lineRate); - $branchesValid = $item->numberOfExecutableBranches(); - $branchesCovered = $item->numberOfExecutedBranches(); - $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; - $packageElement->setAttribute('branch-rate', (string) $branchRate); - $packageElement->setAttribute('complexity', ''); - $packagesElement->appendChild($packageElement); - $classesElement = $document->createElement('classes'); - $packageElement->appendChild($classesElement); - $classes = $item->classesAndTraits(); - $coverageData = $item->lineCoverageData(); - foreach ($classes as $className => $class) { - $complexity += $class['ccn']; - $packageComplexity += $class['ccn']; - if (!empty($class['package']['namespace'])) { - $className = $class['package']['namespace'] . '\\' . $className; - } - $linesValid = $class['executableLines']; - $linesCovered = $class['executedLines']; - $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; - $branchesValid = $class['executableBranches']; - $branchesCovered = $class['executedBranches']; - $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; - $classElement = $document->createElement('class'); - $classElement->setAttribute('name', $className); - $classElement->setAttribute('filename', \str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); - $classElement->setAttribute('line-rate', (string) $lineRate); - $classElement->setAttribute('branch-rate', (string) $branchRate); - $classElement->setAttribute('complexity', (string) $class['ccn']); - $classesElement->appendChild($classElement); - $methodsElement = $document->createElement('methods'); - $classElement->appendChild($methodsElement); - $classLinesElement = $document->createElement('lines'); - $classElement->appendChild($classLinesElement); - foreach ($class['methods'] as $methodName => $method) { - if ($method['executableLines'] === 0) { - continue; - } - \preg_match("/\\((.*?)\\)/", $method['signature'], $signature); - $linesValid = $method['executableLines']; - $linesCovered = $method['executedLines']; - $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; - $branchesValid = $method['executableBranches']; - $branchesCovered = $method['executedBranches']; - $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; - $methodElement = $document->createElement('method'); - $methodElement->setAttribute('name', $methodName); - $methodElement->setAttribute('signature', $signature[1]); - $methodElement->setAttribute('line-rate', (string) $lineRate); - $methodElement->setAttribute('branch-rate', (string) $branchRate); - $methodElement->setAttribute('complexity', (string) $method['ccn']); - $methodLinesElement = $document->createElement('lines'); - $methodElement->appendChild($methodLinesElement); - foreach (range($method['startLine'], $method['endLine']) as $line) { - if (!isset($coverageData[$line]) || $coverageData[$line] === null) { - continue; - } - $methodLineElement = $document->createElement('line'); - $methodLineElement->setAttribute('number', (string) $line); - $methodLineElement->setAttribute('hits', (string) count($coverageData[$line])); - $methodLinesElement->appendChild($methodLineElement); - $classLineElement = $methodLineElement->cloneNode(); - $classLinesElement->appendChild($classLineElement); - } - $methodsElement->appendChild($methodElement); - } - } - if ($report->numberOfFunctions() === 0) { - $packageElement->setAttribute('complexity', (string) $packageComplexity); - continue; - } - $functionsComplexity = 0; - $functionsLinesValid = 0; - $functionsLinesCovered = 0; - $functionsBranchesValid = 0; - $functionsBranchesCovered = 0; - $classElement = $document->createElement('class'); - $classElement->setAttribute('name', \basename($item->pathAsString())); - $classElement->setAttribute('filename', \str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); - $methodsElement = $document->createElement('methods'); - $classElement->appendChild($methodsElement); - $classLinesElement = $document->createElement('lines'); - $classElement->appendChild($classLinesElement); - $functions = $report->functions(); - foreach ($functions as $functionName => $function) { - if ($function['executableLines'] === 0) { - continue; - } - $complexity += $function['ccn']; - $packageComplexity += $function['ccn']; - $functionsComplexity += $function['ccn']; - $linesValid = $function['executableLines']; - $linesCovered = $function['executedLines']; - $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; - $functionsLinesValid += $linesValid; - $functionsLinesCovered += $linesCovered; - $branchesValid = $function['executableBranches']; - $branchesCovered = $function['executedBranches']; - $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; - $functionsBranchesValid += $branchesValid; - $functionsBranchesCovered += $branchesValid; - $methodElement = $document->createElement('method'); - $methodElement->setAttribute('name', $functionName); - $methodElement->setAttribute('signature', $function['signature']); - $methodElement->setAttribute('line-rate', (string) $lineRate); - $methodElement->setAttribute('branch-rate', (string) $branchRate); - $methodElement->setAttribute('complexity', (string) $function['ccn']); - $methodLinesElement = $document->createElement('lines'); - $methodElement->appendChild($methodLinesElement); - foreach (range($function['startLine'], $function['endLine']) as $line) { - if (!isset($coverageData[$line]) || $coverageData[$line] === null) { - continue; - } - $methodLineElement = $document->createElement('line'); - $methodLineElement->setAttribute('number', (string) $line); - $methodLineElement->setAttribute('hits', (string) count($coverageData[$line])); - $methodLinesElement->appendChild($methodLineElement); - $classLineElement = $methodLineElement->cloneNode(); - $classLinesElement->appendChild($classLineElement); - } - $methodsElement->appendChild($methodElement); - } - $packageElement->setAttribute('complexity', (string) $packageComplexity); - if ($functionsLinesValid === 0) { - continue; - } - $lineRate = $functionsLinesCovered / $functionsLinesValid; - $branchRate = $functionsBranchesValid === 0 ? 0 : $functionsBranchesCovered / $functionsBranchesValid; - $classElement->setAttribute('line-rate', (string) $lineRate); - $classElement->setAttribute('branch-rate', (string) $branchRate); - $classElement->setAttribute('complexity', (string) $functionsComplexity); - $classesElement->appendChild($classElement); - } - $coverageElement->setAttribute('complexity', (string) $complexity); - $buffer = $document->saveXML(); - if ($target !== null) { - Filesystem::createDirectory(dirname($target)); - if (@file_put_contents($target, $buffer) === \false) { - throw new WriteOperationFailedException($target); - } - } - return $buffer; + return 'non-empty-lowercase-string'; } } +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use function date; -use function dirname; -use function file_put_contents; -use function htmlspecialchars; -use function is_string; -use function round; -use DOMDocument; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -final class Crap4j +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\String_; +/** + * Value Object representing the type 'string'. + * + * @psalm-immutable + */ +final class LowercaseString extends String_ implements PseudoType { - /** - * @var int - */ - private $threshold; - public function __construct(int $threshold = 30) + public function underlyingType(): Type { - $this->threshold = $threshold; + return new String_(); } /** - * @throws WriteOperationFailedException + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - public function process(CodeCoverage $coverage, ?string $target = null, ?string $name = null) : string + public function __toString(): string { - $document = new DOMDocument('1.0', 'UTF-8'); - $document->formatOutput = \true; - $root = $document->createElement('crap_result'); - $document->appendChild($root); - $project = $document->createElement('project', is_string($name) ? $name : ''); - $root->appendChild($project); - $root->appendChild($document->createElement('timestamp', date('Y-m-d H:i:s'))); - $stats = $document->createElement('stats'); - $methodsNode = $document->createElement('methods'); - $report = $coverage->getReport(); - unset($coverage); - $fullMethodCount = 0; - $fullCrapMethodCount = 0; - $fullCrapLoad = 0; - $fullCrap = 0; - foreach ($report as $item) { - $namespace = 'global'; - if (!$item instanceof File) { - continue; - } - $file = $document->createElement('file'); - $file->setAttribute('name', $item->pathAsString()); - $classes = $item->classesAndTraits(); - foreach ($classes as $className => $class) { - foreach ($class['methods'] as $methodName => $method) { - $crapLoad = $this->crapLoad((float) $method['crap'], $method['ccn'], $method['coverage']); - $fullCrap += $method['crap']; - $fullCrapLoad += $crapLoad; - $fullMethodCount++; - if ($method['crap'] >= $this->threshold) { - $fullCrapMethodCount++; - } - $methodNode = $document->createElement('method'); - if (!empty($class['namespace'])) { - $namespace = $class['namespace']; - } - $methodNode->appendChild($document->createElement('package', $namespace)); - $methodNode->appendChild($document->createElement('className', $className)); - $methodNode->appendChild($document->createElement('methodName', $methodName)); - $methodNode->appendChild($document->createElement('methodSignature', htmlspecialchars($method['signature']))); - $methodNode->appendChild($document->createElement('fullMethod', htmlspecialchars($method['signature']))); - $methodNode->appendChild($document->createElement('crap', (string) $this->roundValue((float) $method['crap']))); - $methodNode->appendChild($document->createElement('complexity', (string) $method['ccn'])); - $methodNode->appendChild($document->createElement('coverage', (string) $this->roundValue($method['coverage']))); - $methodNode->appendChild($document->createElement('crapLoad', (string) round($crapLoad))); - $methodsNode->appendChild($methodNode); - } - } - } - $stats->appendChild($document->createElement('name', 'Method Crap Stats')); - $stats->appendChild($document->createElement('methodCount', (string) $fullMethodCount)); - $stats->appendChild($document->createElement('crapMethodCount', (string) $fullCrapMethodCount)); - $stats->appendChild($document->createElement('crapLoad', (string) round($fullCrapLoad))); - $stats->appendChild($document->createElement('totalCrap', (string) $fullCrap)); - $crapMethodPercent = 0; - if ($fullMethodCount > 0) { - $crapMethodPercent = $this->roundValue(100 * $fullCrapMethodCount / $fullMethodCount); - } - $stats->appendChild($document->createElement('crapMethodPercent', (string) $crapMethodPercent)); - $root->appendChild($stats); - $root->appendChild($methodsNode); - $buffer = $document->saveXML(); - if ($target !== null) { - Filesystem::createDirectory(dirname($target)); - if (@file_put_contents($target, $buffer) === \false) { - throw new WriteOperationFailedException($target); - } - } - return $buffer; + return 'lowercase-string'; } - private function crapLoad(float $crapValue, int $cyclomaticComplexity, float $coveragePercent) : float +} += $this->threshold) { - $crapLoad += $cyclomaticComplexity * (1.0 - $coveragePercent / 100); - $crapLoad += $cyclomaticComplexity / $this->threshold; - } - return $crapLoad; + return new Boolean(); } - private function roundValue(float $value) : float + public function __toString(): string { - return round($value, 2); + return 'true'; } } +class_alias(True_::class, 'PHPUnitPHAR\phpDocumentor\Reflection\Types\True_', \false); +/** + * This file is part of phpDocumentor. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * + * @link http://phpdoc.org */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Html; +namespace PHPUnitPHAR\phpDocumentor\Reflection\PseudoTypes; -use const DIRECTORY_SEPARATOR; -use function copy; -use function date; -use function dirname; -use function substr; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\InvalidArgumentException; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -final class Facade +use PHPUnitPHAR\phpDocumentor\Reflection\PseudoType; +use PHPUnitPHAR\phpDocumentor\Reflection\Type; +use PHPUnitPHAR\phpDocumentor\Reflection\Types\Integer; +/** + * Value Object representing the type 'int'. + * + * @psalm-immutable + */ +final class NegativeInteger extends Integer implements PseudoType { + public function underlyingType(): Type + { + return new Integer(); + } /** - * @var string - */ - private $templatePath; - /** - * @var string - */ - private $generator; - /** - * @var int - */ - private $lowUpperBound; - /** - * @var int + * Returns a rendered output of the Type as it would be used in a DocBlock. */ - private $highLowerBound; - public function __construct(int $lowUpperBound = 50, int $highLowerBound = 90, string $generator = '') + public function __toString(): string { - if ($lowUpperBound > $highLowerBound) { - throw new InvalidArgumentException('$lowUpperBound must not be larger than $highLowerBound'); - } - $this->generator = $generator; - $this->highLowerBound = $highLowerBound; - $this->lowUpperBound = $lowUpperBound; - $this->templatePath = __DIR__ . '/Renderer/Template/'; + return 'negative-int'; + } +} +key = $key; + $this->value = $value ?? new Mixed_(); + $this->optional = $optional; } - public function process(CodeCoverage $coverage, string $target) : void + public function getKey(): ?string { - $target = $this->directory($target); - $report = $coverage->getReport(); - $date = date('D M j G:i:s T Y'); - $dashboard = new Dashboard($this->templatePath, $this->generator, $date, $this->lowUpperBound, $this->highLowerBound, $coverage->collectsBranchAndPathCoverage()); - $directory = new Directory($this->templatePath, $this->generator, $date, $this->lowUpperBound, $this->highLowerBound, $coverage->collectsBranchAndPathCoverage()); - $file = new File($this->templatePath, $this->generator, $date, $this->lowUpperBound, $this->highLowerBound, $coverage->collectsBranchAndPathCoverage()); - $directory->render($report, $target . 'index.html'); - $dashboard->render($report, $target . 'dashboard.html'); - foreach ($report as $node) { - $id = $node->id(); - if ($node instanceof DirectoryNode) { - Filesystem::createDirectory($target . $id); - $directory->render($node, $target . $id . '/index.html'); - $dashboard->render($node, $target . $id . '/dashboard.html'); - } else { - $dir = dirname($target . $id); - Filesystem::createDirectory($dir); - $file->render($node, $target . $id); - } + return $this->key; + } + public function getValue(): Type + { + return $this->value; + } + public function isOptional(): bool + { + return $this->optional; + } + public function __toString(): string + { + if ($this->key !== null) { + return sprintf('%s%s: %s', $this->key, $this->optional ? '?' : '', (string) $this->value); } - $this->copyFiles($target); + return (string) $this->value; + } +} +directory($target . '_css'); - copy($this->templatePath . 'css/bootstrap.min.css', $dir . 'bootstrap.min.css'); - copy($this->templatePath . 'css/nv.d3.min.css', $dir . 'nv.d3.min.css'); - copy($this->templatePath . 'css/style.css', $dir . 'style.css'); - copy($this->templatePath . 'css/custom.css', $dir . 'custom.css'); - copy($this->templatePath . 'css/octicons.css', $dir . 'octicons.css'); - $dir = $this->directory($target . '_icons'); - copy($this->templatePath . 'icons/file-code.svg', $dir . 'file-code.svg'); - copy($this->templatePath . 'icons/file-directory.svg', $dir . 'file-directory.svg'); - $dir = $this->directory($target . '_js'); - copy($this->templatePath . 'js/bootstrap.min.js', $dir . 'bootstrap.min.js'); - copy($this->templatePath . 'js/popper.min.js', $dir . 'popper.min.js'); - copy($this->templatePath . 'js/d3.min.js', $dir . 'd3.min.js'); - copy($this->templatePath . 'js/jquery.min.js', $dir . 'jquery.min.js'); - copy($this->templatePath . 'js/nv.d3.min.js', $dir . 'nv.d3.min.js'); - copy($this->templatePath . 'js/file.js', $dir . 'file.js'); + return 'positive-int'; + } +} + */ + private $doctrineDeprecationsExpectations = []; + /** @var array */ + private $doctrineNoDeprecationsExpectations = []; + public function expectDeprecationWithIdentifier(string $identifier): void + { + $this->doctrineDeprecationsExpectations[$identifier] = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; } - private function directory(string $directory) : string + public function expectNoDeprecationWithIdentifier(string $identifier): void { - if (substr($directory, -1, 1) != DIRECTORY_SEPARATOR) { - $directory .= DIRECTORY_SEPARATOR; + $this->doctrineNoDeprecationsExpectations[$identifier] = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + } + /** + * @before + */ + public function enableDeprecationTracking(): void + { + Deprecation::enableTrackingDeprecations(); + } + /** + * @after + */ + public function verifyDeprecationsAreTriggered(): void + { + foreach ($this->doctrineDeprecationsExpectations as $identifier => $expectation) { + $actualCount = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + $this->assertTrue($actualCount > $expectation, sprintf("Expected deprecation with identifier '%s' was not triggered by code executed in test.", $identifier)); + } + foreach ($this->doctrineNoDeprecationsExpectations as $identifier => $expectation) { + $actualCount = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + $this->assertTrue($actualCount === $expectation, sprintf("Expected deprecation with identifier '%s' was triggered by code executed in test, but expected not to.", $identifier)); } - Filesystem::createDirectory($directory); - return $directory; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Html; +namespace PHPUnitPHAR\Doctrine\Deprecations; -use function array_pop; -use function count; +use PHPUnitPHAR\Psr\Log\LoggerInterface; +use function array_key_exists; +use function array_reduce; +use function assert; +use function debug_backtrace; use function sprintf; -use function str_repeat; -use function substr_count; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\AbstractNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File as FileNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Version; -use PHPUnit\SebastianBergmann\Environment\Runtime; -use PHPUnit\SebastianBergmann\Template\Template; +use function str_replace; +use function strpos; +use function strrpos; +use function substr; +use function trigger_error; +use const DEBUG_BACKTRACE_IGNORE_ARGS; +use const DIRECTORY_SEPARATOR; +use const E_USER_DEPRECATED; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * Manages Deprecation logging in different ways. + * + * By default triggered exceptions are not logged. + * + * To enable different deprecation logging mechanisms you can call the + * following methods: + * + * - Minimal collection of deprecations via getTriggeredDeprecations() + * \Doctrine\Deprecations\Deprecation::enableTrackingDeprecations(); + * + * - Uses @trigger_error with E_USER_DEPRECATED + * \Doctrine\Deprecations\Deprecation::enableWithTriggerError(); + * + * - Sends deprecation messages via a PSR-3 logger + * \Doctrine\Deprecations\Deprecation::enableWithPsrLogger($logger); + * + * Packages that trigger deprecations should use the `trigger()` or + * `triggerIfCalledFromOutside()` methods. */ -abstract class Renderer +class Deprecation { + private const TYPE_NONE = 0; + private const TYPE_TRACK_DEPRECATIONS = 1; + private const TYPE_TRIGGER_ERROR = 2; + private const TYPE_PSR_LOGGER = 4; + /** @var int-mask-of|null */ + private static $type; + /** @var LoggerInterface|null */ + private static $logger; + /** @var array */ + private static $ignoredPackages = []; + /** @var array */ + private static $triggeredDeprecations = []; + /** @var array */ + private static $ignoredLinks = []; + /** @var bool */ + private static $deduplication = \true; /** - * @var string - */ - protected $templatePath; - /** - * @var string - */ - protected $generator; - /** - * @var string - */ - protected $date; - /** - * @var int - */ - protected $lowUpperBound; - /** - * @var int - */ - protected $highLowerBound; - /** - * @var bool - */ - protected $hasBranchCoverage; - /** - * @var string + * Trigger a deprecation for the given package and identfier. + * + * The link should point to a Github issue or Wiki entry detailing the + * deprecation. It is additionally used to de-duplicate the trigger of the + * same deprecation during a request. + * + * @param float|int|string $args */ - protected $version; - public function __construct(string $templatePath, string $generator, string $date, int $lowUpperBound, int $highLowerBound, bool $hasBranchCoverage) - { - $this->templatePath = $templatePath; - $this->generator = $generator; - $this->date = $date; - $this->lowUpperBound = $lowUpperBound; - $this->highLowerBound = $highLowerBound; - $this->version = Version::id(); - $this->hasBranchCoverage = $hasBranchCoverage; - } - protected function renderItemTemplate(Template $template, array $data) : string + public static function trigger(string $package, string $link, string $message, ...$args): void { - $numSeparator = ' / '; - if (isset($data['numClasses']) && $data['numClasses'] > 0) { - $classesLevel = $this->colorLevel($data['testedClassesPercent']); - $classesNumber = $data['numTestedClasses'] . $numSeparator . $data['numClasses']; - $classesBar = $this->coverageBar($data['testedClassesPercent']); - } else { - $classesLevel = ''; - $classesNumber = '0' . $numSeparator . '0'; - $classesBar = ''; - $data['testedClassesPercentAsString'] = 'n/a'; + $type = self::$type ?? self::getTypeFromEnv(); + if ($type === self::TYPE_NONE) { + return; } - if ($data['numMethods'] > 0) { - $methodsLevel = $this->colorLevel($data['testedMethodsPercent']); - $methodsNumber = $data['numTestedMethods'] . $numSeparator . $data['numMethods']; - $methodsBar = $this->coverageBar($data['testedMethodsPercent']); - } else { - $methodsLevel = ''; - $methodsNumber = '0' . $numSeparator . '0'; - $methodsBar = ''; - $data['testedMethodsPercentAsString'] = 'n/a'; + if (isset(self::$ignoredLinks[$link])) { + return; } - if ($data['numExecutableLines'] > 0) { - $linesLevel = $this->colorLevel($data['linesExecutedPercent']); - $linesNumber = $data['numExecutedLines'] . $numSeparator . $data['numExecutableLines']; - $linesBar = $this->coverageBar($data['linesExecutedPercent']); + if (array_key_exists($link, self::$triggeredDeprecations)) { + self::$triggeredDeprecations[$link]++; } else { - $linesLevel = ''; - $linesNumber = '0' . $numSeparator . '0'; - $linesBar = ''; - $data['linesExecutedPercentAsString'] = 'n/a'; + self::$triggeredDeprecations[$link] = 1; } - if ($data['numExecutablePaths'] > 0) { - $pathsLevel = $this->colorLevel($data['pathsExecutedPercent']); - $pathsNumber = $data['numExecutedPaths'] . $numSeparator . $data['numExecutablePaths']; - $pathsBar = $this->coverageBar($data['pathsExecutedPercent']); - } else { - $pathsLevel = ''; - $pathsNumber = '0' . $numSeparator . '0'; - $pathsBar = ''; - $data['pathsExecutedPercentAsString'] = 'n/a'; + if (self::$deduplication === \true && self::$triggeredDeprecations[$link] > 1) { + return; } - if ($data['numExecutableBranches'] > 0) { - $branchesLevel = $this->colorLevel($data['branchesExecutedPercent']); - $branchesNumber = $data['numExecutedBranches'] . $numSeparator . $data['numExecutableBranches']; - $branchesBar = $this->coverageBar($data['branchesExecutedPercent']); - } else { - $branchesLevel = ''; - $branchesNumber = '0' . $numSeparator . '0'; - $branchesBar = ''; - $data['branchesExecutedPercentAsString'] = 'n/a'; + if (isset(self::$ignoredPackages[$package])) { + return; } - $template->setVar(['icon' => $data['icon'] ?? '', 'crap' => $data['crap'] ?? '', 'name' => $data['name'], 'lines_bar' => $linesBar, 'lines_executed_percent' => $data['linesExecutedPercentAsString'], 'lines_level' => $linesLevel, 'lines_number' => $linesNumber, 'paths_bar' => $pathsBar, 'paths_executed_percent' => $data['pathsExecutedPercentAsString'], 'paths_level' => $pathsLevel, 'paths_number' => $pathsNumber, 'branches_bar' => $branchesBar, 'branches_executed_percent' => $data['branchesExecutedPercentAsString'], 'branches_level' => $branchesLevel, 'branches_number' => $branchesNumber, 'methods_bar' => $methodsBar, 'methods_tested_percent' => $data['testedMethodsPercentAsString'], 'methods_level' => $methodsLevel, 'methods_number' => $methodsNumber, 'classes_bar' => $classesBar, 'classes_tested_percent' => $data['testedClassesPercentAsString'] ?? '', 'classes_level' => $classesLevel, 'classes_number' => $classesNumber]); - return $template->render(); + $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); + $message = sprintf($message, ...$args); + self::delegateTriggerToBackend($message, $backtrace, $link, $package); } - protected function setCommonTemplateVariables(Template $template, AbstractNode $node) : void + /** + * Trigger a deprecation for the given package and identifier when called from outside. + * + * "Outside" means we assume that $package is currently installed as a + * dependency and the caller is not a file in that package. When $package + * is installed as a root package then deprecations triggered from the + * tests folder are also considered "outside". + * + * This deprecation method assumes that you are using Composer to install + * the dependency and are using the default /vendor/ folder and not a + * Composer plugin to change the install location. The assumption is also + * that $package is the exact composer packge name. + * + * Compared to {@link trigger()} this method causes some overhead when + * deprecation tracking is enabled even during deduplication, because it + * needs to call {@link debug_backtrace()} + * + * @param float|int|string $args + */ + public static function triggerIfCalledFromOutside(string $package, string $link, string $message, ...$args): void { - $template->setVar(['id' => $node->id(), 'full_path' => $node->pathAsString(), 'path_to_root' => $this->pathToRoot($node), 'breadcrumbs' => $this->breadcrumbs($node), 'date' => $this->date, 'version' => $this->version, 'runtime' => $this->runtimeString(), 'generator' => $this->generator, 'low_upper_bound' => $this->lowUpperBound, 'high_lower_bound' => $this->highLowerBound]); + $type = self::$type ?? self::getTypeFromEnv(); + if ($type === self::TYPE_NONE) { + return; + } + $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); + // first check that the caller is not from a tests folder, in which case we always let deprecations pass + if (isset($backtrace[1]['file'], $backtrace[0]['file']) && strpos($backtrace[1]['file'], DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR) === \false) { + $path = DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . str_replace('/', DIRECTORY_SEPARATOR, $package) . DIRECTORY_SEPARATOR; + if (strpos($backtrace[0]['file'], $path) === \false) { + return; + } + if (strpos($backtrace[1]['file'], $path) !== \false) { + return; + } + } + if (isset(self::$ignoredLinks[$link])) { + return; + } + if (array_key_exists($link, self::$triggeredDeprecations)) { + self::$triggeredDeprecations[$link]++; + } else { + self::$triggeredDeprecations[$link] = 1; + } + if (self::$deduplication === \true && self::$triggeredDeprecations[$link] > 1) { + return; + } + if (isset(self::$ignoredPackages[$package])) { + return; + } + $message = sprintf($message, ...$args); + self::delegateTriggerToBackend($message, $backtrace, $link, $package); } - protected function breadcrumbs(AbstractNode $node) : string + /** + * @param list $backtrace + */ + private static function delegateTriggerToBackend(string $message, array $backtrace, string $link, string $package): void { - $breadcrumbs = ''; - $path = $node->pathAsArray(); - $pathToRoot = []; - $max = count($path); - if ($node instanceof FileNode) { - $max--; - } - for ($i = 0; $i < $max; $i++) { - $pathToRoot[] = str_repeat('../', $i); + $type = self::$type ?? self::getTypeFromEnv(); + if (($type & self::TYPE_PSR_LOGGER) > 0) { + $context = ['file' => $backtrace[0]['file'] ?? null, 'line' => $backtrace[0]['line'] ?? null, 'package' => $package, 'link' => $link]; + assert(self::$logger !== null); + self::$logger->notice($message, $context); } - foreach ($path as $step) { - if ($step !== $node) { - $breadcrumbs .= $this->inactiveBreadcrumb($step, array_pop($pathToRoot)); - } else { - $breadcrumbs .= $this->activeBreadcrumb($step); - } + if (!(($type & self::TYPE_TRIGGER_ERROR) > 0)) { + return; } - return $breadcrumbs; + $message .= sprintf(' (%s:%d called by %s:%d, %s, package %s)', self::basename($backtrace[0]['file'] ?? 'native code'), $backtrace[0]['line'] ?? 0, self::basename($backtrace[1]['file'] ?? 'native code'), $backtrace[1]['line'] ?? 0, $link, $package); + @trigger_error($message, E_USER_DEPRECATED); } - protected function activeBreadcrumb(AbstractNode $node) : string + /** + * A non-local-aware version of PHPs basename function. + */ + private static function basename(string $filename): string { - $buffer = sprintf(' ' . "\n", $node->name()); - if ($node instanceof DirectoryNode) { - $buffer .= ' ' . "\n"; + $pos = strrpos($filename, DIRECTORY_SEPARATOR); + if ($pos === \false) { + return $filename; } - return $buffer; + return substr($filename, $pos + 1); } - protected function inactiveBreadcrumb(AbstractNode $node, string $pathToRoot) : string + public static function enableTrackingDeprecations(): void { - return sprintf(' ' . "\n", $pathToRoot, $node->name()); + self::$type = self::$type ?? 0; + self::$type |= self::TYPE_TRACK_DEPRECATIONS; } - protected function pathToRoot(AbstractNode $node) : string + public static function enableWithTriggerError(): void { - $id = $node->id(); - $depth = substr_count($id, '/'); - if ($id !== 'index' && $node instanceof DirectoryNode) { - $depth++; - } - return str_repeat('../', $depth); + self::$type = self::$type ?? 0; + self::$type |= self::TYPE_TRIGGER_ERROR; } - protected function coverageBar(float $percent) : string + public static function enableWithPsrLogger(LoggerInterface $logger): void { - $level = $this->colorLevel($percent); - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'coverage_bar_branch.html' : 'coverage_bar.html'); - $template = new Template($templateName, '{{', '}}'); - $template->setVar(['level' => $level, 'percent' => sprintf('%.2F', $percent)]); - return $template->render(); + self::$type = self::$type ?? 0; + self::$type |= self::TYPE_PSR_LOGGER; + self::$logger = $logger; } - protected function colorLevel(float $percent) : string + public static function withoutDeduplication(): void { - if ($percent <= $this->lowUpperBound) { - return 'danger'; + self::$deduplication = \false; + } + public static function disable(): void + { + self::$type = self::TYPE_NONE; + self::$logger = null; + self::$deduplication = \true; + self::$ignoredLinks = []; + foreach (self::$triggeredDeprecations as $link => $count) { + self::$triggeredDeprecations[$link] = 0; } - if ($percent > $this->lowUpperBound && $percent < $this->highLowerBound) { - return 'warning'; + } + public static function ignorePackage(string $packageName): void + { + self::$ignoredPackages[$packageName] = \true; + } + public static function ignoreDeprecations(string ...$links): void + { + foreach ($links as $link) { + self::$ignoredLinks[$link] = \true; } - return 'success'; } - private function runtimeString() : string + public static function getUniqueTriggeredDeprecationsCount(): int { - $runtime = new Runtime(); - return sprintf('%s %s', $runtime->getVendorUrl(), $runtime->getName(), $runtime->getVersion()); + return array_reduce(self::$triggeredDeprecations, static function (int $carry, int $count) { + return $carry + $count; + }, 0); + } + /** + * Returns each triggered deprecation link identifier and the amount of occurrences. + * + * @return array + */ + public static function getTriggeredDeprecations(): array + { + return self::$triggeredDeprecations; + } + /** + * @return int-mask-of + */ + private static function getTypeFromEnv(): int + { + switch ($_SERVER['DOCTRINE_DEPRECATIONS'] ?? $_ENV['DOCTRINE_DEPRECATIONS'] ?? null) { + case 'trigger': + self::$type = self::TYPE_TRIGGER_ERROR; + break; + case 'track': + self::$type = self::TYPE_TRACK_DEPRECATIONS; + break; + default: + self::$type = self::TYPE_NONE; + break; + } + return self::$type; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Html; +namespace PHPUnitPHAR\PhpParser; -use function array_values; -use function arsort; -use function asort; -use function count; -use function explode; -use function floor; -use function json_encode; -use function sprintf; -use function str_replace; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\AbstractNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; -use PHPUnit\SebastianBergmann\Template\Template; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Dashboard extends Renderer +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Name\FullyQualified; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class NameContext { - public function render(DirectoryNode $node, string $file) : void + /** @var null|Name Current namespace */ + protected $namespace; + /** @var Name[][] Map of format [aliasType => [aliasName => originalName]] */ + protected $aliases = []; + /** @var Name[][] Same as $aliases but preserving original case */ + protected $origAliases = []; + /** @var ErrorHandler Error handler */ + protected $errorHandler; + /** + * Create a name context. + * + * @param ErrorHandler $errorHandler Error handling used to report errors + */ + public function __construct(ErrorHandler $errorHandler) { - $classes = $node->classesAndTraits(); - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'dashboard_branch.html' : 'dashboard.html'); - $template = new Template($templateName, '{{', '}}'); - $this->setCommonTemplateVariables($template, $node); - $baseLink = $node->id() . '/'; - $complexity = $this->complexity($classes, $baseLink); - $coverageDistribution = $this->coverageDistribution($classes); - $insufficientCoverage = $this->insufficientCoverage($classes, $baseLink); - $projectRisks = $this->projectRisks($classes, $baseLink); - $template->setVar(['insufficient_coverage_classes' => $insufficientCoverage['class'], 'insufficient_coverage_methods' => $insufficientCoverage['method'], 'project_risks_classes' => $projectRisks['class'], 'project_risks_methods' => $projectRisks['method'], 'complexity_class' => $complexity['class'], 'complexity_method' => $complexity['method'], 'class_coverage_distribution' => $coverageDistribution['class'], 'method_coverage_distribution' => $coverageDistribution['method']]); - $template->renderTo($file); + $this->errorHandler = $errorHandler; } - protected function activeBreadcrumb(AbstractNode $node) : string + /** + * Start a new namespace. + * + * This also resets the alias table. + * + * @param Name|null $namespace Null is the global namespace + */ + public function startNamespace(?Name $namespace = null) { - return sprintf(' ' . "\n" . ' ' . "\n", $node->name()); + $this->namespace = $namespace; + $this->origAliases = $this->aliases = [Stmt\Use_::TYPE_NORMAL => [], Stmt\Use_::TYPE_FUNCTION => [], Stmt\Use_::TYPE_CONSTANT => []]; } /** - * Returns the data for the Class/Method Complexity charts. + * Add an alias / import. + * + * @param Name $name Original name + * @param string $aliasName Aliased name + * @param int $type One of Stmt\Use_::TYPE_* + * @param array $errorAttrs Attributes to use to report an error */ - private function complexity(array $classes, string $baseLink) : array + public function addAlias(Name $name, string $aliasName, int $type, array $errorAttrs = []) { - $result = ['class' => [], 'method' => []]; - foreach ($classes as $className => $class) { - foreach ($class['methods'] as $methodName => $method) { - if ($className !== '*') { - $methodName = $className . '::' . $methodName; - } - $result['method'][] = [$method['coverage'], $method['ccn'], sprintf('%s', str_replace($baseLink, '', $method['link']), $methodName)]; - } - $result['class'][] = [$class['coverage'], $class['ccn'], sprintf('%s', str_replace($baseLink, '', $class['link']), $className)]; + // Constant names are case sensitive, everything else case insensitive + if ($type === Stmt\Use_::TYPE_CONSTANT) { + $aliasLookupName = $aliasName; + } else { + $aliasLookupName = strtolower($aliasName); } - return ['class' => json_encode($result['class']), 'method' => json_encode($result['method'])]; + if (isset($this->aliases[$type][$aliasLookupName])) { + $typeStringMap = [Stmt\Use_::TYPE_NORMAL => '', Stmt\Use_::TYPE_FUNCTION => 'function ', Stmt\Use_::TYPE_CONSTANT => 'const ']; + $this->errorHandler->handleError(new Error(sprintf('Cannot use %s%s as %s because the name is already in use', $typeStringMap[$type], $name, $aliasName), $errorAttrs)); + return; + } + $this->aliases[$type][$aliasLookupName] = $name; + $this->origAliases[$type][$aliasName] = $name; } /** - * Returns the data for the Class / Method Coverage Distribution chart. + * Get current namespace. + * + * @return null|Name Namespace (or null if global namespace) + */ + public function getNamespace() + { + return $this->namespace; + } + /** + * Get resolved name. + * + * @param Name $name Name to resolve + * @param int $type One of Stmt\Use_::TYPE_{FUNCTION|CONSTANT} + * + * @return null|Name Resolved name, or null if static resolution is not possible */ - private function coverageDistribution(array $classes) : array + public function getResolvedName(Name $name, int $type) { - $result = ['class' => ['0%' => 0, '0-10%' => 0, '10-20%' => 0, '20-30%' => 0, '30-40%' => 0, '40-50%' => 0, '50-60%' => 0, '60-70%' => 0, '70-80%' => 0, '80-90%' => 0, '90-100%' => 0, '100%' => 0], 'method' => ['0%' => 0, '0-10%' => 0, '10-20%' => 0, '20-30%' => 0, '30-40%' => 0, '40-50%' => 0, '50-60%' => 0, '60-70%' => 0, '70-80%' => 0, '80-90%' => 0, '90-100%' => 0, '100%' => 0]]; - foreach ($classes as $class) { - foreach ($class['methods'] as $methodName => $method) { - if ($method['coverage'] === 0) { - $result['method']['0%']++; - } elseif ($method['coverage'] === 100) { - $result['method']['100%']++; - } else { - $key = floor($method['coverage'] / 10) * 10; - $key = $key . '-' . ($key + 10) . '%'; - $result['method'][$key]++; - } + // don't resolve special class names + if ($type === Stmt\Use_::TYPE_NORMAL && $name->isSpecialClassName()) { + if (!$name->isUnqualified()) { + $this->errorHandler->handleError(new Error(sprintf("'\\%s' is an invalid class name", $name->toString()), $name->getAttributes())); } - if ($class['coverage'] === 0) { - $result['class']['0%']++; - } elseif ($class['coverage'] === 100) { - $result['class']['100%']++; - } else { - $key = floor($class['coverage'] / 10) * 10; - $key = $key . '-' . ($key + 10) . '%'; - $result['class'][$key]++; + return $name; + } + // fully qualified names are already resolved + if ($name->isFullyQualified()) { + return $name; + } + // Try to resolve aliases + if (null !== $resolvedName = $this->resolveAlias($name, $type)) { + return $resolvedName; + } + if ($type !== Stmt\Use_::TYPE_NORMAL && $name->isUnqualified()) { + if (null === $this->namespace) { + // outside of a namespace unaliased unqualified is same as fully qualified + return new FullyQualified($name, $name->getAttributes()); } + // Cannot resolve statically + return null; } - return ['class' => json_encode(array_values($result['class'])), 'method' => json_encode(array_values($result['method']))]; + // if no alias exists prepend current namespace + return FullyQualified::concat($this->namespace, $name, $name->getAttributes()); } /** - * Returns the classes / methods with insufficient coverage. + * Get resolved class name. + * + * @param Name $name Class ame to resolve + * + * @return Name Resolved name */ - private function insufficientCoverage(array $classes, string $baseLink) : array + public function getResolvedClassName(Name $name): Name { - $leastTestedClasses = []; - $leastTestedMethods = []; - $result = ['class' => '', 'method' => '']; - foreach ($classes as $className => $class) { - foreach ($class['methods'] as $methodName => $method) { - if ($method['coverage'] < $this->highLowerBound) { - $key = $methodName; - if ($className !== '*') { - $key = $className . '::' . $methodName; - } - $leastTestedMethods[$key] = $method['coverage']; - } + return $this->getResolvedName($name, Stmt\Use_::TYPE_NORMAL); + } + /** + * Get possible ways of writing a fully qualified name (e.g., by making use of aliases). + * + * @param string $name Fully-qualified name (without leading namespace separator) + * @param int $type One of Stmt\Use_::TYPE_* + * + * @return Name[] Possible representations of the name + */ + public function getPossibleNames(string $name, int $type): array + { + $lcName = strtolower($name); + if ($type === Stmt\Use_::TYPE_NORMAL) { + // self, parent and static must always be unqualified + if ($lcName === "self" || $lcName === "parent" || $lcName === "static") { + return [new Name($name)]; } - if ($class['coverage'] < $this->highLowerBound) { - $leastTestedClasses[$className] = $class['coverage']; + } + // Collect possible ways to write this name, starting with the fully-qualified name + $possibleNames = [new FullyQualified($name)]; + if (null !== $nsRelativeName = $this->getNamespaceRelativeName($name, $lcName, $type)) { + // Make sure there is no alias that makes the normally namespace-relative name + // into something else + if (null === $this->resolveAlias($nsRelativeName, $type)) { + $possibleNames[] = $nsRelativeName; } } - asort($leastTestedClasses); - asort($leastTestedMethods); - foreach ($leastTestedClasses as $className => $coverage) { - $result['class'] .= sprintf(' %s%d%%' . "\n", str_replace($baseLink, '', $classes[$className]['link']), $className, $coverage); + // Check for relevant namespace use statements + foreach ($this->origAliases[Stmt\Use_::TYPE_NORMAL] as $alias => $orig) { + $lcOrig = $orig->toLowerString(); + if (0 === strpos($lcName, $lcOrig . '\\')) { + $possibleNames[] = new Name($alias . substr($name, strlen($lcOrig))); + } } - foreach ($leastTestedMethods as $methodName => $coverage) { - [$class, $method] = explode('::', $methodName); - $result['method'] .= sprintf(' %s%d%%' . "\n", str_replace($baseLink, '', $classes[$class]['methods'][$method]['link']), $methodName, $method, $coverage); + // Check for relevant type-specific use statements + foreach ($this->origAliases[$type] as $alias => $orig) { + if ($type === Stmt\Use_::TYPE_CONSTANT) { + // Constants are are complicated-sensitive + $normalizedOrig = $this->normalizeConstName($orig->toString()); + if ($normalizedOrig === $this->normalizeConstName($name)) { + $possibleNames[] = new Name($alias); + } + } else if ($orig->toLowerString() === $lcName) { + $possibleNames[] = new Name($alias); + } } - return $result; + return $possibleNames; } /** - * Returns the project risks according to the CRAP index. + * Get shortest representation of this fully-qualified name. + * + * @param string $name Fully-qualified name (without leading namespace separator) + * @param int $type One of Stmt\Use_::TYPE_* + * + * @return Name Shortest representation */ - private function projectRisks(array $classes, string $baseLink) : array + public function getShortName(string $name, int $type): Name { - $classRisks = []; - $methodRisks = []; - $result = ['class' => '', 'method' => '']; - foreach ($classes as $className => $class) { - foreach ($class['methods'] as $methodName => $method) { - if ($method['coverage'] < $this->highLowerBound && $method['ccn'] > 1) { - $key = $methodName; - if ($className !== '*') { - $key = $className . '::' . $methodName; - } - $methodRisks[$key] = $method['crap']; - } + $possibleNames = $this->getPossibleNames($name, $type); + // Find shortest name + $shortestName = null; + $shortestLength = \INF; + foreach ($possibleNames as $possibleName) { + $length = strlen($possibleName->toCodeString()); + if ($length < $shortestLength) { + $shortestName = $possibleName; + $shortestLength = $length; } - if ($class['coverage'] < $this->highLowerBound && $class['ccn'] > count($class['methods'])) { - $classRisks[$className] = $class['crap']; + } + return $shortestName; + } + private function resolveAlias(Name $name, $type) + { + $firstPart = $name->getFirst(); + if ($name->isQualified()) { + // resolve aliases for qualified names, always against class alias table + $checkName = strtolower($firstPart); + if (isset($this->aliases[Stmt\Use_::TYPE_NORMAL][$checkName])) { + $alias = $this->aliases[Stmt\Use_::TYPE_NORMAL][$checkName]; + return FullyQualified::concat($alias, $name->slice(1), $name->getAttributes()); + } + } elseif ($name->isUnqualified()) { + // constant aliases are case-sensitive, function aliases case-insensitive + $checkName = $type === Stmt\Use_::TYPE_CONSTANT ? $firstPart : strtolower($firstPart); + if (isset($this->aliases[$type][$checkName])) { + // resolve unqualified aliases + return new FullyQualified($this->aliases[$type][$checkName], $name->getAttributes()); } } - arsort($classRisks); - arsort($methodRisks); - foreach ($classRisks as $className => $crap) { - $result['class'] .= sprintf(' %s%d' . "\n", str_replace($baseLink, '', $classes[$className]['link']), $className, $crap); + // No applicable aliases + return null; + } + private function getNamespaceRelativeName(string $name, string $lcName, int $type) + { + if (null === $this->namespace) { + return new Name($name); } - foreach ($methodRisks as $methodName => $crap) { - [$class, $method] = explode('::', $methodName); - $result['method'] .= sprintf(' %s%d' . "\n", str_replace($baseLink, '', $classes[$class]['methods'][$method]['link']), $methodName, $method, $crap); + if ($type === Stmt\Use_::TYPE_CONSTANT) { + // The constants true/false/null always resolve to the global symbols, even inside a + // namespace, so they may be used without qualification + if ($lcName === "true" || $lcName === "false" || $lcName === "null") { + return new Name($name); + } } - return $result; + $namespacePrefix = strtolower($this->namespace . '\\'); + if (0 === strpos($lcName, $namespacePrefix)) { + return new Name(substr($name, strlen($namespacePrefix))); + } + return null; + } + private function normalizeConstName(string $name) + { + $nsSep = strrpos($name, '\\'); + if (\false === $nsSep) { + return $name; + } + // Constants have case-insensitive namespace and case-sensitive short-name + $ns = substr($name, 0, $nsSep); + $shortName = substr($name, $nsSep + 1); + return strtolower($ns) . '\\' . $shortName; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Html; +namespace PHPUnitPHAR\PhpParser; -use function count; -use function sprintf; -use function str_repeat; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\AbstractNode as Node; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; -use PHPUnit\SebastianBergmann\Template\Template; /** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + * @codeCoverageIgnore */ -final class Directory extends Renderer +class NodeVisitorAbstract implements NodeVisitor { - public function render(DirectoryNode $node, string $file) : void + public function beforeTraverse(array $nodes) { - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'directory_branch.html' : 'directory.html'); - $template = new Template($templateName, '{{', '}}'); - $this->setCommonTemplateVariables($template, $node); - $items = $this->renderItem($node, \true); - foreach ($node->directories() as $item) { - $items .= $this->renderItem($item); - } - foreach ($node->files() as $item) { - $items .= $this->renderItem($item); - } - $template->setVar(['id' => $node->id(), 'items' => $items]); - $template->renderTo($file); + return null; } - private function renderItem(Node $node, bool $total = \false) : string + public function enterNode(Node $node) { - $data = ['numClasses' => $node->numberOfClassesAndTraits(), 'numTestedClasses' => $node->numberOfTestedClassesAndTraits(), 'numMethods' => $node->numberOfFunctionsAndMethods(), 'numTestedMethods' => $node->numberOfTestedFunctionsAndMethods(), 'linesExecutedPercent' => $node->percentageOfExecutedLines()->asFloat(), 'linesExecutedPercentAsString' => $node->percentageOfExecutedLines()->asString(), 'numExecutedLines' => $node->numberOfExecutedLines(), 'numExecutableLines' => $node->numberOfExecutableLines(), 'branchesExecutedPercent' => $node->percentageOfExecutedBranches()->asFloat(), 'branchesExecutedPercentAsString' => $node->percentageOfExecutedBranches()->asString(), 'numExecutedBranches' => $node->numberOfExecutedBranches(), 'numExecutableBranches' => $node->numberOfExecutableBranches(), 'pathsExecutedPercent' => $node->percentageOfExecutedPaths()->asFloat(), 'pathsExecutedPercentAsString' => $node->percentageOfExecutedPaths()->asString(), 'numExecutedPaths' => $node->numberOfExecutedPaths(), 'numExecutablePaths' => $node->numberOfExecutablePaths(), 'testedMethodsPercent' => $node->percentageOfTestedFunctionsAndMethods()->asFloat(), 'testedMethodsPercentAsString' => $node->percentageOfTestedFunctionsAndMethods()->asString(), 'testedClassesPercent' => $node->percentageOfTestedClassesAndTraits()->asFloat(), 'testedClassesPercentAsString' => $node->percentageOfTestedClassesAndTraits()->asString()]; - if ($total) { - $data['name'] = 'Total'; - } else { - $up = str_repeat('../', count($node->pathAsArray()) - 2); - $data['icon'] = sprintf('', $up); - if ($node instanceof DirectoryNode) { - $data['name'] = sprintf('%s', $node->name(), $node->name()); - $data['icon'] = sprintf('', $up); - } elseif ($this->hasBranchCoverage) { - $data['name'] = sprintf('%s [line] [branch] [path]', $node->name(), $node->name(), $node->name(), $node->name()); - } else { - $data['name'] = sprintf('%s', $node->name(), $node->name()); - } - } - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'directory_item_branch.html' : 'directory_item.html'); - return $this->renderItemTemplate(new Template($templateName, '{{', '}}'), $data); + return null; + } + public function leaveNode(Node $node) + { + return null; + } + public function afterTraverse(array $nodes) + { + return null; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Html; +namespace PHPUnitPHAR\PhpParser; -use const ENT_COMPAT; -use const ENT_HTML401; -use const ENT_SUBSTITUTE; -use const T_ABSTRACT; -use const T_ARRAY; -use const T_AS; -use const T_BREAK; -use const T_CALLABLE; -use const T_CASE; -use const T_CATCH; -use const T_CLASS; -use const T_CLONE; -use const T_COMMENT; -use const T_CONST; -use const T_CONTINUE; -use const T_DECLARE; -use const T_DEFAULT; -use const T_DO; -use const T_DOC_COMMENT; -use const T_ECHO; -use const T_ELSE; -use const T_ELSEIF; -use const T_EMPTY; -use const T_ENDDECLARE; -use const T_ENDFOR; -use const T_ENDFOREACH; -use const T_ENDIF; -use const T_ENDSWITCH; -use const T_ENDWHILE; -use const T_EVAL; -use const T_EXIT; -use const T_EXTENDS; -use const T_FINAL; -use const T_FINALLY; -use const T_FOR; -use const T_FOREACH; -use const T_FUNCTION; -use const T_GLOBAL; -use const T_GOTO; -use const T_HALT_COMPILER; -use const T_IF; -use const T_IMPLEMENTS; -use const T_INCLUDE; -use const T_INCLUDE_ONCE; -use const T_INLINE_HTML; -use const T_INSTANCEOF; -use const T_INSTEADOF; -use const T_INTERFACE; -use const T_ISSET; -use const T_LIST; -use const T_NAMESPACE; -use const T_NEW; -use const T_PRINT; -use const T_PRIVATE; -use const T_PROTECTED; -use const T_PUBLIC; -use const T_REQUIRE; -use const T_REQUIRE_ONCE; -use const T_RETURN; -use const T_STATIC; -use const T_SWITCH; -use const T_THROW; -use const T_TRAIT; -use const T_TRY; -use const T_UNSET; -use const T_USE; -use const T_VAR; -use const T_WHILE; -use const T_YIELD; -use const T_YIELD_FROM; -use function array_key_exists; -use function array_pop; -use function array_unique; -use function constant; -use function count; -use function defined; -use function explode; -use function file_get_contents; -use function htmlspecialchars; -use function is_string; -use function sprintf; -use function str_replace; -use function substr; -use function token_get_all; -use function trim; -use PHPUnit\Runner\BaseTestRunner; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File as FileNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Percentage; -use PHPUnit\SebastianBergmann\Template\Template; +interface NodeVisitor +{ + /** + * Called once before traversal. + * + * Return value semantics: + * * null: $nodes stays as-is + * * otherwise: $nodes is set to the return value + * + * @param Node[] $nodes Array of nodes + * + * @return null|Node[] Array of nodes + */ + public function beforeTraverse(array $nodes); + /** + * Called when entering a node. + * + * Return value semantics: + * * null + * => $node stays as-is + * * NodeTraverser::DONT_TRAVERSE_CHILDREN + * => Children of $node are not traversed. $node stays as-is + * * NodeTraverser::STOP_TRAVERSAL + * => Traversal is aborted. $node stays as-is + * * otherwise + * => $node is set to the return value + * + * @param Node $node Node + * + * @return null|int|Node Replacement node (or special return value) + */ + public function enterNode(Node $node); + /** + * Called when leaving a node. + * + * Return value semantics: + * * null + * => $node stays as-is + * * NodeTraverser::REMOVE_NODE + * => $node is removed from the parent array + * * NodeTraverser::STOP_TRAVERSAL + * => Traversal is aborted. $node stays as-is + * * array (of Nodes) + * => The return value is merged into the parent array (at the position of the $node) + * * otherwise + * => $node is set to the return value + * + * @param Node $node Node + * + * @return null|int|Node|Node[] Replacement node (or special return value) + */ + public function leaveNode(Node $node); + /** + * Called once after traversal. + * + * Return value semantics: + * * null: $nodes stays as-is + * * otherwise: $nodes is set to the return value + * + * @param Node[] $nodes Array of nodes + * + * @return null|Node[] Array of nodes + */ + public function afterTraverse(array $nodes); +} + + * Normalizes a node: Converts builder objects to nodes. + * + * @param Node|Builder $node The node to normalize + * + * @return Node The normalized node */ - private static $keywordTokens = []; + public static function normalizeNode($node): Node + { + if ($node instanceof Builder) { + return $node->getNode(); + } + if ($node instanceof Node) { + return $node; + } + throw new \LogicException('Expected node or builder object'); + } /** - * @var array + * Normalizes a node to a statement. + * + * Expressions are wrapped in a Stmt\Expression node. + * + * @param Node|Builder $node The node to normalize + * + * @return Stmt The normalized statement node */ - private static $formattedSourceCache = []; + public static function normalizeStmt($node): Stmt + { + $node = self::normalizeNode($node); + if ($node instanceof Stmt) { + return $node; + } + if ($node instanceof Expr) { + return new Stmt\Expression($node); + } + throw new \LogicException('Expected statement or expression node'); + } /** - * @var int + * Normalizes strings to Identifier. + * + * @param string|Identifier $name The identifier to normalize + * + * @return Identifier The normalized identifier */ - private $htmlSpecialCharsFlags = ENT_COMPAT | ENT_HTML401 | ENT_SUBSTITUTE; - public function render(FileNode $node, string $file) : void + public static function normalizeIdentifier($name): Identifier { - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'file_branch.html' : 'file.html'); - $template = new Template($templateName, '{{', '}}'); - $this->setCommonTemplateVariables($template, $node); - $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithLineCoverage($node), 'legend' => '

ExecutedNot ExecutedDead Code

', 'structure' => '']); - $template->renderTo($file . '.html'); - if ($this->hasBranchCoverage) { - $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithBranchCoverage($node), 'legend' => '

Fully coveredPartially coveredNot covered

', 'structure' => $this->renderBranchStructure($node)]); - $template->renderTo($file . '_branch.html'); - $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithPathCoverage($node), 'legend' => '

Fully coveredPartially coveredNot covered

', 'structure' => $this->renderPathStructure($node)]); - $template->renderTo($file . '_path.html'); + if ($name instanceof Identifier) { + return $name; + } + if (\is_string($name)) { + return new Identifier($name); } + throw new \LogicException('Expected string or instance of Node\Identifier'); } - private function renderItems(FileNode $node) : string + /** + * Normalizes strings to Identifier, also allowing expressions. + * + * @param string|Identifier|Expr $name The identifier to normalize + * + * @return Identifier|Expr The normalized identifier or expression + */ + public static function normalizeIdentifierOrExpr($name) { - $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'file_item_branch.html' : 'file_item.html'); - $template = new Template($templateName, '{{', '}}'); - $methodTemplateName = $this->templatePath . ($this->hasBranchCoverage ? 'method_item_branch.html' : 'method_item.html'); - $methodItemTemplate = new Template($methodTemplateName, '{{', '}}'); - $items = $this->renderItemTemplate($template, ['name' => 'Total', 'numClasses' => $node->numberOfClassesAndTraits(), 'numTestedClasses' => $node->numberOfTestedClassesAndTraits(), 'numMethods' => $node->numberOfFunctionsAndMethods(), 'numTestedMethods' => $node->numberOfTestedFunctionsAndMethods(), 'linesExecutedPercent' => $node->percentageOfExecutedLines()->asFloat(), 'linesExecutedPercentAsString' => $node->percentageOfExecutedLines()->asString(), 'numExecutedLines' => $node->numberOfExecutedLines(), 'numExecutableLines' => $node->numberOfExecutableLines(), 'branchesExecutedPercent' => $node->percentageOfExecutedBranches()->asFloat(), 'branchesExecutedPercentAsString' => $node->percentageOfExecutedBranches()->asString(), 'numExecutedBranches' => $node->numberOfExecutedBranches(), 'numExecutableBranches' => $node->numberOfExecutableBranches(), 'pathsExecutedPercent' => $node->percentageOfExecutedPaths()->asFloat(), 'pathsExecutedPercentAsString' => $node->percentageOfExecutedPaths()->asString(), 'numExecutedPaths' => $node->numberOfExecutedPaths(), 'numExecutablePaths' => $node->numberOfExecutablePaths(), 'testedMethodsPercent' => $node->percentageOfTestedFunctionsAndMethods()->asFloat(), 'testedMethodsPercentAsString' => $node->percentageOfTestedFunctionsAndMethods()->asString(), 'testedClassesPercent' => $node->percentageOfTestedClassesAndTraits()->asFloat(), 'testedClassesPercentAsString' => $node->percentageOfTestedClassesAndTraits()->asString(), 'crap' => 'CRAP']); - $items .= $this->renderFunctionItems($node->functions(), $methodItemTemplate); - $items .= $this->renderTraitOrClassItems($node->traits(), $template, $methodItemTemplate); - $items .= $this->renderTraitOrClassItems($node->classes(), $template, $methodItemTemplate); - return $items; + if ($name instanceof Identifier || $name instanceof Expr) { + return $name; + } + if (\is_string($name)) { + return new Identifier($name); + } + throw new \LogicException('Expected string or instance of Node\Identifier or Node\Expr'); } - private function renderTraitOrClassItems(array $items, Template $template, Template $methodItemTemplate) : string + /** + * Normalizes a name: Converts string names to Name nodes. + * + * @param Name|string $name The name to normalize + * + * @return Name The normalized name + */ + public static function normalizeName($name): Name { - $buffer = ''; - if (empty($items)) { - return $buffer; + if ($name instanceof Name) { + return $name; } - foreach ($items as $name => $item) { - $numMethods = 0; - $numTestedMethods = 0; - foreach ($item['methods'] as $method) { - if ($method['executableLines'] > 0) { - $numMethods++; - if ($method['executedLines'] === $method['executableLines']) { - $numTestedMethods++; - } - } + if (is_string($name)) { + if (!$name) { + throw new \LogicException('Name cannot be empty'); } - if ($item['executableLines'] > 0) { - $numClasses = 1; - $numTestedClasses = $numTestedMethods === $numMethods ? 1 : 0; - $linesExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines'])->asString(); - $branchesExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches'])->asString(); - $pathsExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths'])->asString(); - } else { - $numClasses = 0; - $numTestedClasses = 0; - $linesExecutedPercentAsString = 'n/a'; - $branchesExecutedPercentAsString = 'n/a'; - $pathsExecutedPercentAsString = 'n/a'; + if ($name[0] === '\\') { + return new Name\FullyQualified(substr($name, 1)); } - $testedMethodsPercentage = Percentage::fromFractionAndTotal($numTestedMethods, $numMethods); - $testedClassesPercentage = Percentage::fromFractionAndTotal($numTestedMethods === $numMethods ? 1 : 0, 1); - $buffer .= $this->renderItemTemplate($template, ['name' => $this->abbreviateClassName($name), 'numClasses' => $numClasses, 'numTestedClasses' => $numTestedClasses, 'numMethods' => $numMethods, 'numTestedMethods' => $numTestedMethods, 'linesExecutedPercent' => Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines'])->asFloat(), 'linesExecutedPercentAsString' => $linesExecutedPercentAsString, 'numExecutedLines' => $item['executedLines'], 'numExecutableLines' => $item['executableLines'], 'branchesExecutedPercent' => Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches'])->asFloat(), 'branchesExecutedPercentAsString' => $branchesExecutedPercentAsString, 'numExecutedBranches' => $item['executedBranches'], 'numExecutableBranches' => $item['executableBranches'], 'pathsExecutedPercent' => Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths'])->asFloat(), 'pathsExecutedPercentAsString' => $pathsExecutedPercentAsString, 'numExecutedPaths' => $item['executedPaths'], 'numExecutablePaths' => $item['executablePaths'], 'testedMethodsPercent' => $testedMethodsPercentage->asFloat(), 'testedMethodsPercentAsString' => $testedMethodsPercentage->asString(), 'testedClassesPercent' => $testedClassesPercentage->asFloat(), 'testedClassesPercentAsString' => $testedClassesPercentage->asString(), 'crap' => $item['crap']]); - foreach ($item['methods'] as $method) { - $buffer .= $this->renderFunctionOrMethodItem($methodItemTemplate, $method, ' '); + if (0 === strpos($name, 'namespace\\')) { + return new Name\Relative(substr($name, strlen('namespace\\'))); } + return new Name($name); } - return $buffer; + throw new \LogicException('Name must be a string or an instance of Node\Name'); } - private function renderFunctionItems(array $functions, Template $template) : string + /** + * Normalizes a name: Converts string names to Name nodes, while also allowing expressions. + * + * @param Expr|Name|string $name The name to normalize + * + * @return Name|Expr The normalized name or expression + */ + public static function normalizeNameOrExpr($name) { - if (empty($functions)) { - return ''; + if ($name instanceof Expr) { + return $name; } - $buffer = ''; - foreach ($functions as $function) { - $buffer .= $this->renderFunctionOrMethodItem($template, $function); + if (!is_string($name) && !$name instanceof Name) { + throw new \LogicException('Name must be a string or an instance of Node\Name or Node\Expr'); } - return $buffer; + return self::normalizeName($name); } - private function renderFunctionOrMethodItem(Template $template, array $item, string $indent = '') : string + /** + * Normalizes a type: Converts plain-text type names into proper AST representation. + * + * In particular, builtin types become Identifiers, custom types become Names and nullables + * are wrapped in NullableType nodes. + * + * @param string|Name|Identifier|ComplexType $type The type to normalize + * + * @return Name|Identifier|ComplexType The normalized type + */ + public static function normalizeType($type) { - $numMethods = 0; - $numTestedMethods = 0; - if ($item['executableLines'] > 0) { - $numMethods = 1; - if ($item['executedLines'] === $item['executableLines']) { - $numTestedMethods = 1; + if (!is_string($type)) { + if (!$type instanceof Name && !$type instanceof Identifier && !$type instanceof ComplexType) { + throw new \LogicException('Type must be a string, or an instance of Name, Identifier or ComplexType'); } + return $type; } - $executedLinesPercentage = Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines']); - $executedBranchesPercentage = Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches']); - $executedPathsPercentage = Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths']); - $testedMethodsPercentage = Percentage::fromFractionAndTotal($numTestedMethods, 1); - return $this->renderItemTemplate($template, ['name' => sprintf('%s%s', $indent, $item['startLine'], htmlspecialchars($item['signature'], $this->htmlSpecialCharsFlags), $item['functionName'] ?? $item['methodName']), 'numMethods' => $numMethods, 'numTestedMethods' => $numTestedMethods, 'linesExecutedPercent' => $executedLinesPercentage->asFloat(), 'linesExecutedPercentAsString' => $executedLinesPercentage->asString(), 'numExecutedLines' => $item['executedLines'], 'numExecutableLines' => $item['executableLines'], 'branchesExecutedPercent' => $executedBranchesPercentage->asFloat(), 'branchesExecutedPercentAsString' => $executedBranchesPercentage->asString(), 'numExecutedBranches' => $item['executedBranches'], 'numExecutableBranches' => $item['executableBranches'], 'pathsExecutedPercent' => $executedPathsPercentage->asFloat(), 'pathsExecutedPercentAsString' => $executedPathsPercentage->asString(), 'numExecutedPaths' => $item['executedPaths'], 'numExecutablePaths' => $item['executablePaths'], 'testedMethodsPercent' => $testedMethodsPercentage->asFloat(), 'testedMethodsPercentAsString' => $testedMethodsPercentage->asString(), 'crap' => $item['crap']]); - } - private function renderSourceWithLineCoverage(FileNode $node) : string - { - $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); - $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); - $coverageData = $node->lineCoverageData(); - $testData = $node->testData(); - $codeLines = $this->loadFile($node->pathAsString()); - $lines = ''; - $i = 1; - foreach ($codeLines as $line) { - $trClass = ''; - $popoverContent = ''; - $popoverTitle = ''; - if (array_key_exists($i, $coverageData)) { - $numTests = $coverageData[$i] ? count($coverageData[$i]) : 0; - if ($coverageData[$i] === null) { - $trClass = 'warning'; - } elseif ($numTests === 0) { - $trClass = 'danger'; - } else { - if ($numTests > 1) { - $popoverTitle = $numTests . ' tests cover line ' . $i; - } else { - $popoverTitle = '1 test covers line ' . $i; - } - $lineCss = 'covered-by-large-tests'; - $popoverContent = '
    '; - foreach ($coverageData[$i] as $test) { - if ($lineCss === 'covered-by-large-tests' && $testData[$test]['size'] === 'medium') { - $lineCss = 'covered-by-medium-tests'; - } elseif ($testData[$test]['size'] === 'small') { - $lineCss = 'covered-by-small-tests'; - } - $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); - } - $popoverContent .= '
'; - $trClass = $lineCss . ' popin'; - } - } - $popover = ''; - if (!empty($popoverTitle)) { - $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); - } - $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); - $i++; + $nullable = \false; + if (strlen($type) > 0 && $type[0] === '?') { + $nullable = \true; + $type = substr($type, 1); } - $linesTemplate->setVar(['lines' => $lines]); - return $linesTemplate->render(); + $builtinTypes = ['array', 'callable', 'bool', 'int', 'float', 'string', 'iterable', 'void', 'object', 'null', 'false', 'mixed', 'never', 'true']; + $lowerType = strtolower($type); + if (in_array($lowerType, $builtinTypes)) { + $type = new Identifier($lowerType); + } else { + $type = self::normalizeName($type); + } + $notNullableTypes = ['void', 'mixed', 'never']; + if ($nullable && in_array((string) $type, $notNullableTypes)) { + throw new \LogicException(sprintf('%s type cannot be nullable', $type)); + } + return $nullable ? new NullableType($type) : $type; } - private function renderSourceWithBranchCoverage(FileNode $node) : string + /** + * Normalizes a value: Converts nulls, booleans, integers, + * floats, strings and arrays into their respective nodes + * + * @param Node\Expr|bool|null|int|float|string|array $value The value to normalize + * + * @return Expr The normalized value + */ + public static function normalizeValue($value): Expr { - $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); - $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); - $functionCoverageData = $node->functionCoverageData(); - $testData = $node->testData(); - $codeLines = $this->loadFile($node->pathAsString()); - $lineData = []; - /** @var int $line */ - foreach (\array_keys($codeLines) as $line) { - $lineData[$line + 1] = ['includedInBranches' => 0, 'includedInHitBranches' => 0, 'tests' => []]; + if ($value instanceof Node\Expr) { + return $value; } - foreach ($functionCoverageData as $method) { - foreach ($method['branches'] as $branch) { - foreach (\range($branch['line_start'], $branch['line_end']) as $line) { - if (!isset($lineData[$line])) { - // blank line at end of file is sometimes included here - continue; - } - $lineData[$line]['includedInBranches']++; - if ($branch['hit']) { - $lineData[$line]['includedInHitBranches']++; - $lineData[$line]['tests'] = array_unique(\array_merge($lineData[$line]['tests'], $branch['hit'])); - } - } - } + if (is_null($value)) { + return new Expr\ConstFetch(new Name('null')); } - $lines = ''; - $i = 1; - /** @var string $line */ - foreach ($codeLines as $line) { - $trClass = ''; - $popover = ''; - if ($lineData[$i]['includedInBranches'] > 0) { - $lineCss = 'success'; - if ($lineData[$i]['includedInHitBranches'] === 0) { - $lineCss = 'danger'; - } elseif ($lineData[$i]['includedInHitBranches'] !== $lineData[$i]['includedInBranches']) { - $lineCss = 'warning'; - } - $popoverContent = '
    '; - if (count($lineData[$i]['tests']) === 1) { - $popoverTitle = '1 test covers line ' . $i; + if (is_bool($value)) { + return new Expr\ConstFetch(new Name($value ? 'true' : 'false')); + } + if (is_int($value)) { + return new Scalar\LNumber($value); + } + if (is_float($value)) { + return new Scalar\DNumber($value); + } + if (is_string($value)) { + return new Scalar\String_($value); + } + if (is_array($value)) { + $items = []; + $lastKey = -1; + foreach ($value as $itemKey => $itemValue) { + // for consecutive, numeric keys don't generate keys + if (null !== $lastKey && ++$lastKey === $itemKey) { + $items[] = new Expr\ArrayItem(self::normalizeValue($itemValue)); } else { - $popoverTitle = count($lineData[$i]['tests']) . ' tests cover line ' . $i; - } - $popoverTitle .= '. These are covering ' . $lineData[$i]['includedInHitBranches'] . ' out of the ' . $lineData[$i]['includedInBranches'] . ' code branches.'; - foreach ($lineData[$i]['tests'] as $test) { - $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); + $lastKey = null; + $items[] = new Expr\ArrayItem(self::normalizeValue($itemValue), self::normalizeValue($itemKey)); } - $popoverContent .= '
'; - $trClass = $lineCss . ' popin'; - $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); } - $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); - $i++; + return new Expr\Array_($items); } - $linesTemplate->setVar(['lines' => $lines]); - return $linesTemplate->render(); + throw new \LogicException('Invalid value'); } - private function renderSourceWithPathCoverage(FileNode $node) : string + /** + * Normalizes a doc comment: Converts plain strings to PhpParser\Comment\Doc. + * + * @param Comment\Doc|string $docComment The doc comment to normalize + * + * @return Comment\Doc The normalized doc comment + */ + public static function normalizeDocComment($docComment): Comment\Doc { - $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); - $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); - $functionCoverageData = $node->functionCoverageData(); - $testData = $node->testData(); - $codeLines = $this->loadFile($node->pathAsString()); - $lineData = []; - /** @var int $line */ - foreach (\array_keys($codeLines) as $line) { - $lineData[$line + 1] = ['includedInPaths' => [], 'includedInHitPaths' => [], 'tests' => []]; + if ($docComment instanceof Comment\Doc) { + return $docComment; } - foreach ($functionCoverageData as $method) { - foreach ($method['paths'] as $pathId => $path) { - foreach ($path['path'] as $branchTaken) { - foreach (\range($method['branches'][$branchTaken]['line_start'], $method['branches'][$branchTaken]['line_end']) as $line) { - if (!isset($lineData[$line])) { - continue; - } - $lineData[$line]['includedInPaths'][] = $pathId; - if ($path['hit']) { - $lineData[$line]['includedInHitPaths'][] = $pathId; - $lineData[$line]['tests'] = array_unique(\array_merge($lineData[$line]['tests'], $path['hit'])); - } - } - } - } + if (is_string($docComment)) { + return new Comment\Doc($docComment); } - $lines = ''; - $i = 1; - /** @var string $line */ - foreach ($codeLines as $line) { - $trClass = ''; - $popover = ''; - $includedInPathsCount = count(array_unique($lineData[$i]['includedInPaths'])); - $includedInHitPathsCount = count(array_unique($lineData[$i]['includedInHitPaths'])); - if ($includedInPathsCount > 0) { - $lineCss = 'success'; - if ($includedInHitPathsCount === 0) { - $lineCss = 'danger'; - } elseif ($includedInHitPathsCount !== $includedInPathsCount) { - $lineCss = 'warning'; - } - $popoverContent = '
    '; - if (count($lineData[$i]['tests']) === 1) { - $popoverTitle = '1 test covers line ' . $i; - } else { - $popoverTitle = count($lineData[$i]['tests']) . ' tests cover line ' . $i; - } - $popoverTitle .= '. These are covering ' . $includedInHitPathsCount . ' out of the ' . $includedInPathsCount . ' code paths.'; - foreach ($lineData[$i]['tests'] as $test) { - $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); - } - $popoverContent .= '
'; - $trClass = $lineCss . ' popin'; - $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); - } - $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); - $i++; + throw new \LogicException('Doc comment must be a string or an instance of PhpParser\Comment\Doc'); + } + /** + * Normalizes a attribute: Converts attribute to the Attribute Group if needed. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return Node\AttributeGroup The Attribute Group + */ + public static function normalizeAttribute($attribute): Node\AttributeGroup + { + if ($attribute instanceof Node\AttributeGroup) { + return $attribute; } - $linesTemplate->setVar(['lines' => $lines]); - return $linesTemplate->render(); + if (!$attribute instanceof Node\Attribute) { + throw new \LogicException('Attribute must be an instance of PhpParser\Node\Attribute or PhpParser\Node\AttributeGroup'); + } + return new Node\AttributeGroup([$attribute]); } - private function renderBranchStructure(FileNode $node) : string + /** + * Adds a modifier and returns new modifier bitmask. + * + * @param int $modifiers Existing modifiers + * @param int $modifier Modifier to set + * + * @return int New modifiers + */ + public static function addModifier(int $modifiers, int $modifier): int { - $branchesTemplate = new Template($this->templatePath . 'branches.html.dist', '{{', '}}'); - $coverageData = $node->functionCoverageData(); - $testData = $node->testData(); - $codeLines = $this->loadFile($node->pathAsString()); - $branches = ''; - \ksort($coverageData); - foreach ($coverageData as $methodName => $methodData) { - if (!$methodData['branches']) { - continue; - } - $branchStructure = ''; - foreach ($methodData['branches'] as $branch) { - $branchStructure .= $this->renderBranchLines($branch, $codeLines, $testData); - } - if ($branchStructure !== '') { - // don't show empty branches - $branches .= '
' . $this->abbreviateMethodName($methodName) . '
' . "\n"; - $branches .= $branchStructure; - } + Stmt\Class_::verifyModifier($modifiers, $modifier); + return $modifiers | $modifier; + } + /** + * Adds a modifier and returns new modifier bitmask. + * @return int New modifiers + */ + public static function addClassModifier(int $existingModifiers, int $modifierToSet): int + { + Stmt\Class_::verifyClassModifier($existingModifiers, $modifierToSet); + return $existingModifiers | $modifierToSet; + } +} +filterCallback = $filterCallback; + } + /** + * Get found nodes satisfying the filter callback. + * + * Nodes are returned in pre-order. + * + * @return Node[] Found nodes + */ + public function getFoundNodes(): array + { + return $this->foundNodes; + } + public function beforeTraverse(array $nodes) + { + $this->foundNodes = []; + return null; + } + public function enterNode(Node $node) + { + $filterCallback = $this->filterCallback; + if ($filterCallback($node)) { + $this->foundNodes[] = $node; } - $branchesTemplate->setVar(['branches' => $branches]); - return $branchesTemplate->render(); + return null; + } +} +nameContext = new NameContext($errorHandler ?? new ErrorHandler\Throwing()); + $this->preserveOriginalNames = $options['preserveOriginalNames'] ?? \false; + $this->replaceNodes = $options['replaceNodes'] ?? \true; } - private function renderBranchLines(array $branch, array $codeLines, array $testData) : string + /** + * Get name resolution context. + * + * @return NameContext + */ + public function getNameContext(): NameContext { - $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); - $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); - $lines = ''; - $branchLines = \range($branch['line_start'], $branch['line_end']); - \sort($branchLines); - // sometimes end_line < start_line - /** @var int $line */ - foreach ($branchLines as $line) { - if (!isset($codeLines[$line])) { - // blank line at end of file is sometimes included here - continue; + return $this->nameContext; + } + public function beforeTraverse(array $nodes) + { + $this->nameContext->startNamespace(); + return null; + } + public function enterNode(Node $node) + { + if ($node instanceof Stmt\Namespace_) { + $this->nameContext->startNamespace($node->name); + } elseif ($node instanceof Stmt\Use_) { + foreach ($node->uses as $use) { + $this->addAlias($use, $node->type, null); } - $popoverContent = ''; - $popoverTitle = ''; - $numTests = count($branch['hit']); - if ($numTests === 0) { - $trClass = 'danger'; - } else { - $lineCss = 'covered-by-large-tests'; - $popoverContent = '
    '; - if ($numTests > 1) { - $popoverTitle = $numTests . ' tests cover this branch'; - } else { - $popoverTitle = '1 test covers this branch'; - } - foreach ($branch['hit'] as $test) { - if ($lineCss === 'covered-by-large-tests' && $testData[$test]['size'] === 'medium') { - $lineCss = 'covered-by-medium-tests'; - } elseif ($testData[$test]['size'] === 'small') { - $lineCss = 'covered-by-small-tests'; - } - $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); - } - $trClass = $lineCss . ' popin'; + } elseif ($node instanceof Stmt\GroupUse) { + foreach ($node->uses as $use) { + $this->addAlias($use, $node->type, $node->prefix); } - $popover = ''; - if (!empty($popoverTitle)) { - $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); + } elseif ($node instanceof Stmt\Class_) { + if (null !== $node->extends) { + $node->extends = $this->resolveClassName($node->extends); } - $lines .= $this->renderLine($singleLineTemplate, $line, $codeLines[$line - 1], $trClass, $popover); - } - if ($lines === '') { - return ''; - } - $linesTemplate->setVar(['lines' => $lines]); - return $linesTemplate->render(); - } - private function renderPathStructure(FileNode $node) : string - { - $pathsTemplate = new Template($this->templatePath . 'paths.html.dist', '{{', '}}'); - $coverageData = $node->functionCoverageData(); - $testData = $node->testData(); - $codeLines = $this->loadFile($node->pathAsString()); - $paths = ''; - \ksort($coverageData); - foreach ($coverageData as $methodName => $methodData) { - if (!$methodData['paths']) { - continue; + foreach ($node->implements as &$interface) { + $interface = $this->resolveClassName($interface); } - $pathStructure = ''; - if (count($methodData['paths']) > 100) { - $pathStructure .= '

    ' . count($methodData['paths']) . ' is too many paths to sensibly render, consider refactoring your code to bring this number down.

    '; - continue; + $this->resolveAttrGroups($node); + if (null !== $node->name) { + $this->addNamespacedName($node); } - foreach ($methodData['paths'] as $path) { - $pathStructure .= $this->renderPathLines($path, $methodData['branches'], $codeLines, $testData); + } elseif ($node instanceof Stmt\Interface_) { + foreach ($node->extends as &$interface) { + $interface = $this->resolveClassName($interface); } - if ($pathStructure !== '') { - $paths .= '
    ' . $this->abbreviateMethodName($methodName) . '
    ' . "\n"; - $paths .= $pathStructure; + $this->resolveAttrGroups($node); + $this->addNamespacedName($node); + } elseif ($node instanceof Stmt\Enum_) { + foreach ($node->implements as &$interface) { + $interface = $this->resolveClassName($interface); } - } - $pathsTemplate->setVar(['paths' => $paths]); - return $pathsTemplate->render(); - } - private function renderPathLines(array $path, array $branches, array $codeLines, array $testData) : string - { - $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); - $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); - $lines = ''; - $first = \true; - foreach ($path['path'] as $branchId) { - if ($first) { - $first = \false; - } else { - $lines .= '  ' . "\n"; + $this->resolveAttrGroups($node); + if (null !== $node->name) { + $this->addNamespacedName($node); } - $branchLines = \range($branches[$branchId]['line_start'], $branches[$branchId]['line_end']); - \sort($branchLines); - // sometimes end_line < start_line - /** @var int $line */ - foreach ($branchLines as $line) { - if (!isset($codeLines[$line])) { - // blank line at end of file is sometimes included here - continue; + } elseif ($node instanceof Stmt\Trait_) { + $this->resolveAttrGroups($node); + $this->addNamespacedName($node); + } elseif ($node instanceof Stmt\Function_) { + $this->resolveSignature($node); + $this->resolveAttrGroups($node); + $this->addNamespacedName($node); + } elseif ($node instanceof Stmt\ClassMethod || $node instanceof Expr\Closure || $node instanceof Expr\ArrowFunction) { + $this->resolveSignature($node); + $this->resolveAttrGroups($node); + } elseif ($node instanceof Stmt\Property) { + if (null !== $node->type) { + $node->type = $this->resolveType($node->type); + } + $this->resolveAttrGroups($node); + } elseif ($node instanceof Stmt\Const_) { + foreach ($node->consts as $const) { + $this->addNamespacedName($const); + } + } else if ($node instanceof Stmt\ClassConst) { + if (null !== $node->type) { + $node->type = $this->resolveType($node->type); + } + $this->resolveAttrGroups($node); + } else if ($node instanceof Stmt\EnumCase) { + $this->resolveAttrGroups($node); + } elseif ($node instanceof Expr\StaticCall || $node instanceof Expr\StaticPropertyFetch || $node instanceof Expr\ClassConstFetch || $node instanceof Expr\New_ || $node instanceof Expr\Instanceof_) { + if ($node->class instanceof Name) { + $node->class = $this->resolveClassName($node->class); + } + } elseif ($node instanceof Stmt\Catch_) { + foreach ($node->types as &$type) { + $type = $this->resolveClassName($type); + } + } elseif ($node instanceof Expr\FuncCall) { + if ($node->name instanceof Name) { + $node->name = $this->resolveName($node->name, Stmt\Use_::TYPE_FUNCTION); + } + } elseif ($node instanceof Expr\ConstFetch) { + $node->name = $this->resolveName($node->name, Stmt\Use_::TYPE_CONSTANT); + } elseif ($node instanceof Stmt\TraitUse) { + foreach ($node->traits as &$trait) { + $trait = $this->resolveClassName($trait); + } + foreach ($node->adaptations as $adaptation) { + if (null !== $adaptation->trait) { + $adaptation->trait = $this->resolveClassName($adaptation->trait); } - $popoverContent = ''; - $popoverTitle = ''; - $numTests = count($path['hit']); - if ($numTests === 0) { - $trClass = 'danger'; - } else { - $lineCss = 'covered-by-large-tests'; - $popoverContent = '
      '; - if ($numTests > 1) { - $popoverTitle = $numTests . ' tests cover this path'; - } else { - $popoverTitle = '1 test covers this path'; - } - foreach ($path['hit'] as $test) { - if ($lineCss === 'covered-by-large-tests' && $testData[$test]['size'] === 'medium') { - $lineCss = 'covered-by-medium-tests'; - } elseif ($testData[$test]['size'] === 'small') { - $lineCss = 'covered-by-small-tests'; - } - $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); + if ($adaptation instanceof Stmt\TraitUseAdaptation\Precedence) { + foreach ($adaptation->insteadof as &$insteadof) { + $insteadof = $this->resolveClassName($insteadof); } - $trClass = $lineCss . ' popin'; - } - $popover = ''; - if (!empty($popoverTitle)) { - $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); } - $lines .= $this->renderLine($singleLineTemplate, $line, $codeLines[$line - 1], $trClass, $popover); } } - if ($lines === '') { - return ''; - } - $linesTemplate->setVar(['lines' => $lines]); - return $linesTemplate->render(); + return null; } - private function renderLine(Template $template, int $lineNumber, string $lineContent, string $class, string $popover) : string + private function addAlias(Stmt\UseUse $use, int $type, ?Name $prefix = null) { - $template->setVar(['lineNumber' => $lineNumber, 'lineContent' => $lineContent, 'class' => $class, 'popover' => $popover]); - return $template->render(); + // Add prefix for group uses + $name = $prefix ? Name::concat($prefix, $use->name) : $use->name; + // Type is determined either by individual element or whole use declaration + $type |= $use->type; + $this->nameContext->addAlias($name, (string) $use->getAlias(), $type, $use->getAttributes()); } - private function loadFile(string $file) : array + /** @param Stmt\Function_|Stmt\ClassMethod|Expr\Closure $node */ + private function resolveSignature($node) { - if (isset(self::$formattedSourceCache[$file])) { - return self::$formattedSourceCache[$file]; - } - $buffer = file_get_contents($file); - $tokens = token_get_all($buffer); - $result = ['']; - $i = 0; - $stringFlag = \false; - $fileEndsWithNewLine = substr($buffer, -1) === "\n"; - unset($buffer); - foreach ($tokens as $j => $token) { - if (is_string($token)) { - if ($token === '"' && $tokens[$j - 1] !== '\\') { - $result[$i] .= sprintf('%s', htmlspecialchars($token, $this->htmlSpecialCharsFlags)); - $stringFlag = !$stringFlag; - } else { - $result[$i] .= sprintf('%s', htmlspecialchars($token, $this->htmlSpecialCharsFlags)); - } - continue; - } - [$token, $value] = $token; - $value = str_replace(["\t", ' '], ['    ', ' '], htmlspecialchars($value, $this->htmlSpecialCharsFlags)); - if ($value === "\n") { - $result[++$i] = ''; - } else { - $lines = explode("\n", $value); - foreach ($lines as $jj => $line) { - $line = trim($line); - if ($line !== '') { - if ($stringFlag) { - $colour = 'string'; - } else { - $colour = 'default'; - if ($this->isInlineHtml($token)) { - $colour = 'html'; - } elseif ($this->isComment($token)) { - $colour = 'comment'; - } elseif ($this->isKeyword($token)) { - $colour = 'keyword'; - } - } - $result[$i] .= sprintf('%s', $colour, $line); - } - if (isset($lines[$jj + 1])) { - $result[++$i] = ''; - } - } - } - } - if ($fileEndsWithNewLine) { - unset($result[count($result) - 1]); + foreach ($node->params as $param) { + $param->type = $this->resolveType($param->type); + $this->resolveAttrGroups($param); } - self::$formattedSourceCache[$file] = $result; - return $result; + $node->returnType = $this->resolveType($node->returnType); } - private function abbreviateClassName(string $className) : string + private function resolveType($node) { - $tmp = explode('\\', $className); - if (count($tmp) > 1) { - $className = sprintf('%s', $className, array_pop($tmp)); + if ($node instanceof Name) { + return $this->resolveClassName($node); } - return $className; - } - private function abbreviateMethodName(string $methodName) : string - { - $parts = explode('->', $methodName); - if (count($parts) === 2) { - return $this->abbreviateClassName($parts[0]) . '->' . $parts[1]; + if ($node instanceof Node\NullableType) { + $node->type = $this->resolveType($node->type); + return $node; } - return $methodName; + if ($node instanceof Node\UnionType || $node instanceof Node\IntersectionType) { + foreach ($node->types as &$type) { + $type = $this->resolveType($type); + } + return $node; + } + return $node; } - private function createPopoverContentForTest(string $test, array $testData) : string + /** + * Resolve name, according to name resolver options. + * + * @param Name $name Function or constant name to resolve + * @param int $type One of Stmt\Use_::TYPE_* + * + * @return Name Resolved name, or original name with attribute + */ + protected function resolveName(Name $name, int $type): Name { - $testCSS = ''; - if ($testData['fromTestcase']) { - switch ($testData['status']) { - case BaseTestRunner::STATUS_PASSED: - switch ($testData['size']) { - case 'small': - $testCSS = ' class="covered-by-small-tests"'; - break; - case 'medium': - $testCSS = ' class="covered-by-medium-tests"'; - break; - default: - $testCSS = ' class="covered-by-large-tests"'; - break; - } - break; - case BaseTestRunner::STATUS_SKIPPED: - case BaseTestRunner::STATUS_INCOMPLETE: - case BaseTestRunner::STATUS_RISKY: - case BaseTestRunner::STATUS_WARNING: - $testCSS = ' class="warning"'; - break; - case BaseTestRunner::STATUS_FAILURE: - case BaseTestRunner::STATUS_ERROR: - $testCSS = ' class="danger"'; - break; + if (!$this->replaceNodes) { + $resolvedName = $this->nameContext->getResolvedName($name, $type); + if (null !== $resolvedName) { + $name->setAttribute('resolvedName', $resolvedName); + } else { + $name->setAttribute('namespacedName', FullyQualified::concat($this->nameContext->getNamespace(), $name, $name->getAttributes())); } + return $name; } - return sprintf('%s', $testCSS, htmlspecialchars($test, $this->htmlSpecialCharsFlags)); + if ($this->preserveOriginalNames) { + // Save the original name + $originalName = $name; + $name = clone $originalName; + $name->setAttribute('originalName', $originalName); + } + $resolvedName = $this->nameContext->getResolvedName($name, $type); + if (null !== $resolvedName) { + return $resolvedName; + } + // unqualified names inside a namespace cannot be resolved at compile-time + // add the namespaced version of the name as an attribute + $name->setAttribute('namespacedName', FullyQualified::concat($this->nameContext->getNamespace(), $name, $name->getAttributes())); + return $name; } - private function isComment(int $token) : bool + protected function resolveClassName(Name $name) { - return $token === T_COMMENT || $token === T_DOC_COMMENT; + return $this->resolveName($name, Stmt\Use_::TYPE_NORMAL); } - private function isInlineHtml(int $token) : bool + protected function addNamespacedName(Node $node) { - return $token === T_INLINE_HTML; + $node->namespacedName = Name::concat($this->nameContext->getNamespace(), (string) $node->name); } - private function isKeyword(int $token) : bool + protected function resolveAttrGroups(Node $node) { - return isset(self::keywordTokens()[$token]); + foreach ($node->attrGroups as $attrGroup) { + foreach ($attrGroup->attrs as $attr) { + $attr->name = $this->resolveClassName($attr->name); + } + } + } +} +filterCallback = $filterCallback; } /** - * @psalm-return array + * Get found node satisfying the filter callback. + * + * Returns null if no node satisfies the filter callback. + * + * @return null|Node Found node (or null if not found) */ - private static function keywordTokens() : array + public function getFoundNode() { - if (self::$keywordTokens !== []) { - return self::$keywordTokens; - } - self::$keywordTokens = [T_ABSTRACT => \true, T_ARRAY => \true, T_AS => \true, T_BREAK => \true, T_CALLABLE => \true, T_CASE => \true, T_CATCH => \true, T_CLASS => \true, T_CLONE => \true, T_CONST => \true, T_CONTINUE => \true, T_DECLARE => \true, T_DEFAULT => \true, T_DO => \true, T_ECHO => \true, T_ELSE => \true, T_ELSEIF => \true, T_EMPTY => \true, T_ENDDECLARE => \true, T_ENDFOR => \true, T_ENDFOREACH => \true, T_ENDIF => \true, T_ENDSWITCH => \true, T_ENDWHILE => \true, T_EVAL => \true, T_EXIT => \true, T_EXTENDS => \true, T_FINAL => \true, T_FINALLY => \true, T_FOR => \true, T_FOREACH => \true, T_FUNCTION => \true, T_GLOBAL => \true, T_GOTO => \true, T_HALT_COMPILER => \true, T_IF => \true, T_IMPLEMENTS => \true, T_INCLUDE => \true, T_INCLUDE_ONCE => \true, T_INSTANCEOF => \true, T_INSTEADOF => \true, T_INTERFACE => \true, T_ISSET => \true, T_LIST => \true, T_NAMESPACE => \true, T_NEW => \true, T_PRINT => \true, T_PRIVATE => \true, T_PROTECTED => \true, T_PUBLIC => \true, T_REQUIRE => \true, T_REQUIRE_ONCE => \true, T_RETURN => \true, T_STATIC => \true, T_SWITCH => \true, T_THROW => \true, T_TRAIT => \true, T_TRY => \true, T_UNSET => \true, T_USE => \true, T_VAR => \true, T_WHILE => \true, T_YIELD => \true, T_YIELD_FROM => \true]; - if (defined('T_FN')) { - self::$keywordTokens[constant('T_FN')] = \true; - } - if (defined('T_MATCH')) { - self::$keywordTokens[constant('T_MATCH')] = \true; - } - if (defined('T_ENUM')) { - self::$keywordTokens[constant('T_ENUM')] = \true; - } - if (defined('T_READONLY')) { - self::$keywordTokens[constant('T_READONLY')] = \true; + return $this->foundNode; + } + public function beforeTraverse(array $nodes) + { + $this->foundNode = null; + return null; + } + public function enterNode(Node $node) + { + $filterCallback = $this->filterCallback; + if ($filterCallback($node)) { + $this->foundNode = $node; + return NodeTraverser::STOP_TRAVERSAL; } - return self::$keywordTokens; + return null; } } -
      -

      Branches

      -

      - Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not - necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once. - Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement - always has an else as part of its logical flow even if you didn't write one. -

      -{{branches}} -
      -
      - {{percent}}% covered ({{level}}) -
      -
      -
      -
      - {{percent}}% covered ({{level}}) -
      -
      -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} -/*# sourceMappingURL=bootstrap.min.css.map */.nvd3 .nv-axis{pointer-events:none;opacity:1}.nvd3 .nv-axis path{fill:none;stroke:#000;stroke-opacity:.75;shape-rendering:crispEdges}.nvd3 .nv-axis path.domain{stroke-opacity:.75}.nvd3 .nv-axis.nv-x path.domain{stroke-opacity:0}.nvd3 .nv-axis line{fill:none;stroke:#e5e5e5;shape-rendering:crispEdges}.nvd3 .nv-axis .zero line,.nvd3 .nv-axis line.zero{stroke-opacity:.75}.nvd3 .nv-axis .nv-axisMaxMin text{font-weight:700}.nvd3 .x .nv-axis .nv-axisMaxMin text,.nvd3 .x2 .nv-axis .nv-axisMaxMin text,.nvd3 .x3 .nv-axis .nv-axisMaxMin text{text-anchor:middle}.nvd3 .nv-axis.nv-disabled{opacity:0}.nvd3 .nv-bars rect{fill-opacity:.75;transition:fill-opacity 250ms linear;-moz-transition:fill-opacity 250ms linear;-webkit-transition:fill-opacity 250ms linear}.nvd3 .nv-bars rect.hover{fill-opacity:1}.nvd3 .nv-bars .hover rect{fill:#add8e6}.nvd3 .nv-bars text{fill:rgba(0,0,0,0)}.nvd3 .nv-bars .hover text{fill:rgba(0,0,0,1)}.nvd3 .nv-multibar .nv-groups rect,.nvd3 .nv-multibarHorizontal .nv-groups rect,.nvd3 .nv-discretebar .nv-groups rect{stroke-opacity:0;transition:fill-opacity 250ms linear;-moz-transition:fill-opacity 250ms linear;-webkit-transition:fill-opacity 250ms linear}.nvd3 .nv-multibar .nv-groups rect:hover,.nvd3 .nv-multibarHorizontal .nv-groups rect:hover,.nvd3 .nv-candlestickBar .nv-ticks rect:hover,.nvd3 .nv-discretebar .nv-groups rect:hover{fill-opacity:1}.nvd3 .nv-discretebar .nv-groups text,.nvd3 .nv-multibarHorizontal .nv-groups text{font-weight:700;fill:rgba(0,0,0,1);stroke:rgba(0,0,0,0)}.nvd3 .nv-boxplot circle{fill-opacity:.5}.nvd3 .nv-boxplot circle:hover{fill-opacity:1}.nvd3 .nv-boxplot rect:hover{fill-opacity:1}.nvd3 line.nv-boxplot-median{stroke:#000}.nv-boxplot-tick:hover{stroke-width:2.5px}.nvd3.nv-bullet{font:10px sans-serif}.nvd3.nv-bullet .nv-measure{fill-opacity:.8}.nvd3.nv-bullet .nv-measure:hover{fill-opacity:1}.nvd3.nv-bullet .nv-marker{stroke:#000;stroke-width:2px}.nvd3.nv-bullet .nv-markerTriangle{stroke:#000;fill:#fff;stroke-width:1.5px}.nvd3.nv-bullet .nv-tick line{stroke:#666;stroke-width:.5px}.nvd3.nv-bullet .nv-range.nv-s0{fill:#eee}.nvd3.nv-bullet .nv-range.nv-s1{fill:#ddd}.nvd3.nv-bullet .nv-range.nv-s2{fill:#ccc}.nvd3.nv-bullet .nv-title{font-size:14px;font-weight:700}.nvd3.nv-bullet .nv-subtitle{fill:#999}.nvd3.nv-bullet .nv-range{fill:#bababa;fill-opacity:.4}.nvd3.nv-bullet .nv-range:hover{fill-opacity:.7}.nvd3.nv-candlestickBar .nv-ticks .nv-tick{stroke-width:1px}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover{stroke-width:2px}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect{stroke:#2ca02c;fill:#2ca02c}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect{stroke:#d62728;fill:#d62728}.with-transitions .nv-candlestickBar .nv-ticks .nv-tick{transition:stroke-width 250ms linear,stroke-opacity 250ms linear;-moz-transition:stroke-width 250ms linear,stroke-opacity 250ms linear;-webkit-transition:stroke-width 250ms linear,stroke-opacity 250ms linear}.nvd3.nv-candlestickBar .nv-ticks line{stroke:#333}.nvd3 .nv-legend .nv-disabled rect{}.nvd3 .nv-check-box .nv-box{fill-opacity:0;stroke-width:2}.nvd3 .nv-check-box .nv-check{fill-opacity:0;stroke-width:4}.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check{fill-opacity:0;stroke-opacity:0}.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check{opacity:0}.nvd3.nv-linePlusBar .nv-bar rect{fill-opacity:.75}.nvd3.nv-linePlusBar .nv-bar rect:hover{fill-opacity:1}.nvd3 .nv-groups path.nv-line{fill:none}.nvd3 .nv-groups path.nv-area{stroke:none}.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point{fill-opacity:0;stroke-opacity:0}.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point{fill-opacity:.5!important;stroke-opacity:.5!important}.with-transitions .nvd3 .nv-groups .nv-point{transition:stroke-width 250ms linear,stroke-opacity 250ms linear;-moz-transition:stroke-width 250ms linear,stroke-opacity 250ms linear;-webkit-transition:stroke-width 250ms linear,stroke-opacity 250ms linear}.nvd3.nv-scatter .nv-groups .nv-point.hover,.nvd3 .nv-groups .nv-point.hover{stroke-width:7px;fill-opacity:.95!important;stroke-opacity:.95!important}.nvd3 .nv-point-paths path{stroke:#aaa;stroke-opacity:0;fill:#eee;fill-opacity:0}.nvd3 .nv-indexLine{cursor:ew-resize}svg.nvd3-svg{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none;display:block;width:100%;height:100%}.nvtooltip.with-3d-shadow,.with-3d-shadow .nvtooltip{-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nvd3 text{font:400 12px Arial}.nvd3 .title{font:700 14px Arial}.nvd3 .nv-background{fill:#fff;fill-opacity:0}.nvd3.nv-noData{font-size:18px;font-weight:700}.nv-brush .extent{fill-opacity:.125;shape-rendering:crispEdges}.nv-brush .resize path{fill:#eee;stroke:#666}.nvd3 .nv-legend .nv-series{cursor:pointer}.nvd3 .nv-legend .nv-disabled circle{fill-opacity:0}.nvd3 .nv-brush .extent{fill-opacity:0!important}.nvd3 .nv-brushBackground rect{stroke:#000;stroke-width:.4;fill:#fff;fill-opacity:.7}.nvd3.nv-ohlcBar .nv-ticks .nv-tick{stroke-width:1px}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover{stroke-width:2px}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive{stroke:#2ca02c}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative{stroke:#d62728}.nvd3 .background path{fill:none;stroke:#EEE;stroke-opacity:.4;shape-rendering:crispEdges}.nvd3 .foreground path{fill:none;stroke-opacity:.7}.nvd3 .nv-parallelCoordinates-brush .extent{fill:#fff;fill-opacity:.6;stroke:gray;shape-rendering:crispEdges}.nvd3 .nv-parallelCoordinates .hover{fill-opacity:1;stroke-width:3px}.nvd3 .missingValuesline line{fill:none;stroke:#000;stroke-width:1;stroke-opacity:1;stroke-dasharray:5,5}.nvd3.nv-pie path{stroke-opacity:0;transition:fill-opacity 250ms linear,stroke-width 250ms linear,stroke-opacity 250ms linear;-moz-transition:fill-opacity 250ms linear,stroke-width 250ms linear,stroke-opacity 250ms linear;-webkit-transition:fill-opacity 250ms linear,stroke-width 250ms linear,stroke-opacity 250ms linear}.nvd3.nv-pie .nv-pie-title{font-size:24px;fill:rgba(19,196,249,.59)}.nvd3.nv-pie .nv-slice text{stroke:#000;stroke-width:0}.nvd3.nv-pie path{stroke:#fff;stroke-width:1px;stroke-opacity:1}.nvd3.nv-pie .hover path{fill-opacity:.7}.nvd3.nv-pie .nv-label{pointer-events:none}.nvd3.nv-pie .nv-label rect{fill-opacity:0;stroke-opacity:0}.nvd3 .nv-groups .nv-point.hover{stroke-width:20px;stroke-opacity:.5}.nvd3 .nv-scatter .nv-point.hover{fill-opacity:1}.nv-noninteractive{pointer-events:none}.nv-distx,.nv-disty{pointer-events:none}.nvd3.nv-sparkline path{fill:none}.nvd3.nv-sparklineplus g.nv-hoverValue{pointer-events:none}.nvd3.nv-sparklineplus .nv-hoverValue line{stroke:#333;stroke-width:1.5px}.nvd3.nv-sparklineplus,.nvd3.nv-sparklineplus g{pointer-events:all}.nvd3 .nv-hoverArea{fill-opacity:0;stroke-opacity:0}.nvd3.nv-sparklineplus .nv-xValue,.nvd3.nv-sparklineplus .nv-yValue{stroke-width:0;font-size:.9em;font-weight:400}.nvd3.nv-sparklineplus .nv-yValue{stroke:#f66}.nvd3.nv-sparklineplus .nv-maxValue{stroke:#2ca02c;fill:#2ca02c}.nvd3.nv-sparklineplus .nv-minValue{stroke:#d62728;fill:#d62728}.nvd3.nv-sparklineplus .nv-currentValue{font-weight:700;font-size:1.1em}.nvd3.nv-stackedarea path.nv-area{fill-opacity:.7;stroke-opacity:0;transition:fill-opacity 250ms linear,stroke-opacity 250ms linear;-moz-transition:fill-opacity 250ms linear,stroke-opacity 250ms linear;-webkit-transition:fill-opacity 250ms linear,stroke-opacity 250ms linear}.nvd3.nv-stackedarea path.nv-area.hover{fill-opacity:.9}.nvd3.nv-stackedarea .nv-groups .nv-point{stroke-opacity:0;fill-opacity:0}.nvtooltip{position:absolute;background-color:rgba(255,255,255,1);color:rgba(0,0,0,1);padding:1px;border:1px solid rgba(0,0,0,.2);z-index:10000;display:block;font-family:Arial;font-size:13px;text-align:left;pointer-events:none;white-space:nowrap;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.nvtooltip{background:rgba(255,255,255,.8);border:1px solid rgba(0,0,0,.5);border-radius:4px}.nvtooltip.with-transitions,.with-transitions .nvtooltip{transition:opacity 50ms linear;-moz-transition:opacity 50ms linear;-webkit-transition:opacity 50ms linear;transition-delay:200ms;-moz-transition-delay:200ms;-webkit-transition-delay:200ms}.nvtooltip.x-nvtooltip,.nvtooltip.y-nvtooltip{padding:8px}.nvtooltip h3{margin:0;padding:4px 14px;line-height:18px;font-weight:400;background-color:rgba(247,247,247,.75);color:rgba(0,0,0,1);text-align:center;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.nvtooltip p{margin:0;padding:5px 14px;text-align:center}.nvtooltip span{display:inline-block;margin:2px 0}.nvtooltip table{margin:6px;border-spacing:0}.nvtooltip table td{padding:2px 9px 2px 0;vertical-align:middle}.nvtooltip table td.key{font-weight:400}.nvtooltip table td.value{text-align:right;font-weight:700}.nvtooltip table tr.highlight td{padding:1px 9px 1px 0;border-bottom-style:solid;border-bottom-width:1px;border-top-style:solid;border-top-width:1px}.nvtooltip table td.legend-color-guide div{width:8px;height:8px;vertical-align:middle}.nvtooltip table td.legend-color-guide div{width:12px;height:12px;border:1px solid #999}.nvtooltip .footer{padding:3px;text-align:center}.nvtooltip-pending-removal{pointer-events:none;display:none}.nvd3 .nv-interactiveGuideLine{pointer-events:none}.nvd3 line.nv-guideline{stroke:#ccc}.octicon { - display: inline-block; - vertical-align: text-top; - fill: currentColor; -} -body { - padding-top: 10px; -} - -.popover { - max-width: none; -} - -.octicon { - margin-right:.25em; -} - -.table-bordered>thead>tr>td { - border-bottom-width: 1px; -} - -.table tbody>tr>td, .table thead>tr>td { - padding-top: 3px; - padding-bottom: 3px; -} - -.table-condensed tbody>tr>td { - padding-top: 0; - padding-bottom: 0; -} - -.table .progress { - margin-bottom: inherit; -} - -.table-borderless th, .table-borderless td { - border: 0 !important; -} - -.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success { - background-color: #dff0d8; -} - -.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests { - background-color: #c3e3b5; -} - -.table tbody tr.covered-by-small-tests, li.covered-by-small-tests { - background-color: #99cb84; -} - -.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger { - background-color: #f2dede; -} - -.table tbody tr.warning, .table tbody td.warning, li.warning, span.warning { - background-color: #fcf8e3; -} - -.table tbody td.info { - background-color: #d9edf7; -} - -td.big { - width: 117px; -} - -td.small { -} - -td.codeLine { - font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - white-space: pre-wrap; -} - -td span.comment { - color: #888a85; -} - -td span.default { - color: #2e3436; -} - -td span.html { - color: #888a85; -} - -td span.keyword { - color: #2e3436; - font-weight: bold; -} +setAttribute('origNode', $origNode); + return $node; + } } +$node->getAttribute('parent'). + */ +final class ParentConnectingVisitor extends NodeVisitorAbstract +{ + /** + * @var Node[] + */ + private $stack = []; + public function beforeTraverse(array $nodes) + { + $this->stack = []; + } + public function enterNode(Node $node) + { + if (!empty($this->stack)) { + $node->setAttribute('parent', $this->stack[count($this->stack) - 1]); + } + $this->stack[] = $node; + } + public function leaveNode(Node $node) + { + array_pop($this->stack); + } } +$node->getAttribute('parent'), the previous + * node can be accessed through $node->getAttribute('previous'), + * and the next node can be accessed through $node->getAttribute('next'). + */ +final class NodeConnectingVisitor extends NodeVisitorAbstract +{ + /** + * @var Node[] + */ + private $stack = []; + /** + * @var ?Node + */ + private $previous; + public function beforeTraverse(array $nodes) + { + $this->stack = []; + $this->previous = null; + } + public function enterNode(Node $node) + { + if (!empty($this->stack)) { + $node->setAttribute('parent', $this->stack[count($this->stack) - 1]); + } + if ($this->previous !== null && $this->previous->getAttribute('parent') === $node->getAttribute('parent')) { + $node->setAttribute('previous', $this->previous); + $this->previous->setAttribute('next', $node); + } + $this->stack[] = $node; + } + public function leaveNode(Node $node) + { + $this->previous = $node; + array_pop($this->stack); + } } - - - - - Dashboard for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -

      Classes

      -
      -
      -
      -
      -

      Coverage Distribution

      -
      - -
      -
      -
      -

      Complexity

      -
      - -
      -
      -
      -
      -
      -

      Insufficient Coverage

      -
      - - - - - - - - -{{insufficient_coverage_classes}} - -
      ClassCoverage
      -
      -
      -
      -

      Project Risks

      -
      - - - - - - - - -{{project_risks_classes}} - -
      ClassCRAP
      -
      -
      -
      -
      -
      -

      Methods

      -
      -
      -
      -
      -

      Coverage Distribution

      -
      - -
      -
      -
      -

      Complexity

      -
      - -
      -
      -
      -
      -
      -

      Insufficient Coverage

      -
      - - - - - - - - -{{insufficient_coverage_methods}} - -
      MethodCoverage
      -
      -
      -
      -

      Project Risks

      -
      - - - - - - - - -{{project_risks_methods}} - -
      MethodCRAP
      -
      -
      -
      - -
      - - - - - - - - - - - Dashboard for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      -
      -

      Classes

      -
      -
      -
      -
      -

      Coverage Distribution

      -
      - -
      -
      -
      -

      Complexity

      -
      - -
      -
      -
      -
      -
      -

      Insufficient Coverage

      -
      - - - - - - - - -{{insufficient_coverage_classes}} - -
      ClassCoverage
      -
      -
      -
      -

      Project Risks

      -
      - - - - - - - - -{{project_risks_classes}} - -
      ClassCRAP
      -
      -
      -
      -
      -
      -

      Methods

      -
      -
      -
      -
      -

      Coverage Distribution

      -
      - -
      -
      -
      -

      Complexity

      -
      - -
      -
      -
      -
      -
      -

      Insufficient Coverage

      -
      - - - - - - - - -{{insufficient_coverage_methods}} - -
      MethodCoverage
      -
      -
      -
      -

      Project Risks

      -
      - - - - - - - - -{{project_risks_methods}} - -
      MethodCRAP
      -
      -
      -
      - -
      - - - - - - - - - - - Code Coverage for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      - - - - - - - - - - - - - - -{{items}} - -
       
      Code Coverage
       
      Lines
      Functions and Methods
      Classes and Traits
      -
      -
      -
      -

      Legend

      -

      - Low: 0% to {{low_upper_bound}}% - Medium: {{low_upper_bound}}% to {{high_lower_bound}}% - High: {{high_lower_bound}}% to 100% -

      -

      - Generated by php-code-coverage {{version}} using {{runtime}}{{generator}} at {{date}}. -

      -
      -
      - - - - - - - Code Coverage for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      - - - - - - - - - - - - - - - - -{{items}} - -
       
      Code Coverage
       
      Lines
      Branches
      Paths
      Functions and Methods
      Classes and Traits
      -
      -
      -
      -

      Legend

      -

      - Low: 0% to {{low_upper_bound}}% - Medium: {{low_upper_bound}}% to {{high_lower_bound}}% - High: {{high_lower_bound}}% to 100% -

      -

      - Generated by php-code-coverage {{version}} using {{runtime}}{{generator}} at {{date}}. -

      -
      -
      - - - - {{icon}}{{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{classes_bar}} -
      {{classes_tested_percent}}
      -
      {{classes_number}}
      - +use PHPUnitPHAR\PhpParser\Lexer\Emulative; +final class MatchTokenEmulator extends KeywordEmulator +{ + public function getPhpVersion(): string + { + return Emulative::PHP_8_0; + } + public function getKeywordString(): string + { + return 'match'; + } + public function getKeywordToken(): int + { + return \T_MATCH; + } +} + - {{icon}}{{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{branches_bar}} -
      {{branches_executed_percent}}
      -
      {{branches_number}}
      - {{paths_bar}} -
      {{paths_executed_percent}}
      -
      {{paths_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{classes_bar}} -
      {{classes_tested_percent}}
      -
      {{classes_number}}
      - +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Comment; - - - - - Code Coverage for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      - - - - - - - - - - - - - - -{{items}} - -
       
      Code Coverage
       
      Lines
      Functions and Methods
      Classes and Traits
      -
      -{{lines}} -{{structure}} - -
      - - - - - - - - - - - Code Coverage for {{full_path}} - - - - - - - -
      -
      -
      -
      - -
      -
      -
      -
      -
      -
      - - - - - - - - - - - - - - - - -{{items}} - -
       
      Code Coverage
       
      Lines
      Branches
      Paths
      Functions and Methods
      Classes and Traits
      -
      -{{lines}} -{{structure}} - -
      - - - - - - - - {{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{crap}} - {{classes_bar}} -
      {{classes_tested_percent}}
      -
      {{classes_number}}
      - +class Doc extends \PHPUnitPHAR\PhpParser\Comment +{ +} + - {{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{branches_bar}} -
      {{branches_executed_percent}}
      -
      {{branches_number}}
      - {{paths_bar}} -
      {{paths_executed_percent}}
      -
      {{paths_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{crap}} - {{classes_bar}} -
      {{classes_tested_percent}}
      -
      {{classes_number}}
      - +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\PrettyPrinter; + +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\Node\Expr\AssignOp; +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp; +use PHPUnitPHAR\PhpParser\Node\Expr\Cast; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Scalar; +use PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; +use PHPUnitPHAR\PhpParser\Node\Stmt; +use PHPUnitPHAR\PhpParser\PrettyPrinterAbstract; +class Standard extends PrettyPrinterAbstract +{ + // Special nodes + protected function pParam(Node\Param $node) + { + return $this->pAttrGroups($node->attrGroups, \true) . $this->pModifiers($node->flags) . ($node->type ? $this->p($node->type) . ' ' : '') . ($node->byRef ? '&' : '') . ($node->variadic ? '...' : '') . $this->p($node->var) . ($node->default ? ' = ' . $this->p($node->default) : ''); + } + protected function pArg(Node\Arg $node) + { + return ($node->name ? $node->name->toString() . ': ' : '') . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '') . $this->p($node->value); + } + protected function pVariadicPlaceholder(Node\VariadicPlaceholder $node) + { + return '...'; + } + protected function pConst(Node\Const_ $node) + { + return $node->name . ' = ' . $this->p($node->value); + } + protected function pNullableType(Node\NullableType $node) + { + return '?' . $this->p($node->type); + } + protected function pUnionType(Node\UnionType $node) + { + $types = []; + foreach ($node->types as $typeNode) { + if ($typeNode instanceof Node\IntersectionType) { + $types[] = '(' . $this->p($typeNode) . ')'; + continue; + } + $types[] = $this->p($typeNode); + } + return implode('|', $types); + } + protected function pIntersectionType(Node\IntersectionType $node) + { + return $this->pImplode($node->types, '&'); + } + protected function pIdentifier(Node\Identifier $node) + { + return $node->name; + } + protected function pVarLikeIdentifier(Node\VarLikeIdentifier $node) + { + return '$' . $node->name; + } + protected function pAttribute(Node\Attribute $node) + { + return $this->p($node->name) . ($node->args ? '(' . $this->pCommaSeparated($node->args) . ')' : ''); + } + protected function pAttributeGroup(Node\AttributeGroup $node) + { + return '#[' . $this->pCommaSeparated($node->attrs) . ']'; + } + // Names + protected function pName(Name $node) + { + return implode('\\', $node->parts); + } + protected function pName_FullyQualified(Name\FullyQualified $node) + { + return '\\' . implode('\\', $node->parts); + } + protected function pName_Relative(Name\Relative $node) + { + return 'namespace\\' . implode('\\', $node->parts); + } + // Magic Constants + protected function pScalar_MagicConst_Class(MagicConst\Class_ $node) + { + return '__CLASS__'; + } + protected function pScalar_MagicConst_Dir(MagicConst\Dir $node) + { + return '__DIR__'; + } + protected function pScalar_MagicConst_File(MagicConst\File $node) + { + return '__FILE__'; + } + protected function pScalar_MagicConst_Function(MagicConst\Function_ $node) + { + return '__FUNCTION__'; + } + protected function pScalar_MagicConst_Line(MagicConst\Line $node) + { + return '__LINE__'; + } + protected function pScalar_MagicConst_Method(MagicConst\Method $node) + { + return '__METHOD__'; + } + protected function pScalar_MagicConst_Namespace(MagicConst\Namespace_ $node) + { + return '__NAMESPACE__'; + } + protected function pScalar_MagicConst_Trait(MagicConst\Trait_ $node) + { + return '__TRAIT__'; + } + // Scalars + protected function pScalar_String(Scalar\String_ $node) + { + $kind = $node->getAttribute('kind', Scalar\String_::KIND_SINGLE_QUOTED); + switch ($kind) { + case Scalar\String_::KIND_NOWDOC: + $label = $node->getAttribute('docLabel'); + if ($label && !$this->containsEndLabel($node->value, $label)) { + if ($node->value === '') { + return "<<<'{$label}'\n{$label}" . $this->docStringEndToken; + } + return "<<<'{$label}'\n{$node->value}\n{$label}" . $this->docStringEndToken; + } + /* break missing intentionally */ + case Scalar\String_::KIND_SINGLE_QUOTED: + return $this->pSingleQuotedString($node->value); + case Scalar\String_::KIND_HEREDOC: + $label = $node->getAttribute('docLabel'); + if ($label && !$this->containsEndLabel($node->value, $label)) { + if ($node->value === '') { + return "<<<{$label}\n{$label}" . $this->docStringEndToken; + } + $escaped = $this->escapeString($node->value, null); + return "<<<{$label}\n" . $escaped . "\n{$label}" . $this->docStringEndToken; + } + /* break missing intentionally */ + case Scalar\String_::KIND_DOUBLE_QUOTED: + return '"' . $this->escapeString($node->value, '"') . '"'; + } + throw new \Exception('Invalid string kind'); + } + protected function pScalar_Encapsed(Scalar\Encapsed $node) + { + if ($node->getAttribute('kind') === Scalar\String_::KIND_HEREDOC) { + $label = $node->getAttribute('docLabel'); + if ($label && !$this->encapsedContainsEndLabel($node->parts, $label)) { + if (count($node->parts) === 1 && $node->parts[0] instanceof Scalar\EncapsedStringPart && $node->parts[0]->value === '') { + return "<<<{$label}\n{$label}" . $this->docStringEndToken; + } + return "<<<{$label}\n" . $this->pEncapsList($node->parts, null) . "\n{$label}" . $this->docStringEndToken; + } + } + return '"' . $this->pEncapsList($node->parts, '"') . '"'; + } + protected function pScalar_LNumber(Scalar\LNumber $node) + { + if ($node->value === -\PHP_INT_MAX - 1) { + // PHP_INT_MIN cannot be represented as a literal, + // because the sign is not part of the literal + return '(-' . \PHP_INT_MAX . '-1)'; + } + $kind = $node->getAttribute('kind', Scalar\LNumber::KIND_DEC); + if (Scalar\LNumber::KIND_DEC === $kind) { + return (string) $node->value; + } + if ($node->value < 0) { + $sign = '-'; + $str = (string) -$node->value; + } else { + $sign = ''; + $str = (string) $node->value; + } + switch ($kind) { + case Scalar\LNumber::KIND_BIN: + return $sign . '0b' . base_convert($str, 10, 2); + case Scalar\LNumber::KIND_OCT: + return $sign . '0' . base_convert($str, 10, 8); + case Scalar\LNumber::KIND_HEX: + return $sign . '0x' . base_convert($str, 10, 16); + } + throw new \Exception('Invalid number kind'); + } + protected function pScalar_DNumber(Scalar\DNumber $node) + { + if (!is_finite($node->value)) { + if ($node->value === \INF) { + return '\INF'; + } elseif ($node->value === -\INF) { + return '-\INF'; + } else { + return '\NAN'; + } + } + // Try to find a short full-precision representation + $stringValue = sprintf('%.16G', $node->value); + if ($node->value !== (double) $stringValue) { + $stringValue = sprintf('%.17G', $node->value); + } + // %G is locale dependent and there exists no locale-independent alternative. We don't want + // mess with switching locales here, so let's assume that a comma is the only non-standard + // decimal separator we may encounter... + $stringValue = str_replace(',', '.', $stringValue); + // ensure that number is really printed as float + return preg_match('/^-?[0-9]+$/', $stringValue) ? $stringValue . '.0' : $stringValue; + } + protected function pScalar_EncapsedStringPart(Scalar\EncapsedStringPart $node) + { + throw new \LogicException('Cannot directly print EncapsedStringPart'); + } + // Assignments + protected function pExpr_Assign(Expr\Assign $node) + { + return $this->pInfixOp(Expr\Assign::class, $node->var, ' = ', $node->expr); + } + protected function pExpr_AssignRef(Expr\AssignRef $node) + { + return $this->pInfixOp(Expr\AssignRef::class, $node->var, ' =& ', $node->expr); + } + protected function pExpr_AssignOp_Plus(AssignOp\Plus $node) + { + return $this->pInfixOp(AssignOp\Plus::class, $node->var, ' += ', $node->expr); + } + protected function pExpr_AssignOp_Minus(AssignOp\Minus $node) + { + return $this->pInfixOp(AssignOp\Minus::class, $node->var, ' -= ', $node->expr); + } + protected function pExpr_AssignOp_Mul(AssignOp\Mul $node) + { + return $this->pInfixOp(AssignOp\Mul::class, $node->var, ' *= ', $node->expr); + } + protected function pExpr_AssignOp_Div(AssignOp\Div $node) + { + return $this->pInfixOp(AssignOp\Div::class, $node->var, ' /= ', $node->expr); + } + protected function pExpr_AssignOp_Concat(AssignOp\Concat $node) + { + return $this->pInfixOp(AssignOp\Concat::class, $node->var, ' .= ', $node->expr); + } + protected function pExpr_AssignOp_Mod(AssignOp\Mod $node) + { + return $this->pInfixOp(AssignOp\Mod::class, $node->var, ' %= ', $node->expr); + } + protected function pExpr_AssignOp_BitwiseAnd(AssignOp\BitwiseAnd $node) + { + return $this->pInfixOp(AssignOp\BitwiseAnd::class, $node->var, ' &= ', $node->expr); + } + protected function pExpr_AssignOp_BitwiseOr(AssignOp\BitwiseOr $node) + { + return $this->pInfixOp(AssignOp\BitwiseOr::class, $node->var, ' |= ', $node->expr); + } + protected function pExpr_AssignOp_BitwiseXor(AssignOp\BitwiseXor $node) + { + return $this->pInfixOp(AssignOp\BitwiseXor::class, $node->var, ' ^= ', $node->expr); + } + protected function pExpr_AssignOp_ShiftLeft(AssignOp\ShiftLeft $node) + { + return $this->pInfixOp(AssignOp\ShiftLeft::class, $node->var, ' <<= ', $node->expr); + } + protected function pExpr_AssignOp_ShiftRight(AssignOp\ShiftRight $node) + { + return $this->pInfixOp(AssignOp\ShiftRight::class, $node->var, ' >>= ', $node->expr); + } + protected function pExpr_AssignOp_Pow(AssignOp\Pow $node) + { + return $this->pInfixOp(AssignOp\Pow::class, $node->var, ' **= ', $node->expr); + } + protected function pExpr_AssignOp_Coalesce(AssignOp\Coalesce $node) + { + return $this->pInfixOp(AssignOp\Coalesce::class, $node->var, ' ??= ', $node->expr); + } + // Binary expressions + protected function pExpr_BinaryOp_Plus(BinaryOp\Plus $node) + { + return $this->pInfixOp(BinaryOp\Plus::class, $node->left, ' + ', $node->right); + } + protected function pExpr_BinaryOp_Minus(BinaryOp\Minus $node) + { + return $this->pInfixOp(BinaryOp\Minus::class, $node->left, ' - ', $node->right); + } + protected function pExpr_BinaryOp_Mul(BinaryOp\Mul $node) + { + return $this->pInfixOp(BinaryOp\Mul::class, $node->left, ' * ', $node->right); + } + protected function pExpr_BinaryOp_Div(BinaryOp\Div $node) + { + return $this->pInfixOp(BinaryOp\Div::class, $node->left, ' / ', $node->right); + } + protected function pExpr_BinaryOp_Concat(BinaryOp\Concat $node) + { + return $this->pInfixOp(BinaryOp\Concat::class, $node->left, ' . ', $node->right); + } + protected function pExpr_BinaryOp_Mod(BinaryOp\Mod $node) + { + return $this->pInfixOp(BinaryOp\Mod::class, $node->left, ' % ', $node->right); + } + protected function pExpr_BinaryOp_BooleanAnd(BinaryOp\BooleanAnd $node) + { + return $this->pInfixOp(BinaryOp\BooleanAnd::class, $node->left, ' && ', $node->right); + } + protected function pExpr_BinaryOp_BooleanOr(BinaryOp\BooleanOr $node) + { + return $this->pInfixOp(BinaryOp\BooleanOr::class, $node->left, ' || ', $node->right); + } + protected function pExpr_BinaryOp_BitwiseAnd(BinaryOp\BitwiseAnd $node) + { + return $this->pInfixOp(BinaryOp\BitwiseAnd::class, $node->left, ' & ', $node->right); + } + protected function pExpr_BinaryOp_BitwiseOr(BinaryOp\BitwiseOr $node) + { + return $this->pInfixOp(BinaryOp\BitwiseOr::class, $node->left, ' | ', $node->right); + } + protected function pExpr_BinaryOp_BitwiseXor(BinaryOp\BitwiseXor $node) + { + return $this->pInfixOp(BinaryOp\BitwiseXor::class, $node->left, ' ^ ', $node->right); + } + protected function pExpr_BinaryOp_ShiftLeft(BinaryOp\ShiftLeft $node) + { + return $this->pInfixOp(BinaryOp\ShiftLeft::class, $node->left, ' << ', $node->right); + } + protected function pExpr_BinaryOp_ShiftRight(BinaryOp\ShiftRight $node) + { + return $this->pInfixOp(BinaryOp\ShiftRight::class, $node->left, ' >> ', $node->right); + } + protected function pExpr_BinaryOp_Pow(BinaryOp\Pow $node) + { + return $this->pInfixOp(BinaryOp\Pow::class, $node->left, ' ** ', $node->right); + } + protected function pExpr_BinaryOp_LogicalAnd(BinaryOp\LogicalAnd $node) + { + return $this->pInfixOp(BinaryOp\LogicalAnd::class, $node->left, ' and ', $node->right); + } + protected function pExpr_BinaryOp_LogicalOr(BinaryOp\LogicalOr $node) + { + return $this->pInfixOp(BinaryOp\LogicalOr::class, $node->left, ' or ', $node->right); + } + protected function pExpr_BinaryOp_LogicalXor(BinaryOp\LogicalXor $node) + { + return $this->pInfixOp(BinaryOp\LogicalXor::class, $node->left, ' xor ', $node->right); + } + protected function pExpr_BinaryOp_Equal(BinaryOp\Equal $node) + { + return $this->pInfixOp(BinaryOp\Equal::class, $node->left, ' == ', $node->right); + } + protected function pExpr_BinaryOp_NotEqual(BinaryOp\NotEqual $node) + { + return $this->pInfixOp(BinaryOp\NotEqual::class, $node->left, ' != ', $node->right); + } + protected function pExpr_BinaryOp_Identical(BinaryOp\Identical $node) + { + return $this->pInfixOp(BinaryOp\Identical::class, $node->left, ' === ', $node->right); + } + protected function pExpr_BinaryOp_NotIdentical(BinaryOp\NotIdentical $node) + { + return $this->pInfixOp(BinaryOp\NotIdentical::class, $node->left, ' !== ', $node->right); + } + protected function pExpr_BinaryOp_Spaceship(BinaryOp\Spaceship $node) + { + return $this->pInfixOp(BinaryOp\Spaceship::class, $node->left, ' <=> ', $node->right); + } + protected function pExpr_BinaryOp_Greater(BinaryOp\Greater $node) + { + return $this->pInfixOp(BinaryOp\Greater::class, $node->left, ' > ', $node->right); + } + protected function pExpr_BinaryOp_GreaterOrEqual(BinaryOp\GreaterOrEqual $node) + { + return $this->pInfixOp(BinaryOp\GreaterOrEqual::class, $node->left, ' >= ', $node->right); + } + protected function pExpr_BinaryOp_Smaller(BinaryOp\Smaller $node) + { + return $this->pInfixOp(BinaryOp\Smaller::class, $node->left, ' < ', $node->right); + } + protected function pExpr_BinaryOp_SmallerOrEqual(BinaryOp\SmallerOrEqual $node) + { + return $this->pInfixOp(BinaryOp\SmallerOrEqual::class, $node->left, ' <= ', $node->right); + } + protected function pExpr_BinaryOp_Coalesce(BinaryOp\Coalesce $node) + { + return $this->pInfixOp(BinaryOp\Coalesce::class, $node->left, ' ?? ', $node->right); + } + protected function pExpr_Instanceof(Expr\Instanceof_ $node) + { + list($precedence, $associativity) = $this->precedenceMap[Expr\Instanceof_::class]; + return $this->pPrec($node->expr, $precedence, $associativity, -1) . ' instanceof ' . $this->pNewVariable($node->class); + } + // Unary expressions + protected function pExpr_BooleanNot(Expr\BooleanNot $node) + { + return $this->pPrefixOp(Expr\BooleanNot::class, '!', $node->expr); + } + protected function pExpr_BitwiseNot(Expr\BitwiseNot $node) + { + return $this->pPrefixOp(Expr\BitwiseNot::class, '~', $node->expr); + } + protected function pExpr_UnaryMinus(Expr\UnaryMinus $node) + { + if ($node->expr instanceof Expr\UnaryMinus || $node->expr instanceof Expr\PreDec) { + // Enforce -(-$expr) instead of --$expr + return '-(' . $this->p($node->expr) . ')'; + } + return $this->pPrefixOp(Expr\UnaryMinus::class, '-', $node->expr); + } + protected function pExpr_UnaryPlus(Expr\UnaryPlus $node) + { + if ($node->expr instanceof Expr\UnaryPlus || $node->expr instanceof Expr\PreInc) { + // Enforce +(+$expr) instead of ++$expr + return '+(' . $this->p($node->expr) . ')'; + } + return $this->pPrefixOp(Expr\UnaryPlus::class, '+', $node->expr); + } + protected function pExpr_PreInc(Expr\PreInc $node) + { + return $this->pPrefixOp(Expr\PreInc::class, '++', $node->var); + } + protected function pExpr_PreDec(Expr\PreDec $node) + { + return $this->pPrefixOp(Expr\PreDec::class, '--', $node->var); + } + protected function pExpr_PostInc(Expr\PostInc $node) + { + return $this->pPostfixOp(Expr\PostInc::class, $node->var, '++'); + } + protected function pExpr_PostDec(Expr\PostDec $node) + { + return $this->pPostfixOp(Expr\PostDec::class, $node->var, '--'); + } + protected function pExpr_ErrorSuppress(Expr\ErrorSuppress $node) + { + return $this->pPrefixOp(Expr\ErrorSuppress::class, '@', $node->expr); + } + protected function pExpr_YieldFrom(Expr\YieldFrom $node) + { + return $this->pPrefixOp(Expr\YieldFrom::class, 'yield from ', $node->expr); + } + protected function pExpr_Print(Expr\Print_ $node) + { + return $this->pPrefixOp(Expr\Print_::class, 'print ', $node->expr); + } + // Casts + protected function pExpr_Cast_Int(Cast\Int_ $node) + { + return $this->pPrefixOp(Cast\Int_::class, '(int) ', $node->expr); + } + protected function pExpr_Cast_Double(Cast\Double $node) + { + $kind = $node->getAttribute('kind', Cast\Double::KIND_DOUBLE); + if ($kind === Cast\Double::KIND_DOUBLE) { + $cast = '(double)'; + } elseif ($kind === Cast\Double::KIND_FLOAT) { + $cast = '(float)'; + } elseif ($kind === Cast\Double::KIND_REAL) { + $cast = '(real)'; + } + return $this->pPrefixOp(Cast\Double::class, $cast . ' ', $node->expr); + } + protected function pExpr_Cast_String(Cast\String_ $node) + { + return $this->pPrefixOp(Cast\String_::class, '(string) ', $node->expr); + } + protected function pExpr_Cast_Array(Cast\Array_ $node) + { + return $this->pPrefixOp(Cast\Array_::class, '(array) ', $node->expr); + } + protected function pExpr_Cast_Object(Cast\Object_ $node) + { + return $this->pPrefixOp(Cast\Object_::class, '(object) ', $node->expr); + } + protected function pExpr_Cast_Bool(Cast\Bool_ $node) + { + return $this->pPrefixOp(Cast\Bool_::class, '(bool) ', $node->expr); + } + protected function pExpr_Cast_Unset(Cast\Unset_ $node) + { + return $this->pPrefixOp(Cast\Unset_::class, '(unset) ', $node->expr); + } + // Function calls and similar constructs + protected function pExpr_FuncCall(Expr\FuncCall $node) + { + return $this->pCallLhs($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; + } + protected function pExpr_MethodCall(Expr\MethodCall $node) + { + return $this->pDereferenceLhs($node->var) . '->' . $this->pObjectProperty($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; + } + protected function pExpr_NullsafeMethodCall(Expr\NullsafeMethodCall $node) + { + return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; + } + protected function pExpr_StaticCall(Expr\StaticCall $node) + { + return $this->pStaticDereferenceLhs($node->class) . '::' . ($node->name instanceof Expr ? $node->name instanceof Expr\Variable ? $this->p($node->name) : '{' . $this->p($node->name) . '}' : $node->name) . '(' . $this->pMaybeMultiline($node->args) . ')'; + } + protected function pExpr_Empty(Expr\Empty_ $node) + { + return 'empty(' . $this->p($node->expr) . ')'; + } + protected function pExpr_Isset(Expr\Isset_ $node) + { + return 'isset(' . $this->pCommaSeparated($node->vars) . ')'; + } + protected function pExpr_Eval(Expr\Eval_ $node) + { + return 'eval(' . $this->p($node->expr) . ')'; + } + protected function pExpr_Include(Expr\Include_ $node) + { + static $map = [Expr\Include_::TYPE_INCLUDE => 'include', Expr\Include_::TYPE_INCLUDE_ONCE => 'include_once', Expr\Include_::TYPE_REQUIRE => 'require', Expr\Include_::TYPE_REQUIRE_ONCE => 'require_once']; + return $map[$node->type] . ' ' . $this->p($node->expr); + } + protected function pExpr_List(Expr\List_ $node) + { + return 'list(' . $this->pCommaSeparated($node->items) . ')'; + } + // Other + protected function pExpr_Error(Expr\Error $node) + { + throw new \LogicException('Cannot pretty-print AST with Error nodes'); + } + protected function pExpr_Variable(Expr\Variable $node) + { + if ($node->name instanceof Expr) { + return '${' . $this->p($node->name) . '}'; + } else { + return '$' . $node->name; + } + } + protected function pExpr_Array(Expr\Array_ $node) + { + $syntax = $node->getAttribute('kind', $this->options['shortArraySyntax'] ? Expr\Array_::KIND_SHORT : Expr\Array_::KIND_LONG); + if ($syntax === Expr\Array_::KIND_SHORT) { + return '[' . $this->pMaybeMultiline($node->items, \true) . ']'; + } else { + return 'array(' . $this->pMaybeMultiline($node->items, \true) . ')'; + } + } + protected function pExpr_ArrayItem(Expr\ArrayItem $node) + { + return (null !== $node->key ? $this->p($node->key) . ' => ' : '') . ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '') . $this->p($node->value); + } + protected function pExpr_ArrayDimFetch(Expr\ArrayDimFetch $node) + { + return $this->pDereferenceLhs($node->var) . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']'; + } + protected function pExpr_ConstFetch(Expr\ConstFetch $node) + { + return $this->p($node->name); + } + protected function pExpr_ClassConstFetch(Expr\ClassConstFetch $node) + { + return $this->pStaticDereferenceLhs($node->class) . '::' . $this->pObjectProperty($node->name); + } + protected function pExpr_PropertyFetch(Expr\PropertyFetch $node) + { + return $this->pDereferenceLhs($node->var) . '->' . $this->pObjectProperty($node->name); + } + protected function pExpr_NullsafePropertyFetch(Expr\NullsafePropertyFetch $node) + { + return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name); + } + protected function pExpr_StaticPropertyFetch(Expr\StaticPropertyFetch $node) + { + return $this->pStaticDereferenceLhs($node->class) . '::$' . $this->pObjectProperty($node->name); + } + protected function pExpr_ShellExec(Expr\ShellExec $node) + { + return '`' . $this->pEncapsList($node->parts, '`') . '`'; + } + protected function pExpr_Closure(Expr\Closure $node) + { + return $this->pAttrGroups($node->attrGroups, \true) . ($node->static ? 'static ' : '') . 'function ' . ($node->byRef ? '&' : '') . '(' . $this->pCommaSeparated($node->params) . ')' . (!empty($node->uses) ? ' use(' . $this->pCommaSeparated($node->uses) . ')' : '') . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . ' {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pExpr_Match(Expr\Match_ $node) + { + return 'match (' . $this->p($node->cond) . ') {' . $this->pCommaSeparatedMultiline($node->arms, \true) . $this->nl . '}'; + } + protected function pMatchArm(Node\MatchArm $node) + { + return ($node->conds ? $this->pCommaSeparated($node->conds) : 'default') . ' => ' . $this->p($node->body); + } + protected function pExpr_ArrowFunction(Expr\ArrowFunction $node) + { + return $this->pAttrGroups($node->attrGroups, \true) . ($node->static ? 'static ' : '') . 'fn' . ($node->byRef ? '&' : '') . '(' . $this->pCommaSeparated($node->params) . ')' . (null !== $node->returnType ? ': ' . $this->p($node->returnType) : '') . ' => ' . $this->p($node->expr); + } + protected function pExpr_ClosureUse(Expr\ClosureUse $node) + { + return ($node->byRef ? '&' : '') . $this->p($node->var); + } + protected function pExpr_New(Expr\New_ $node) + { + if ($node->class instanceof Stmt\Class_) { + $args = $node->args ? '(' . $this->pMaybeMultiline($node->args) . ')' : ''; + return 'new ' . $this->pClassCommon($node->class, $args); + } + return 'new ' . $this->pNewVariable($node->class) . '(' . $this->pMaybeMultiline($node->args) . ')'; + } + protected function pExpr_Clone(Expr\Clone_ $node) + { + return 'clone ' . $this->p($node->expr); + } + protected function pExpr_Ternary(Expr\Ternary $node) + { + // a bit of cheating: we treat the ternary as a binary op where the ?...: part is the operator. + // this is okay because the part between ? and : never needs parentheses. + return $this->pInfixOp(Expr\Ternary::class, $node->cond, ' ?' . (null !== $node->if ? ' ' . $this->p($node->if) . ' ' : '') . ': ', $node->else); + } + protected function pExpr_Exit(Expr\Exit_ $node) + { + $kind = $node->getAttribute('kind', Expr\Exit_::KIND_DIE); + return ($kind === Expr\Exit_::KIND_EXIT ? 'exit' : 'die') . (null !== $node->expr ? '(' . $this->p($node->expr) . ')' : ''); + } + protected function pExpr_Throw(Expr\Throw_ $node) + { + return 'throw ' . $this->p($node->expr); + } + protected function pExpr_Yield(Expr\Yield_ $node) + { + if ($node->value === null) { + return 'yield'; + } else { + // this is a bit ugly, but currently there is no way to detect whether the parentheses are necessary + return '(yield ' . ($node->key !== null ? $this->p($node->key) . ' => ' : '') . $this->p($node->value) . ')'; + } + } + // Declarations + protected function pStmt_Namespace(Stmt\Namespace_ $node) + { + if ($this->canUseSemicolonNamespaces) { + return 'namespace ' . $this->p($node->name) . ';' . $this->nl . $this->pStmts($node->stmts, \false); + } else { + return 'namespace' . (null !== $node->name ? ' ' . $this->p($node->name) : '') . ' {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + } + protected function pStmt_Use(Stmt\Use_ $node) + { + return 'use ' . $this->pUseType($node->type) . $this->pCommaSeparated($node->uses) . ';'; + } + protected function pStmt_GroupUse(Stmt\GroupUse $node) + { + return 'use ' . $this->pUseType($node->type) . $this->pName($node->prefix) . '\{' . $this->pCommaSeparated($node->uses) . '};'; + } + protected function pStmt_UseUse(Stmt\UseUse $node) + { + return $this->pUseType($node->type) . $this->p($node->name) . (null !== $node->alias ? ' as ' . $node->alias : ''); + } + protected function pUseType($type) + { + return $type === Stmt\Use_::TYPE_FUNCTION ? 'function ' : ($type === Stmt\Use_::TYPE_CONSTANT ? 'const ' : ''); + } + protected function pStmt_Interface(Stmt\Interface_ $node) + { + return $this->pAttrGroups($node->attrGroups) . 'interface ' . $node->name . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Enum(Stmt\Enum_ $node) + { + return $this->pAttrGroups($node->attrGroups) . 'enum ' . $node->name . ($node->scalarType ? " : {$node->scalarType}" : '') . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Class(Stmt\Class_ $node) + { + return $this->pClassCommon($node, ' ' . $node->name); + } + protected function pStmt_Trait(Stmt\Trait_ $node) + { + return $this->pAttrGroups($node->attrGroups) . 'trait ' . $node->name . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_EnumCase(Stmt\EnumCase $node) + { + return $this->pAttrGroups($node->attrGroups) . 'case ' . $node->name . ($node->expr ? ' = ' . $this->p($node->expr) : '') . ';'; + } + protected function pStmt_TraitUse(Stmt\TraitUse $node) + { + return 'use ' . $this->pCommaSeparated($node->traits) . (empty($node->adaptations) ? ';' : ' {' . $this->pStmts($node->adaptations) . $this->nl . '}'); + } + protected function pStmt_TraitUseAdaptation_Precedence(Stmt\TraitUseAdaptation\Precedence $node) + { + return $this->p($node->trait) . '::' . $node->method . ' insteadof ' . $this->pCommaSeparated($node->insteadof) . ';'; + } + protected function pStmt_TraitUseAdaptation_Alias(Stmt\TraitUseAdaptation\Alias $node) + { + return (null !== $node->trait ? $this->p($node->trait) . '::' : '') . $node->method . ' as' . (null !== $node->newModifier ? ' ' . rtrim($this->pModifiers($node->newModifier), ' ') : '') . (null !== $node->newName ? ' ' . $node->newName : '') . ';'; + } + protected function pStmt_Property(Stmt\Property $node) + { + return $this->pAttrGroups($node->attrGroups) . (0 === $node->flags ? 'var ' : $this->pModifiers($node->flags)) . ($node->type ? $this->p($node->type) . ' ' : '') . $this->pCommaSeparated($node->props) . ';'; + } + protected function pStmt_PropertyProperty(Stmt\PropertyProperty $node) + { + return '$' . $node->name . (null !== $node->default ? ' = ' . $this->p($node->default) : ''); + } + protected function pStmt_ClassMethod(Stmt\ClassMethod $node) + { + return $this->pAttrGroups($node->attrGroups) . $this->pModifiers($node->flags) . 'function ' . ($node->byRef ? '&' : '') . $node->name . '(' . $this->pMaybeMultiline($node->params) . ')' . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . (null !== $node->stmts ? $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}' : ';'); + } + protected function pStmt_ClassConst(Stmt\ClassConst $node) + { + return $this->pAttrGroups($node->attrGroups) . $this->pModifiers($node->flags) . 'const ' . (null !== $node->type ? $this->p($node->type) . ' ' : '') . $this->pCommaSeparated($node->consts) . ';'; + } + protected function pStmt_Function(Stmt\Function_ $node) + { + return $this->pAttrGroups($node->attrGroups) . 'function ' . ($node->byRef ? '&' : '') . $node->name . '(' . $this->pCommaSeparated($node->params) . ')' . (null !== $node->returnType ? ' : ' . $this->p($node->returnType) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Const(Stmt\Const_ $node) + { + return 'const ' . $this->pCommaSeparated($node->consts) . ';'; + } + protected function pStmt_Declare(Stmt\Declare_ $node) + { + return 'declare (' . $this->pCommaSeparated($node->declares) . ')' . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';'); + } + protected function pStmt_DeclareDeclare(Stmt\DeclareDeclare $node) + { + return $node->key . '=' . $this->p($node->value); + } + // Control flow + protected function pStmt_If(Stmt\If_ $node) + { + return 'if (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}' . ($node->elseifs ? ' ' . $this->pImplode($node->elseifs, ' ') : '') . (null !== $node->else ? ' ' . $this->p($node->else) : ''); + } + protected function pStmt_ElseIf(Stmt\ElseIf_ $node) + { + return 'elseif (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Else(Stmt\Else_ $node) + { + return 'else {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_For(Stmt\For_ $node) + { + return 'for (' . $this->pCommaSeparated($node->init) . ';' . (!empty($node->cond) ? ' ' : '') . $this->pCommaSeparated($node->cond) . ';' . (!empty($node->loop) ? ' ' : '') . $this->pCommaSeparated($node->loop) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Foreach(Stmt\Foreach_ $node) + { + return 'foreach (' . $this->p($node->expr) . ' as ' . (null !== $node->keyVar ? $this->p($node->keyVar) . ' => ' : '') . ($node->byRef ? '&' : '') . $this->p($node->valueVar) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_While(Stmt\While_ $node) + { + return 'while (' . $this->p($node->cond) . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Do(Stmt\Do_ $node) + { + return 'do {' . $this->pStmts($node->stmts) . $this->nl . '} while (' . $this->p($node->cond) . ');'; + } + protected function pStmt_Switch(Stmt\Switch_ $node) + { + return 'switch (' . $this->p($node->cond) . ') {' . $this->pStmts($node->cases) . $this->nl . '}'; + } + protected function pStmt_Case(Stmt\Case_ $node) + { + return (null !== $node->cond ? 'case ' . $this->p($node->cond) : 'default') . ':' . $this->pStmts($node->stmts); + } + protected function pStmt_TryCatch(Stmt\TryCatch $node) + { + return 'try {' . $this->pStmts($node->stmts) . $this->nl . '}' . ($node->catches ? ' ' . $this->pImplode($node->catches, ' ') : '') . ($node->finally !== null ? ' ' . $this->p($node->finally) : ''); + } + protected function pStmt_Catch(Stmt\Catch_ $node) + { + return 'catch (' . $this->pImplode($node->types, '|') . ($node->var !== null ? ' ' . $this->p($node->var) : '') . ') {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Finally(Stmt\Finally_ $node) + { + return 'finally {' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pStmt_Break(Stmt\Break_ $node) + { + return 'break' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';'; + } + protected function pStmt_Continue(Stmt\Continue_ $node) + { + return 'continue' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';'; + } + protected function pStmt_Return(Stmt\Return_ $node) + { + return 'return' . (null !== $node->expr ? ' ' . $this->p($node->expr) : '') . ';'; + } + protected function pStmt_Throw(Stmt\Throw_ $node) + { + return 'throw ' . $this->p($node->expr) . ';'; + } + protected function pStmt_Label(Stmt\Label $node) + { + return $node->name . ':'; + } + protected function pStmt_Goto(Stmt\Goto_ $node) + { + return 'goto ' . $node->name . ';'; + } + // Other + protected function pStmt_Expression(Stmt\Expression $node) + { + return $this->p($node->expr) . ';'; + } + protected function pStmt_Echo(Stmt\Echo_ $node) + { + return 'echo ' . $this->pCommaSeparated($node->exprs) . ';'; + } + protected function pStmt_Static(Stmt\Static_ $node) + { + return 'static ' . $this->pCommaSeparated($node->vars) . ';'; + } + protected function pStmt_Global(Stmt\Global_ $node) + { + return 'global ' . $this->pCommaSeparated($node->vars) . ';'; + } + protected function pStmt_StaticVar(Stmt\StaticVar $node) + { + return $this->p($node->var) . (null !== $node->default ? ' = ' . $this->p($node->default) : ''); + } + protected function pStmt_Unset(Stmt\Unset_ $node) + { + return 'unset(' . $this->pCommaSeparated($node->vars) . ');'; + } + protected function pStmt_InlineHTML(Stmt\InlineHTML $node) + { + $newline = $node->getAttribute('hasLeadingNewline', \true) ? "\n" : ''; + return '?>' . $newline . $node->value . 'remaining; + } + protected function pStmt_Nop(Stmt\Nop $node) + { + return ''; + } + // Helpers + protected function pClassCommon(Stmt\Class_ $node, $afterClassToken) + { + return $this->pAttrGroups($node->attrGroups, $node->name === null) . $this->pModifiers($node->flags) . 'class' . $afterClassToken . (null !== $node->extends ? ' extends ' . $this->p($node->extends) : '') . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '') . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'; + } + protected function pObjectProperty($node) + { + if ($node instanceof Expr) { + return '{' . $this->p($node) . '}'; + } else { + return $node; + } + } + protected function pEncapsList(array $encapsList, $quote) + { + $return = ''; + foreach ($encapsList as $element) { + if ($element instanceof Scalar\EncapsedStringPart) { + $return .= $this->escapeString($element->value, $quote); + } else { + $return .= '{' . $this->p($element) . '}'; + } + } + return $return; + } + protected function pSingleQuotedString(string $string) + { + return '\'' . addcslashes($string, '\'\\') . '\''; + } + protected function escapeString($string, $quote) + { + if (null === $quote) { + // For doc strings, don't escape newlines + $escaped = addcslashes($string, "\t\f\v\$\\"); + } else { + $escaped = addcslashes($string, "\n\r\t\f\v\$" . $quote . "\\"); + } + // Escape control characters and non-UTF-8 characters. + // Regex based on https://stackoverflow.com/a/11709412/385378. + $regex = '/( + [\x00-\x08\x0E-\x1F] # Control characters + | [\xC0-\xC1] # Invalid UTF-8 Bytes + | [\xF5-\xFF] # Invalid UTF-8 Bytes + | \xE0(?=[\x80-\x9F]) # Overlong encoding of prior code point + | \xF0(?=[\x80-\x8F]) # Overlong encoding of prior code point + | [\xC2-\xDF](?![\x80-\xBF]) # Invalid UTF-8 Sequence Start + | [\xE0-\xEF](?![\x80-\xBF]{2}) # Invalid UTF-8 Sequence Start + | [\xF0-\xF4](?![\x80-\xBF]{3}) # Invalid UTF-8 Sequence Start + | (?<=[\x00-\x7F\xF5-\xFF])[\x80-\xBF] # Invalid UTF-8 Sequence Middle + | (? $part) { + $atStart = $i === 0; + $atEnd = $i === count($parts) - 1; + if ($part instanceof Scalar\EncapsedStringPart && $this->containsEndLabel($part->value, $label, $atStart, $atEnd)) { + return \true; + } + } + return \false; + } + protected function pDereferenceLhs(Node $node) + { + if (!$this->dereferenceLhsRequiresParens($node)) { + return $this->p($node); + } else { + return '(' . $this->p($node) . ')'; + } + } + protected function pStaticDereferenceLhs(Node $node) + { + if (!$this->staticDereferenceLhsRequiresParens($node)) { + return $this->p($node); + } else { + return '(' . $this->p($node) . ')'; + } + } + protected function pCallLhs(Node $node) + { + if (!$this->callLhsRequiresParens($node)) { + return $this->p($node); + } else { + return '(' . $this->p($node) . ')'; + } + } + protected function pNewVariable(Node $node): string + { + if (!$this->newOperandRequiresParens($node)) { + return $this->p($node); + } else { + return '(' . $this->p($node) . ')'; + } + } + /** + * @param Node[] $nodes + * @return bool + */ + protected function hasNodeWithComments(array $nodes) + { + foreach ($nodes as $node) { + if ($node && $node->getComments()) { + return \true; + } + } + return \false; + } + protected function pMaybeMultiline(array $nodes, bool $trailingComma = \false) + { + if (!$this->hasNodeWithComments($nodes)) { + return $this->pCommaSeparated($nodes); + } else { + return $this->pCommaSeparatedMultiline($nodes, $trailingComma) . $this->nl; + } + } + protected function pAttrGroups(array $nodes, bool $inline = \false): string + { + $result = ''; + $sep = $inline ? ' ' : $this->nl; + foreach ($nodes as $node) { + $result .= $this->p($node) . $sep; + } + return $result; + } +} +/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=function(t){var e=this,n=!1;return o.default(this).one(d.TRANSITION_END,(function(){n=!0})),setTimeout((function(){n||d.triggerTransitionEnd(e)}),t),this},o.default.event.special[d.TRANSITION_END]={bindType:f,delegateType:f,handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var c="bs.alert",h=o.default.fn.alert,g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,c),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(c);i||(i=new t(this),n.data(c,i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',g._handleDismiss(new g)),o.default.fn.alert=g._jQueryInterface,o.default.fn.alert.Constructor=g,o.default.fn.alert.noConflict=function(){return o.default.fn.alert=h,g._jQueryInterface};var m="bs.button",p=o.default.fn.button,_="active",v='[data-toggle^="button"]',y='input:not([type="hidden"])',b=".btn",E=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector(y);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(_))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass(_)}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains(_)),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(_)),t&&o.default(this._element).toggleClass(_))},e.dispose=function(){o.default.removeData(this._element,m),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data(m);a||(a=new t(this),i.data(m,a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.button.data-api",v,(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(b)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector(y);if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||E._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",v,(function(t){var e=o.default(t.target).closest(b)[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(N)},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(D)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(I);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one(A,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?N:D;this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(".bs.carousel"),o.default.removeData(this._element,w),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){t.touchDeltaX=e.originalEvent.touches&&e.originalEvent.touches.length>1?0:e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===N,i=t===D,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+(t===D?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(I)),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass(S);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass(S)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(I);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(I),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if(t===N?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass(S))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u),this._activeElement=u;var h=o.default.Event(A,{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass(S),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(g)}else o.default(l).removeClass(S),o.default(u).addClass(S),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(w),i=r({},k,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data(w,n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data(w).to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return k}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",P._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass(q)?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!(this._isTransitioning||o.default(this._element).hasClass(q)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains(F)}))).length&&(e=null),e&&(n=o.default(e).not(this._selector).data(R))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data(R,null));var s=this._getDimension();o.default(this._element).removeClass(F).addClass(Q),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass(B).attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass(Q).addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass(q)){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass(Q).removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(K);if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data(K,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll(it)),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(ht);var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove(ht),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass(dt),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass(ct),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off(pt).on(pt,(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on(yt,(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off(yt)},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on(_t,(function(e){return t.handleUpdate(e)})):o.default(window).off(_t)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass(ft),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger(gt)}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass(dt)?dt:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on(vt,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass(ct),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass(ct);var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass(dt)){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
      ',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ut={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Mt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Wt=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass(Rt))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass(Lt);var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass(Rt),o.default(s).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),e===qt&&t._leave(null,t)};if(o.default(this.tip).hasClass(Lt)){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){e._hoverState!==xt&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass(Rt),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass(Lt)){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=At(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return Bt[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n=e===Ft?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i=e===Ft?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Qt:Ft]=!0),o.default(e.getTipElement()).hasClass(Rt)||e._hoverState===xt?e._hoverState=xt:(clearTimeout(e._timeout),e._hoverState=xt,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===xt&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Qt:Ft]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=qt,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===qt&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(It,t,this.constructor.DefaultType),t.sanitize&&(t.template=At(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(jt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass(Lt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(kt),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data(kt,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Ht}},{key:"NAME",get:function(){return It}},{key:"DATA_KEY",get:function(){return kt}},{key:"Event",get:function(){return Mt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Ut}}]),t}();o.default.fn.tooltip=Wt._jQueryInterface,o.default.fn.tooltip.Constructor=Wt,o.default.fn.tooltip.noConflict=function(){return o.default.fn.tooltip=Ot,Wt._jQueryInterface};var Vt="bs.popover",zt=o.default.fn.popover,Kt=new RegExp("(^|\\s)bs-popover\\S+","g"),Xt=r({},Wt.Default,{placement:"right",trigger:"click",content:"",template:''}),Yt=r({},Wt.DefaultType,{content:"(string|element|function)"}),$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},Jt=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,u(e,n);var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(Kt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data(Vt),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data(Vt,e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Xt}},{key:"NAME",get:function(){return"popover"}},{key:"DATA_KEY",get:function(){return Vt}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Yt}}]),i}(Wt);o.default.fn.popover=Jt._jQueryInterface,o.default.fn.popover.Constructor=Jt,o.default.fn.popover.noConflict=function(){return o.default.fn.popover=zt,Jt._jQueryInterface};var Gt="scrollspy",Zt="bs.scrollspy",te=o.default.fn[Gt],ee="active",ne="position",ie=".nav, .list-group",oe={offset:10,method:"auto",target:""},ae={offset:"number",method:"string",target:"(string|element)"},se=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":ne,n="auto"===this._config.method?e:this._config.method,i=n===ne?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,Zt),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},oe,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(Gt),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(Gt,t,ae),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",ge=function(){function t(t){this._element=t}var e=t.prototype;return e.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&o.default(this._element).hasClass(ue)||o.default(this._element).hasClass("disabled"))){var e,n,i=o.default(this._element).closest(".nav, .list-group")[0],a=d.getSelectorFromElement(this._element);if(i){var s="UL"===i.nodeName||"OL"===i.nodeName?he:ce;n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,le),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(ce):o.default(e).find(he))[0],s=n&&a&&o.default(a).hasClass(fe),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass(de).one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass(ue);var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass(ue),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}o.default(t).addClass(ue),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains(fe)&&t.classList.add(de);var a=t.parentNode;if(a&&"LI"===a.nodeName&&(a=a.parentNode),a&&o.default(a).hasClass("dropdown-menu")){var s=o.default(t).closest(".dropdown")[0];if(s){var l=[].slice.call(s.querySelectorAll(".dropdown-toggle"));o.default(l).addClass(ue)}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(le);if(i||(i=new t(this),n.data(le,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ge._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ge._jQueryInterface,o.default.fn.tab.Constructor=ge,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=re,ge._jQueryInterface};var me="bs.toast",pe=o.default.fn.toast,_e="hide",ve="show",ye="showing",be="click.dismiss.bs.toast",Ee={animation:!0,autohide:!0,delay:500},Te={animation:"boolean",autohide:"boolean",delay:"number"},we=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove(ye),t._element.classList.add(ve),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove(_e),d.reflow(this._element),this._element.classList.add(ye),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(ve)){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains(ve)&&this._element.classList.remove(ve),o.default(this._element).off(be),o.default.removeData(this._element,me),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},Ee,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on(be,'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add(_e),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove(ve),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(me);if(i||(i=new t(this,"object"==typeof e&&e),n.data(me,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"DefaultType",get:function(){return Te}},{key:"Default",get:function(){return Ee}}]),t}();o.default.fn.toast=we._jQueryInterface,o.default.fn.toast.Constructor=we,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=pe,we._jQueryInterface},t.Alert=g,t.Button=E,t.Carousel=P,t.Collapse=V,t.Dropdown=lt,t.Modal=Ct,t.Popover=Jt,t.Scrollspy=se,t.Tab=ge,t.Toast=we,t.Tooltip=Wt,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); -//# sourceMappingURL=bootstrap.min.js.map!function(){function n(n){return n&&(n.ownerDocument||n.document||n).documentElement}function t(n){return n&&(n.ownerDocument&&n.ownerDocument.defaultView||n.document&&n||n.defaultView)}function e(n,t){return t>n?-1:n>t?1:n>=t?0:NaN}function r(n){return null===n?NaN:+n}function i(n){return!isNaN(n)}function u(n){return{left:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;n(t[u],e)<0?r=u+1:i=u}return r},right:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;n(t[u],e)>0?i=u:r=u+1}return r}}}function o(n){return n.length}function a(n){for(var t=1;n*t%1;)t*=10;return t}function l(n,t){for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}function c(){this._=Object.create(null)}function f(n){return(n+="")===bo||n[0]===_o?_o+n:n}function s(n){return(n+="")[0]===_o?n.slice(1):n}function h(n){return f(n)in this._}function p(n){return(n=f(n))in this._&&delete this._[n]}function g(){var n=[];for(var t in this._)n.push(s(t));return n}function v(){var n=0;for(var t in this._)++n;return n}function d(){for(var n in this._)return!1;return!0}function y(){this._=Object.create(null)}function m(n){return n}function M(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function x(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.slice(1);for(var e=0,r=wo.length;r>e;++e){var i=wo[e]+t;if(i in n)return i}}function b(){}function _(){}function w(n){function t(){for(var t,r=e,i=-1,u=r.length;++ie;e++)for(var i,u=n[e],o=0,a=u.length;a>o;o++)(i=u[o])&&t(i,o,e);return n}function Z(n){return ko(n,qo),n}function V(n){var t,e;return function(r,i,u){var o,a=n[u].update,l=a.length;for(u!=e&&(e=u,t=0),i>=t&&(t=i+1);!(o=a[t])&&++t0&&(n=n.slice(0,a));var c=To.get(n);return c&&(n=c,l=B),a?t?i:r:t?b:u}function $(n,t){return function(e){var r=ao.event;ao.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{ao.event=r}}}function B(n,t){var e=$(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function W(e){var r=".dragsuppress-"+ ++Do,i="click"+r,u=ao.select(t(e)).on("touchmove"+r,S).on("dragstart"+r,S).on("selectstart"+r,S);if(null==Ro&&(Ro="onselectstart"in e?!1:x(e.style,"userSelect")),Ro){var o=n(e).style,a=o[Ro];o[Ro]="none"}return function(n){if(u.on(r,null),Ro&&(o[Ro]=a),n){var t=function(){u.on(i,null)};u.on(i,function(){S(),t()},!0),setTimeout(t,0)}}}function J(n,e){e.changedTouches&&(e=e.changedTouches[0]);var r=n.ownerSVGElement||n;if(r.createSVGPoint){var i=r.createSVGPoint();if(0>Po){var u=t(n);if(u.scrollX||u.scrollY){r=ao.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var o=r[0][0].getScreenCTM();Po=!(o.f||o.e),r.remove()}}return Po?(i.x=e.pageX,i.y=e.pageY):(i.x=e.clientX,i.y=e.clientY),i=i.matrixTransform(n.getScreenCTM().inverse()),[i.x,i.y]}var a=n.getBoundingClientRect();return[e.clientX-a.left-n.clientLeft,e.clientY-a.top-n.clientTop]}function G(){return ao.event.changedTouches[0].identifier}function K(n){return n>0?1:0>n?-1:0}function Q(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function nn(n){return n>1?0:-1>n?Fo:Math.acos(n)}function tn(n){return n>1?Io:-1>n?-Io:Math.asin(n)}function en(n){return((n=Math.exp(n))-1/n)/2}function rn(n){return((n=Math.exp(n))+1/n)/2}function un(n){return((n=Math.exp(2*n))-1)/(n+1)}function on(n){return(n=Math.sin(n/2))*n}function an(){}function ln(n,t,e){return this instanceof ln?(this.h=+n,this.s=+t,void(this.l=+e)):arguments.length<2?n instanceof ln?new ln(n.h,n.s,n.l):_n(""+n,wn,ln):new ln(n,t,e)}function cn(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?u+(o-u)*n/60:180>n?o:240>n?u+(o-u)*(240-n)/60:u}function i(n){return Math.round(255*r(n))}var u,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,u=2*e-o,new mn(i(n+120),i(n),i(n-120))}function fn(n,t,e){return this instanceof fn?(this.h=+n,this.c=+t,void(this.l=+e)):arguments.length<2?n instanceof fn?new fn(n.h,n.c,n.l):n instanceof hn?gn(n.l,n.a,n.b):gn((n=Sn((n=ao.rgb(n)).r,n.g,n.b)).l,n.a,n.b):new fn(n,t,e)}function sn(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),new hn(e,Math.cos(n*=Yo)*t,Math.sin(n)*t)}function hn(n,t,e){return this instanceof hn?(this.l=+n,this.a=+t,void(this.b=+e)):arguments.length<2?n instanceof hn?new hn(n.l,n.a,n.b):n instanceof fn?sn(n.h,n.c,n.l):Sn((n=mn(n)).r,n.g,n.b):new hn(n,t,e)}function pn(n,t,e){var r=(n+16)/116,i=r+t/500,u=r-e/200;return i=vn(i)*na,r=vn(r)*ta,u=vn(u)*ea,new mn(yn(3.2404542*i-1.5371385*r-.4985314*u),yn(-.969266*i+1.8760108*r+.041556*u),yn(.0556434*i-.2040259*r+1.0572252*u))}function gn(n,t,e){return n>0?new fn(Math.atan2(e,t)*Zo,Math.sqrt(t*t+e*e),n):new fn(NaN,NaN,n)}function vn(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function dn(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function yn(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function mn(n,t,e){return this instanceof mn?(this.r=~~n,this.g=~~t,void(this.b=~~e)):arguments.length<2?n instanceof mn?new mn(n.r,n.g,n.b):_n(""+n,mn,cn):new mn(n,t,e)}function Mn(n){return new mn(n>>16,n>>8&255,255&n)}function xn(n){return Mn(n)+""}function bn(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function _n(n,t,e){var r,i,u,o=0,a=0,l=0;if(r=/([a-z]+)\((.*)\)/.exec(n=n.toLowerCase()))switch(i=r[2].split(","),r[1]){case"hsl":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(Nn(i[0]),Nn(i[1]),Nn(i[2]))}return(u=ua.get(n))?t(u.r,u.g,u.b):(null==n||"#"!==n.charAt(0)||isNaN(u=parseInt(n.slice(1),16))||(4===n.length?(o=(3840&u)>>4,o=o>>4|o,a=240&u,a=a>>4|a,l=15&u,l=l<<4|l):7===n.length&&(o=(16711680&u)>>16,a=(65280&u)>>8,l=255&u)),t(o,a,l))}function wn(n,t,e){var r,i,u=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-u,l=(o+u)/2;return a?(i=.5>l?a/(o+u):a/(2-o-u),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=NaN,i=l>0&&1>l?0:r),new ln(r,i,l)}function Sn(n,t,e){n=kn(n),t=kn(t),e=kn(e);var r=dn((.4124564*n+.3575761*t+.1804375*e)/na),i=dn((.2126729*n+.7151522*t+.072175*e)/ta),u=dn((.0193339*n+.119192*t+.9503041*e)/ea);return hn(116*i-16,500*(r-i),200*(i-u))}function kn(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Nn(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function En(n){return"function"==typeof n?n:function(){return n}}function An(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),Cn(t,e,n,r)}}function Cn(n,t,e,r){function i(){var n,t=l.status;if(!t&&Ln(l)||t>=200&&300>t||304===t){try{n=e.call(u,l)}catch(r){return void o.error.call(u,r)}o.load.call(u,n)}else o.error.call(u,l)}var u={},o=ao.dispatch("beforesend","progress","load","error"),a={},l=new XMLHttpRequest,c=null;return!this.XDomainRequest||"withCredentials"in l||!/^(http(s)?:)?\/\//.test(n)||(l=new XDomainRequest),"onload"in l?l.onload=l.onerror=i:l.onreadystatechange=function(){l.readyState>3&&i()},l.onprogress=function(n){var t=ao.event;ao.event=n;try{o.progress.call(u,l)}finally{ao.event=t}},u.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",u)},u.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",u):t},u.responseType=function(n){return arguments.length?(c=n,u):c},u.response=function(n){return e=n,u},["get","post"].forEach(function(n){u[n]=function(){return u.send.apply(u,[n].concat(co(arguments)))}}),u.send=function(e,r,i){if(2===arguments.length&&"function"==typeof r&&(i=r,r=null),l.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),l.setRequestHeader)for(var f in a)l.setRequestHeader(f,a[f]);return null!=t&&l.overrideMimeType&&l.overrideMimeType(t),null!=c&&(l.responseType=c),null!=i&&u.on("error",i).on("load",function(n){i(null,n)}),o.beforesend.call(u,l),l.send(null==r?null:r),u},u.abort=function(){return l.abort(),u},ao.rebind(u,o,"on"),null==r?u:u.get(zn(r))}function zn(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Ln(n){var t=n.responseType;return t&&"text"!==t?n.response:n.responseText}function qn(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var i=e+t,u={c:n,t:i,n:null};return aa?aa.n=u:oa=u,aa=u,la||(ca=clearTimeout(ca),la=1,fa(Tn)),u}function Tn(){var n=Rn(),t=Dn()-n;t>24?(isFinite(t)&&(clearTimeout(ca),ca=setTimeout(Tn,t)),la=0):(la=1,fa(Tn))}function Rn(){for(var n=Date.now(),t=oa;t;)n>=t.t&&t.c(n-t.t)&&(t.c=null),t=t.n;return n}function Dn(){for(var n,t=oa,e=1/0;t;)t.c?(t.t8?function(n){return n/e}:function(n){return n*e},symbol:n}}function jn(n){var t=n.decimal,e=n.thousands,r=n.grouping,i=n.currency,u=r&&e?function(n,t){for(var i=n.length,u=[],o=0,a=r[0],l=0;i>0&&a>0&&(l+a+1>t&&(a=Math.max(1,t-l)),u.push(n.substring(i-=a,i+a)),!((l+=a+1)>t));)a=r[o=(o+1)%r.length];return u.reverse().join(e)}:m;return function(n){var e=ha.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"-",l=e[4]||"",c=e[5],f=+e[6],s=e[7],h=e[8],p=e[9],g=1,v="",d="",y=!1,m=!0;switch(h&&(h=+h.substring(1)),(c||"0"===r&&"="===o)&&(c=r="0",o="="),p){case"n":s=!0,p="g";break;case"%":g=100,d="%",p="f";break;case"p":g=100,d="%",p="r";break;case"b":case"o":case"x":case"X":"#"===l&&(v="0"+p.toLowerCase());case"c":m=!1;case"d":y=!0,h=0;break;case"s":g=-1,p="r"}"$"===l&&(v=i[0],d=i[1]),"r"!=p||h||(p="g"),null!=h&&("g"==p?h=Math.max(1,Math.min(21,h)):"e"!=p&&"f"!=p||(h=Math.max(0,Math.min(20,h)))),p=pa.get(p)||Fn;var M=c&&s;return function(n){var e=d;if(y&&n%1)return"";var i=0>n||0===n&&0>1/n?(n=-n,"-"):"-"===a?"":a;if(0>g){var l=ao.formatPrefix(n,h);n=l.scale(n),e=l.symbol+d}else n*=g;n=p(n,h);var x,b,_=n.lastIndexOf(".");if(0>_){var w=m?n.lastIndexOf("e"):-1;0>w?(x=n,b=""):(x=n.substring(0,w),b=n.substring(w))}else x=n.substring(0,_),b=t+n.substring(_+1);!c&&s&&(x=u(x,1/0));var S=v.length+x.length+b.length+(M?0:i.length),k=f>S?new Array(S=f-S+1).join(r):"";return M&&(x=u(k+x,k.length?f-b.length:1/0)),i+=v,n=x+b,("<"===o?i+n+k:">"===o?k+i+n:"^"===o?k.substring(0,S>>=1)+i+n+k.substring(S):i+(M?n:k+n))+e}}}function Fn(n){return n+""}function Hn(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function On(n,t,e){function r(t){var e=n(t),r=u(e,1);return r-t>t-e?e:r}function i(e){return t(e=n(new va(e-1)),1),e}function u(n,e){return t(n=new va(+n),e),n}function o(n,r,u){var o=i(n),a=[];if(u>1)for(;r>o;)e(o)%u||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{va=Hn;var r=new Hn;return r._=n,o(r,t,e)}finally{va=Date}}n.floor=n,n.round=r,n.ceil=i,n.offset=u,n.range=o;var l=n.utc=In(n);return l.floor=l,l.round=In(r),l.ceil=In(i),l.offset=In(u),l.range=a,n}function In(n){return function(t,e){try{va=Hn;var r=new Hn;return r._=t,n(r,e)._}finally{va=Date}}}function Yn(n){function t(n){function t(t){for(var e,i,u,o=[],a=-1,l=0;++aa;){if(r>=c)return-1;if(i=t.charCodeAt(a++),37===i){if(o=t.charAt(a++),u=C[o in ya?t.charAt(a++):o],!u||(r=u(n,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){_.lastIndex=0;var r=_.exec(t.slice(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){x.lastIndex=0;var r=x.exec(t.slice(e));return r?(n.w=b.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){N.lastIndex=0;var r=N.exec(t.slice(e));return r?(n.m=E.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.slice(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,A.c.toString(),t,r)}function l(n,t,r){return e(n,A.x.toString(),t,r)}function c(n,t,r){return e(n,A.X.toString(),t,r)}function f(n,t,e){var r=M.get(t.slice(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var s=n.dateTime,h=n.date,p=n.time,g=n.periods,v=n.days,d=n.shortDays,y=n.months,m=n.shortMonths;t.utc=function(n){function e(n){try{va=Hn;var t=new va;return t._=n,r(t)}finally{va=Date}}var r=t(n);return e.parse=function(n){try{va=Hn;var t=r.parse(n);return t&&t._}finally{va=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ct;var M=ao.map(),x=Vn(v),b=Xn(v),_=Vn(d),w=Xn(d),S=Vn(y),k=Xn(y),N=Vn(m),E=Xn(m);g.forEach(function(n,t){M.set(n.toLowerCase(),t)});var A={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return m[n.getMonth()]},B:function(n){return y[n.getMonth()]},c:t(s),d:function(n,t){return Zn(n.getDate(),t,2)},e:function(n,t){return Zn(n.getDate(),t,2)},H:function(n,t){return Zn(n.getHours(),t,2)},I:function(n,t){return Zn(n.getHours()%12||12,t,2)},j:function(n,t){return Zn(1+ga.dayOfYear(n),t,3)},L:function(n,t){return Zn(n.getMilliseconds(),t,3)},m:function(n,t){return Zn(n.getMonth()+1,t,2)},M:function(n,t){return Zn(n.getMinutes(),t,2)},p:function(n){return g[+(n.getHours()>=12)]},S:function(n,t){return Zn(n.getSeconds(),t,2)},U:function(n,t){return Zn(ga.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Zn(ga.mondayOfYear(n),t,2)},x:t(h),X:t(p),y:function(n,t){return Zn(n.getFullYear()%100,t,2)},Y:function(n,t){return Zn(n.getFullYear()%1e4,t,4)},Z:at,"%":function(){return"%"}},C={a:r,A:i,b:u,B:o,c:a,d:tt,e:tt,H:rt,I:rt,j:et,L:ot,m:nt,M:it,p:f,S:ut,U:Bn,w:$n,W:Wn,x:l,X:c,y:Gn,Y:Jn,Z:Kn,"%":lt};return t}function Zn(n,t,e){var r=0>n?"-":"",i=(r?-n:n)+"",u=i.length;return r+(e>u?new Array(e-u+1).join(t)+i:i)}function Vn(n){return new RegExp("^(?:"+n.map(ao.requote).join("|")+")","i")}function Xn(n){for(var t=new c,e=-1,r=n.length;++e68?1900:2e3)}function nt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function tt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function et(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function rt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function it(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function ut(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function ot(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function at(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=xo(t)/60|0,i=xo(t)%60;return e+Zn(r,"0",2)+Zn(i,"0",2)}function lt(n,t,e){Ma.lastIndex=0;var r=Ma.exec(t.slice(e,e+1));return r?e+r[0].length:-1}function ct(n){for(var t=n.length,e=-1;++e=0?1:-1,a=o*e,l=Math.cos(t),c=Math.sin(t),f=u*c,s=i*l+f*Math.cos(a),h=f*o*Math.sin(a);ka.add(Math.atan2(h,s)),r=n,i=l,u=c}var t,e,r,i,u;Na.point=function(o,a){Na.point=n,r=(t=o)*Yo,i=Math.cos(a=(e=a)*Yo/2+Fo/4),u=Math.sin(a)},Na.lineEnd=function(){n(t,e)}}function dt(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function yt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function mt(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function Mt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function xt(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function bt(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function _t(n){return[Math.atan2(n[1],n[0]),tn(n[2])]}function wt(n,t){return xo(n[0]-t[0])a;++a)i.point((e=n[a])[0],e[1]);return void i.lineEnd()}var l=new Tt(e,n,null,!0),c=new Tt(e,null,l,!1);l.o=c,u.push(l),o.push(c),l=new Tt(r,n,null,!1),c=new Tt(r,null,l,!0),l.o=c,u.push(l),o.push(c)}}),o.sort(t),qt(u),qt(o),u.length){for(var a=0,l=e,c=o.length;c>a;++a)o[a].e=l=!l;for(var f,s,h=u[0];;){for(var p=h,g=!0;p.v;)if((p=p.n)===h)return;f=p.z,i.lineStart();do{if(p.v=p.o.v=!0,p.e){if(g)for(var a=0,c=f.length;c>a;++a)i.point((s=f[a])[0],s[1]);else r(p.x,p.n.x,1,i);p=p.n}else{if(g){f=p.p.z;for(var a=f.length-1;a>=0;--a)i.point((s=f[a])[0],s[1])}else r(p.x,p.p.x,-1,i);p=p.p}p=p.o,f=p.z,g=!g}while(!p.v);i.lineEnd()}}}function qt(n){if(t=n.length){for(var t,e,r=0,i=n[0];++r0){for(b||(u.polygonStart(),b=!0),u.lineStart();++o1&&2&t&&e.push(e.pop().concat(e.shift())),p.push(e.filter(Dt))}var p,g,v,d=t(u),y=i.invert(r[0],r[1]),m={point:o,lineStart:l,lineEnd:c,polygonStart:function(){m.point=f,m.lineStart=s,m.lineEnd=h,p=[],g=[]},polygonEnd:function(){m.point=o,m.lineStart=l,m.lineEnd=c,p=ao.merge(p);var n=Ot(y,g);p.length?(b||(u.polygonStart(),b=!0),Lt(p,Ut,n,e,u)):n&&(b||(u.polygonStart(),b=!0),u.lineStart(),e(null,null,1,u),u.lineEnd()),b&&(u.polygonEnd(),b=!1),p=g=null},sphere:function(){u.polygonStart(),u.lineStart(),e(null,null,1,u),u.lineEnd(),u.polygonEnd()}},M=Pt(),x=t(M),b=!1;return m}}function Dt(n){return n.length>1}function Pt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:b,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ut(n,t){return((n=n.x)[0]<0?n[1]-Io-Uo:Io-n[1])-((t=t.x)[0]<0?t[1]-Io-Uo:Io-t[1])}function jt(n){var t,e=NaN,r=NaN,i=NaN;return{lineStart:function(){n.lineStart(),t=1},point:function(u,o){var a=u>0?Fo:-Fo,l=xo(u-e);xo(l-Fo)0?Io:-Io),n.point(i,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(u,r),t=0):i!==a&&l>=Fo&&(xo(e-i)Uo?Math.atan((Math.sin(t)*(u=Math.cos(r))*Math.sin(e)-Math.sin(r)*(i=Math.cos(t))*Math.sin(n))/(i*u*o)):(t+r)/2}function Ht(n,t,e,r){var i;if(null==n)i=e*Io,r.point(-Fo,i),r.point(0,i),r.point(Fo,i),r.point(Fo,0),r.point(Fo,-i),r.point(0,-i),r.point(-Fo,-i),r.point(-Fo,0),r.point(-Fo,i);else if(xo(n[0]-t[0])>Uo){var u=n[0]a;++a){var c=t[a],f=c.length;if(f)for(var s=c[0],h=s[0],p=s[1]/2+Fo/4,g=Math.sin(p),v=Math.cos(p),d=1;;){d===f&&(d=0),n=c[d];var y=n[0],m=n[1]/2+Fo/4,M=Math.sin(m),x=Math.cos(m),b=y-h,_=b>=0?1:-1,w=_*b,S=w>Fo,k=g*M;if(ka.add(Math.atan2(k*_*Math.sin(w),v*x+k*Math.cos(w))),u+=S?b+_*Ho:b,S^h>=e^y>=e){var N=mt(dt(s),dt(n));bt(N);var E=mt(i,N);bt(E);var A=(S^b>=0?-1:1)*tn(E[2]);(r>A||r===A&&(N[0]||N[1]))&&(o+=S^b>=0?1:-1)}if(!d++)break;h=y,g=M,v=x,s=n}}return(-Uo>u||Uo>u&&-Uo>ka)^1&o}function It(n){function t(n,t){return Math.cos(n)*Math.cos(t)>u}function e(n){var e,u,l,c,f;return{lineStart:function(){c=l=!1,f=1},point:function(s,h){var p,g=[s,h],v=t(s,h),d=o?v?0:i(s,h):v?i(s+(0>s?Fo:-Fo),h):0;if(!e&&(c=l=v)&&n.lineStart(),v!==l&&(p=r(e,g),(wt(e,p)||wt(g,p))&&(g[0]+=Uo,g[1]+=Uo,v=t(g[0],g[1]))),v!==l)f=0,v?(n.lineStart(),p=r(g,e),n.point(p[0],p[1])):(p=r(e,g),n.point(p[0],p[1]),n.lineEnd()),e=p;else if(a&&e&&o^v){var y;d&u||!(y=r(g,e,!0))||(f=0,o?(n.lineStart(),n.point(y[0][0],y[0][1]),n.point(y[1][0],y[1][1]),n.lineEnd()):(n.point(y[1][0],y[1][1]),n.lineEnd(),n.lineStart(),n.point(y[0][0],y[0][1])))}!v||e&&wt(e,g)||n.point(g[0],g[1]),e=g,l=v,u=d},lineEnd:function(){l&&n.lineEnd(),e=null},clean:function(){return f|(c&&l)<<1}}}function r(n,t,e){var r=dt(n),i=dt(t),o=[1,0,0],a=mt(r,i),l=yt(a,a),c=a[0],f=l-c*c;if(!f)return!e&&n;var s=u*l/f,h=-u*c/f,p=mt(o,a),g=xt(o,s),v=xt(a,h);Mt(g,v);var d=p,y=yt(g,d),m=yt(d,d),M=y*y-m*(yt(g,g)-1);if(!(0>M)){var x=Math.sqrt(M),b=xt(d,(-y-x)/m);if(Mt(b,g),b=_t(b),!e)return b;var _,w=n[0],S=t[0],k=n[1],N=t[1];w>S&&(_=w,w=S,S=_);var E=S-w,A=xo(E-Fo)E;if(!A&&k>N&&(_=k,k=N,N=_),C?A?k+N>0^b[1]<(xo(b[0]-w)Fo^(w<=b[0]&&b[0]<=S)){var z=xt(d,(-y+x)/m);return Mt(z,g),[b,_t(z)]}}}function i(t,e){var r=o?n:Fo-n,i=0;return-r>t?i|=1:t>r&&(i|=2),-r>e?i|=4:e>r&&(i|=8),i}var u=Math.cos(n),o=u>0,a=xo(u)>Uo,l=ve(n,6*Yo);return Rt(t,e,l,o?[0,-n]:[-Fo,n-Fo])}function Yt(n,t,e,r){return function(i){var u,o=i.a,a=i.b,l=o.x,c=o.y,f=a.x,s=a.y,h=0,p=1,g=f-l,v=s-c;if(u=n-l,g||!(u>0)){if(u/=g,0>g){if(h>u)return;p>u&&(p=u)}else if(g>0){if(u>p)return;u>h&&(h=u)}if(u=e-l,g||!(0>u)){if(u/=g,0>g){if(u>p)return;u>h&&(h=u)}else if(g>0){if(h>u)return;p>u&&(p=u)}if(u=t-c,v||!(u>0)){if(u/=v,0>v){if(h>u)return;p>u&&(p=u)}else if(v>0){if(u>p)return;u>h&&(h=u)}if(u=r-c,v||!(0>u)){if(u/=v,0>v){if(u>p)return;u>h&&(h=u)}else if(v>0){if(h>u)return;p>u&&(p=u)}return h>0&&(i.a={x:l+h*g,y:c+h*v}),1>p&&(i.b={x:l+p*g,y:c+p*v}),i}}}}}}function Zt(n,t,e,r){function i(r,i){return xo(r[0]-n)0?0:3:xo(r[0]-e)0?2:1:xo(r[1]-t)0?1:0:i>0?3:2}function u(n,t){return o(n.x,t.x)}function o(n,t){var e=i(n,1),r=i(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function l(n){for(var t=0,e=d.length,r=n[1],i=0;e>i;++i)for(var u,o=1,a=d[i],l=a.length,c=a[0];l>o;++o)u=a[o],c[1]<=r?u[1]>r&&Q(c,u,n)>0&&++t:u[1]<=r&&Q(c,u,n)<0&&--t,c=u;return 0!==t}function c(u,a,l,c){var f=0,s=0;if(null==u||(f=i(u,l))!==(s=i(a,l))||o(u,a)<0^l>0){do c.point(0===f||3===f?n:e,f>1?r:t);while((f=(f+l+4)%4)!==s)}else c.point(a[0],a[1])}function f(i,u){return i>=n&&e>=i&&u>=t&&r>=u}function s(n,t){f(n,t)&&a.point(n,t)}function h(){C.point=g,d&&d.push(y=[]),S=!0,w=!1,b=_=NaN}function p(){v&&(g(m,M),x&&w&&E.rejoin(),v.push(E.buffer())),C.point=s,w&&a.lineEnd()}function g(n,t){n=Math.max(-Ha,Math.min(Ha,n)),t=Math.max(-Ha,Math.min(Ha,t));var e=f(n,t);if(d&&y.push([n,t]),S)m=n,M=t,x=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:b,y:_},b:{x:n,y:t}};A(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}b=n,_=t,w=e}var v,d,y,m,M,x,b,_,w,S,k,N=a,E=Pt(),A=Yt(n,t,e,r),C={point:s,lineStart:h,lineEnd:p,polygonStart:function(){a=E,v=[],d=[],k=!0},polygonEnd:function(){a=N,v=ao.merge(v);var t=l([n,r]),e=k&&t,i=v.length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),c(null,null,1,a),a.lineEnd()),i&&Lt(v,u,t,c,a),a.polygonEnd()),v=d=y=null}};return C}}function Vt(n){var t=0,e=Fo/3,r=ae(n),i=r(t,e);return i.parallels=function(n){return arguments.length?r(t=n[0]*Fo/180,e=n[1]*Fo/180):[t/Fo*180,e/Fo*180]},i}function Xt(n,t){function e(n,t){var e=Math.sqrt(u-2*i*Math.sin(t))/i;return[e*Math.sin(n*=i),o-e*Math.cos(n)]}var r=Math.sin(n),i=(r+Math.sin(t))/2,u=1+r*(2*i-r),o=Math.sqrt(u)/i;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/i,tn((u-(n*n+e*e)*i*i)/(2*i))]},e}function $t(){function n(n,t){Ia+=i*n-r*t,r=n,i=t}var t,e,r,i;$a.point=function(u,o){$a.point=n,t=r=u,e=i=o},$a.lineEnd=function(){n(t,e)}}function Bt(n,t){Ya>n&&(Ya=n),n>Va&&(Va=n),Za>t&&(Za=t),t>Xa&&(Xa=t)}function Wt(){function n(n,t){o.push("M",n,",",t,u)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function i(){o.push("Z")}var u=Jt(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return u=Jt(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function Jt(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Gt(n,t){Ca+=n,za+=t,++La}function Kt(){function n(n,r){var i=n-t,u=r-e,o=Math.sqrt(i*i+u*u);qa+=o*(t+n)/2,Ta+=o*(e+r)/2,Ra+=o,Gt(t=n,e=r)}var t,e;Wa.point=function(r,i){Wa.point=n,Gt(t=r,e=i)}}function Qt(){Wa.point=Gt}function ne(){function n(n,t){var e=n-r,u=t-i,o=Math.sqrt(e*e+u*u);qa+=o*(r+n)/2,Ta+=o*(i+t)/2,Ra+=o,o=i*n-r*t,Da+=o*(r+n),Pa+=o*(i+t),Ua+=3*o,Gt(r=n,i=t)}var t,e,r,i;Wa.point=function(u,o){Wa.point=n,Gt(t=r=u,e=i=o)},Wa.lineEnd=function(){n(t,e)}}function te(n){function t(t,e){n.moveTo(t+o,e),n.arc(t,e,o,0,Ho)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function i(){a.point=t}function u(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:i,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=i,a.point=t},pointRadius:function(n){return o=n,a},result:b};return a}function ee(n){function t(n){return(a?r:e)(n)}function e(t){return ue(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){M=NaN,S.point=u,t.lineStart()}function u(e,r){var u=dt([e,r]),o=n(e,r);i(M,x,m,b,_,w,M=o[0],x=o[1],m=e,b=u[0],_=u[1],w=u[2],a,t),t.point(M,x)}function o(){S.point=e,t.lineEnd()}function l(){ -r(),S.point=c,S.lineEnd=f}function c(n,t){u(s=n,h=t),p=M,g=x,v=b,d=_,y=w,S.point=u}function f(){i(M,x,m,b,_,w,p,g,s,v,d,y,a,t),S.lineEnd=o,o()}var s,h,p,g,v,d,y,m,M,x,b,_,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=l},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function i(t,e,r,a,l,c,f,s,h,p,g,v,d,y){var m=f-t,M=s-e,x=m*m+M*M;if(x>4*u&&d--){var b=a+p,_=l+g,w=c+v,S=Math.sqrt(b*b+_*_+w*w),k=Math.asin(w/=S),N=xo(xo(w)-1)u||xo((m*z+M*L)/x-.5)>.3||o>a*p+l*g+c*v)&&(i(t,e,r,a,l,c,A,C,N,b/=S,_/=S,w,d,y),y.point(A,C),i(A,C,N,b,_,w,f,s,h,p,g,v,d,y))}}var u=.5,o=Math.cos(30*Yo),a=16;return t.precision=function(n){return arguments.length?(a=(u=n*n)>0&&16,t):Math.sqrt(u)},t}function re(n){var t=ee(function(t,e){return n([t*Zo,e*Zo])});return function(n){return le(t(n))}}function ie(n){this.stream=n}function ue(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function oe(n){return ae(function(){return n})()}function ae(n){function t(n){return n=a(n[0]*Yo,n[1]*Yo),[n[0]*h+l,c-n[1]*h]}function e(n){return n=a.invert((n[0]-l)/h,(c-n[1])/h),n&&[n[0]*Zo,n[1]*Zo]}function r(){a=Ct(o=se(y,M,x),u);var n=u(v,d);return l=p-n[0]*h,c=g+n[1]*h,i()}function i(){return f&&(f.valid=!1,f=null),t}var u,o,a,l,c,f,s=ee(function(n,t){return n=u(n,t),[n[0]*h+l,c-n[1]*h]}),h=150,p=480,g=250,v=0,d=0,y=0,M=0,x=0,b=Fa,_=m,w=null,S=null;return t.stream=function(n){return f&&(f.valid=!1),f=le(b(o,s(_(n)))),f.valid=!0,f},t.clipAngle=function(n){return arguments.length?(b=null==n?(w=n,Fa):It((w=+n)*Yo),i()):w},t.clipExtent=function(n){return arguments.length?(S=n,_=n?Zt(n[0][0],n[0][1],n[1][0],n[1][1]):m,i()):S},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(p=+n[0],g=+n[1],r()):[p,g]},t.center=function(n){return arguments.length?(v=n[0]%360*Yo,d=n[1]%360*Yo,r()):[v*Zo,d*Zo]},t.rotate=function(n){return arguments.length?(y=n[0]%360*Yo,M=n[1]%360*Yo,x=n.length>2?n[2]%360*Yo:0,r()):[y*Zo,M*Zo,x*Zo]},ao.rebind(t,s,"precision"),function(){return u=n.apply(this,arguments),t.invert=u.invert&&e,r()}}function le(n){return ue(n,function(t,e){n.point(t*Yo,e*Yo)})}function ce(n,t){return[n,t]}function fe(n,t){return[n>Fo?n-Ho:-Fo>n?n+Ho:n,t]}function se(n,t,e){return n?t||e?Ct(pe(n),ge(t,e)):pe(n):t||e?ge(t,e):fe}function he(n){return function(t,e){return t+=n,[t>Fo?t-Ho:-Fo>t?t+Ho:t,e]}}function pe(n){var t=he(n);return t.invert=he(-n),t}function ge(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),f=c*r+a*i;return[Math.atan2(l*u-f*o,a*r-c*i),tn(f*u+l*o)]}var r=Math.cos(n),i=Math.sin(n),u=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),f=c*u-l*o;return[Math.atan2(l*u+c*o,a*r+f*i),tn(f*r-a*i)]},e}function ve(n,t){var e=Math.cos(n),r=Math.sin(n);return function(i,u,o,a){var l=o*t;null!=i?(i=de(e,i),u=de(e,u),(o>0?u>i:i>u)&&(i+=o*Ho)):(i=n+o*Ho,u=n-.5*l);for(var c,f=i;o>0?f>u:u>f;f-=l)a.point((c=_t([e,-r*Math.cos(f),-r*Math.sin(f)]))[0],c[1])}}function de(n,t){var e=dt(t);e[0]-=n,bt(e);var r=nn(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Uo)%(2*Math.PI)}function ye(n,t,e){var r=ao.range(n,t-Uo,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function me(n,t,e){var r=ao.range(n,t-Uo,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function Me(n){return n.source}function xe(n){return n.target}function be(n,t,e,r){var i=Math.cos(t),u=Math.sin(t),o=Math.cos(r),a=Math.sin(r),l=i*Math.cos(n),c=i*Math.sin(n),f=o*Math.cos(e),s=o*Math.sin(e),h=2*Math.asin(Math.sqrt(on(r-t)+i*o*on(e-n))),p=1/Math.sin(h),g=h?function(n){var t=Math.sin(n*=h)*p,e=Math.sin(h-n)*p,r=e*l+t*f,i=e*c+t*s,o=e*u+t*a;return[Math.atan2(i,r)*Zo,Math.atan2(o,Math.sqrt(r*r+i*i))*Zo]}:function(){return[n*Zo,t*Zo]};return g.distance=h,g}function _e(){function n(n,i){var u=Math.sin(i*=Yo),o=Math.cos(i),a=xo((n*=Yo)-t),l=Math.cos(a);Ja+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*u-e*o*l)*a),e*u+r*o*l),t=n,e=u,r=o}var t,e,r;Ga.point=function(i,u){t=i*Yo,e=Math.sin(u*=Yo),r=Math.cos(u),Ga.point=n},Ga.lineEnd=function(){Ga.point=Ga.lineEnd=b}}function we(n,t){function e(t,e){var r=Math.cos(t),i=Math.cos(e),u=n(r*i);return[u*i*Math.sin(t),u*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),i=t(r),u=Math.sin(i),o=Math.cos(i);return[Math.atan2(n*u,r*o),Math.asin(r&&e*u/r)]},e}function Se(n,t){function e(n,t){o>0?-Io+Uo>t&&(t=-Io+Uo):t>Io-Uo&&(t=Io-Uo);var e=o/Math.pow(i(t),u);return[e*Math.sin(u*n),o-e*Math.cos(u*n)]}var r=Math.cos(n),i=function(n){return Math.tan(Fo/4+n/2)},u=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(i(t)/i(n)),o=r*Math.pow(i(n),u)/u;return u?(e.invert=function(n,t){var e=o-t,r=K(u)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/u,2*Math.atan(Math.pow(o/r,1/u))-Io]},e):Ne}function ke(n,t){function e(n,t){var e=u-t;return[e*Math.sin(i*n),u-e*Math.cos(i*n)]}var r=Math.cos(n),i=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),u=r/i+n;return xo(i)i;i++){for(;r>1&&Q(n[e[r-2]],n[e[r-1]],n[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function qe(n,t){return n[0]-t[0]||n[1]-t[1]}function Te(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Re(n,t,e,r){var i=n[0],u=e[0],o=t[0]-i,a=r[0]-u,l=n[1],c=e[1],f=t[1]-l,s=r[1]-c,h=(a*(l-c)-s*(i-u))/(s*o-a*f);return[i+h*o,l+h*f]}function De(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Pe(){rr(this),this.edge=this.site=this.circle=null}function Ue(n){var t=cl.pop()||new Pe;return t.site=n,t}function je(n){Be(n),ol.remove(n),cl.push(n),rr(n)}function Fe(n){var t=n.circle,e=t.x,r=t.cy,i={x:e,y:r},u=n.P,o=n.N,a=[n];je(n);for(var l=u;l.circle&&xo(e-l.circle.x)f;++f)c=a[f],l=a[f-1],nr(c.edge,l.site,c.site,i);l=a[0],c=a[s-1],c.edge=Ke(l.site,c.site,null,i),$e(l),$e(c)}function He(n){for(var t,e,r,i,u=n.x,o=n.y,a=ol._;a;)if(r=Oe(a,o)-u,r>Uo)a=a.L;else{if(i=u-Ie(a,o),!(i>Uo)){r>-Uo?(t=a.P,e=a):i>-Uo?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var l=Ue(n);if(ol.insert(t,l),t||e){if(t===e)return Be(t),e=Ue(t.site),ol.insert(l,e),l.edge=e.edge=Ke(t.site,l.site),$e(t),void $e(e);if(!e)return void(l.edge=Ke(t.site,l.site));Be(t),Be(e);var c=t.site,f=c.x,s=c.y,h=n.x-f,p=n.y-s,g=e.site,v=g.x-f,d=g.y-s,y=2*(h*d-p*v),m=h*h+p*p,M=v*v+d*d,x={x:(d*m-p*M)/y+f,y:(h*M-v*m)/y+s};nr(e.edge,c,g,x),l.edge=Ke(c,n,null,x),e.edge=Ke(n,g,null,x),$e(t),$e(e)}}function Oe(n,t){var e=n.site,r=e.x,i=e.y,u=i-t;if(!u)return r;var o=n.P;if(!o)return-(1/0);e=o.site;var a=e.x,l=e.y,c=l-t;if(!c)return a;var f=a-r,s=1/u-1/c,h=f/c;return s?(-h+Math.sqrt(h*h-2*s*(f*f/(-2*c)-l+c/2+i-u/2)))/s+r:(r+a)/2}function Ie(n,t){var e=n.N;if(e)return Oe(e,t);var r=n.site;return r.y===t?r.x:1/0}function Ye(n){this.site=n,this.edges=[]}function Ze(n){for(var t,e,r,i,u,o,a,l,c,f,s=n[0][0],h=n[1][0],p=n[0][1],g=n[1][1],v=ul,d=v.length;d--;)if(u=v[d],u&&u.prepare())for(a=u.edges,l=a.length,o=0;l>o;)f=a[o].end(),r=f.x,i=f.y,c=a[++o%l].start(),t=c.x,e=c.y,(xo(r-t)>Uo||xo(i-e)>Uo)&&(a.splice(o,0,new tr(Qe(u.site,f,xo(r-s)Uo?{x:s,y:xo(t-s)Uo?{x:xo(e-g)Uo?{x:h,y:xo(t-h)Uo?{x:xo(e-p)=-jo)){var p=l*l+c*c,g=f*f+s*s,v=(s*p-c*g)/h,d=(l*g-f*p)/h,s=d+a,y=fl.pop()||new Xe;y.arc=n,y.site=i,y.x=v+o,y.y=s+Math.sqrt(v*v+d*d),y.cy=s,n.circle=y;for(var m=null,M=ll._;M;)if(y.yd||d>=a)return;if(h>g){if(u){if(u.y>=c)return}else u={x:d,y:l};e={x:d,y:c}}else{if(u){if(u.yr||r>1)if(h>g){if(u){if(u.y>=c)return}else u={x:(l-i)/r,y:l};e={x:(c-i)/r,y:c}}else{if(u){if(u.yp){if(u){if(u.x>=a)return}else u={x:o,y:r*o+i};e={x:a,y:r*a+i}}else{if(u){if(u.xu||s>o||r>h||i>p)){if(g=n.point){var g,v=t-n.x,d=e-n.y,y=v*v+d*d;if(l>y){var m=Math.sqrt(l=y);r=t-m,i=e-m,u=t+m,o=e+m,a=g}}for(var M=n.nodes,x=.5*(f+h),b=.5*(s+p),_=t>=x,w=e>=b,S=w<<1|_,k=S+4;k>S;++S)if(n=M[3&S])switch(3&S){case 0:c(n,f,s,x,b);break;case 1:c(n,x,s,h,b);break;case 2:c(n,f,b,x,p);break;case 3:c(n,x,b,h,p)}}}(n,r,i,u,o),a}function vr(n,t){n=ao.rgb(n),t=ao.rgb(t);var e=n.r,r=n.g,i=n.b,u=t.r-e,o=t.g-r,a=t.b-i;return function(n){return"#"+bn(Math.round(e+u*n))+bn(Math.round(r+o*n))+bn(Math.round(i+a*n))}}function dr(n,t){var e,r={},i={};for(e in n)e in t?r[e]=Mr(n[e],t[e]):i[e]=n[e];for(e in t)e in n||(i[e]=t[e]);return function(n){for(e in r)i[e]=r[e](n);return i}}function yr(n,t){return n=+n,t=+t,function(e){return n*(1-e)+t*e}}function mr(n,t){var e,r,i,u=hl.lastIndex=pl.lastIndex=0,o=-1,a=[],l=[];for(n+="",t+="";(e=hl.exec(n))&&(r=pl.exec(t));)(i=r.index)>u&&(i=t.slice(u,i),a[o]?a[o]+=i:a[++o]=i),(e=e[0])===(r=r[0])?a[o]?a[o]+=r:a[++o]=r:(a[++o]=null,l.push({i:o,x:yr(e,r)})),u=pl.lastIndex;return ur;++r)a[(e=l[r]).i]=e.x(n);return a.join("")})}function Mr(n,t){for(var e,r=ao.interpolators.length;--r>=0&&!(e=ao.interpolators[r](n,t)););return e}function xr(n,t){var e,r=[],i=[],u=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(Mr(n[e],t[e]));for(;u>e;++e)i[e]=n[e];for(;o>e;++e)i[e]=t[e];return function(n){for(e=0;a>e;++e)i[e]=r[e](n);return i}}function br(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function _r(n){return function(t){return 1-n(1-t)}}function wr(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function Sr(n){return n*n}function kr(n){return n*n*n}function Nr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function Er(n){return function(t){return Math.pow(t,n)}}function Ar(n){return 1-Math.cos(n*Io)}function Cr(n){return Math.pow(2,10*(n-1))}function zr(n){return 1-Math.sqrt(1-n*n)}function Lr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/Ho*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*Ho/t)}}function qr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Tr(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Rr(n,t){n=ao.hcl(n),t=ao.hcl(t);var e=n.h,r=n.c,i=n.l,u=t.h-e,o=t.c-r,a=t.l-i;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(n){return sn(e+u*n,r+o*n,i+a*n)+""}}function Dr(n,t){n=ao.hsl(n),t=ao.hsl(t);var e=n.h,r=n.s,i=n.l,u=t.h-e,o=t.s-r,a=t.l-i;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(n){return cn(e+u*n,r+o*n,i+a*n)+""}}function Pr(n,t){n=ao.lab(n),t=ao.lab(t);var e=n.l,r=n.a,i=n.b,u=t.l-e,o=t.a-r,a=t.b-i;return function(n){return pn(e+u*n,r+o*n,i+a*n)+""}}function Ur(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function jr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Hr(t),i=Fr(t,e),u=Hr(Or(e,t,-i))||0;t[0]*e[1]180?t+=360:t-n>180&&(n+=360),r.push({i:e.push(Ir(e)+"rotate(",null,")")-2,x:yr(n,t)})):t&&e.push(Ir(e)+"rotate("+t+")")}function Vr(n,t,e,r){n!==t?r.push({i:e.push(Ir(e)+"skewX(",null,")")-2,x:yr(n,t)}):t&&e.push(Ir(e)+"skewX("+t+")")}function Xr(n,t,e,r){if(n[0]!==t[0]||n[1]!==t[1]){var i=e.push(Ir(e)+"scale(",null,",",null,")");r.push({i:i-4,x:yr(n[0],t[0])},{i:i-2,x:yr(n[1],t[1])})}else 1===t[0]&&1===t[1]||e.push(Ir(e)+"scale("+t+")")}function $r(n,t){var e=[],r=[];return n=ao.transform(n),t=ao.transform(t),Yr(n.translate,t.translate,e,r),Zr(n.rotate,t.rotate,e,r),Vr(n.skew,t.skew,e,r),Xr(n.scale,t.scale,e,r),n=t=null,function(n){for(var t,i=-1,u=r.length;++i=0;)e.push(i[r])}function oi(n,t){for(var e=[n],r=[];null!=(n=e.pop());)if(r.push(n),(u=n.children)&&(i=u.length))for(var i,u,o=-1;++oe;++e)(t=n[e][1])>i&&(r=e,i=t);return r}function yi(n){return n.reduce(mi,0)}function mi(n,t){return n+t[1]}function Mi(n,t){return xi(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function xi(n,t){for(var e=-1,r=+n[0],i=(n[1]-r)/t,u=[];++e<=t;)u[e]=i*e+r;return u}function bi(n){return[ao.min(n),ao.max(n)]}function _i(n,t){return n.value-t.value}function wi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Si(n,t){n._pack_next=t,t._pack_prev=n}function ki(n,t){var e=t.x-n.x,r=t.y-n.y,i=n.r+t.r;return.999*i*i>e*e+r*r}function Ni(n){function t(n){f=Math.min(n.x-n.r,f),s=Math.max(n.x+n.r,s),h=Math.min(n.y-n.r,h),p=Math.max(n.y+n.r,p)}if((e=n.children)&&(c=e.length)){var e,r,i,u,o,a,l,c,f=1/0,s=-(1/0),h=1/0,p=-(1/0);if(e.forEach(Ei),r=e[0],r.x=-r.r,r.y=0,t(r),c>1&&(i=e[1],i.x=i.r,i.y=0,t(i),c>2))for(u=e[2],zi(r,i,u),t(u),wi(r,u),r._pack_prev=u,wi(u,i),i=r._pack_next,o=3;c>o;o++){zi(r,i,u=e[o]);var g=0,v=1,d=1;for(a=i._pack_next;a!==i;a=a._pack_next,v++)if(ki(a,u)){g=1;break}if(1==g)for(l=r._pack_prev;l!==a._pack_prev&&!ki(l,u);l=l._pack_prev,d++);g?(d>v||v==d&&i.ro;o++)u=e[o],u.x-=y,u.y-=m,M=Math.max(M,u.r+Math.sqrt(u.x*u.x+u.y*u.y));n.r=M,e.forEach(Ai)}}function Ei(n){n._pack_next=n._pack_prev=n}function Ai(n){delete n._pack_next,delete n._pack_prev}function Ci(n,t,e,r){var i=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,i)for(var u=-1,o=i.length;++u=0;)t=i[u],t.z+=e,t.m+=e,e+=t.s+(r+=t.c)}function Pi(n,t,e){return n.a.parent===t.parent?n.a:e}function Ui(n){return 1+ao.max(n,function(n){return n.y})}function ji(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Fi(n){var t=n.children;return t&&t.length?Fi(t[0]):n}function Hi(n){var t,e=n.children;return e&&(t=e.length)?Hi(e[t-1]):n}function Oi(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Ii(n,t){var e=n.x+t[3],r=n.y+t[0],i=n.dx-t[1]-t[3],u=n.dy-t[0]-t[2];return 0>i&&(e+=i/2,i=0),0>u&&(r+=u/2,u=0),{x:e,y:r,dx:i,dy:u}}function Yi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Zi(n){return n.rangeExtent?n.rangeExtent():Yi(n.range())}function Vi(n,t,e,r){var i=e(n[0],n[1]),u=r(t[0],t[1]);return function(n){return u(i(n))}}function Xi(n,t){var e,r=0,i=n.length-1,u=n[r],o=n[i];return u>o&&(e=r,r=i,i=e,e=u,u=o,o=e),n[r]=t.floor(u),n[i]=t.ceil(o),n}function $i(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:Sl}function Bi(n,t,e,r){var i=[],u=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]2?Bi:Vi,l=r?Wr:Br;return o=i(n,t,l,e),a=i(t,n,l,Mr),u}function u(n){return o(n)}var o,a;return u.invert=function(n){return a(n)},u.domain=function(t){return arguments.length?(n=t.map(Number),i()):n},u.range=function(n){return arguments.length?(t=n,i()):t},u.rangeRound=function(n){return u.range(n).interpolate(Ur)},u.clamp=function(n){return arguments.length?(r=n,i()):r},u.interpolate=function(n){return arguments.length?(e=n,i()):e},u.ticks=function(t){return Qi(n,t)},u.tickFormat=function(t,e){return nu(n,t,e)},u.nice=function(t){return Gi(n,t),i()},u.copy=function(){return Wi(n,t,e,r)},i()}function Ji(n,t){return ao.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Gi(n,t){return Xi(n,$i(Ki(n,t)[2])),Xi(n,$i(Ki(n,t)[2])),n}function Ki(n,t){null==t&&(t=10);var e=Yi(n),r=e[1]-e[0],i=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),u=t/r*i;return.15>=u?i*=10:.35>=u?i*=5:.75>=u&&(i*=2),e[0]=Math.ceil(e[0]/i)*i,e[1]=Math.floor(e[1]/i)*i+.5*i,e[2]=i,e}function Qi(n,t){return ao.range.apply(ao,Ki(n,t))}function nu(n,t,e){var r=Ki(n,t);if(e){var i=ha.exec(e);if(i.shift(),"s"===i[8]){var u=ao.formatPrefix(Math.max(xo(r[0]),xo(r[1])));return i[7]||(i[7]="."+tu(u.scale(r[2]))),i[8]="f",e=ao.format(i.join("")),function(n){return e(u.scale(n))+u.symbol}}i[7]||(i[7]="."+eu(i[8],r)),e=i.join("")}else e=",."+tu(r[2])+"f";return ao.format(e)}function tu(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function eu(n,t){var e=tu(t[2]);return n in kl?Math.abs(e-tu(Math.max(xo(t[0]),xo(t[1]))))+ +("e"!==n):e-2*("%"===n)}function ru(n,t,e,r){function i(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function u(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(i(t))}return o.invert=function(t){return u(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(i)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(i)),o):t},o.nice=function(){var t=Xi(r.map(i),e?Math:El);return n.domain(t),r=t.map(u),o},o.ticks=function(){var n=Yi(r),o=[],a=n[0],l=n[1],c=Math.floor(i(a)),f=Math.ceil(i(l)),s=t%1?2:t;if(isFinite(f-c)){if(e){for(;f>c;c++)for(var h=1;s>h;h++)o.push(u(c)*h);o.push(u(c))}else for(o.push(u(c));c++0;h--)o.push(u(c)*h);for(c=0;o[c]l;f--);o=o.slice(c,f)}return o},o.tickFormat=function(n,e){if(!arguments.length)return Nl;arguments.length<2?e=Nl:"function"!=typeof e&&(e=ao.format(e));var r=Math.max(1,t*n/o.ticks().length);return function(n){var o=n/u(Math.round(i(n)));return t-.5>o*t&&(o*=t),r>=o?e(n):""}},o.copy=function(){return ru(n.copy(),t,e,r)},Ji(o,n)}function iu(n,t,e){function r(t){return n(i(t))}var i=uu(t),u=uu(1/t);return r.invert=function(t){return u(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(i)),r):e},r.ticks=function(n){return Qi(e,n)},r.tickFormat=function(n,t){return nu(e,n,t)},r.nice=function(n){return r.domain(Gi(e,n))},r.exponent=function(o){return arguments.length?(i=uu(t=o),u=uu(1/t),n.domain(e.map(i)),r):t},r.copy=function(){return iu(n.copy(),t,e)},Ji(r,n)}function uu(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function ou(n,t){function e(e){return u[((i.get(e)||("range"===t.t?i.set(e,n.push(e)):NaN))-1)%u.length]}function r(t,e){return ao.range(n.length).map(function(n){return t+e*n})}var i,u,o;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new c;for(var u,o=-1,a=r.length;++oe?[NaN,NaN]:[e>0?a[e-1]:n[0],et?NaN:t/u+n,[t,t+1/u]},r.copy=function(){return lu(n,t,e)},i()}function cu(n,t){function e(e){return e>=e?t[ao.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return cu(n,t)},e}function fu(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Qi(n,t)},t.tickFormat=function(t,e){return nu(n,t,e)},t.copy=function(){return fu(n)},t}function su(){return 0}function hu(n){return n.innerRadius}function pu(n){return n.outerRadius}function gu(n){return n.startAngle}function vu(n){return n.endAngle}function du(n){return n&&n.padAngle}function yu(n,t,e,r){return(n-e)*t-(t-r)*n>0?0:1}function mu(n,t,e,r,i){var u=n[0]-t[0],o=n[1]-t[1],a=(i?r:-r)/Math.sqrt(u*u+o*o),l=a*o,c=-a*u,f=n[0]+l,s=n[1]+c,h=t[0]+l,p=t[1]+c,g=(f+h)/2,v=(s+p)/2,d=h-f,y=p-s,m=d*d+y*y,M=e-r,x=f*p-h*s,b=(0>y?-1:1)*Math.sqrt(Math.max(0,M*M*m-x*x)),_=(x*y-d*b)/m,w=(-x*d-y*b)/m,S=(x*y+d*b)/m,k=(-x*d+y*b)/m,N=_-g,E=w-v,A=S-g,C=k-v;return N*N+E*E>A*A+C*C&&(_=S,w=k),[[_-l,w-c],[_*e/M,w*e/M]]}function Mu(n){function t(t){function o(){c.push("M",u(n(f),a))}for(var l,c=[],f=[],s=-1,h=t.length,p=En(e),g=En(r);++s1?n.join("L"):n+"Z"}function bu(n){return n.join("L")+"Z"}function _u(n){for(var t=0,e=n.length,r=n[0],i=[r[0],",",r[1]];++t1&&i.push("H",r[0]),i.join("")}function wu(n){for(var t=0,e=n.length,r=n[0],i=[r[0],",",r[1]];++t1){a=t[1],u=n[l],l++,r+="C"+(i[0]+o[0])+","+(i[1]+o[1])+","+(u[0]-a[0])+","+(u[1]-a[1])+","+u[0]+","+u[1];for(var c=2;c9&&(i=3*t/Math.sqrt(i),o[a]=i*e,o[a+1]=i*r));for(a=-1;++a<=l;)i=(n[Math.min(l,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),u.push([i||0,o[a]*i||0]);return u}function Fu(n){return n.length<3?xu(n):n[0]+Au(n,ju(n))}function Hu(n){for(var t,e,r,i=-1,u=n.length;++i=t?o(n-t):void(f.c=o)}function o(e){var i=g.active,u=g[i];u&&(u.timer.c=null,u.timer.t=NaN,--g.count,delete g[i],u.event&&u.event.interrupt.call(n,n.__data__,u.index));for(var o in g)if(r>+o){var c=g[o];c.timer.c=null,c.timer.t=NaN,--g.count,delete g[o]}f.c=a,qn(function(){return f.c&&a(e||1)&&(f.c=null,f.t=NaN),1},0,l),g.active=r,v.event&&v.event.start.call(n,n.__data__,t),p=[],v.tween.forEach(function(e,r){(r=r.call(n,n.__data__,t))&&p.push(r)}),h=v.ease,s=v.duration}function a(i){for(var u=i/s,o=h(u),a=p.length;a>0;)p[--a].call(n,o);return u>=1?(v.event&&v.event.end.call(n,n.__data__,t),--g.count?delete g[r]:delete n[e],1):void 0}var l,f,s,h,p,g=n[e]||(n[e]={active:0,count:0}),v=g[r];v||(l=i.time,f=qn(u,0,l),v=g[r]={tween:new c,time:l,timer:f,delay:i.delay,duration:i.duration,ease:i.ease,index:t},i=null,++g.count)}function no(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate("+(isFinite(r)?r:e(n))+",0)"})}function to(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate(0,"+(isFinite(r)?r:e(n))+")"})}function eo(n){return n.toISOString()}function ro(n,t,e){function r(t){return n(t)}function i(n,e){var r=n[1]-n[0],i=r/e,u=ao.bisect(Kl,i);return u==Kl.length?[t.year,Ki(n.map(function(n){return n/31536e6}),e)[2]]:u?t[i/Kl[u-1]1?{floor:function(t){for(;e(t=n.floor(t));)t=io(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=io(+t+1);return t}}:n))},r.ticks=function(n,t){var e=Yi(r.domain()),u=null==n?i(e,10):"number"==typeof n?i(e,n):!n.range&&[{range:n},t];return u&&(n=u[0],t=u[1]),n.range(e[0],io(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return ro(n.copy(),t,e)},Ji(r,n)}function io(n){return new Date(n)}function uo(n){return JSON.parse(n.responseText)}function oo(n){var t=fo.createRange();return t.selectNode(fo.body),t.createContextualFragment(n.responseText)}var ao={version:"3.5.17"},lo=[].slice,co=function(n){return lo.call(n)},fo=this.document;if(fo)try{co(fo.documentElement.childNodes)[0].nodeType}catch(so){co=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}if(Date.now||(Date.now=function(){return+new Date}),fo)try{fo.createElement("DIV").style.setProperty("opacity",0,"")}catch(ho){var po=this.Element.prototype,go=po.setAttribute,vo=po.setAttributeNS,yo=this.CSSStyleDeclaration.prototype,mo=yo.setProperty;po.setAttribute=function(n,t){go.call(this,n,t+"")},po.setAttributeNS=function(n,t,e){vo.call(this,n,t,e+"")},yo.setProperty=function(n,t,e){mo.call(this,n,t+"",e)}}ao.ascending=e,ao.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:NaN},ao.min=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i=r){e=r;break}for(;++ir&&(e=r)}else{for(;++i=r){e=r;break}for(;++ir&&(e=r)}return e},ao.max=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i=r){e=r;break}for(;++ie&&(e=r)}else{for(;++i=r){e=r;break}for(;++ie&&(e=r)}return e},ao.extent=function(n,t){var e,r,i,u=-1,o=n.length;if(1===arguments.length){for(;++u=r){e=i=r;break}for(;++ur&&(e=r),r>i&&(i=r))}else{for(;++u=r){e=i=r;break}for(;++ur&&(e=r),r>i&&(i=r))}return[e,i]},ao.sum=function(n,t){var e,r=0,u=n.length,o=-1;if(1===arguments.length)for(;++o1?l/(f-1):void 0},ao.deviation=function(){var n=ao.variance.apply(this,arguments);return n?Math.sqrt(n):n};var Mo=u(e);ao.bisectLeft=Mo.left,ao.bisect=ao.bisectRight=Mo.right,ao.bisector=function(n){return u(1===n.length?function(t,r){return e(n(t),r)}:n)},ao.shuffle=function(n,t,e){(u=arguments.length)<3&&(e=n.length,2>u&&(t=0));for(var r,i,u=e-t;u;)i=Math.random()*u--|0,r=n[u+t],n[u+t]=n[i+t],n[i+t]=r;return n},ao.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},ao.pairs=function(n){for(var t,e=0,r=n.length-1,i=n[0],u=new Array(0>r?0:r);r>e;)u[e]=[t=i,i=n[++e]];return u},ao.transpose=function(n){if(!(i=n.length))return[];for(var t=-1,e=ao.min(n,o),r=new Array(e);++t=0;)for(r=n[i],t=r.length;--t>=0;)e[--o]=r[t];return e};var xo=Math.abs;ao.range=function(n,t,e){if(arguments.length<3&&(e=1,arguments.length<2&&(t=n,n=0)),(t-n)/e===1/0)throw new Error("infinite range");var r,i=[],u=a(xo(e)),o=-1;if(n*=u,t*=u,e*=u,0>e)for(;(r=n+e*++o)>t;)i.push(r/u);else for(;(r=n+e*++o)=u.length)return r?r.call(i,o):e?o.sort(e):o;for(var l,f,s,h,p=-1,g=o.length,v=u[a++],d=new c;++p=u.length)return n;var r=[],i=o[e++];return n.forEach(function(n,i){r.push({key:n,values:t(i,e)})}),i?r.sort(function(n,t){return i(n.key,t.key)}):r}var e,r,i={},u=[],o=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(ao.map,e,0),0)},i.key=function(n){return u.push(n),i},i.sortKeys=function(n){return o[u.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},ao.set=function(n){var t=new y;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},l(y,{has:h,add:function(n){return this._[f(n+="")]=!0,n},remove:p,values:g,size:v,empty:d,forEach:function(n){for(var t in this._)n.call(this,s(t))}}),ao.behavior={},ao.rebind=function(n,t){for(var e,r=1,i=arguments.length;++r=0&&(r=n.slice(e+1),n=n.slice(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},ao.event=null,ao.requote=function(n){return n.replace(So,"\\$&")};var So=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,ko={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},No=function(n,t){return t.querySelector(n)},Eo=function(n,t){return t.querySelectorAll(n)},Ao=function(n,t){var e=n.matches||n[x(n,"matchesSelector")];return(Ao=function(n,t){return e.call(n,t)})(n,t)};"function"==typeof Sizzle&&(No=function(n,t){return Sizzle(n,t)[0]||null},Eo=Sizzle,Ao=Sizzle.matchesSelector),ao.selection=function(){return ao.select(fo.documentElement)};var Co=ao.selection.prototype=[];Co.select=function(n){var t,e,r,i,u=[];n=A(n);for(var o=-1,a=this.length;++o=0&&"xmlns"!==(e=n.slice(0,t))&&(n=n.slice(t+1)),Lo.hasOwnProperty(e)?{space:Lo[e],local:n}:n}},Co.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=ao.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(z(t,n[t]));return this}return this.each(z(n,t))},Co.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=T(n)).length,i=-1;if(t=e.classList){for(;++ii){if("string"!=typeof n){2>i&&(e="");for(r in n)this.each(P(r,n[r],e));return this}if(2>i){var u=this.node();return t(u).getComputedStyle(u,null).getPropertyValue(n)}r=""}return this.each(P(n,e,r))},Co.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(U(t,n[t]));return this}return this.each(U(n,t))},Co.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},Co.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},Co.append=function(n){return n=j(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Co.insert=function(n,t){return n=j(n),t=A(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},Co.remove=function(){return this.each(F)},Co.data=function(n,t){function e(n,e){var r,i,u,o=n.length,s=e.length,h=Math.min(o,s),p=new Array(s),g=new Array(s),v=new Array(o);if(t){var d,y=new c,m=new Array(o);for(r=-1;++rr;++r)g[r]=H(e[r]);for(;o>r;++r)v[r]=n[r]}g.update=p,g.parentNode=p.parentNode=v.parentNode=n.parentNode,a.push(g),l.push(p),f.push(v)}var r,i,u=-1,o=this.length;if(!arguments.length){for(n=new Array(o=(r=this[0]).length);++uu;u++){i.push(t=[]),t.parentNode=(e=this[u]).parentNode;for(var a=0,l=e.length;l>a;a++)(r=e[a])&&n.call(r,r.__data__,a,u)&&t.push(r)}return E(i)},Co.order=function(){for(var n=-1,t=this.length;++n=0;)(e=r[i])&&(u&&u!==e.nextSibling&&u.parentNode.insertBefore(e,u),u=e);return this},Co.sort=function(n){n=I.apply(this,arguments);for(var t=-1,e=this.length;++tn;n++)for(var e=this[n],r=0,i=e.length;i>r;r++){var u=e[r];if(u)return u}return null},Co.size=function(){var n=0;return Y(this,function(){++n}),n};var qo=[];ao.selection.enter=Z,ao.selection.enter.prototype=qo,qo.append=Co.append,qo.empty=Co.empty,qo.node=Co.node,qo.call=Co.call,qo.size=Co.size,qo.select=function(n){for(var t,e,r,i,u,o=[],a=-1,l=this.length;++ar){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(X(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(X(n,t,e))};var To=ao.map({mouseenter:"mouseover",mouseleave:"mouseout"});fo&&To.forEach(function(n){"on"+n in fo&&To.remove(n)});var Ro,Do=0;ao.mouse=function(n){return J(n,k())};var Po=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;ao.touch=function(n,t,e){if(arguments.length<3&&(e=t,t=k().changedTouches),t)for(var r,i=0,u=t.length;u>i;++i)if((r=t[i]).identifier===e)return J(n,r)},ao.behavior.drag=function(){function n(){this.on("mousedown.drag",u).on("touchstart.drag",o)}function e(n,t,e,u,o){return function(){function a(){var n,e,r=t(h,v);r&&(n=r[0]-M[0],e=r[1]-M[1],g|=n|e,M=r,p({type:"drag",x:r[0]+c[0],y:r[1]+c[1],dx:n,dy:e}))}function l(){t(h,v)&&(y.on(u+d,null).on(o+d,null),m(g),p({type:"dragend"}))}var c,f=this,s=ao.event.target.correspondingElement||ao.event.target,h=f.parentNode,p=r.of(f,arguments),g=0,v=n(),d=".drag"+(null==v?"":"-"+v),y=ao.select(e(s)).on(u+d,a).on(o+d,l),m=W(s),M=t(h,v);i?(c=i.apply(f,arguments),c=[c.x-M[0],c.y-M[1]]):c=[0,0],p({type:"dragstart"})}}var r=N(n,"drag","dragstart","dragend"),i=null,u=e(b,ao.mouse,t,"mousemove","mouseup"),o=e(G,ao.touch,m,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},ao.rebind(n,r,"on")},ao.touches=function(n,t){return arguments.length<2&&(t=k().touches),t?co(t).map(function(t){var e=J(n,t);return e.identifier=t.identifier,e}):[]};var Uo=1e-6,jo=Uo*Uo,Fo=Math.PI,Ho=2*Fo,Oo=Ho-Uo,Io=Fo/2,Yo=Fo/180,Zo=180/Fo,Vo=Math.SQRT2,Xo=2,$o=4;ao.interpolateZoom=function(n,t){var e,r,i=n[0],u=n[1],o=n[2],a=t[0],l=t[1],c=t[2],f=a-i,s=l-u,h=f*f+s*s;if(jo>h)r=Math.log(c/o)/Vo,e=function(n){return[i+n*f,u+n*s,o*Math.exp(Vo*n*r)]};else{var p=Math.sqrt(h),g=(c*c-o*o+$o*h)/(2*o*Xo*p),v=(c*c-o*o-$o*h)/(2*c*Xo*p),d=Math.log(Math.sqrt(g*g+1)-g),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-d)/Vo,e=function(n){var t=n*r,e=rn(d),a=o/(Xo*p)*(e*un(Vo*t+d)-en(d));return[i+a*f,u+a*s,o*e/rn(Vo*t+d)]}}return e.duration=1e3*r,e},ao.behavior.zoom=function(){function n(n){n.on(L,s).on(Wo+".zoom",p).on("dblclick.zoom",g).on(R,h)}function e(n){return[(n[0]-k.x)/k.k,(n[1]-k.y)/k.k]}function r(n){return[n[0]*k.k+k.x,n[1]*k.k+k.y]}function i(n){k.k=Math.max(A[0],Math.min(A[1],n))}function u(n,t){t=r(t),k.x+=n[0]-t[0],k.y+=n[1]-t[1]}function o(t,e,r,o){t.__chart__={x:k.x,y:k.y,k:k.k},i(Math.pow(2,o)),u(d=e,r),t=ao.select(t),C>0&&(t=t.transition().duration(C)),t.call(n.event)}function a(){b&&b.domain(x.range().map(function(n){return(n-k.x)/k.k}).map(x.invert)),w&&w.domain(_.range().map(function(n){return(n-k.y)/k.k}).map(_.invert))}function l(n){z++||n({type:"zoomstart"})}function c(n){a(),n({type:"zoom",scale:k.k,translate:[k.x,k.y]})}function f(n){--z||(n({type:"zoomend"}),d=null)}function s(){function n(){a=1,u(ao.mouse(i),h),c(o)}function r(){s.on(q,null).on(T,null),p(a),f(o)}var i=this,o=D.of(i,arguments),a=0,s=ao.select(t(i)).on(q,n).on(T,r),h=e(ao.mouse(i)),p=W(i);Il.call(i),l(o)}function h(){function n(){var n=ao.touches(g);return p=k.k,n.forEach(function(n){n.identifier in d&&(d[n.identifier]=e(n))}),n}function t(){var t=ao.event.target;ao.select(t).on(x,r).on(b,a),_.push(t);for(var e=ao.event.changedTouches,i=0,u=e.length;u>i;++i)d[e[i].identifier]=null;var l=n(),c=Date.now();if(1===l.length){if(500>c-M){var f=l[0];o(g,f,d[f.identifier],Math.floor(Math.log(k.k)/Math.LN2)+1),S()}M=c}else if(l.length>1){var f=l[0],s=l[1],h=f[0]-s[0],p=f[1]-s[1];y=h*h+p*p}}function r(){var n,t,e,r,o=ao.touches(g);Il.call(g);for(var a=0,l=o.length;l>a;++a,r=null)if(e=o[a],r=d[e.identifier]){if(t)break;n=e,t=r}if(r){var f=(f=e[0]-n[0])*f+(f=e[1]-n[1])*f,s=y&&Math.sqrt(f/y);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+r[0])/2,(t[1]+r[1])/2],i(s*p)}M=null,u(n,t),c(v)}function a(){if(ao.event.touches.length){for(var t=ao.event.changedTouches,e=0,r=t.length;r>e;++e)delete d[t[e].identifier];for(var i in d)return void n()}ao.selectAll(_).on(m,null),w.on(L,s).on(R,h),N(),f(v)}var p,g=this,v=D.of(g,arguments),d={},y=0,m=".zoom-"+ao.event.changedTouches[0].identifier,x="touchmove"+m,b="touchend"+m,_=[],w=ao.select(g),N=W(g);t(),l(v),w.on(L,null).on(R,t)}function p(){var n=D.of(this,arguments);m?clearTimeout(m):(Il.call(this),v=e(d=y||ao.mouse(this)),l(n)),m=setTimeout(function(){m=null,f(n)},50),S(),i(Math.pow(2,.002*Bo())*k.k),u(d,v),c(n)}function g(){var n=ao.mouse(this),t=Math.log(k.k)/Math.LN2;o(this,n,e(n),ao.event.shiftKey?Math.ceil(t)-1:Math.floor(t)+1)}var v,d,y,m,M,x,b,_,w,k={x:0,y:0,k:1},E=[960,500],A=Jo,C=250,z=0,L="mousedown.zoom",q="mousemove.zoom",T="mouseup.zoom",R="touchstart.zoom",D=N(n,"zoomstart","zoom","zoomend");return Wo||(Wo="onwheel"in fo?(Bo=function(){return-ao.event.deltaY*(ao.event.deltaMode?120:1)},"wheel"):"onmousewheel"in fo?(Bo=function(){return ao.event.wheelDelta},"mousewheel"):(Bo=function(){return-ao.event.detail},"MozMousePixelScroll")),n.event=function(n){n.each(function(){var n=D.of(this,arguments),t=k;Hl?ao.select(this).transition().each("start.zoom",function(){k=this.__chart__||{x:0,y:0,k:1},l(n)}).tween("zoom:zoom",function(){var e=E[0],r=E[1],i=d?d[0]:e/2,u=d?d[1]:r/2,o=ao.interpolateZoom([(i-k.x)/k.k,(u-k.y)/k.k,e/k.k],[(i-t.x)/t.k,(u-t.y)/t.k,e/t.k]);return function(t){var r=o(t),a=e/r[2];this.__chart__=k={x:i-r[0]*a,y:u-r[1]*a,k:a},c(n)}}).each("interrupt.zoom",function(){f(n)}).each("end.zoom",function(){f(n)}):(this.__chart__=k,l(n),c(n),f(n))})},n.translate=function(t){return arguments.length?(k={x:+t[0],y:+t[1],k:k.k},a(),n):[k.x,k.y]},n.scale=function(t){return arguments.length?(k={x:k.x,y:k.y,k:null},i(+t),a(),n):k.k},n.scaleExtent=function(t){return arguments.length?(A=null==t?Jo:[+t[0],+t[1]],n):A},n.center=function(t){return arguments.length?(y=t&&[+t[0],+t[1]],n):y},n.size=function(t){return arguments.length?(E=t&&[+t[0],+t[1]],n):E},n.duration=function(t){return arguments.length?(C=+t,n):C},n.x=function(t){return arguments.length?(b=t,x=t.copy(),k={x:0,y:0,k:1},n):b},n.y=function(t){return arguments.length?(w=t,_=t.copy(),k={x:0,y:0,k:1},n):w},ao.rebind(n,D,"on")};var Bo,Wo,Jo=[0,1/0];ao.color=an,an.prototype.toString=function(){return this.rgb()+""},ao.hsl=ln;var Go=ln.prototype=new an;Go.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,this.l/n)},Go.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,n*this.l)},Go.rgb=function(){return cn(this.h,this.s,this.l)},ao.hcl=fn;var Ko=fn.prototype=new an;Ko.brighter=function(n){return new fn(this.h,this.c,Math.min(100,this.l+Qo*(arguments.length?n:1)))},Ko.darker=function(n){return new fn(this.h,this.c,Math.max(0,this.l-Qo*(arguments.length?n:1)))},Ko.rgb=function(){return sn(this.h,this.c,this.l).rgb()},ao.lab=hn;var Qo=18,na=.95047,ta=1,ea=1.08883,ra=hn.prototype=new an;ra.brighter=function(n){return new hn(Math.min(100,this.l+Qo*(arguments.length?n:1)),this.a,this.b)},ra.darker=function(n){return new hn(Math.max(0,this.l-Qo*(arguments.length?n:1)),this.a,this.b)},ra.rgb=function(){return pn(this.l,this.a,this.b)},ao.rgb=mn;var ia=mn.prototype=new an;ia.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,i=30;return t||e||r?(t&&i>t&&(t=i),e&&i>e&&(e=i),r&&i>r&&(r=i),new mn(Math.min(255,t/n),Math.min(255,e/n),Math.min(255,r/n))):new mn(i,i,i)},ia.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new mn(n*this.r,n*this.g,n*this.b)},ia.hsl=function(){return wn(this.r,this.g,this.b)},ia.toString=function(){return"#"+bn(this.r)+bn(this.g)+bn(this.b)};var ua=ao.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});ua.forEach(function(n,t){ua.set(n,Mn(t))}),ao.functor=En,ao.xhr=An(m),ao.dsv=function(n,t){function e(n,e,u){arguments.length<3&&(u=e,e=null);var o=Cn(n,t,null==e?r:i(e),u);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:i(n)):e},o}function r(n){return e.parse(n.responseText)}function i(n){return function(t){return e.parse(t.responseText,n)}}function u(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=new RegExp('["'+n+"\n]"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var i=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(i(n),e)}:i})},e.parseRows=function(n,t){function e(){if(f>=c)return o;if(i)return i=!1,u;var t=f;if(34===n.charCodeAt(t)){for(var e=t;e++f;){var r=n.charCodeAt(f++),a=1;if(10===r)i=!0;else if(13===r)i=!0,10===n.charCodeAt(f)&&(++f,++a);else if(r!==l)continue;return n.slice(t,f-a)}return n.slice(t)}for(var r,i,u={},o={},a=[],c=n.length,f=0,s=0;(r=e())!==o;){for(var h=[];r!==u&&r!==o;)h.push(r),r=e();t&&null==(h=t(h,s++))||a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new y,i=[];return t.forEach(function(n){for(var t in n)r.has(t)||i.push(r.add(t))}),[i.map(o).join(n)].concat(t.map(function(t){return i.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(u).join("\n")},e},ao.csv=ao.dsv(",","text/csv"),ao.tsv=ao.dsv(" ","text/tab-separated-values");var oa,aa,la,ca,fa=this[x(this,"requestAnimationFrame")]||function(n){setTimeout(n,17)};ao.timer=function(){qn.apply(this,arguments)},ao.timer.flush=function(){Rn(),Dn()},ao.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var sa=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Un);ao.formatPrefix=function(n,t){var e=0;return(n=+n)&&(0>n&&(n*=-1),t&&(n=ao.round(n,Pn(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((e-1)/3)))),sa[8+e/3]};var ha=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,pa=ao.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=ao.round(n,Pn(n,t))).toFixed(Math.max(0,Math.min(20,Pn(n*(1+1e-15),t))))}}),ga=ao.time={},va=Date;Hn.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){da.setUTCDate.apply(this._,arguments)},setDay:function(){da.setUTCDay.apply(this._,arguments)},setFullYear:function(){da.setUTCFullYear.apply(this._,arguments)},setHours:function(){da.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){da.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){da.setUTCMinutes.apply(this._,arguments)},setMonth:function(){da.setUTCMonth.apply(this._,arguments)},setSeconds:function(){da.setUTCSeconds.apply(this._,arguments)},setTime:function(){da.setTime.apply(this._,arguments)}};var da=Date.prototype;ga.year=On(function(n){return n=ga.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),ga.years=ga.year.range,ga.years.utc=ga.year.utc.range,ga.day=On(function(n){var t=new va(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),ga.days=ga.day.range,ga.days.utc=ga.day.utc.range,ga.dayOfYear=function(n){var t=ga.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=ga[n]=On(function(n){return(n=ga.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=ga.year(n).getDay();return Math.floor((ga.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});ga[n+"s"]=e.range,ga[n+"s"].utc=e.utc.range,ga[n+"OfYear"]=function(n){var e=ga.year(n).getDay();return Math.floor((ga.dayOfYear(n)+(e+t)%7)/7)}}),ga.week=ga.sunday,ga.weeks=ga.sunday.range,ga.weeks.utc=ga.sunday.utc.range,ga.weekOfYear=ga.sundayOfYear;var ya={"-":"",_:" ",0:"0"},ma=/^\s*\d+/,Ma=/^%/;ao.locale=function(n){return{numberFormat:jn(n),timeFormat:Yn(n)}};var xa=ao.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"], -shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});ao.format=xa.numberFormat,ao.geo={},ft.prototype={s:0,t:0,add:function(n){st(n,this.t,ba),st(ba.s,this.s,this),this.s?this.t+=ba.t:this.s=ba.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var ba=new ft;ao.geo.stream=function(n,t){n&&_a.hasOwnProperty(n.type)?_a[n.type](n,t):ht(n,t)};var _a={Feature:function(n,t){ht(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,i=e.length;++rn?4*Fo+n:n,Na.lineStart=Na.lineEnd=Na.point=b}};ao.geo.bounds=function(){function n(n,t){M.push(x=[f=n,h=n]),s>t&&(s=t),t>p&&(p=t)}function t(t,e){var r=dt([t*Yo,e*Yo]);if(y){var i=mt(y,r),u=[i[1],-i[0],0],o=mt(u,i);bt(o),o=_t(o);var l=t-g,c=l>0?1:-1,v=o[0]*Zo*c,d=xo(l)>180;if(d^(v>c*g&&c*t>v)){var m=o[1]*Zo;m>p&&(p=m)}else if(v=(v+360)%360-180,d^(v>c*g&&c*t>v)){var m=-o[1]*Zo;s>m&&(s=m)}else s>e&&(s=e),e>p&&(p=e);d?g>t?a(f,t)>a(f,h)&&(h=t):a(t,h)>a(f,h)&&(f=t):h>=f?(f>t&&(f=t),t>h&&(h=t)):t>g?a(f,t)>a(f,h)&&(h=t):a(t,h)>a(f,h)&&(f=t)}else n(t,e);y=r,g=t}function e(){b.point=t}function r(){x[0]=f,x[1]=h,b.point=n,y=null}function i(n,e){if(y){var r=n-g;m+=xo(r)>180?r+(r>0?360:-360):r}else v=n,d=e;Na.point(n,e),t(n,e)}function u(){Na.lineStart()}function o(){i(v,d),Na.lineEnd(),xo(m)>Uo&&(f=-(h=180)),x[0]=f,x[1]=h,y=null}function a(n,t){return(t-=n)<0?t+360:t}function l(n,t){return n[0]-t[0]}function c(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:nka?(f=-(h=180),s=-(p=90)):m>Uo?p=90:-Uo>m&&(s=-90),x[0]=f,x[1]=h}};return function(n){p=h=-(f=s=1/0),M=[],ao.geo.stream(n,b);var t=M.length;if(t){M.sort(l);for(var e,r=1,i=M[0],u=[i];t>r;++r)e=M[r],c(e[0],i)||c(e[1],i)?(a(i[0],e[1])>a(i[0],i[1])&&(i[1]=e[1]),a(e[0],i[1])>a(i[0],i[1])&&(i[0]=e[0])):u.push(i=e);for(var o,e,g=-(1/0),t=u.length-1,r=0,i=u[t];t>=r;i=e,++r)e=u[r],(o=a(i[1],e[0]))>g&&(g=o,f=e[0],h=i[1])}return M=x=null,f===1/0||s===1/0?[[NaN,NaN],[NaN,NaN]]:[[f,s],[h,p]]}}(),ao.geo.centroid=function(n){Ea=Aa=Ca=za=La=qa=Ta=Ra=Da=Pa=Ua=0,ao.geo.stream(n,ja);var t=Da,e=Pa,r=Ua,i=t*t+e*e+r*r;return jo>i&&(t=qa,e=Ta,r=Ra,Uo>Aa&&(t=Ca,e=za,r=La),i=t*t+e*e+r*r,jo>i)?[NaN,NaN]:[Math.atan2(e,t)*Zo,tn(r/Math.sqrt(i))*Zo]};var Ea,Aa,Ca,za,La,qa,Ta,Ra,Da,Pa,Ua,ja={sphere:b,point:St,lineStart:Nt,lineEnd:Et,polygonStart:function(){ja.lineStart=At},polygonEnd:function(){ja.lineStart=Nt}},Fa=Rt(zt,jt,Ht,[-Fo,-Fo/2]),Ha=1e9;ao.geo.clipExtent=function(){var n,t,e,r,i,u,o={stream:function(n){return i&&(i.valid=!1),i=u(n),i.valid=!0,i},extent:function(a){return arguments.length?(u=Zt(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),i&&(i.valid=!1,i=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(ao.geo.conicEqualArea=function(){return Vt(Xt)}).raw=Xt,ao.geo.albers=function(){return ao.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},ao.geo.albersUsa=function(){function n(n){var u=n[0],o=n[1];return t=null,e(u,o),t||(r(u,o),t)||i(u,o),t}var t,e,r,i,u=ao.geo.albers(),o=ao.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=ao.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=u.scale(),e=u.translate(),r=(n[0]-e[0])/t,i=(n[1]-e[1])/t;return(i>=.12&&.234>i&&r>=-.425&&-.214>r?o:i>=.166&&.234>i&&r>=-.214&&-.115>r?a:u).invert(n)},n.stream=function(n){var t=u.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,i){t.point(n,i),e.point(n,i),r.point(n,i)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(u.precision(t),o.precision(t),a.precision(t),n):u.precision()},n.scale=function(t){return arguments.length?(u.scale(t),o.scale(.35*t),a.scale(t),n.translate(u.translate())):u.scale()},n.translate=function(t){if(!arguments.length)return u.translate();var c=u.scale(),f=+t[0],s=+t[1];return e=u.translate(t).clipExtent([[f-.455*c,s-.238*c],[f+.455*c,s+.238*c]]).stream(l).point,r=o.translate([f-.307*c,s+.201*c]).clipExtent([[f-.425*c+Uo,s+.12*c+Uo],[f-.214*c-Uo,s+.234*c-Uo]]).stream(l).point,i=a.translate([f-.205*c,s+.212*c]).clipExtent([[f-.214*c+Uo,s+.166*c+Uo],[f-.115*c-Uo,s+.234*c-Uo]]).stream(l).point,n},n.scale(1070)};var Oa,Ia,Ya,Za,Va,Xa,$a={point:b,lineStart:b,lineEnd:b,polygonStart:function(){Ia=0,$a.lineStart=$t},polygonEnd:function(){$a.lineStart=$a.lineEnd=$a.point=b,Oa+=xo(Ia/2)}},Ba={point:Bt,lineStart:b,lineEnd:b,polygonStart:b,polygonEnd:b},Wa={point:Gt,lineStart:Kt,lineEnd:Qt,polygonStart:function(){Wa.lineStart=ne},polygonEnd:function(){Wa.point=Gt,Wa.lineStart=Kt,Wa.lineEnd=Qt}};ao.geo.path=function(){function n(n){return n&&("function"==typeof a&&u.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=i(u)),ao.geo.stream(n,o)),u.result()}function t(){return o=null,n}var e,r,i,u,o,a=4.5;return n.area=function(n){return Oa=0,ao.geo.stream(n,i($a)),Oa},n.centroid=function(n){return Ca=za=La=qa=Ta=Ra=Da=Pa=Ua=0,ao.geo.stream(n,i(Wa)),Ua?[Da/Ua,Pa/Ua]:Ra?[qa/Ra,Ta/Ra]:La?[Ca/La,za/La]:[NaN,NaN]},n.bounds=function(n){return Va=Xa=-(Ya=Za=1/0),ao.geo.stream(n,i(Ba)),[[Ya,Za],[Va,Xa]]},n.projection=function(n){return arguments.length?(i=(e=n)?n.stream||re(n):m,t()):e},n.context=function(n){return arguments.length?(u=null==(r=n)?new Wt:new te(n),"function"!=typeof a&&u.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(u.pointRadius(+t),+t),n):a},n.projection(ao.geo.albersUsa()).context(null)},ao.geo.transform=function(n){return{stream:function(t){var e=new ie(t);for(var r in n)e[r]=n[r];return e}}},ie.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},ao.geo.projection=oe,ao.geo.projectionMutator=ae,(ao.geo.equirectangular=function(){return oe(ce)}).raw=ce.invert=ce,ao.geo.rotation=function(n){function t(t){return t=n(t[0]*Yo,t[1]*Yo),t[0]*=Zo,t[1]*=Zo,t}return n=se(n[0]%360*Yo,n[1]*Yo,n.length>2?n[2]*Yo:0),t.invert=function(t){return t=n.invert(t[0]*Yo,t[1]*Yo),t[0]*=Zo,t[1]*=Zo,t},t},fe.invert=ce,ao.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=se(-n[0]*Yo,-n[1]*Yo,0).invert,i=[];return e(null,null,1,{point:function(n,e){i.push(n=t(n,e)),n[0]*=Zo,n[1]*=Zo}}),{type:"Polygon",coordinates:[i]}}var t,e,r=[0,0],i=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=ve((t=+r)*Yo,i*Yo),n):t},n.precision=function(r){return arguments.length?(e=ve(t*Yo,(i=+r)*Yo),n):i},n.angle(90)},ao.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Yo,i=n[1]*Yo,u=t[1]*Yo,o=Math.sin(r),a=Math.cos(r),l=Math.sin(i),c=Math.cos(i),f=Math.sin(u),s=Math.cos(u);return Math.atan2(Math.sqrt((e=s*o)*e+(e=c*f-l*s*a)*e),l*f+c*s*a)},ao.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return ao.range(Math.ceil(u/d)*d,i,d).map(h).concat(ao.range(Math.ceil(c/y)*y,l,y).map(p)).concat(ao.range(Math.ceil(r/g)*g,e,g).filter(function(n){return xo(n%d)>Uo}).map(f)).concat(ao.range(Math.ceil(a/v)*v,o,v).filter(function(n){return xo(n%y)>Uo}).map(s))}var e,r,i,u,o,a,l,c,f,s,h,p,g=10,v=g,d=90,y=360,m=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(u).concat(p(l).slice(1),h(i).reverse().slice(1),p(c).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(u=+t[0][0],i=+t[1][0],c=+t[0][1],l=+t[1][1],u>i&&(t=u,u=i,i=t),c>l&&(t=c,c=l,l=t),n.precision(m)):[[u,c],[i,l]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(m)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],y=+t[1],n):[d,y]},n.minorStep=function(t){return arguments.length?(g=+t[0],v=+t[1],n):[g,v]},n.precision=function(t){return arguments.length?(m=+t,f=ye(a,o,90),s=me(r,e,m),h=ye(c,l,90),p=me(u,i,m),n):m},n.majorExtent([[-180,-90+Uo],[180,90-Uo]]).minorExtent([[-180,-80-Uo],[180,80+Uo]])},ao.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||i.apply(this,arguments)]}}var t,e,r=Me,i=xe;return n.distance=function(){return ao.geo.distance(t||r.apply(this,arguments),e||i.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(i=t,e="function"==typeof t?null:t,n):i},n.precision=function(){return arguments.length?n:0},n},ao.geo.interpolate=function(n,t){return be(n[0]*Yo,n[1]*Yo,t[0]*Yo,t[1]*Yo)},ao.geo.length=function(n){return Ja=0,ao.geo.stream(n,Ga),Ja};var Ja,Ga={sphere:b,point:b,lineStart:_e,lineEnd:b,polygonStart:b,polygonEnd:b},Ka=we(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(ao.geo.azimuthalEqualArea=function(){return oe(Ka)}).raw=Ka;var Qa=we(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},m);(ao.geo.azimuthalEquidistant=function(){return oe(Qa)}).raw=Qa,(ao.geo.conicConformal=function(){return Vt(Se)}).raw=Se,(ao.geo.conicEquidistant=function(){return Vt(ke)}).raw=ke;var nl=we(function(n){return 1/n},Math.atan);(ao.geo.gnomonic=function(){return oe(nl)}).raw=nl,Ne.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Io]},(ao.geo.mercator=function(){return Ee(Ne)}).raw=Ne;var tl=we(function(){return 1},Math.asin);(ao.geo.orthographic=function(){return oe(tl)}).raw=tl;var el=we(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(ao.geo.stereographic=function(){return oe(el)}).raw=el,Ae.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Io]},(ao.geo.transverseMercator=function(){var n=Ee(Ae),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[n[1],-n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},e([0,0,90])}).raw=Ae,ao.geom={},ao.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,i=En(e),u=En(r),o=n.length,a=[],l=[];for(t=0;o>t;t++)a.push([+i.call(this,n[t],t),+u.call(this,n[t],t),t]);for(a.sort(qe),t=0;o>t;t++)l.push([a[t][0],-a[t][1]]);var c=Le(a),f=Le(l),s=f[0]===c[0],h=f[f.length-1]===c[c.length-1],p=[];for(t=c.length-1;t>=0;--t)p.push(n[a[c[t]][2]]);for(t=+s;t=r&&c.x<=u&&c.y>=i&&c.y<=o?[[r,o],[u,o],[u,i],[r,i]]:[];f.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(u(n,t)/Uo)*Uo,y:Math.round(o(n,t)/Uo)*Uo,i:t}})}var r=Ce,i=ze,u=r,o=i,a=sl;return n?t(n):(t.links=function(n){return ar(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return ar(e(n)).cells.forEach(function(e,r){for(var i,u,o=e.site,a=e.edges.sort(Ve),l=-1,c=a.length,f=a[c-1].edge,s=f.l===o?f.r:f.l;++l=c,h=r>=f,p=h<<1|s;n.leaf=!1,n=n.nodes[p]||(n.nodes[p]=hr()),s?i=c:a=c,h?o=f:l=f,u(n,t,e,r,i,o,a,l)}var f,s,h,p,g,v,d,y,m,M=En(a),x=En(l);if(null!=t)v=t,d=e,y=r,m=i;else if(y=m=-(v=d=1/0),s=[],h=[],g=n.length,o)for(p=0;g>p;++p)f=n[p],f.xy&&(y=f.x),f.y>m&&(m=f.y),s.push(f.x),h.push(f.y);else for(p=0;g>p;++p){var b=+M(f=n[p],p),_=+x(f,p);v>b&&(v=b),d>_&&(d=_),b>y&&(y=b),_>m&&(m=_),s.push(b),h.push(_)}var w=y-v,S=m-d;w>S?m=d+w:y=v+S;var k=hr();if(k.add=function(n){u(k,n,+M(n,++p),+x(n,p),v,d,y,m)},k.visit=function(n){pr(n,k,v,d,y,m)},k.find=function(n){return gr(k,n[0],n[1],v,d,y,m)},p=-1,null==t){for(;++p=0?n.slice(0,t):n,r=t>=0?n.slice(t+1):"in";return e=vl.get(e)||gl,r=dl.get(r)||m,br(r(e.apply(null,lo.call(arguments,1))))},ao.interpolateHcl=Rr,ao.interpolateHsl=Dr,ao.interpolateLab=Pr,ao.interpolateRound=Ur,ao.transform=function(n){var t=fo.createElementNS(ao.ns.prefix.svg,"g");return(ao.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new jr(e?e.matrix:yl)})(n)},jr.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var yl={a:1,b:0,c:0,d:1,e:0,f:0};ao.interpolateTransform=$r,ao.layout={},ao.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++ea*a/y){if(v>l){var c=t.charge/l;n.px-=u*c,n.py-=o*c}return!0}if(t.point&&l&&v>l){var c=t.pointCharge/l;n.px-=u*c,n.py-=o*c}}return!t.charge}}function t(n){n.px=ao.event.x,n.py=ao.event.y,l.resume()}var e,r,i,u,o,a,l={},c=ao.dispatch("start","tick","end"),f=[1,1],s=.9,h=ml,p=Ml,g=-30,v=xl,d=.1,y=.64,M=[],x=[];return l.tick=function(){if((i*=.99)<.005)return e=null,c.end({type:"end",alpha:i=0}),!0;var t,r,l,h,p,v,y,m,b,_=M.length,w=x.length;for(r=0;w>r;++r)l=x[r],h=l.source,p=l.target,m=p.x-h.x,b=p.y-h.y,(v=m*m+b*b)&&(v=i*o[r]*((v=Math.sqrt(v))-u[r])/v,m*=v,b*=v,p.x-=m*(y=h.weight+p.weight?h.weight/(h.weight+p.weight):.5),p.y-=b*y,h.x+=m*(y=1-y),h.y+=b*y);if((y=i*d)&&(m=f[0]/2,b=f[1]/2,r=-1,y))for(;++r<_;)l=M[r],l.x+=(m-l.x)*y,l.y+=(b-l.y)*y;if(g)for(ri(t=ao.geom.quadtree(M),i,a),r=-1;++r<_;)(l=M[r]).fixed||t.visit(n(l));for(r=-1;++r<_;)l=M[r],l.fixed?(l.x=l.px,l.y=l.py):(l.x-=(l.px-(l.px=l.x))*s,l.y-=(l.py-(l.py=l.y))*s);c.tick({type:"tick",alpha:i})},l.nodes=function(n){return arguments.length?(M=n,l):M},l.links=function(n){return arguments.length?(x=n,l):x},l.size=function(n){return arguments.length?(f=n,l):f},l.linkDistance=function(n){return arguments.length?(h="function"==typeof n?n:+n,l):h},l.distance=l.linkDistance,l.linkStrength=function(n){return arguments.length?(p="function"==typeof n?n:+n,l):p},l.friction=function(n){return arguments.length?(s=+n,l):s},l.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,l):g},l.chargeDistance=function(n){return arguments.length?(v=n*n,l):Math.sqrt(v)},l.gravity=function(n){return arguments.length?(d=+n,l):d},l.theta=function(n){return arguments.length?(y=n*n,l):Math.sqrt(y)},l.alpha=function(n){return arguments.length?(n=+n,i?n>0?i=n:(e.c=null,e.t=NaN,e=null,c.end({type:"end",alpha:i=0})):n>0&&(c.start({type:"start",alpha:i=n}),e=qn(l.tick)),l):i},l.start=function(){function n(n,r){if(!e){for(e=new Array(i),l=0;i>l;++l)e[l]=[];for(l=0;c>l;++l){var u=x[l];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var o,a=e[t],l=-1,f=a.length;++lt;++t)(r=M[t]).index=t,r.weight=0;for(t=0;c>t;++t)r=x[t],"number"==typeof r.source&&(r.source=M[r.source]),"number"==typeof r.target&&(r.target=M[r.target]),++r.source.weight,++r.target.weight;for(t=0;i>t;++t)r=M[t],isNaN(r.x)&&(r.x=n("x",s)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof h)for(t=0;c>t;++t)u[t]=+h.call(this,x[t],t);else for(t=0;c>t;++t)u[t]=h;if(o=[],"function"==typeof p)for(t=0;c>t;++t)o[t]=+p.call(this,x[t],t);else for(t=0;c>t;++t)o[t]=p;if(a=[],"function"==typeof g)for(t=0;i>t;++t)a[t]=+g.call(this,M[t],t);else for(t=0;i>t;++t)a[t]=g;return l.resume()},l.resume=function(){return l.alpha(.1)},l.stop=function(){return l.alpha(0)},l.drag=function(){return r||(r=ao.behavior.drag().origin(m).on("dragstart.force",Qr).on("drag.force",t).on("dragend.force",ni)),arguments.length?void this.on("mouseover.force",ti).on("mouseout.force",ei).call(r):r},ao.rebind(l,c,"on")};var ml=20,Ml=1,xl=1/0;ao.layout.hierarchy=function(){function n(i){var u,o=[i],a=[];for(i.depth=0;null!=(u=o.pop());)if(a.push(u),(c=e.call(n,u,u.depth))&&(l=c.length)){for(var l,c,f;--l>=0;)o.push(f=c[l]),f.parent=u,f.depth=u.depth+1;r&&(u.value=0),u.children=c}else r&&(u.value=+r.call(n,u,u.depth)||0),delete u.children;return oi(i,function(n){var e,i;t&&(e=n.children)&&e.sort(t),r&&(i=n.parent)&&(i.value+=n.value)}),a}var t=ci,e=ai,r=li;return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(ui(t,function(n){n.children&&(n.value=0)}),oi(t,function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)})),t},n},ao.layout.partition=function(){function n(t,e,r,i){var u=t.children;if(t.x=e,t.y=t.depth*i,t.dx=r,t.dy=i,u&&(o=u.length)){var o,a,l,c=-1;for(r=t.value?r/t.value:0;++cs?-1:1),g=ao.sum(c),v=g?(s-l*p)/g:0,d=ao.range(l),y=[];return null!=e&&d.sort(e===bl?function(n,t){return c[t]-c[n]}:function(n,t){return e(o[n],o[t])}),d.forEach(function(n){y[n]={data:o[n],value:a=c[n],startAngle:f,endAngle:f+=a*v+p,padAngle:h}}),y}var t=Number,e=bl,r=0,i=Ho,u=0;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(i=t,n):i},n.padAngle=function(t){return arguments.length?(u=t,n):u},n};var bl={};ao.layout.stack=function(){function n(a,l){if(!(h=a.length))return a;var c=a.map(function(e,r){return t.call(n,e,r)}),f=c.map(function(t){return t.map(function(t,e){return[u.call(n,t,e),o.call(n,t,e)]})}),s=e.call(n,f,l);c=ao.permute(c,s),f=ao.permute(f,s);var h,p,g,v,d=r.call(n,f,l),y=c[0].length;for(g=0;y>g;++g)for(i.call(n,c[0][g],v=d[g],f[0][g][1]),p=1;h>p;++p)i.call(n,c[p][g],v+=f[p-1][g][1],f[p][g][1]);return a}var t=m,e=gi,r=vi,i=pi,u=si,o=hi;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:_l.get(t)||gi,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:wl.get(t)||vi,n):r},n.x=function(t){return arguments.length?(u=t,n):u},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(i=t,n):i},n};var _l=ao.map({"inside-out":function(n){var t,e,r=n.length,i=n.map(di),u=n.map(yi),o=ao.range(r).sort(function(n,t){return i[n]-i[t]}),a=0,l=0,c=[],f=[];for(t=0;r>t;++t)e=o[t],l>a?(a+=u[e],c.push(e)):(l+=u[e],f.push(e));return f.reverse().concat(c)},reverse:function(n){return ao.range(n.length).reverse()},"default":gi}),wl=ao.map({silhouette:function(n){var t,e,r,i=n.length,u=n[0].length,o=[],a=0,l=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;u>e;++e)l[e]=(a-o[e])/2;return l},wiggle:function(n){var t,e,r,i,u,o,a,l,c,f=n.length,s=n[0],h=s.length,p=[];for(p[0]=l=c=0,e=1;h>e;++e){for(t=0,i=0;f>t;++t)i+=n[t][e][1];for(t=0,u=0,a=s[e][0]-s[e-1][0];f>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;u+=o*n[t][e][1]}p[e]=l-=i?u/i*a:0,c>l&&(c=l)}for(e=0;h>e;++e)p[e]-=c;return p},expand:function(n){var t,e,r,i=n.length,u=n[0].length,o=1/i,a=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];if(r)for(t=0;i>t;t++)n[t][e][1]/=r;else for(t=0;i>t;t++)n[t][e][1]=o}for(e=0;u>e;++e)a[e]=0;return a},zero:vi});ao.layout.histogram=function(){function n(n,u){for(var o,a,l=[],c=n.map(e,this),f=r.call(this,c,u),s=i.call(this,f,c,u),u=-1,h=c.length,p=s.length-1,g=t?1:1/h;++u0)for(u=-1;++u=f[0]&&a<=f[1]&&(o=l[ao.bisect(s,a,1,p)-1],o.y+=g,o.push(n[u]));return l}var t=!0,e=Number,r=bi,i=Mi;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=En(t),n):r},n.bins=function(t){return arguments.length?(i="number"==typeof t?function(n){return xi(n,t)}:En(t),n):i},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},ao.layout.pack=function(){function n(n,u){var o=e.call(this,n,u),a=o[0],l=i[0],c=i[1],f=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,oi(a,function(n){n.r=+f(n.value)}),oi(a,Ni),r){var s=r*(t?1:Math.max(2*a.r/l,2*a.r/c))/2;oi(a,function(n){n.r+=s}),oi(a,Ni),oi(a,function(n){n.r-=s})}return Ci(a,l/2,c/2,t?1:1/Math.max(2*a.r/l,2*a.r/c)),o}var t,e=ao.layout.hierarchy().sort(_i),r=0,i=[1,1];return n.size=function(t){return arguments.length?(i=t,n):i},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},ii(n,e)},ao.layout.tree=function(){function n(n,i){var f=o.call(this,n,i),s=f[0],h=t(s);if(oi(h,e),h.parent.m=-h.z,ui(h,r),c)ui(s,u);else{var p=s,g=s,v=s;ui(s,function(n){n.xg.x&&(g=n),n.depth>v.depth&&(v=n)});var d=a(p,g)/2-p.x,y=l[0]/(g.x+a(g,p)/2+d),m=l[1]/(v.depth||1);ui(s,function(n){n.x=(n.x+d)*y,n.y=n.depth*m})}return f}function t(n){for(var t,e={A:null,children:[n]},r=[e];null!=(t=r.pop());)for(var i,u=t.children,o=0,a=u.length;a>o;++o)r.push((u[o]=i={_:u[o],parent:t,children:(i=u[o].children)&&i.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:o}).a=i);return e.children[0]}function e(n){var t=n.children,e=n.parent.children,r=n.i?e[n.i-1]:null;if(t.length){Di(n);var u=(t[0].z+t[t.length-1].z)/2;r?(n.z=r.z+a(n._,r._),n.m=n.z-u):n.z=u}else r&&(n.z=r.z+a(n._,r._));n.parent.A=i(n,r,n.parent.A||e[0])}function r(n){n._.x=n.z+n.parent.m,n.m+=n.parent.m}function i(n,t,e){if(t){for(var r,i=n,u=n,o=t,l=i.parent.children[0],c=i.m,f=u.m,s=o.m,h=l.m;o=Ti(o),i=qi(i),o&&i;)l=qi(l),u=Ti(u),u.a=n,r=o.z+s-i.z-c+a(o._,i._),r>0&&(Ri(Pi(o,n,e),n,r),c+=r,f+=r),s+=o.m,c+=i.m,h+=l.m,f+=u.m;o&&!Ti(u)&&(u.t=o,u.m+=s-f),i&&!qi(l)&&(l.t=i,l.m+=c-h,e=n)}return e}function u(n){n.x*=l[0],n.y=n.depth*l[1]}var o=ao.layout.hierarchy().sort(null).value(null),a=Li,l=[1,1],c=null;return n.separation=function(t){return arguments.length?(a=t,n):a},n.size=function(t){return arguments.length?(c=null==(l=t)?u:null,n):c?null:l},n.nodeSize=function(t){return arguments.length?(c=null==(l=t)?null:u,n):c?l:null},ii(n,o)},ao.layout.cluster=function(){function n(n,u){var o,a=t.call(this,n,u),l=a[0],c=0;oi(l,function(n){var t=n.children;t&&t.length?(n.x=ji(t),n.y=Ui(t)):(n.x=o?c+=e(n,o):0,n.y=0,o=n)});var f=Fi(l),s=Hi(l),h=f.x-e(f,s)/2,p=s.x+e(s,f)/2;return oi(l,i?function(n){n.x=(n.x-l.x)*r[0],n.y=(l.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(p-h)*r[0],n.y=(1-(l.y?n.y/l.y:1))*r[1]}),a}var t=ao.layout.hierarchy().sort(null).value(null),e=Li,r=[1,1],i=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(i=null==(r=t),n):i?null:r},n.nodeSize=function(t){return arguments.length?(i=null!=(r=t),n):i?r:null},ii(n,t)},ao.layout.treemap=function(){function n(n,t){for(var e,r,i=-1,u=n.length;++it?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var u=e.children;if(u&&u.length){var o,a,l,c=s(e),f=[],h=u.slice(),g=1/0,v="slice"===p?c.dx:"dice"===p?c.dy:"slice-dice"===p?1&e.depth?c.dy:c.dx:Math.min(c.dx,c.dy);for(n(h,c.dx*c.dy/e.value),f.area=0;(l=h.length)>0;)f.push(o=h[l-1]),f.area+=o.area,"squarify"!==p||(a=r(f,v))<=g?(h.pop(),g=a):(f.area-=f.pop().area,i(f,v,c,!1),v=Math.min(c.dx,c.dy),f.length=f.area=0,g=1/0);f.length&&(i(f,v,c,!0),f.length=f.area=0),u.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var u,o=s(t),a=r.slice(),l=[];for(n(a,o.dx*o.dy/t.value),l.area=0;u=a.pop();)l.push(u),l.area+=u.area,null!=u.z&&(i(l,u.z?o.dx:o.dy,o,!a.length),l.length=l.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,i=0,u=1/0,o=-1,a=n.length;++oe&&(u=e),e>i&&(i=e));return r*=r,t*=t,r?Math.max(t*i*g/r,r/(t*u*g)):1/0}function i(n,t,e,r){var i,u=-1,o=n.length,a=e.x,c=e.y,f=t?l(n.area/t):0; -if(t==e.dx){for((r||f>e.dy)&&(f=e.dy);++ue.dx)&&(f=e.dx);++ue&&(t=1),1>e&&(n=0),function(){var e,r,i;do e=2*Math.random()-1,r=2*Math.random()-1,i=e*e+r*r;while(!i||i>1);return n+t*e*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var n=ao.random.normal.apply(ao,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=ao.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},ao.scale={};var Sl={floor:m,ceil:m};ao.scale.linear=function(){return Wi([0,1],[0,1],Mr,!1)};var kl={s:1,g:1,p:1,r:1,e:1};ao.scale.log=function(){return ru(ao.scale.linear().domain([0,1]),10,!0,[1,10])};var Nl=ao.format(".0e"),El={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};ao.scale.pow=function(){return iu(ao.scale.linear(),1,[0,1])},ao.scale.sqrt=function(){return ao.scale.pow().exponent(.5)},ao.scale.ordinal=function(){return ou([],{t:"range",a:[[]]})},ao.scale.category10=function(){return ao.scale.ordinal().range(Al)},ao.scale.category20=function(){return ao.scale.ordinal().range(Cl)},ao.scale.category20b=function(){return ao.scale.ordinal().range(zl)},ao.scale.category20c=function(){return ao.scale.ordinal().range(Ll)};var Al=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(xn),Cl=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(xn),zl=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(xn),Ll=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(xn);ao.scale.quantile=function(){return au([],[])},ao.scale.quantize=function(){return lu(0,1,[0,1])},ao.scale.threshold=function(){return cu([.5],[0,1])},ao.scale.identity=function(){return fu([0,1])},ao.svg={},ao.svg.arc=function(){function n(){var n=Math.max(0,+e.apply(this,arguments)),c=Math.max(0,+r.apply(this,arguments)),f=o.apply(this,arguments)-Io,s=a.apply(this,arguments)-Io,h=Math.abs(s-f),p=f>s?0:1;if(n>c&&(g=c,c=n,n=g),h>=Oo)return t(c,p)+(n?t(n,1-p):"")+"Z";var g,v,d,y,m,M,x,b,_,w,S,k,N=0,E=0,A=[];if((y=(+l.apply(this,arguments)||0)/2)&&(d=u===ql?Math.sqrt(n*n+c*c):+u.apply(this,arguments),p||(E*=-1),c&&(E=tn(d/c*Math.sin(y))),n&&(N=tn(d/n*Math.sin(y)))),c){m=c*Math.cos(f+E),M=c*Math.sin(f+E),x=c*Math.cos(s-E),b=c*Math.sin(s-E);var C=Math.abs(s-f-2*E)<=Fo?0:1;if(E&&yu(m,M,x,b)===p^C){var z=(f+s)/2;m=c*Math.cos(z),M=c*Math.sin(z),x=b=null}}else m=M=0;if(n){_=n*Math.cos(s-N),w=n*Math.sin(s-N),S=n*Math.cos(f+N),k=n*Math.sin(f+N);var L=Math.abs(f-s+2*N)<=Fo?0:1;if(N&&yu(_,w,S,k)===1-p^L){var q=(f+s)/2;_=n*Math.cos(q),w=n*Math.sin(q),S=k=null}}else _=w=0;if(h>Uo&&(g=Math.min(Math.abs(c-n)/2,+i.apply(this,arguments)))>.001){v=c>n^p?0:1;var T=g,R=g;if(Fo>h){var D=null==S?[_,w]:null==x?[m,M]:Re([m,M],[S,k],[x,b],[_,w]),P=m-D[0],U=M-D[1],j=x-D[0],F=b-D[1],H=1/Math.sin(Math.acos((P*j+U*F)/(Math.sqrt(P*P+U*U)*Math.sqrt(j*j+F*F)))/2),O=Math.sqrt(D[0]*D[0]+D[1]*D[1]);R=Math.min(g,(n-O)/(H-1)),T=Math.min(g,(c-O)/(H+1))}if(null!=x){var I=mu(null==S?[_,w]:[S,k],[m,M],c,T,p),Y=mu([x,b],[_,w],c,T,p);g===T?A.push("M",I[0],"A",T,",",T," 0 0,",v," ",I[1],"A",c,",",c," 0 ",1-p^yu(I[1][0],I[1][1],Y[1][0],Y[1][1]),",",p," ",Y[1],"A",T,",",T," 0 0,",v," ",Y[0]):A.push("M",I[0],"A",T,",",T," 0 1,",v," ",Y[0])}else A.push("M",m,",",M);if(null!=S){var Z=mu([m,M],[S,k],n,-R,p),V=mu([_,w],null==x?[m,M]:[x,b],n,-R,p);g===R?A.push("L",V[0],"A",R,",",R," 0 0,",v," ",V[1],"A",n,",",n," 0 ",p^yu(V[1][0],V[1][1],Z[1][0],Z[1][1]),",",1-p," ",Z[1],"A",R,",",R," 0 0,",v," ",Z[0]):A.push("L",V[0],"A",R,",",R," 0 0,",v," ",Z[0])}else A.push("L",_,",",w)}else A.push("M",m,",",M),null!=x&&A.push("A",c,",",c," 0 ",C,",",p," ",x,",",b),A.push("L",_,",",w),null!=S&&A.push("A",n,",",n," 0 ",L,",",1-p," ",S,",",k);return A.push("Z"),A.join("")}function t(n,t){return"M0,"+n+"A"+n+","+n+" 0 1,"+t+" 0,"+-n+"A"+n+","+n+" 0 1,"+t+" 0,"+n}var e=hu,r=pu,i=su,u=ql,o=gu,a=vu,l=du;return n.innerRadius=function(t){return arguments.length?(e=En(t),n):e},n.outerRadius=function(t){return arguments.length?(r=En(t),n):r},n.cornerRadius=function(t){return arguments.length?(i=En(t),n):i},n.padRadius=function(t){return arguments.length?(u=t==ql?ql:En(t),n):u},n.startAngle=function(t){return arguments.length?(o=En(t),n):o},n.endAngle=function(t){return arguments.length?(a=En(t),n):a},n.padAngle=function(t){return arguments.length?(l=En(t),n):l},n.centroid=function(){var n=(+e.apply(this,arguments)+ +r.apply(this,arguments))/2,t=(+o.apply(this,arguments)+ +a.apply(this,arguments))/2-Io;return[Math.cos(t)*n,Math.sin(t)*n]},n};var ql="auto";ao.svg.line=function(){return Mu(m)};var Tl=ao.map({linear:xu,"linear-closed":bu,step:_u,"step-before":wu,"step-after":Su,basis:zu,"basis-open":Lu,"basis-closed":qu,bundle:Tu,cardinal:Eu,"cardinal-open":ku,"cardinal-closed":Nu,monotone:Fu});Tl.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var Rl=[0,2/3,1/3,0],Dl=[0,1/3,2/3,0],Pl=[0,1/6,2/3,1/6];ao.svg.line.radial=function(){var n=Mu(Hu);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},wu.reverse=Su,Su.reverse=wu,ao.svg.area=function(){return Ou(m)},ao.svg.area.radial=function(){var n=Ou(Hu);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},ao.svg.chord=function(){function n(n,a){var l=t(this,u,n,a),c=t(this,o,n,a);return"M"+l.p0+r(l.r,l.p1,l.a1-l.a0)+(e(l,c)?i(l.r,l.p1,l.r,l.p0):i(l.r,l.p1,c.r,c.p0)+r(c.r,c.p1,c.a1-c.a0)+i(c.r,c.p1,l.r,l.p0))+"Z"}function t(n,t,e,r){var i=t.call(n,e,r),u=a.call(n,i,r),o=l.call(n,i,r)-Io,f=c.call(n,i,r)-Io;return{r:u,a0:o,a1:f,p0:[u*Math.cos(o),u*Math.sin(o)],p1:[u*Math.cos(f),u*Math.sin(f)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Fo)+",1 "+t}function i(n,t,e,r){return"Q 0,0 "+r}var u=Me,o=xe,a=Iu,l=gu,c=vu;return n.radius=function(t){return arguments.length?(a=En(t),n):a},n.source=function(t){return arguments.length?(u=En(t),n):u},n.target=function(t){return arguments.length?(o=En(t),n):o},n.startAngle=function(t){return arguments.length?(l=En(t),n):l},n.endAngle=function(t){return arguments.length?(c=En(t),n):c},n},ao.svg.diagonal=function(){function n(n,i){var u=t.call(this,n,i),o=e.call(this,n,i),a=(u.y+o.y)/2,l=[u,{x:u.x,y:a},{x:o.x,y:a},o];return l=l.map(r),"M"+l[0]+"C"+l[1]+" "+l[2]+" "+l[3]}var t=Me,e=xe,r=Yu;return n.source=function(e){return arguments.length?(t=En(e),n):t},n.target=function(t){return arguments.length?(e=En(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},ao.svg.diagonal.radial=function(){var n=ao.svg.diagonal(),t=Yu,e=n.projection;return n.projection=function(n){return arguments.length?e(Zu(t=n)):t},n},ao.svg.symbol=function(){function n(n,r){return(Ul.get(t.call(this,n,r))||$u)(e.call(this,n,r))}var t=Xu,e=Vu;return n.type=function(e){return arguments.length?(t=En(e),n):t},n.size=function(t){return arguments.length?(e=En(t),n):e},n};var Ul=ao.map({circle:$u,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Fl)),e=t*Fl;return"M0,"+-t+"L"+e+",0 0,"+t+" "+-e+",0Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});ao.svg.symbolTypes=Ul.keys();var jl=Math.sqrt(3),Fl=Math.tan(30*Yo);Co.transition=function(n){for(var t,e,r=Hl||++Zl,i=Ku(n),u=[],o=Ol||{time:Date.now(),ease:Nr,delay:0,duration:250},a=-1,l=this.length;++au;u++){i.push(t=[]);for(var e=this[u],a=0,l=e.length;l>a;a++)(r=e[a])&&n.call(r,r.__data__,a,u)&&t.push(r)}return Wu(i,this.namespace,this.id)},Yl.tween=function(n,t){var e=this.id,r=this.namespace;return arguments.length<2?this.node()[r][e].tween.get(n):Y(this,null==t?function(t){t[r][e].tween.remove(n)}:function(i){i[r][e].tween.set(n,t)})},Yl.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function i(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function u(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?$r:Mr,a=ao.ns.qualify(n);return Ju(this,"attr."+n,t,a.local?u:i)},Yl.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(i));return r&&function(n){this.setAttribute(i,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(i.space,i.local));return r&&function(n){this.setAttributeNS(i.space,i.local,r(n))}}var i=ao.ns.qualify(n);return this.tween("attr."+n,i.local?r:e)},Yl.style=function(n,e,r){function i(){this.style.removeProperty(n)}function u(e){return null==e?i:(e+="",function(){var i,u=t(this).getComputedStyle(this,null).getPropertyValue(n);return u!==e&&(i=Mr(u,e),function(t){this.style.setProperty(n,i(t),r)})})}var o=arguments.length;if(3>o){if("string"!=typeof n){2>o&&(e="");for(r in n)this.style(r,n[r],e);return this}r=""}return Ju(this,"style."+n,e,u)},Yl.styleTween=function(n,e,r){function i(i,u){var o=e.call(this,i,u,t(this).getComputedStyle(this,null).getPropertyValue(n));return o&&function(t){this.style.setProperty(n,o(t),r)}}return arguments.length<3&&(r=""),this.tween("style."+n,i)},Yl.text=function(n){return Ju(this,"text",n,Gu)},Yl.remove=function(){var n=this.namespace;return this.each("end.transition",function(){var t;this[n].count<2&&(t=this.parentNode)&&t.removeChild(this)})},Yl.ease=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].ease:("function"!=typeof n&&(n=ao.ease.apply(ao,arguments)),Y(this,function(r){r[e][t].ease=n}))},Yl.delay=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].delay:Y(this,"function"==typeof n?function(r,i,u){r[e][t].delay=+n.call(r,r.__data__,i,u)}:(n=+n,function(r){r[e][t].delay=n}))},Yl.duration=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].duration:Y(this,"function"==typeof n?function(r,i,u){r[e][t].duration=Math.max(1,n.call(r,r.__data__,i,u))}:(n=Math.max(1,n),function(r){r[e][t].duration=n}))},Yl.each=function(n,t){var e=this.id,r=this.namespace;if(arguments.length<2){var i=Ol,u=Hl;try{Hl=e,Y(this,function(t,i,u){Ol=t[r][e],n.call(t,t.__data__,i,u)})}finally{Ol=i,Hl=u}}else Y(this,function(i){var u=i[r][e];(u.event||(u.event=ao.dispatch("start","end","interrupt"))).on(n,t)});return this},Yl.transition=function(){for(var n,t,e,r,i=this.id,u=++Zl,o=this.namespace,a=[],l=0,c=this.length;c>l;l++){a.push(n=[]);for(var t=this[l],f=0,s=t.length;s>f;f++)(e=t[f])&&(r=e[o][i],Qu(e,f,o,u,{time:r.time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration})),n.push(e)}return Wu(a,o,u)},ao.svg.axis=function(){function n(n){n.each(function(){var n,c=ao.select(this),f=this.__chart__||e,s=this.__chart__=e.copy(),h=null==l?s.ticks?s.ticks.apply(s,a):s.domain():l,p=null==t?s.tickFormat?s.tickFormat.apply(s,a):m:t,g=c.selectAll(".tick").data(h,s),v=g.enter().insert("g",".domain").attr("class","tick").style("opacity",Uo),d=ao.transition(g.exit()).style("opacity",Uo).remove(),y=ao.transition(g.order()).style("opacity",1),M=Math.max(i,0)+o,x=Zi(s),b=c.selectAll(".domain").data([0]),_=(b.enter().append("path").attr("class","domain"),ao.transition(b));v.append("line"),v.append("text");var w,S,k,N,E=v.select("line"),A=y.select("line"),C=g.select("text").text(p),z=v.select("text"),L=y.select("text"),q="top"===r||"left"===r?-1:1;if("bottom"===r||"top"===r?(n=no,w="x",k="y",S="x2",N="y2",C.attr("dy",0>q?"0em":".71em").style("text-anchor","middle"),_.attr("d","M"+x[0]+","+q*u+"V0H"+x[1]+"V"+q*u)):(n=to,w="y",k="x",S="y2",N="x2",C.attr("dy",".32em").style("text-anchor",0>q?"end":"start"),_.attr("d","M"+q*u+","+x[0]+"H0V"+x[1]+"H"+q*u)),E.attr(N,q*i),z.attr(k,q*M),A.attr(S,0).attr(N,q*i),L.attr(w,0).attr(k,q*M),s.rangeBand){var T=s,R=T.rangeBand()/2;f=s=function(n){return T(n)+R}}else f.rangeBand?f=s:d.call(n,s,f);v.call(n,f,s),y.call(n,s,s)})}var t,e=ao.scale.linear(),r=Vl,i=6,u=6,o=3,a=[10],l=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Xl?t+"":Vl,n):r},n.ticks=function(){return arguments.length?(a=co(arguments),n):a},n.tickValues=function(t){return arguments.length?(l=t,n):l},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(i=+t,u=+arguments[e-1],n):i},n.innerTickSize=function(t){return arguments.length?(i=+t,n):i},n.outerTickSize=function(t){return arguments.length?(u=+t,n):u},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Vl="bottom",Xl={top:1,right:1,bottom:1,left:1};ao.svg.brush=function(){function n(t){t.each(function(){var t=ao.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=t.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),t.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=t.selectAll(".resize").data(v,m);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return $l[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,s=ao.transition(t),h=ao.transition(o);c&&(l=Zi(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),r(s)),f&&(l=Zi(f),h.attr("y",l[0]).attr("height",l[1]-l[0]),i(s)),e(s)})}function e(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+s[+/e$/.test(n)]+","+h[+/^s/.test(n)]+")"})}function r(n){n.select(".extent").attr("x",s[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",s[1]-s[0])}function i(n){n.select(".extent").attr("y",h[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",h[1]-h[0])}function u(){function u(){32==ao.event.keyCode&&(C||(M=null,L[0]-=s[1],L[1]-=h[1],C=2),S())}function v(){32==ao.event.keyCode&&2==C&&(L[0]+=s[1],L[1]+=h[1],C=0,S())}function d(){var n=ao.mouse(b),t=!1;x&&(n[0]+=x[0],n[1]+=x[1]),C||(ao.event.altKey?(M||(M=[(s[0]+s[1])/2,(h[0]+h[1])/2]),L[0]=s[+(n[0]f?(i=r,r=f):i=f),v[0]!=r||v[1]!=i?(e?a=null:o=null,v[0]=r,v[1]=i,!0):void 0}function m(){d(),k.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),ao.select("body").style("cursor",null),q.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),z(),w({type:"brushend"})}var M,x,b=this,_=ao.select(ao.event.target),w=l.of(b,arguments),k=ao.select(b),N=_.datum(),E=!/^(n|s)$/.test(N)&&c,A=!/^(e|w)$/.test(N)&&f,C=_.classed("extent"),z=W(b),L=ao.mouse(b),q=ao.select(t(b)).on("keydown.brush",u).on("keyup.brush",v);if(ao.event.changedTouches?q.on("touchmove.brush",d).on("touchend.brush",m):q.on("mousemove.brush",d).on("mouseup.brush",m),k.interrupt().selectAll("*").interrupt(),C)L[0]=s[0]-L[0],L[1]=h[0]-L[1];else if(N){var T=+/w$/.test(N),R=+/^n/.test(N);x=[s[1-T]-L[0],h[1-R]-L[1]],L[0]=s[T],L[1]=h[R]}else ao.event.altKey&&(M=L.slice());k.style("pointer-events","none").selectAll(".resize").style("display",null),ao.select("body").style("cursor",_.style("cursor")),w({type:"brushstart"}),d()}var o,a,l=N(n,"brushstart","brush","brushend"),c=null,f=null,s=[0,0],h=[0,0],p=!0,g=!0,v=Bl[0];return n.event=function(n){n.each(function(){var n=l.of(this,arguments),t={x:s,y:h,i:o,j:a},e=this.__chart__||t;this.__chart__=t,Hl?ao.select(this).transition().each("start.brush",function(){o=e.i,a=e.j,s=e.x,h=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=xr(s,t.x),r=xr(h,t.y);return o=a=null,function(i){s=t.x=e(i),h=t.y=r(i),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){o=t.i,a=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,v=Bl[!c<<1|!f],n):c},n.y=function(t){return arguments.length?(f=t,v=Bl[!c<<1|!f],n):f},n.clamp=function(t){return arguments.length?(c&&f?(p=!!t[0],g=!!t[1]):c?p=!!t:f&&(g=!!t),n):c&&f?[p,g]:c?p:f?g:null},n.extent=function(t){var e,r,i,u,l;return arguments.length?(c&&(e=t[0],r=t[1],f&&(e=e[0],r=r[0]),o=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(l=e,e=r,r=l),e==s[0]&&r==s[1]||(s=[e,r])),f&&(i=t[0],u=t[1],c&&(i=i[1],u=u[1]),a=[i,u],f.invert&&(i=f(i),u=f(u)),i>u&&(l=i,i=u,u=l),i==h[0]&&u==h[1]||(h=[i,u])),n):(c&&(o?(e=o[0],r=o[1]):(e=s[0],r=s[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(l=e,e=r,r=l))),f&&(a?(i=a[0],u=a[1]):(i=h[0],u=h[1],f.invert&&(i=f.invert(i),u=f.invert(u)),i>u&&(l=i,i=u,u=l))),c&&f?[[e,i],[r,u]]:c?[e,r]:f&&[i,u])},n.clear=function(){return n.empty()||(s=[0,0],h=[0,0],o=a=null),n},n.empty=function(){return!!c&&s[0]==s[1]||!!f&&h[0]==h[1]},ao.rebind(n,l,"on")};var $l={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Bl=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Wl=ga.format=xa.timeFormat,Jl=Wl.utc,Gl=Jl("%Y-%m-%dT%H:%M:%S.%LZ");Wl.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?eo:Gl,eo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},eo.toString=Gl.toString,ga.second=On(function(n){return new va(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),ga.seconds=ga.second.range,ga.seconds.utc=ga.second.utc.range,ga.minute=On(function(n){return new va(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),ga.minutes=ga.minute.range,ga.minutes.utc=ga.minute.utc.range,ga.hour=On(function(n){var t=n.getTimezoneOffset()/60;return new va(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),ga.hours=ga.hour.range,ga.hours.utc=ga.hour.utc.range,ga.month=On(function(n){return n=ga.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),ga.months=ga.month.range,ga.months.utc=ga.month.utc.range;var Kl=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Ql=[[ga.second,1],[ga.second,5],[ga.second,15],[ga.second,30],[ga.minute,1],[ga.minute,5],[ga.minute,15],[ga.minute,30],[ga.hour,1],[ga.hour,3],[ga.hour,6],[ga.hour,12],[ga.day,1],[ga.day,2],[ga.week,1],[ga.month,1],[ga.month,3],[ga.year,1]],nc=Wl.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",zt]]),tc={range:function(n,t,e){return ao.range(Math.ceil(n/e)*e,+t,e).map(io)},floor:m,ceil:m};Ql.year=ga.year,ga.scale=function(){return ro(ao.scale.linear(),Ql,nc)};var ec=Ql.map(function(n){return[n[0].utc,n[1]]}),rc=Jl.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",zt]]);ec.year=ga.year.utc,ga.scale.utc=function(){return ro(ao.scale.linear(),ec,rc)},ao.text=An(function(n){return n.responseText}),ao.json=function(n,t){return Cn(n,"application/json",uo,t)},ao.html=function(n,t){return Cn(n,"text/html",oo,t)},ao.xml=An(function(n){return n.responseXML}),"function"==typeof define&&define.amd?(this.d3=ao,define(ao)):"object"==typeof module&&module.exports?module.exports=ao:this.d3=ao}(); $(function() { - var $window = $(window) - , $top_link = $('#toplink') - , $body = $('body, html') - , offset = $('#code').offset().top - , hidePopover = function ($target) { - $target.data('popover-hover', false); +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser; - setTimeout(function () { - if (!$target.data('popover-hover')) { - $target.popover('hide'); - } - }, 300); - }; +interface Builder +{ + /** + * Returns the built node. + * + * @return Node The built node + */ + public function getNode(): Node; +} + offset) { - $top_link.fadeIn(); - } else { - $top_link.fadeOut(); +use function array_merge; +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\Node\Scalar; +/** + * Evaluates constant expressions. + * + * This evaluator is able to evaluate all constant expressions (as defined by PHP), which can be + * evaluated without further context. If a subexpression is not of this type, a user-provided + * fallback evaluator is invoked. To support all constant expressions that are also supported by + * PHP (and not already handled by this class), the fallback evaluator must be able to handle the + * following node types: + * + * * All Scalar\MagicConst\* nodes. + * * Expr\ConstFetch nodes. Only null/false/true are already handled by this class. + * * Expr\ClassConstFetch nodes. + * + * The fallback evaluator should throw ConstExprEvaluationException for nodes it cannot evaluate. + * + * The evaluation is dependent on runtime configuration in two respects: Firstly, floating + * point to string conversions are affected by the precision ini setting. Secondly, they are also + * affected by the LC_NUMERIC locale. + */ +class ConstExprEvaluator +{ + private $fallbackEvaluator; + /** + * Create a constant expression evaluator. + * + * The provided fallback evaluator is invoked whenever a subexpression cannot be evaluated. See + * class doc comment for more information. + * + * @param callable|null $fallbackEvaluator To call if subexpression cannot be evaluated + */ + public function __construct(?callable $fallbackEvaluator = null) + { + $this->fallbackEvaluator = $fallbackEvaluator ?? function (Expr $expr) { + throw new ConstExprEvaluationException("Expression of type {$expr->getType()} cannot be evaluated"); + }; } - }).scroll(); - - $('.popin') - .popover({trigger: 'manual'}) - .on({ - 'mouseenter.popover': function () { - var $target = $(this); - var $container = $target.children().first(); + /** + * Silently evaluates a constant expression into a PHP value. + * + * Thrown Errors, warnings or notices will be converted into a ConstExprEvaluationException. + * The original source of the exception is available through getPrevious(). + * + * If some part of the expression cannot be evaluated, the fallback evaluator passed to the + * constructor will be invoked. By default, if no fallback is provided, an exception of type + * ConstExprEvaluationException is thrown. + * + * See class doc comment for caveats and limitations. + * + * @param Expr $expr Constant expression to evaluate + * @return mixed Result of evaluation + * + * @throws ConstExprEvaluationException if the expression cannot be evaluated or an error occurred + */ + public function evaluateSilently(Expr $expr) + { + set_error_handler(function ($num, $str, $file, $line) { + throw new \ErrorException($str, 0, $num, $file, $line); + }); + try { + return $this->evaluate($expr); + } catch (\Throwable $e) { + if (!$e instanceof ConstExprEvaluationException) { + $e = new ConstExprEvaluationException("An error occurred during constant expression evaluation", 0, $e); + } + throw $e; + } finally { + restore_error_handler(); + } + } + /** + * Directly evaluates a constant expression into a PHP value. + * + * May generate Error exceptions, warnings or notices. Use evaluateSilently() to convert these + * into a ConstExprEvaluationException. + * + * If some part of the expression cannot be evaluated, the fallback evaluator passed to the + * constructor will be invoked. By default, if no fallback is provided, an exception of type + * ConstExprEvaluationException is thrown. + * + * See class doc comment for caveats and limitations. + * + * @param Expr $expr Constant expression to evaluate + * @return mixed Result of evaluation + * + * @throws ConstExprEvaluationException if the expression cannot be evaluated + */ + public function evaluateDirectly(Expr $expr) + { + return $this->evaluate($expr); + } + private function evaluate(Expr $expr) + { + if ($expr instanceof Scalar\LNumber || $expr instanceof Scalar\DNumber || $expr instanceof Scalar\String_) { + return $expr->value; + } + if ($expr instanceof Expr\Array_) { + return $this->evaluateArray($expr); + } + // Unary operators + if ($expr instanceof Expr\UnaryPlus) { + return +$this->evaluate($expr->expr); + } + if ($expr instanceof Expr\UnaryMinus) { + return -$this->evaluate($expr->expr); + } + if ($expr instanceof Expr\BooleanNot) { + return !$this->evaluate($expr->expr); + } + if ($expr instanceof Expr\BitwiseNot) { + return ~$this->evaluate($expr->expr); + } + if ($expr instanceof Expr\BinaryOp) { + return $this->evaluateBinaryOp($expr); + } + if ($expr instanceof Expr\Ternary) { + return $this->evaluateTernary($expr); + } + if ($expr instanceof Expr\ArrayDimFetch && null !== $expr->dim) { + return $this->evaluate($expr->var)[$this->evaluate($expr->dim)]; + } + if ($expr instanceof Expr\ConstFetch) { + return $this->evaluateConstFetch($expr); + } + return ($this->fallbackEvaluator)($expr); + } + private function evaluateArray(Expr\Array_ $expr) + { + $array = []; + foreach ($expr->items as $item) { + if (null !== $item->key) { + $array[$this->evaluate($item->key)] = $this->evaluate($item->value); + } elseif ($item->unpack) { + $array = array_merge($array, $this->evaluate($item->value)); + } else { + $array[] = $this->evaluate($item->value); + } + } + return $array; + } + private function evaluateTernary(Expr\Ternary $expr) + { + if (null === $expr->if) { + return $this->evaluate($expr->cond) ?: $this->evaluate($expr->else); + } + return $this->evaluate($expr->cond) ? $this->evaluate($expr->if) : $this->evaluate($expr->else); + } + private function evaluateBinaryOp(Expr\BinaryOp $expr) + { + if ($expr instanceof Expr\BinaryOp\Coalesce && $expr->left instanceof Expr\ArrayDimFetch) { + // This needs to be special cased to respect BP_VAR_IS fetch semantics + return $this->evaluate($expr->left->var)[$this->evaluate($expr->left->dim)] ?? $this->evaluate($expr->right); + } + // The evaluate() calls are repeated in each branch, because some of the operators are + // short-circuiting and evaluating the RHS in advance may be illegal in that case + $l = $expr->left; + $r = $expr->right; + switch ($expr->getOperatorSigil()) { + case '&': + return $this->evaluate($l) & $this->evaluate($r); + case '|': + return $this->evaluate($l) | $this->evaluate($r); + case '^': + return $this->evaluate($l) ^ $this->evaluate($r); + case '&&': + return $this->evaluate($l) && $this->evaluate($r); + case '||': + return $this->evaluate($l) || $this->evaluate($r); + case '??': + return $this->evaluate($l) ?? $this->evaluate($r); + case '.': + return $this->evaluate($l) . $this->evaluate($r); + case '/': + return $this->evaluate($l) / $this->evaluate($r); + case '==': + return $this->evaluate($l) == $this->evaluate($r); + case '>': + return $this->evaluate($l) > $this->evaluate($r); + case '>=': + return $this->evaluate($l) >= $this->evaluate($r); + case '===': + return $this->evaluate($l) === $this->evaluate($r); + case 'and': + return $this->evaluate($l) and $this->evaluate($r); + case 'or': + return $this->evaluate($l) or $this->evaluate($r); + case 'xor': + return $this->evaluate($l) xor $this->evaluate($r); + case '-': + return $this->evaluate($l) - $this->evaluate($r); + case '%': + return $this->evaluate($l) % $this->evaluate($r); + case '*': + return $this->evaluate($l) * $this->evaluate($r); + case '!=': + return $this->evaluate($l) != $this->evaluate($r); + case '!==': + return $this->evaluate($l) !== $this->evaluate($r); + case '+': + return $this->evaluate($l) + $this->evaluate($r); + case '**': + return $this->evaluate($l) ** $this->evaluate($r); + case '<<': + return $this->evaluate($l) << $this->evaluate($r); + case '>>': + return $this->evaluate($l) >> $this->evaluate($r); + case '<': + return $this->evaluate($l) < $this->evaluate($r); + case '<=': + return $this->evaluate($l) <= $this->evaluate($r); + case '<=>': + return $this->evaluate($l) <=> $this->evaluate($r); + } + throw new \Exception('Should not happen'); + } + private function evaluateConstFetch(Expr\ConstFetch $expr) + { + $name = $expr->name->toLowerString(); + switch ($name) { + case 'null': + return null; + case 'false': + return \false; + case 'true': + return \true; + } + return ($this->fallbackEvaluator)($expr); + } +} +type = $type; + $this->old = $old; + $this->new = $new; + } +} +isEqual = $isEqual; + } + /** + * Calculate diff (edit script) from $old to $new. + * + * @param array $old Original array + * @param array $new New array + * + * @return DiffElem[] Diff (edit script) + */ + public function diff(array $old, array $new) + { + list($trace, $x, $y) = $this->calculateTrace($old, $new); + return $this->extractDiff($trace, $x, $y, $old, $new); + } + /** + * Calculate diff, including "replace" operations. + * + * If a sequence of remove operations is followed by the same number of add operations, these + * will be coalesced into replace operations. + * + * @param array $old Original array + * @param array $new New array + * + * @return DiffElem[] Diff (edit script), including replace operations + */ + public function diffWithReplacements(array $old, array $new) + { + return $this->coalesceReplacements($this->diff($old, $new)); + } + private function calculateTrace(array $a, array $b) + { + $n = \count($a); + $m = \count($b); + $max = $n + $m; + $v = [1 => 0]; + $trace = []; + for ($d = 0; $d <= $max; $d++) { + $trace[] = $v; + for ($k = -$d; $k <= $d; $k += 2) { + if ($k === -$d || $k !== $d && $v[$k - 1] < $v[$k + 1]) { + $x = $v[$k + 1]; + } else { + $x = $v[$k - 1] + 1; + } + $y = $x - $k; + while ($x < $n && $y < $m && ($this->isEqual)($a[$x], $b[$y])) { + $x++; + $y++; + } + $v[$k] = $x; + if ($x >= $n && $y >= $m) { + return [$trace, $x, $y]; + } + } + } + throw new \Exception('Should not happen'); + } + private function extractDiff(array $trace, int $x, int $y, array $a, array $b) + { + $result = []; + for ($d = \count($trace) - 1; $d >= 0; $d--) { + $v = $trace[$d]; + $k = $x - $y; + if ($k === -$d || $k !== $d && $v[$k - 1] < $v[$k + 1]) { + $prevK = $k + 1; + } else { + $prevK = $k - 1; + } + $prevX = $v[$prevK]; + $prevY = $prevX - $prevK; + while ($x > $prevX && $y > $prevY) { + $result[] = new DiffElem(DiffElem::TYPE_KEEP, $a[$x - 1], $b[$y - 1]); + $x--; + $y--; + } + if ($d === 0) { + break; + } + while ($x > $prevX) { + $result[] = new DiffElem(DiffElem::TYPE_REMOVE, $a[$x - 1], null); + $x--; + } + while ($y > $prevY) { + $result[] = new DiffElem(DiffElem::TYPE_ADD, null, $b[$y - 1]); + $y--; + } + } + return array_reverse($result); + } + /** + * Coalesce equal-length sequences of remove+add into a replace operation. + * + * @param DiffElem[] $diff + * @return DiffElem[] + */ + private function coalesceReplacements(array $diff) + { + $newDiff = []; + $c = \count($diff); + for ($i = 0; $i < $c; $i++) { + $diffType = $diff[$i]->type; + if ($diffType !== DiffElem::TYPE_REMOVE) { + $newDiff[] = $diff[$i]; + continue; + } + $j = $i; + while ($j < $c && $diff[$j]->type === DiffElem::TYPE_REMOVE) { + $j++; + } + $k = $j; + while ($k < $c && $diff[$k]->type === DiffElem::TYPE_ADD) { + $k++; + } + if ($j - $i === $k - $j) { + $len = $j - $i; + for ($n = 0; $n < $len; $n++) { + $newDiff[] = new DiffElem(DiffElem::TYPE_REPLACE, $diff[$i + $n]->old, $diff[$j + $n]->new); + } + } else { + for (; $i < $k; $i++) { + $newDiff[] = $diff[$i]; + } + } + $i = $k - 1; } - }) - .addClass('popover-initialized'); - }, - 'mouseleave.popover': function () { - hidePopover($(this).children().first()); - } - }); - }); -/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
      "],col:[2,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
      ",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0f&&(e=a.render.queue[f]);f++)d=e.generate(),typeof e.callback==typeof Function&&e.callback(d);a.render.queue.splice(0,f),a.render.queue.length?setTimeout(c):(a.dispatch.render_end(),a.render.active=!1)};setTimeout(c)},a.render.active=!1,a.render.queue=[],a.addGraph=function(b){typeof arguments[0]==typeof Function&&(b={generate:arguments[0],callback:arguments[1]}),a.render.queue.push(b),a.render.active||a.render()},"undefined"!=typeof module&&"undefined"!=typeof exports&&(module.exports=a),"undefined"!=typeof window&&(window.nv=a),a.dom.write=function(a){return void 0!==window.fastdom?fastdom.write(a):a()},a.dom.read=function(a){return void 0!==window.fastdom?fastdom.read(a):a()},a.interactiveGuideline=function(){"use strict";function b(l){l.each(function(l){function m(){var a=d3.mouse(this),d=a[0],e=a[1],i=!0,j=!1;if(k&&(d=d3.event.offsetX,e=d3.event.offsetY,"svg"!==d3.event.target.tagName&&(i=!1),d3.event.target.className.baseVal.match("nv-legend")&&(j=!0)),i&&(d-=f.left,e-=f.top),0>d||0>e||d>o||e>p||d3.event.relatedTarget&&void 0===d3.event.relatedTarget.ownerSVGElement||j){if(k&&d3.event.relatedTarget&&void 0===d3.event.relatedTarget.ownerSVGElement&&(void 0===d3.event.relatedTarget.className||d3.event.relatedTarget.className.match(c.nvPointerEventsClass)))return;return h.elementMouseout({mouseX:d,mouseY:e}),b.renderGuideLine(null),void c.hidden(!0)}c.hidden(!1);var l=g.invert(d);h.elementMousemove({mouseX:d,mouseY:e,pointXValue:l}),"dblclick"===d3.event.type&&h.elementDblclick({mouseX:d,mouseY:e,pointXValue:l}),"click"===d3.event.type&&h.elementClick({mouseX:d,mouseY:e,pointXValue:l})}var n=d3.select(this),o=d||960,p=e||400,q=n.selectAll("g.nv-wrap.nv-interactiveLineLayer").data([l]),r=q.enter().append("g").attr("class"," nv-wrap nv-interactiveLineLayer");r.append("g").attr("class","nv-interactiveGuideLine"),j&&(j.on("touchmove",m).on("mousemove",m,!0).on("mouseout",m,!0).on("dblclick",m).on("click",m),b.guideLine=null,b.renderGuideLine=function(c){i&&(b.guideLine&&b.guideLine.attr("x1")===c||a.dom.write(function(){var b=q.select(".nv-interactiveGuideLine").selectAll("line").data(null!=c?[a.utils.NaNtoZero(c)]:[],String);b.enter().append("line").attr("class","nv-guideline").attr("x1",function(a){return a}).attr("x2",function(a){return a}).attr("y1",p).attr("y2",0),b.exit().remove()}))})})}var c=a.models.tooltip();c.duration(0).hideDelay(0)._isInteractiveLayer(!0).hidden(!1);var d=null,e=null,f={left:0,top:0},g=d3.scale.linear(),h=d3.dispatch("elementMousemove","elementMouseout","elementClick","elementDblclick"),i=!0,j=null,k="ActiveXObject"in window;return b.dispatch=h,b.tooltip=c,b.margin=function(a){return arguments.length?(f.top="undefined"!=typeof a.top?a.top:f.top,f.left="undefined"!=typeof a.left?a.left:f.left,b):f},b.width=function(a){return arguments.length?(d=a,b):d},b.height=function(a){return arguments.length?(e=a,b):e},b.xScale=function(a){return arguments.length?(g=a,b):g},b.showGuideLine=function(a){return arguments.length?(i=a,b):i},b.svgContainer=function(a){return arguments.length?(j=a,b):j},b},a.interactiveBisect=function(a,b,c){"use strict";if(!(a instanceof Array))return null;var d;d="function"!=typeof c?function(a){return a.x}:c;var e=function(a,b){return d(a)-b},f=d3.bisector(e).left,g=d3.max([0,f(a,b)-1]),h=d(a[g]);if("undefined"==typeof h&&(h=g),h===b)return g;var i=d3.min([g+1,a.length-1]),j=d(a[i]);return"undefined"==typeof j&&(j=i),Math.abs(j-b)>=Math.abs(h-b)?g:i},a.nearestValueIndex=function(a,b,c){"use strict";var d=1/0,e=null;return a.forEach(function(a,f){var g=Math.abs(b-a);null!=a&&d>=g&&c>g&&(d=g,e=f)}),e},function(){"use strict";a.models.tooltip=function(){function b(){if(k){var a=d3.select(k);"svg"!==a.node().tagName&&(a=a.select("svg"));var b=a.node()?a.attr("viewBox"):null;if(b){b=b.split(" ");var c=parseInt(a.style("width"),10)/b[2];p.left=p.left*c,p.top=p.top*c}}}function c(){if(!n){var a;a=k?k:document.body,n=d3.select(a).append("div").attr("class","nvtooltip "+(j?j:"xy-tooltip")).attr("id",v),n.style("top",0).style("left",0),n.style("opacity",0),n.selectAll("div, table, td, tr").classed(w,!0),n.classed(w,!0),o=n.node()}}function d(){if(r&&B(e)){b();var f=p.left,g=null!==i?i:p.top;return a.dom.write(function(){c();var b=A(e);b&&(o.innerHTML=b),k&&u?a.dom.read(function(){var a=k.getElementsByTagName("svg")[0],b={left:0,top:0};if(a){var c=a.getBoundingClientRect(),d=k.getBoundingClientRect(),e=c.top;if(0>e){var i=k.getBoundingClientRect();e=Math.abs(e)>i.height?0:e}b.top=Math.abs(e-d.top),b.left=Math.abs(c.left-d.left)}f+=k.offsetLeft+b.left-2*k.scrollLeft,g+=k.offsetTop+b.top-2*k.scrollTop,h&&h>0&&(g=Math.floor(g/h)*h),C([f,g])}):C([f,g])}),d}}var e=null,f="w",g=25,h=0,i=null,j=null,k=null,l=!0,m=400,n=null,o=null,p={left:null,top:null},q={left:0,top:0},r=!0,s=100,t=!0,u=!1,v="nvtooltip-"+Math.floor(1e5*Math.random()),w="nv-pointer-events-none",x=function(a){return a},y=function(a){return a},z=function(a){return a},A=function(a){if(null===a)return"";var b=d3.select(document.createElement("table"));if(t){var c=b.selectAll("thead").data([a]).enter().append("thead");c.append("tr").append("td").attr("colspan",3).append("strong").classed("x-value",!0).html(y(a.value))}var d=b.selectAll("tbody").data([a]).enter().append("tbody"),e=d.selectAll("tr").data(function(a){return a.series}).enter().append("tr").classed("highlight",function(a){return a.highlight});e.append("td").classed("legend-color-guide",!0).append("div").style("background-color",function(a){return a.color}),e.append("td").classed("key",!0).html(function(a,b){return z(a.key,b)}),e.append("td").classed("value",!0).html(function(a,b){return x(a.value,b)}),e.selectAll("td").each(function(a){if(a.highlight){var b=d3.scale.linear().domain([0,1]).range(["#fff",a.color]),c=.6;d3.select(this).style("border-bottom-color",b(c)).style("border-top-color",b(c))}});var f=b.node().outerHTML;return void 0!==a.footer&&(f+=""),f},B=function(a){if(a&&a.series){if(a.series instanceof Array)return!!a.series.length;if(a.series instanceof Object)return a.series=[a.series],!0}return!1},C=function(b){o&&a.dom.read(function(){var c,d,e=parseInt(o.offsetHeight,10),h=parseInt(o.offsetWidth,10),i=a.utils.windowSize().width,j=a.utils.windowSize().height,k=window.pageYOffset,p=window.pageXOffset;j=window.innerWidth>=document.body.scrollWidth?j:j-16,i=window.innerHeight>=document.body.scrollHeight?i:i-16;var r,t,u=function(a){var b=d;do isNaN(a.offsetTop)||(b+=a.offsetTop),a=a.offsetParent;while(a);return b},v=function(a){var b=c;do isNaN(a.offsetLeft)||(b+=a.offsetLeft),a=a.offsetParent;while(a);return b};switch(f){case"e":c=b[0]-h-g,d=b[1]-e/2,r=v(o),t=u(o),p>r&&(c=b[0]+g>p?b[0]+g:p-r+c),k>t&&(d=k-t+d),t+e>k+j&&(d=k+j-t+d-e);break;case"w":c=b[0]+g,d=b[1]-e/2,r=v(o),t=u(o),r+h>i&&(c=b[0]-h-g),k>t&&(d=k+5),t+e>k+j&&(d=k+j-t+d-e);break;case"n":c=b[0]-h/2-5,d=b[1]+g,r=v(o),t=u(o),p>r&&(c=p+5),r+h>i&&(c=c-h/2+5),t+e>k+j&&(d=k+j-t+d-e);break;case"s":c=b[0]-h/2,d=b[1]-e-g,r=v(o),t=u(o),p>r&&(c=p+5),r+h>i&&(c=c-h/2+5),k>t&&(d=k);break;case"none":c=b[0],d=b[1]-g,r=v(o),t=u(o)}c-=q.left,d-=q.top;var w=o.getBoundingClientRect(),k=window.pageYOffset||document.documentElement.scrollTop,p=window.pageXOffset||document.documentElement.scrollLeft,x="translate("+(w.left+p)+"px, "+(w.top+k)+"px)",y="translate("+c+"px, "+d+"px)",z=d3.interpolateString(x,y),A=n.style("opacity")<.1;l?n.transition().delay(m).duration(0).style("opacity",0):n.interrupt().transition().duration(A?0:s).styleTween("transform",function(){return z},"important").style("-webkit-transform",y).style("opacity",1)})};return d.nvPointerEventsClass=w,d.options=a.utils.optionsFunc.bind(d),d._options=Object.create({},{duration:{get:function(){return s},set:function(a){s=a}},gravity:{get:function(){return f},set:function(a){f=a}},distance:{get:function(){return g},set:function(a){g=a}},snapDistance:{get:function(){return h},set:function(a){h=a}},classes:{get:function(){return j},set:function(a){j=a}},chartContainer:{get:function(){return k},set:function(a){k=a}},fixedTop:{get:function(){return i},set:function(a){i=a}},enabled:{get:function(){return r},set:function(a){r=a}},hideDelay:{get:function(){return m},set:function(a){m=a}},contentGenerator:{get:function(){return A},set:function(a){A=a}},valueFormatter:{get:function(){return x},set:function(a){x=a}},headerFormatter:{get:function(){return y},set:function(a){y=a}},keyFormatter:{get:function(){return z},set:function(a){z=a}},headerEnabled:{get:function(){return t},set:function(a){t=a}},_isInteractiveLayer:{get:function(){return u},set:function(a){u=!!a}},position:{get:function(){return p},set:function(a){p.left=void 0!==a.left?a.left:p.left,p.top=void 0!==a.top?a.top:p.top}},offset:{get:function(){return q},set:function(a){q.left=void 0!==a.left?a.left:q.left,q.top=void 0!==a.top?a.top:q.top}},hidden:{get:function(){return l},set:function(a){l!=a&&(l=!!a,d())}},data:{get:function(){return e},set:function(a){a.point&&(a.value=a.point.x,a.series=a.series||{},a.series.value=a.point.y,a.series.color=a.point.color||a.series.color),e=a}},tooltipElem:{get:function(){return o},set:function(){}},id:{get:function(){return v},set:function(){}}}),a.utils.initOptions(d),d}}(),a.utils.windowSize=function(){var a={width:640,height:480};return window.innerWidth&&window.innerHeight?(a.width=window.innerWidth,a.height=window.innerHeight,a):"CSS1Compat"==document.compatMode&&document.documentElement&&document.documentElement.offsetWidth?(a.width=document.documentElement.offsetWidth,a.height=document.documentElement.offsetHeight,a):document.body&&document.body.offsetWidth?(a.width=document.body.offsetWidth,a.height=document.body.offsetHeight,a):a},a.utils.windowResize=function(b){return window.addEventListener?window.addEventListener("resize",b):a.log("ERROR: Failed to bind to window.resize with: ",b),{callback:b,clear:function(){window.removeEventListener("resize",b)}}},a.utils.getColor=function(b){if(void 0===b)return a.utils.defaultColor();if(Array.isArray(b)){var c=d3.scale.ordinal().range(b);return function(a,b){var d=void 0===b?a:b;return a.color||c(d)}}return b},a.utils.defaultColor=function(){return a.utils.getColor(d3.scale.category20().range())},a.utils.customTheme=function(a,b,c){b=b||function(a){return a.key},c=c||d3.scale.category20().range();var d=c.length;return function(e){var f=b(e);return"function"==typeof a[f]?a[f]():void 0!==a[f]?a[f]:(d||(d=c.length),d-=1,c[d])}},a.utils.pjax=function(b,c){var d=function(d){d3.html(d,function(d){var e=d3.select(c).node();e.parentNode.replaceChild(d3.select(d).select(c).node(),e),a.utils.pjax(b,c)})};d3.selectAll(b).on("click",function(){history.pushState(this.href,this.textContent,this.href),d(this.href),d3.event.preventDefault()}),d3.select(window).on("popstate",function(){d3.event.state&&d(d3.event.state)})},a.utils.calcApproxTextWidth=function(a){if("function"==typeof a.style&&"function"==typeof a.text){var b=parseInt(a.style("font-size").replace("px",""),10),c=a.text().length;return c*b*.5}return 0},a.utils.NaNtoZero=function(a){return"number"!=typeof a||isNaN(a)||null===a||1/0===a||a===-1/0?0:a},d3.selection.prototype.watchTransition=function(a){var b=[this].concat([].slice.call(arguments,1));return a.transition.apply(a,b)},a.utils.renderWatch=function(b,c){if(!(this instanceof a.utils.renderWatch))return new a.utils.renderWatch(b,c);var d=void 0!==c?c:250,e=[],f=this;this.models=function(a){return a=[].slice.call(arguments,0),a.forEach(function(a){a.__rendered=!1,function(a){a.dispatch.on("renderEnd",function(){a.__rendered=!0,f.renderEnd("model")})}(a),e.indexOf(a)<0&&e.push(a)}),this},this.reset=function(a){void 0!==a&&(d=a),e=[]},this.transition=function(a,b,c){if(b=arguments.length>1?[].slice.call(arguments,1):[],c=b.length>1?b.pop():void 0!==d?d:250,a.__rendered=!1,e.indexOf(a)<0&&e.push(a),0===c)return a.__rendered=!0,a.delay=function(){return this},a.duration=function(){return this},a;a.__rendered=0===a.length?!0:a.every(function(a){return!a.length})?!0:!1;var g=0;return a.transition().duration(c).each(function(){++g}).each("end",function(){0===--g&&(a.__rendered=!0,f.renderEnd.apply(this,b))})},this.renderEnd=function(){e.every(function(a){return a.__rendered})&&(e.forEach(function(a){a.__rendered=!1}),b.renderEnd.apply(this,arguments))}},a.utils.deepExtend=function(b){var c=arguments.length>1?[].slice.call(arguments,1):[];c.forEach(function(c){for(var d in c){var e=b[d]instanceof Array,f="object"==typeof b[d],g="object"==typeof c[d];f&&!e&&g?a.utils.deepExtend(b[d],c[d]):b[d]=c[d]}})},a.utils.state=function(){if(!(this instanceof a.utils.state))return new a.utils.state;var b={},c=function(){},d=function(){return{}},e=null,f=null;this.dispatch=d3.dispatch("change","set"),this.dispatch.on("set",function(a){c(a,!0)}),this.getter=function(a){return d=a,this},this.setter=function(a,b){return b||(b=function(){}),c=function(c,d){a(c),d&&b()},this},this.init=function(b){e=e||{},a.utils.deepExtend(e,b)};var g=function(){var a=d();if(JSON.stringify(a)===JSON.stringify(b))return!1;for(var c in a)void 0===b[c]&&(b[c]={}),b[c]=a[c],f=!0;return!0};this.update=function(){e&&(c(e,!1),e=null),g.call(this)&&this.dispatch.change(b)}},a.utils.optionsFunc=function(a){return a&&d3.map(a).forEach(function(a,b){"function"==typeof this[a]&&this[a](b)}.bind(this)),this},a.utils.calcTicksX=function(b,c){var d=1,e=0;for(e;ed?f:d}return a.log("Requested number of ticks: ",b),a.log("Calculated max values to be: ",d),b=b>d?b=d-1:b,b=1>b?1:b,b=Math.floor(b),a.log("Calculating tick count as: ",b),b},a.utils.calcTicksY=function(b,c){return a.utils.calcTicksX(b,c)},a.utils.initOption=function(a,b){a._calls&&a._calls[b]?a[b]=a._calls[b]:(a[b]=function(c){return arguments.length?(a._overrides[b]=!0,a._options[b]=c,a):a._options[b]},a["_"+b]=function(c){return arguments.length?(a._overrides[b]||(a._options[b]=c),a):a._options[b]})},a.utils.initOptions=function(b){b._overrides=b._overrides||{};var c=Object.getOwnPropertyNames(b._options||{}),d=Object.getOwnPropertyNames(b._calls||{});c=c.concat(d);for(var e in c)a.utils.initOption(b,c[e])},a.utils.inheritOptionsD3=function(a,b,c){a._d3options=c.concat(a._d3options||[]),c.unshift(b),c.unshift(a),d3.rebind.apply(this,c)},a.utils.arrayUnique=function(a){return a.sort().filter(function(b,c){return!c||b!=a[c-1]})},a.utils.symbolMap=d3.map(),a.utils.symbol=function(){function b(b,e){var f=c.call(this,b,e),g=d.call(this,b,e);return-1!==d3.svg.symbolTypes.indexOf(f)?d3.svg.symbol().type(f).size(g)():a.utils.symbolMap.get(f)(g)}var c,d=64;return b.type=function(a){return arguments.length?(c=d3.functor(a),b):c},b.size=function(a){return arguments.length?(d=d3.functor(a),b):d},b},a.utils.inheritOptions=function(b,c){var d=Object.getOwnPropertyNames(c._options||{}),e=Object.getOwnPropertyNames(c._calls||{}),f=c._inherited||[],g=c._d3options||[],h=d.concat(e).concat(f).concat(g);h.unshift(c),h.unshift(b),d3.rebind.apply(this,h),b._inherited=a.utils.arrayUnique(d.concat(e).concat(f).concat(d).concat(b._inherited||[])),b._d3options=a.utils.arrayUnique(g.concat(b._d3options||[]))},a.utils.initSVG=function(a){a.classed({"nvd3-svg":!0})},a.utils.sanitizeHeight=function(a,b){return a||parseInt(b.style("height"),10)||400},a.utils.sanitizeWidth=function(a,b){return a||parseInt(b.style("width"),10)||960},a.utils.availableHeight=function(b,c,d){return a.utils.sanitizeHeight(b,c)-d.top-d.bottom},a.utils.availableWidth=function(b,c,d){return a.utils.sanitizeWidth(b,c)-d.left-d.right},a.utils.noData=function(b,c){var d=b.options(),e=d.margin(),f=d.noData(),g=null==f?["No Data Available."]:[f],h=a.utils.availableHeight(d.height(),c,e),i=a.utils.availableWidth(d.width(),c,e),j=e.left+i/2,k=e.top+h/2;c.selectAll("g").remove();var l=c.selectAll(".nv-noData").data(g);l.enter().append("text").attr("class","nvd3 nv-noData").attr("dy","-.7em").style("text-anchor","middle"),l.attr("x",j).attr("y",k).text(function(a){return a})},a.models.axis=function(){"use strict";function b(g){return s.reset(),g.each(function(b){var g=d3.select(this);a.utils.initSVG(g);var p=g.selectAll("g.nv-wrap.nv-axis").data([b]),q=p.enter().append("g").attr("class","nvd3 nv-wrap nv-axis"),t=(q.append("g"),p.select("g"));null!==n?c.ticks(n):("top"==c.orient()||"bottom"==c.orient())&&c.ticks(Math.abs(d.range()[1]-d.range()[0])/100),t.watchTransition(s,"axis").call(c),r=r||c.scale();var u=c.tickFormat();null==u&&(u=r.tickFormat());var v=t.selectAll("text.nv-axislabel").data([h||null]);v.exit().remove();var w,x,y;switch(c.orient()){case"top":v.enter().append("text").attr("class","nv-axislabel"),y=d.range().length<2?0:2===d.range().length?d.range()[1]:d.range()[d.range().length-1]+(d.range()[1]-d.range()[0]),v.attr("text-anchor","middle").attr("y",0).attr("x",y/2),i&&(x=p.selectAll("g.nv-axisMaxMin").data(d.domain()),x.enter().append("g").attr("class",function(a,b){return["nv-axisMaxMin","nv-axisMaxMin-x",0==b?"nv-axisMin-x":"nv-axisMax-x"].join(" ")}).append("text"),x.exit().remove(),x.attr("transform",function(b){return"translate("+a.utils.NaNtoZero(d(b))+",0)"}).select("text").attr("dy","-0.5em").attr("y",-c.tickPadding()).attr("text-anchor","middle").text(function(a){var b=u(a);return(""+b).match("NaN")?"":b}),x.watchTransition(s,"min-max top").attr("transform",function(b,c){return"translate("+a.utils.NaNtoZero(d.range()[c])+",0)"}));break;case"bottom":w=o+36;var z=30,A=0,B=t.selectAll("g").select("text"),C="";if(j%360){B.each(function(){var a=this.getBoundingClientRect(),b=a.width;A=a.height,b>z&&(z=b)}),C="rotate("+j+" 0,"+(A/2+c.tickPadding())+")";var D=Math.abs(Math.sin(j*Math.PI/180));w=(D?D*z:z)+30,B.attr("transform",C).style("text-anchor",j%360>0?"start":"end")}v.enter().append("text").attr("class","nv-axislabel"),y=d.range().length<2?0:2===d.range().length?d.range()[1]:d.range()[d.range().length-1]+(d.range()[1]-d.range()[0]),v.attr("text-anchor","middle").attr("y",w).attr("x",y/2),i&&(x=p.selectAll("g.nv-axisMaxMin").data([d.domain()[0],d.domain()[d.domain().length-1]]),x.enter().append("g").attr("class",function(a,b){return["nv-axisMaxMin","nv-axisMaxMin-x",0==b?"nv-axisMin-x":"nv-axisMax-x"].join(" ")}).append("text"),x.exit().remove(),x.attr("transform",function(b){return"translate("+a.utils.NaNtoZero(d(b)+(m?d.rangeBand()/2:0))+",0)"}).select("text").attr("dy",".71em").attr("y",c.tickPadding()).attr("transform",C).style("text-anchor",j?j%360>0?"start":"end":"middle").text(function(a){var b=u(a);return(""+b).match("NaN")?"":b}),x.watchTransition(s,"min-max bottom").attr("transform",function(b){return"translate("+a.utils.NaNtoZero(d(b)+(m?d.rangeBand()/2:0))+",0)"})),l&&B.attr("transform",function(a,b){return"translate(0,"+(b%2==0?"0":"12")+")"});break;case"right":v.enter().append("text").attr("class","nv-axislabel"),v.style("text-anchor",k?"middle":"begin").attr("transform",k?"rotate(90)":"").attr("y",k?-Math.max(e.right,f)+12:-10).attr("x",k?d3.max(d.range())/2:c.tickPadding()),i&&(x=p.selectAll("g.nv-axisMaxMin").data(d.domain()),x.enter().append("g").attr("class",function(a,b){return["nv-axisMaxMin","nv-axisMaxMin-y",0==b?"nv-axisMin-y":"nv-axisMax-y"].join(" ")}).append("text").style("opacity",0),x.exit().remove(),x.attr("transform",function(b){return"translate(0,"+a.utils.NaNtoZero(d(b))+")"}).select("text").attr("dy",".32em").attr("y",0).attr("x",c.tickPadding()).style("text-anchor","start").text(function(a){var b=u(a);return(""+b).match("NaN")?"":b}),x.watchTransition(s,"min-max right").attr("transform",function(b,c){return"translate(0,"+a.utils.NaNtoZero(d.range()[c])+")"}).select("text").style("opacity",1));break;case"left":v.enter().append("text").attr("class","nv-axislabel"),v.style("text-anchor",k?"middle":"end").attr("transform",k?"rotate(-90)":"").attr("y",k?-Math.max(e.left,f)+25-(o||0):-10).attr("x",k?-d3.max(d.range())/2:-c.tickPadding()),i&&(x=p.selectAll("g.nv-axisMaxMin").data(d.domain()),x.enter().append("g").attr("class",function(a,b){return["nv-axisMaxMin","nv-axisMaxMin-y",0==b?"nv-axisMin-y":"nv-axisMax-y"].join(" ")}).append("text").style("opacity",0),x.exit().remove(),x.attr("transform",function(b){return"translate(0,"+a.utils.NaNtoZero(r(b))+")"}).select("text").attr("dy",".32em").attr("y",0).attr("x",-c.tickPadding()).attr("text-anchor","end").text(function(a){var b=u(a);return(""+b).match("NaN")?"":b}),x.watchTransition(s,"min-max right").attr("transform",function(b,c){return"translate(0,"+a.utils.NaNtoZero(d.range()[c])+")"}).select("text").style("opacity",1))}if(v.text(function(a){return a}),!i||"left"!==c.orient()&&"right"!==c.orient()||(t.selectAll("g").each(function(a){d3.select(this).select("text").attr("opacity",1),(d(a)d.range()[0]-10)&&((a>1e-10||-1e-10>a)&&d3.select(this).attr("opacity",0),d3.select(this).select("text").attr("opacity",0))}),d.domain()[0]==d.domain()[1]&&0==d.domain()[0]&&p.selectAll("g.nv-axisMaxMin").style("opacity",function(a,b){return b?0:1})),i&&("top"===c.orient()||"bottom"===c.orient())){var E=[];p.selectAll("g.nv-axisMaxMin").each(function(a,b){try{E.push(b?d(a)-this.getBoundingClientRect().width-4:d(a)+this.getBoundingClientRect().width+4)}catch(c){E.push(b?d(a)-4:d(a)+4)}}),t.selectAll("g").each(function(a){(d(a)E[1])&&(a>1e-10||-1e-10>a?d3.select(this).remove():d3.select(this).select("text").remove())})}t.selectAll(".tick").filter(function(a){return!parseFloat(Math.round(1e5*a)/1e6)&&void 0!==a}).classed("zero",!0),r=d.copy()}),s.renderEnd("axis immediate"),b}var c=d3.svg.axis(),d=d3.scale.linear(),e={top:0,right:0,bottom:0,left:0},f=75,g=60,h=null,i=!0,j=0,k=!0,l=!1,m=!1,n=null,o=0,p=250,q=d3.dispatch("renderEnd");c.scale(d).orient("bottom").tickFormat(function(a){return a});var r,s=a.utils.renderWatch(q,p);return b.axis=c,b.dispatch=q,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{axisLabelDistance:{get:function(){return o},set:function(a){o=a}},staggerLabels:{get:function(){return l},set:function(a){l=a}},rotateLabels:{get:function(){return j},set:function(a){j=a}},rotateYLabel:{get:function(){return k},set:function(a){k=a}},showMaxMin:{get:function(){return i},set:function(a){i=a}},axisLabel:{get:function(){return h},set:function(a){h=a}},height:{get:function(){return g},set:function(a){g=a}},ticks:{get:function(){return n},set:function(a){n=a}},width:{get:function(){return f},set:function(a){f=a}},margin:{get:function(){return e},set:function(a){e.top=void 0!==a.top?a.top:e.top,e.right=void 0!==a.right?a.right:e.right,e.bottom=void 0!==a.bottom?a.bottom:e.bottom,e.left=void 0!==a.left?a.left:e.left}},duration:{get:function(){return p},set:function(a){p=a,s.reset(p)}},scale:{get:function(){return d},set:function(e){d=e,c.scale(d),m="function"==typeof d.rangeBands,a.utils.inheritOptionsD3(b,d,["domain","range","rangeBand","rangeBands"])}}}),a.utils.initOptions(b),a.utils.inheritOptionsD3(b,c,["orient","tickValues","tickSubdivide","tickSize","tickPadding","tickFormat"]),a.utils.inheritOptionsD3(b,d,["domain","range","rangeBand","rangeBands"]),b},a.models.boxPlot=function(){"use strict";function b(l){return v.reset(),l.each(function(b){var l=j-i.left-i.right,p=k-i.top-i.bottom;r=d3.select(this),a.utils.initSVG(r),m.domain(c||b.map(function(a,b){return o(a,b)})).rangeBands(e||[0,l],.1);var w=[];if(!d){var x=d3.min(b.map(function(a){var b=[];return b.push(a.values.Q1),a.values.hasOwnProperty("whisker_low")&&null!==a.values.whisker_low&&b.push(a.values.whisker_low),a.values.hasOwnProperty("outliers")&&null!==a.values.outliers&&(b=b.concat(a.values.outliers)),d3.min(b)})),y=d3.max(b.map(function(a){var b=[];return b.push(a.values.Q3),a.values.hasOwnProperty("whisker_high")&&null!==a.values.whisker_high&&b.push(a.values.whisker_high),a.values.hasOwnProperty("outliers")&&null!==a.values.outliers&&(b=b.concat(a.values.outliers)),d3.max(b)}));w=[x,y]}n.domain(d||w),n.range(f||[p,0]),g=g||m,h=h||n.copy().range([n(0),n(0)]);{var z=r.selectAll("g.nv-wrap").data([b]);z.enter().append("g").attr("class","nvd3 nv-wrap")}z.attr("transform","translate("+i.left+","+i.top+")");var A=z.selectAll(".nv-boxplot").data(function(a){return a}),B=A.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6);A.attr("class","nv-boxplot").attr("transform",function(a,b){return"translate("+(m(o(a,b))+.05*m.rangeBand())+", 0)"}).classed("hover",function(a){return a.hover}),A.watchTransition(v,"nv-boxplot: boxplots").style("stroke-opacity",1).style("fill-opacity",.75).delay(function(a,c){return c*t/b.length}).attr("transform",function(a,b){return"translate("+(m(o(a,b))+.05*m.rangeBand())+", 0)"}),A.exit().remove(),B.each(function(a,b){var c=d3.select(this);["low","high"].forEach(function(d){a.values.hasOwnProperty("whisker_"+d)&&null!==a.values["whisker_"+d]&&(c.append("line").style("stroke",a.color?a.color:q(a,b)).attr("class","nv-boxplot-whisker nv-boxplot-"+d),c.append("line").style("stroke",a.color?a.color:q(a,b)).attr("class","nv-boxplot-tick nv-boxplot-"+d))})});var C=A.selectAll(".nv-boxplot-outlier").data(function(a){return a.values.hasOwnProperty("outliers")&&null!==a.values.outliers?a.values.outliers:[]});C.enter().append("circle").style("fill",function(a,b,c){return q(a,c)}).style("stroke",function(a,b,c){return q(a,c)}).on("mouseover",function(a,b,c){d3.select(this).classed("hover",!0),s.elementMouseover({series:{key:a,color:q(a,c)},e:d3.event})}).on("mouseout",function(a,b,c){d3.select(this).classed("hover",!1),s.elementMouseout({series:{key:a,color:q(a,c)},e:d3.event})}).on("mousemove",function(){s.elementMousemove({e:d3.event})}),C.attr("class","nv-boxplot-outlier"),C.watchTransition(v,"nv-boxplot: nv-boxplot-outlier").attr("cx",.45*m.rangeBand()).attr("cy",function(a){return n(a)}).attr("r","3"),C.exit().remove();var D=function(){return null===u?.9*m.rangeBand():Math.min(75,.9*m.rangeBand())},E=function(){return.45*m.rangeBand()-D()/2},F=function(){return.45*m.rangeBand()+D()/2};["low","high"].forEach(function(a){var b="low"===a?"Q1":"Q3";A.select("line.nv-boxplot-whisker.nv-boxplot-"+a).watchTransition(v,"nv-boxplot: boxplots").attr("x1",.45*m.rangeBand()).attr("y1",function(b){return n(b.values["whisker_"+a])}).attr("x2",.45*m.rangeBand()).attr("y2",function(a){return n(a.values[b])}),A.select("line.nv-boxplot-tick.nv-boxplot-"+a).watchTransition(v,"nv-boxplot: boxplots").attr("x1",E).attr("y1",function(b){return n(b.values["whisker_"+a])}).attr("x2",F).attr("y2",function(b){return n(b.values["whisker_"+a])})}),["low","high"].forEach(function(a){B.selectAll(".nv-boxplot-"+a).on("mouseover",function(b,c,d){d3.select(this).classed("hover",!0),s.elementMouseover({series:{key:b.values["whisker_"+a],color:q(b,d)},e:d3.event})}).on("mouseout",function(b,c,d){d3.select(this).classed("hover",!1),s.elementMouseout({series:{key:b.values["whisker_"+a],color:q(b,d)},e:d3.event})}).on("mousemove",function(){s.elementMousemove({e:d3.event})})}),B.append("rect").attr("class","nv-boxplot-box").on("mouseover",function(a,b){d3.select(this).classed("hover",!0),s.elementMouseover({key:a.label,value:a.label,series:[{key:"Q3",value:a.values.Q3,color:a.color||q(a,b)},{key:"Q2",value:a.values.Q2,color:a.color||q(a,b)},{key:"Q1",value:a.values.Q1,color:a.color||q(a,b)}],data:a,index:b,e:d3.event})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),s.elementMouseout({key:a.label,value:a.label,series:[{key:"Q3",value:a.values.Q3,color:a.color||q(a,b)},{key:"Q2",value:a.values.Q2,color:a.color||q(a,b)},{key:"Q1",value:a.values.Q1,color:a.color||q(a,b)}],data:a,index:b,e:d3.event})}).on("mousemove",function(){s.elementMousemove({e:d3.event})}),A.select("rect.nv-boxplot-box").watchTransition(v,"nv-boxplot: boxes").attr("y",function(a){return n(a.values.Q3)}).attr("width",D).attr("x",E).attr("height",function(a){return Math.abs(n(a.values.Q3)-n(a.values.Q1))||1}).style("fill",function(a,b){return a.color||q(a,b)}).style("stroke",function(a,b){return a.color||q(a,b)}),B.append("line").attr("class","nv-boxplot-median"),A.select("line.nv-boxplot-median").watchTransition(v,"nv-boxplot: boxplots line").attr("x1",E).attr("y1",function(a){return n(a.values.Q2)}).attr("x2",F).attr("y2",function(a){return n(a.values.Q2)}),g=m.copy(),h=n.copy()}),v.renderEnd("nv-boxplot immediate"),b}var c,d,e,f,g,h,i={top:0,right:0,bottom:0,left:0},j=960,k=500,l=Math.floor(1e4*Math.random()),m=d3.scale.ordinal(),n=d3.scale.linear(),o=function(a){return a.x},p=function(a){return a.y},q=a.utils.defaultColor(),r=null,s=d3.dispatch("elementMouseover","elementMouseout","elementMousemove","renderEnd"),t=250,u=null,v=a.utils.renderWatch(s,t);return b.dispatch=s,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return j},set:function(a){j=a}},height:{get:function(){return k},set:function(a){k=a}},maxBoxWidth:{get:function(){return u},set:function(a){u=a}},x:{get:function(){return o},set:function(a){o=a}},y:{get:function(){return p},set:function(a){p=a}},xScale:{get:function(){return m},set:function(a){m=a}},yScale:{get:function(){return n},set:function(a){n=a}},xDomain:{get:function(){return c},set:function(a){c=a}},yDomain:{get:function(){return d},set:function(a){d=a}},xRange:{get:function(){return e},set:function(a){e=a}},yRange:{get:function(){return f},set:function(a){f=a}},id:{get:function(){return l},set:function(a){l=a}},margin:{get:function(){return i},set:function(a){i.top=void 0!==a.top?a.top:i.top,i.right=void 0!==a.right?a.right:i.right,i.bottom=void 0!==a.bottom?a.bottom:i.bottom,i.left=void 0!==a.left?a.left:i.left}},color:{get:function(){return q},set:function(b){q=a.utils.getColor(b)}},duration:{get:function(){return t},set:function(a){t=a,v.reset(t)}}}),a.utils.initOptions(b),b},a.models.boxPlotChart=function(){"use strict";function b(k){return t.reset(),t.models(e),l&&t.models(f),m&&t.models(g),k.each(function(k){var p=d3.select(this);a.utils.initSVG(p);var t=(i||parseInt(p.style("width"))||960)-h.left-h.right,u=(j||parseInt(p.style("height"))||400)-h.top-h.bottom;if(b.update=function(){r.beforeUpdate(),p.transition().duration(s).call(b)},b.container=this,!(k&&k.length&&k.filter(function(a){return a.values.hasOwnProperty("Q1")&&a.values.hasOwnProperty("Q2")&&a.values.hasOwnProperty("Q3")}).length)){var v=p.selectAll(".nv-noData").data([q]);return v.enter().append("text").attr("class","nvd3 nv-noData").attr("dy","-.7em").style("text-anchor","middle"),v.attr("x",h.left+t/2).attr("y",h.top+u/2).text(function(a){return a}),b}p.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale().clamp(!0);var w=p.selectAll("g.nv-wrap.nv-boxPlotWithAxes").data([k]),x=w.enter().append("g").attr("class","nvd3 nv-wrap nv-boxPlotWithAxes").append("g"),y=x.append("defs"),z=w.select("g"); -x.append("g").attr("class","nv-x nv-axis"),x.append("g").attr("class","nv-y nv-axis").append("g").attr("class","nv-zeroLine").append("line"),x.append("g").attr("class","nv-barsWrap"),z.attr("transform","translate("+h.left+","+h.top+")"),n&&z.select(".nv-y.nv-axis").attr("transform","translate("+t+",0)"),e.width(t).height(u);var A=z.select(".nv-barsWrap").datum(k.filter(function(a){return!a.disabled}));if(A.transition().call(e),y.append("clipPath").attr("id","nv-x-label-clip-"+e.id()).append("rect"),z.select("#nv-x-label-clip-"+e.id()+" rect").attr("width",c.rangeBand()*(o?2:1)).attr("height",16).attr("x",-c.rangeBand()/(o?1:2)),l){f.scale(c).ticks(a.utils.calcTicksX(t/100,k)).tickSize(-u,0),z.select(".nv-x.nv-axis").attr("transform","translate(0,"+d.range()[0]+")"),z.select(".nv-x.nv-axis").call(f);var B=z.select(".nv-x.nv-axis").selectAll("g");o&&B.selectAll("text").attr("transform",function(a,b,c){return"translate(0,"+(c%2==0?"5":"17")+")"})}m&&(g.scale(d).ticks(Math.floor(u/36)).tickSize(-t,0),z.select(".nv-y.nv-axis").call(g)),z.select(".nv-zeroLine line").attr("x1",0).attr("x2",t).attr("y1",d(0)).attr("y2",d(0))}),t.renderEnd("nv-boxplot chart immediate"),b}var c,d,e=a.models.boxPlot(),f=a.models.axis(),g=a.models.axis(),h={top:15,right:10,bottom:50,left:60},i=null,j=null,k=a.utils.getColor(),l=!0,m=!0,n=!1,o=!1,p=a.models.tooltip(),q="No Data Available.",r=d3.dispatch("tooltipShow","tooltipHide","beforeUpdate","renderEnd"),s=250;f.orient("bottom").showMaxMin(!1).tickFormat(function(a){return a}),g.orient(n?"right":"left").tickFormat(d3.format(",.1f")),p.duration(0);var t=a.utils.renderWatch(r,s);return e.dispatch.on("elementMouseover.tooltip",function(a){p.data(a).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(a){p.data(a).hidden(!0)}),e.dispatch.on("elementMousemove.tooltip",function(){p.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=r,b.boxplot=e,b.xAxis=f,b.yAxis=g,b.tooltip=p,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return i},set:function(a){i=a}},height:{get:function(){return j},set:function(a){j=a}},staggerLabels:{get:function(){return o},set:function(a){o=a}},showXAxis:{get:function(){return l},set:function(a){l=a}},showYAxis:{get:function(){return m},set:function(a){m=a}},tooltips:{get:function(){return tooltips},set:function(a){tooltips=a}},tooltipContent:{get:function(){return p},set:function(a){p=a}},noData:{get:function(){return q},set:function(a){q=a}},margin:{get:function(){return h},set:function(a){h.top=void 0!==a.top?a.top:h.top,h.right=void 0!==a.right?a.right:h.right,h.bottom=void 0!==a.bottom?a.bottom:h.bottom,h.left=void 0!==a.left?a.left:h.left}},duration:{get:function(){return s},set:function(a){s=a,t.reset(s),e.duration(s),f.duration(s),g.duration(s)}},color:{get:function(){return k},set:function(b){k=a.utils.getColor(b),e.color(k)}},rightAlignYAxis:{get:function(){return n},set:function(a){n=a,g.orient(a?"right":"left")}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.bullet=function(){"use strict";function b(d){return d.each(function(b,d){var p=m-c.left-c.right,s=n-c.top-c.bottom;o=d3.select(this),a.utils.initSVG(o);{var t=f.call(this,b,d).slice().sort(d3.descending),u=g.call(this,b,d).slice().sort(d3.descending),v=h.call(this,b,d).slice().sort(d3.descending),w=i.call(this,b,d).slice(),x=j.call(this,b,d).slice(),y=k.call(this,b,d).slice(),z=d3.scale.linear().domain(d3.extent(d3.merge([l,t]))).range(e?[p,0]:[0,p]);this.__chart__||d3.scale.linear().domain([0,1/0]).range(z.range())}this.__chart__=z;var A=d3.min(t),B=d3.max(t),C=t[1],D=o.selectAll("g.nv-wrap.nv-bullet").data([b]),E=D.enter().append("g").attr("class","nvd3 nv-wrap nv-bullet"),F=E.append("g"),G=D.select("g");F.append("rect").attr("class","nv-range nv-rangeMax"),F.append("rect").attr("class","nv-range nv-rangeAvg"),F.append("rect").attr("class","nv-range nv-rangeMin"),F.append("rect").attr("class","nv-measure"),D.attr("transform","translate("+c.left+","+c.top+")");var H=function(a){return Math.abs(z(a)-z(0))},I=function(a){return z(0>a?a:0)};G.select("rect.nv-rangeMax").attr("height",s).attr("width",H(B>0?B:A)).attr("x",I(B>0?B:A)).datum(B>0?B:A),G.select("rect.nv-rangeAvg").attr("height",s).attr("width",H(C)).attr("x",I(C)).datum(C),G.select("rect.nv-rangeMin").attr("height",s).attr("width",H(B)).attr("x",I(B)).attr("width",H(B>0?A:B)).attr("x",I(B>0?A:B)).datum(B>0?A:B),G.select("rect.nv-measure").style("fill",q).attr("height",s/3).attr("y",s/3).attr("width",0>v?z(0)-z(v[0]):z(v[0])-z(0)).attr("x",I(v)).on("mouseover",function(){r.elementMouseover({value:v[0],label:y[0]||"Current",color:d3.select(this).style("fill")})}).on("mousemove",function(){r.elementMousemove({value:v[0],label:y[0]||"Current",color:d3.select(this).style("fill")})}).on("mouseout",function(){r.elementMouseout({value:v[0],label:y[0]||"Current",color:d3.select(this).style("fill")})});var J=s/6,K=u.map(function(a,b){return{value:a,label:x[b]}});F.selectAll("path.nv-markerTriangle").data(K).enter().append("path").attr("class","nv-markerTriangle").attr("transform",function(a){return"translate("+z(a.value)+","+s/2+")"}).attr("d","M0,"+J+"L"+J+","+-J+" "+-J+","+-J+"Z").on("mouseover",function(a){r.elementMouseover({value:a.value,label:a.label||"Previous",color:d3.select(this).style("fill"),pos:[z(a.value),s/2]})}).on("mousemove",function(a){r.elementMousemove({value:a.value,label:a.label||"Previous",color:d3.select(this).style("fill")})}).on("mouseout",function(a){r.elementMouseout({value:a.value,label:a.label||"Previous",color:d3.select(this).style("fill")})}),D.selectAll(".nv-range").on("mouseover",function(a,b){var c=w[b]||(b?1==b?"Mean":"Minimum":"Maximum");r.elementMouseover({value:a,label:c,color:d3.select(this).style("fill")})}).on("mousemove",function(){r.elementMousemove({value:v[0],label:y[0]||"Previous",color:d3.select(this).style("fill")})}).on("mouseout",function(a,b){var c=w[b]||(b?1==b?"Mean":"Minimum":"Maximum");r.elementMouseout({value:a,label:c,color:d3.select(this).style("fill")})})}),b}var c={top:0,right:0,bottom:0,left:0},d="left",e=!1,f=function(a){return a.ranges},g=function(a){return a.markers?a.markers:[0]},h=function(a){return a.measures},i=function(a){return a.rangeLabels?a.rangeLabels:[]},j=function(a){return a.markerLabels?a.markerLabels:[]},k=function(a){return a.measureLabels?a.measureLabels:[]},l=[0],m=380,n=30,o=null,p=null,q=a.utils.getColor(["#1f77b4"]),r=d3.dispatch("elementMouseover","elementMouseout","elementMousemove");return b.dispatch=r,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{ranges:{get:function(){return f},set:function(a){f=a}},markers:{get:function(){return g},set:function(a){g=a}},measures:{get:function(){return h},set:function(a){h=a}},forceX:{get:function(){return l},set:function(a){l=a}},width:{get:function(){return m},set:function(a){m=a}},height:{get:function(){return n},set:function(a){n=a}},tickFormat:{get:function(){return p},set:function(a){p=a}},margin:{get:function(){return c},set:function(a){c.top=void 0!==a.top?a.top:c.top,c.right=void 0!==a.right?a.right:c.right,c.bottom=void 0!==a.bottom?a.bottom:c.bottom,c.left=void 0!==a.left?a.left:c.left}},orient:{get:function(){return d},set:function(a){d=a,e="right"==d||"bottom"==d}},color:{get:function(){return q},set:function(b){q=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.bulletChart=function(){"use strict";function b(d){return d.each(function(e,o){var p=d3.select(this);a.utils.initSVG(p);var q=a.utils.availableWidth(k,p,g),r=l-g.top-g.bottom;if(b.update=function(){b(d)},b.container=this,!e||!h.call(this,e,o))return a.utils.noData(b,p),b;p.selectAll(".nv-noData").remove();var s=h.call(this,e,o).slice().sort(d3.descending),t=i.call(this,e,o).slice().sort(d3.descending),u=j.call(this,e,o).slice().sort(d3.descending),v=p.selectAll("g.nv-wrap.nv-bulletChart").data([e]),w=v.enter().append("g").attr("class","nvd3 nv-wrap nv-bulletChart"),x=w.append("g"),y=v.select("g");x.append("g").attr("class","nv-bulletWrap"),x.append("g").attr("class","nv-titles"),v.attr("transform","translate("+g.left+","+g.top+")");var z=d3.scale.linear().domain([0,Math.max(s[0],t[0],u[0])]).range(f?[q,0]:[0,q]),A=this.__chart__||d3.scale.linear().domain([0,1/0]).range(z.range());this.__chart__=z;var B=x.select(".nv-titles").append("g").attr("text-anchor","end").attr("transform","translate(-6,"+(l-g.top-g.bottom)/2+")");B.append("text").attr("class","nv-title").text(function(a){return a.title}),B.append("text").attr("class","nv-subtitle").attr("dy","1em").text(function(a){return a.subtitle}),c.width(q).height(r);var C=y.select(".nv-bulletWrap");d3.transition(C).call(c);var D=m||z.tickFormat(q/100),E=y.selectAll("g.nv-tick").data(z.ticks(n?n:q/50),function(a){return this.textContent||D(a)}),F=E.enter().append("g").attr("class","nv-tick").attr("transform",function(a){return"translate("+A(a)+",0)"}).style("opacity",1e-6);F.append("line").attr("y1",r).attr("y2",7*r/6),F.append("text").attr("text-anchor","middle").attr("dy","1em").attr("y",7*r/6).text(D);var G=d3.transition(E).attr("transform",function(a){return"translate("+z(a)+",0)"}).style("opacity",1);G.select("line").attr("y1",r).attr("y2",7*r/6),G.select("text").attr("y",7*r/6),d3.transition(E.exit()).attr("transform",function(a){return"translate("+z(a)+",0)"}).style("opacity",1e-6).remove()}),d3.timer.flush(),b}var c=a.models.bullet(),d=a.models.tooltip(),e="left",f=!1,g={top:5,right:40,bottom:20,left:120},h=function(a){return a.ranges},i=function(a){return a.markers?a.markers:[0]},j=function(a){return a.measures},k=null,l=55,m=null,n=null,o=null,p=d3.dispatch("tooltipShow","tooltipHide");return d.duration(0).headerEnabled(!1),c.dispatch.on("elementMouseover.tooltip",function(a){a.series={key:a.label,value:a.value,color:a.color},d.data(a).hidden(!1)}),c.dispatch.on("elementMouseout.tooltip",function(){d.hidden(!0)}),c.dispatch.on("elementMousemove.tooltip",function(){d.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.bullet=c,b.dispatch=p,b.tooltip=d,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{ranges:{get:function(){return h},set:function(a){h=a}},markers:{get:function(){return i},set:function(a){i=a}},measures:{get:function(){return j},set:function(a){j=a}},width:{get:function(){return k},set:function(a){k=a}},height:{get:function(){return l},set:function(a){l=a}},tickFormat:{get:function(){return m},set:function(a){m=a}},ticks:{get:function(){return n},set:function(a){n=a}},noData:{get:function(){return o},set:function(a){o=a}},tooltips:{get:function(){return d.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),d.enabled(!!b)}},tooltipContent:{get:function(){return d.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),d.contentGenerator(b)}},margin:{get:function(){return g},set:function(a){g.top=void 0!==a.top?a.top:g.top,g.right=void 0!==a.right?a.right:g.right,g.bottom=void 0!==a.bottom?a.bottom:g.bottom,g.left=void 0!==a.left?a.left:g.left}},orient:{get:function(){return e},set:function(a){e=a,f="right"==e||"bottom"==e}}}),a.utils.inheritOptions(b,c),a.utils.initOptions(b),b},a.models.candlestickBar=function(){"use strict";function b(x){return x.each(function(b){c=d3.select(this);var x=a.utils.availableWidth(i,c,h),y=a.utils.availableHeight(j,c,h);a.utils.initSVG(c);var A=x/b[0].values.length*.45;l.domain(d||d3.extent(b[0].values.map(n).concat(t))),l.range(v?f||[.5*x/b[0].values.length,x*(b[0].values.length-.5)/b[0].values.length]:f||[5+A/2,x-A/2-5]),m.domain(e||[d3.min(b[0].values.map(s).concat(u)),d3.max(b[0].values.map(r).concat(u))]).range(g||[y,0]),l.domain()[0]===l.domain()[1]&&l.domain(l.domain()[0]?[l.domain()[0]-.01*l.domain()[0],l.domain()[1]+.01*l.domain()[1]]:[-1,1]),m.domain()[0]===m.domain()[1]&&m.domain(m.domain()[0]?[m.domain()[0]+.01*m.domain()[0],m.domain()[1]-.01*m.domain()[1]]:[-1,1]);var B=d3.select(this).selectAll("g.nv-wrap.nv-candlestickBar").data([b[0].values]),C=B.enter().append("g").attr("class","nvd3 nv-wrap nv-candlestickBar"),D=C.append("defs"),E=C.append("g"),F=B.select("g");E.append("g").attr("class","nv-ticks"),B.attr("transform","translate("+h.left+","+h.top+")"),c.on("click",function(a,b){z.chartClick({data:a,index:b,pos:d3.event,id:k})}),D.append("clipPath").attr("id","nv-chart-clip-path-"+k).append("rect"),B.select("#nv-chart-clip-path-"+k+" rect").attr("width",x).attr("height",y),F.attr("clip-path",w?"url(#nv-chart-clip-path-"+k+")":"");var G=B.select(".nv-ticks").selectAll(".nv-tick").data(function(a){return a});G.exit().remove();{var H=G.enter().append("g").attr("class",function(a,b,c){return(p(a,b)>q(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b});H.append("line").attr("class","nv-candlestick-lines").attr("transform",function(a,b){return"translate("+l(n(a,b))+",0)"}).attr("x1",0).attr("y1",function(a,b){return m(r(a,b))}).attr("x2",0).attr("y2",function(a,b){return m(s(a,b))}),H.append("rect").attr("class","nv-candlestick-rects nv-bars").attr("transform",function(a,b){return"translate("+(l(n(a,b))-A/2)+","+(m(o(a,b))-(p(a,b)>q(a,b)?m(q(a,b))-m(p(a,b)):0))+")"}).attr("x",0).attr("y",0).attr("width",A).attr("height",function(a,b){var c=p(a,b),d=q(a,b);return c>d?m(d)-m(c):m(c)-m(d)})}c.selectAll(".nv-candlestick-lines").transition().attr("transform",function(a,b){return"translate("+l(n(a,b))+",0)"}).attr("x1",0).attr("y1",function(a,b){return m(r(a,b))}).attr("x2",0).attr("y2",function(a,b){return m(s(a,b))}),c.selectAll(".nv-candlestick-rects").transition().attr("transform",function(a,b){return"translate("+(l(n(a,b))-A/2)+","+(m(o(a,b))-(p(a,b)>q(a,b)?m(q(a,b))-m(p(a,b)):0))+")"}).attr("x",0).attr("y",0).attr("width",A).attr("height",function(a,b){var c=p(a,b),d=q(a,b);return c>d?m(d)-m(c):m(c)-m(d)})}),b}var c,d,e,f,g,h={top:0,right:0,bottom:0,left:0},i=null,j=null,k=Math.floor(1e4*Math.random()),l=d3.scale.linear(),m=d3.scale.linear(),n=function(a){return a.x},o=function(a){return a.y},p=function(a){return a.open},q=function(a){return a.close},r=function(a){return a.high},s=function(a){return a.low},t=[],u=[],v=!1,w=!0,x=a.utils.defaultColor(),y=!1,z=d3.dispatch("tooltipShow","tooltipHide","stateChange","changeState","renderEnd","chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove");return b.highlightPoint=function(a,d){b.clearHighlights(),c.select(".nv-candlestickBar .nv-tick-0-"+a).classed("hover",d)},b.clearHighlights=function(){c.select(".nv-candlestickBar .nv-tick.hover").classed("hover",!1)},b.dispatch=z,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return i},set:function(a){i=a}},height:{get:function(){return j},set:function(a){j=a}},xScale:{get:function(){return l},set:function(a){l=a}},yScale:{get:function(){return m},set:function(a){m=a}},xDomain:{get:function(){return d},set:function(a){d=a}},yDomain:{get:function(){return e},set:function(a){e=a}},xRange:{get:function(){return f},set:function(a){f=a}},yRange:{get:function(){return g},set:function(a){g=a}},forceX:{get:function(){return t},set:function(a){t=a}},forceY:{get:function(){return u},set:function(a){u=a}},padData:{get:function(){return v},set:function(a){v=a}},clipEdge:{get:function(){return w},set:function(a){w=a}},id:{get:function(){return k},set:function(a){k=a}},interactive:{get:function(){return y},set:function(a){y=a}},x:{get:function(){return n},set:function(a){n=a}},y:{get:function(){return o},set:function(a){o=a}},open:{get:function(){return p()},set:function(a){p=a}},close:{get:function(){return q()},set:function(a){q=a}},high:{get:function(){return r},set:function(a){r=a}},low:{get:function(){return s},set:function(a){s=a}},margin:{get:function(){return h},set:function(a){h.top=void 0!=a.top?a.top:h.top,h.right=void 0!=a.right?a.right:h.right,h.bottom=void 0!=a.bottom?a.bottom:h.bottom,h.left=void 0!=a.left?a.left:h.left}},color:{get:function(){return x},set:function(b){x=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.cumulativeLineChart=function(){"use strict";function b(l){return H.reset(),H.models(f),r&&H.models(g),s&&H.models(h),l.each(function(l){function A(){d3.select(b.container).style("cursor","ew-resize")}function E(){G.x=d3.event.x,G.i=Math.round(F.invert(G.x)),K()}function H(){d3.select(b.container).style("cursor","auto"),y.index=G.i,C.stateChange(y)}function K(){bb.data([G]);var a=b.duration();b.duration(0),b.update(),b.duration(a)}var L=d3.select(this);a.utils.initSVG(L),L.classed("nv-chart-"+x,!0);var M=this,N=a.utils.availableWidth(o,L,m),O=a.utils.availableHeight(p,L,m);if(b.update=function(){0===D?L.call(b):L.transition().duration(D).call(b)},b.container=this,y.setter(J(l),b.update).getter(I(l)).update(),y.disabled=l.map(function(a){return!!a.disabled}),!z){var P;z={};for(P in y)z[P]=y[P]instanceof Array?y[P].slice(0):y[P]}var Q=d3.behavior.drag().on("dragstart",A).on("drag",E).on("dragend",H);if(!(l&&l.length&&l.filter(function(a){return a.values.length}).length))return a.utils.noData(b,L),b;if(L.selectAll(".nv-noData").remove(),d=f.xScale(),e=f.yScale(),w)f.yDomain(null);else{var R=l.filter(function(a){return!a.disabled}).map(function(a){var b=d3.extent(a.values,f.y());return b[0]<-.95&&(b[0]=-.95),[(b[0]-b[1])/(1+b[1]),(b[1]-b[0])/(1+b[0])]}),S=[d3.min(R,function(a){return a[0]}),d3.max(R,function(a){return a[1]})];f.yDomain(S)}F.domain([0,l[0].values.length-1]).range([0,N]).clamp(!0);var l=c(G.i,l),T=v?"none":"all",U=L.selectAll("g.nv-wrap.nv-cumulativeLine").data([l]),V=U.enter().append("g").attr("class","nvd3 nv-wrap nv-cumulativeLine").append("g"),W=U.select("g");if(V.append("g").attr("class","nv-interactive"),V.append("g").attr("class","nv-x nv-axis").style("pointer-events","none"),V.append("g").attr("class","nv-y nv-axis"),V.append("g").attr("class","nv-background"),V.append("g").attr("class","nv-linesWrap").style("pointer-events",T),V.append("g").attr("class","nv-avgLinesWrap").style("pointer-events","none"),V.append("g").attr("class","nv-legendWrap"),V.append("g").attr("class","nv-controlsWrap"),q&&(i.width(N),W.select(".nv-legendWrap").datum(l).call(i),m.top!=i.height()&&(m.top=i.height(),O=a.utils.availableHeight(p,L,m)),W.select(".nv-legendWrap").attr("transform","translate(0,"+-m.top+")")),u){var X=[{key:"Re-scale y-axis",disabled:!w}];j.width(140).color(["#444","#444","#444"]).rightAlign(!1).margin({top:5,right:0,bottom:5,left:20}),W.select(".nv-controlsWrap").datum(X).attr("transform","translate(0,"+-m.top+")").call(j)}U.attr("transform","translate("+m.left+","+m.top+")"),t&&W.select(".nv-y.nv-axis").attr("transform","translate("+N+",0)");var Y=l.filter(function(a){return a.tempDisabled});U.select(".tempDisabled").remove(),Y.length&&U.append("text").attr("class","tempDisabled").attr("x",N/2).attr("y","-.71em").style("text-anchor","end").text(Y.map(function(a){return a.key}).join(", ")+" values cannot be calculated for this time period."),v&&(k.width(N).height(O).margin({left:m.left,top:m.top}).svgContainer(L).xScale(d),U.select(".nv-interactive").call(k)),V.select(".nv-background").append("rect"),W.select(".nv-background rect").attr("width",N).attr("height",O),f.y(function(a){return a.display.y}).width(N).height(O).color(l.map(function(a,b){return a.color||n(a,b)}).filter(function(a,b){return!l[b].disabled&&!l[b].tempDisabled}));var Z=W.select(".nv-linesWrap").datum(l.filter(function(a){return!a.disabled&&!a.tempDisabled}));Z.call(f),l.forEach(function(a,b){a.seriesIndex=b});var $=l.filter(function(a){return!a.disabled&&!!B(a)}),_=W.select(".nv-avgLinesWrap").selectAll("line").data($,function(a){return a.key}),ab=function(a){var b=e(B(a));return 0>b?0:b>O?O:b};_.enter().append("line").style("stroke-width",2).style("stroke-dasharray","10,10").style("stroke",function(a){return f.color()(a,a.seriesIndex)}).attr("x1",0).attr("x2",N).attr("y1",ab).attr("y2",ab),_.style("stroke-opacity",function(a){var b=e(B(a));return 0>b||b>O?0:1}).attr("x1",0).attr("x2",N).attr("y1",ab).attr("y2",ab),_.exit().remove();var bb=Z.selectAll(".nv-indexLine").data([G]);bb.enter().append("rect").attr("class","nv-indexLine").attr("width",3).attr("x",-2).attr("fill","red").attr("fill-opacity",.5).style("pointer-events","all").call(Q),bb.attr("transform",function(a){return"translate("+F(a.i)+",0)"}).attr("height",O),r&&(g.scale(d)._ticks(a.utils.calcTicksX(N/70,l)).tickSize(-O,0),W.select(".nv-x.nv-axis").attr("transform","translate(0,"+e.range()[0]+")"),W.select(".nv-x.nv-axis").call(g)),s&&(h.scale(e)._ticks(a.utils.calcTicksY(O/36,l)).tickSize(-N,0),W.select(".nv-y.nv-axis").call(h)),W.select(".nv-background rect").on("click",function(){G.x=d3.mouse(this)[0],G.i=Math.round(F.invert(G.x)),y.index=G.i,C.stateChange(y),K()}),f.dispatch.on("elementClick",function(a){G.i=a.pointIndex,G.x=F(G.i),y.index=G.i,C.stateChange(y),K()}),j.dispatch.on("legendClick",function(a){a.disabled=!a.disabled,w=!a.disabled,y.rescaleY=w,C.stateChange(y),b.update()}),i.dispatch.on("stateChange",function(a){for(var c in a)y[c]=a[c];C.stateChange(y),b.update()}),k.dispatch.on("elementMousemove",function(c){f.clearHighlights();var d,e,i,j=[];if(l.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(g,h){e=a.interactiveBisect(g.values,c.pointXValue,b.x()),f.highlightPoint(h,e,!0);var k=g.values[e];"undefined"!=typeof k&&("undefined"==typeof d&&(d=k),"undefined"==typeof i&&(i=b.xScale()(b.x()(k,e))),j.push({key:g.key,value:b.y()(k,e),color:n(g,g.seriesIndex)}))}),j.length>2){var o=b.yScale().invert(c.mouseY),p=Math.abs(b.yScale().domain()[0]-b.yScale().domain()[1]),q=.03*p,r=a.nearestValueIndex(j.map(function(a){return a.value}),o,q);null!==r&&(j[r].highlight=!0)}var s=g.tickFormat()(b.x()(d,e),e);k.tooltip.position({left:i+m.left,top:c.mouseY+m.top}).chartContainer(M.parentNode).valueFormatter(function(a){return h.tickFormat()(a)}).data({value:s,series:j})(),k.renderGuideLine(i)}),k.dispatch.on("elementMouseout",function(){f.clearHighlights()}),C.on("changeState",function(a){"undefined"!=typeof a.disabled&&(l.forEach(function(b,c){b.disabled=a.disabled[c]}),y.disabled=a.disabled),"undefined"!=typeof a.index&&(G.i=a.index,G.x=F(G.i),y.index=a.index,bb.data([G])),"undefined"!=typeof a.rescaleY&&(w=a.rescaleY),b.update()})}),H.renderEnd("cumulativeLineChart immediate"),b}function c(a,b){return K||(K=f.y()),b.map(function(b){if(!b.values)return b;var c=b.values[a];if(null==c)return b;var d=K(c,a);return-.95>d&&!E?(b.tempDisabled=!0,b):(b.tempDisabled=!1,b.values=b.values.map(function(a,b){return a.display={y:(K(a,b)-d)/(1+d)},a}),b)})}var d,e,f=a.models.line(),g=a.models.axis(),h=a.models.axis(),i=a.models.legend(),j=a.models.legend(),k=a.interactiveGuideline(),l=a.models.tooltip(),m={top:30,right:30,bottom:50,left:60},n=a.utils.defaultColor(),o=null,p=null,q=!0,r=!0,s=!0,t=!1,u=!0,v=!1,w=!0,x=f.id(),y=a.utils.state(),z=null,A=null,B=function(a){return a.average},C=d3.dispatch("stateChange","changeState","renderEnd"),D=250,E=!1;y.index=0,y.rescaleY=w,g.orient("bottom").tickPadding(7),h.orient(t?"right":"left"),l.valueFormatter(function(a,b){return h.tickFormat()(a,b)}).headerFormatter(function(a,b){return g.tickFormat()(a,b)}),j.updateState(!1);var F=d3.scale.linear(),G={i:0,x:0},H=a.utils.renderWatch(C,D),I=function(a){return function(){return{active:a.map(function(a){return!a.disabled}),index:G.i,rescaleY:w}}},J=function(a){return function(b){void 0!==b.index&&(G.i=b.index),void 0!==b.rescaleY&&(w=b.rescaleY),void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};f.dispatch.on("elementMouseover.tooltip",function(a){var c={x:b.x()(a.point),y:b.y()(a.point),color:a.point.color};a.point=c,l.data(a).position(a.pos).hidden(!1)}),f.dispatch.on("elementMouseout.tooltip",function(){l.hidden(!0)});var K=null;return b.dispatch=C,b.lines=f,b.legend=i,b.controls=j,b.xAxis=g,b.yAxis=h,b.interactiveLayer=k,b.state=y,b.tooltip=l,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return o},set:function(a){o=a}},height:{get:function(){return p},set:function(a){p=a}},rescaleY:{get:function(){return w},set:function(a){w=a}},showControls:{get:function(){return u},set:function(a){u=a}},showLegend:{get:function(){return q},set:function(a){q=a}},average:{get:function(){return B},set:function(a){B=a}},defaultState:{get:function(){return z},set:function(a){z=a}},noData:{get:function(){return A},set:function(a){A=a}},showXAxis:{get:function(){return r},set:function(a){r=a}},showYAxis:{get:function(){return s},set:function(a){s=a}},noErrorCheck:{get:function(){return E},set:function(a){E=a}},tooltips:{get:function(){return l.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),l.enabled(!!b)}},tooltipContent:{get:function(){return l.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),l.contentGenerator(b)}},margin:{get:function(){return m},set:function(a){m.top=void 0!==a.top?a.top:m.top,m.right=void 0!==a.right?a.right:m.right,m.bottom=void 0!==a.bottom?a.bottom:m.bottom,m.left=void 0!==a.left?a.left:m.left}},color:{get:function(){return n},set:function(b){n=a.utils.getColor(b),i.color(n)}},useInteractiveGuideline:{get:function(){return v},set:function(a){v=a,a===!0&&(b.interactive(!1),b.useVoronoi(!1))}},rightAlignYAxis:{get:function(){return t},set:function(a){t=a,h.orient(a?"right":"left")}},duration:{get:function(){return D},set:function(a){D=a,f.duration(D),g.duration(D),h.duration(D),H.reset(D)}}}),a.utils.inheritOptions(b,f),a.utils.initOptions(b),b},a.models.discreteBar=function(){"use strict";function b(m){return y.reset(),m.each(function(b){var m=k-j.left-j.right,x=l-j.top-j.bottom;c=d3.select(this),a.utils.initSVG(c),b.forEach(function(a,b){a.values.forEach(function(a){a.series=b})});var z=d&&e?[]:b.map(function(a){return a.values.map(function(a,b){return{x:p(a,b),y:q(a,b),y0:a.y0}})});n.domain(d||d3.merge(z).map(function(a){return a.x})).rangeBands(f||[0,m],.1),o.domain(e||d3.extent(d3.merge(z).map(function(a){return a.y}).concat(r))),o.range(t?g||[x-(o.domain()[0]<0?12:0),o.domain()[1]>0?12:0]:g||[x,0]),h=h||n,i=i||o.copy().range([o(0),o(0)]);{var A=c.selectAll("g.nv-wrap.nv-discretebar").data([b]),B=A.enter().append("g").attr("class","nvd3 nv-wrap nv-discretebar"),C=B.append("g");A.select("g")}C.append("g").attr("class","nv-groups"),A.attr("transform","translate("+j.left+","+j.top+")");var D=A.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});D.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),D.exit().watchTransition(y,"discreteBar: exit groups").style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),D.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}),D.watchTransition(y,"discreteBar: groups").style("stroke-opacity",1).style("fill-opacity",.75);var E=D.selectAll("g.nv-bar").data(function(a){return a.values});E.exit().remove();var F=E.enter().append("g").attr("transform",function(a,b){return"translate("+(n(p(a,b))+.05*n.rangeBand())+", "+o(0)+")"}).on("mouseover",function(a,b){d3.select(this).classed("hover",!0),v.elementMouseover({data:a,index:b,color:d3.select(this).style("fill")})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),v.elementMouseout({data:a,index:b,color:d3.select(this).style("fill")})}).on("mousemove",function(a,b){v.elementMousemove({data:a,index:b,color:d3.select(this).style("fill")})}).on("click",function(a,b){v.elementClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()}).on("dblclick",function(a,b){v.elementDblClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()});F.append("rect").attr("height",0).attr("width",.9*n.rangeBand()/b.length),t?(F.append("text").attr("text-anchor","middle"),E.select("text").text(function(a,b){return u(q(a,b))}).watchTransition(y,"discreteBar: bars text").attr("x",.9*n.rangeBand()/2).attr("y",function(a,b){return q(a,b)<0?o(q(a,b))-o(0)+12:-4})):E.selectAll("text").remove(),E.attr("class",function(a,b){return q(a,b)<0?"nv-bar negative":"nv-bar positive"}).style("fill",function(a,b){return a.color||s(a,b)}).style("stroke",function(a,b){return a.color||s(a,b)}).select("rect").attr("class",w).watchTransition(y,"discreteBar: bars rect").attr("width",.9*n.rangeBand()/b.length),E.watchTransition(y,"discreteBar: bars").attr("transform",function(a,b){var c=n(p(a,b))+.05*n.rangeBand(),d=q(a,b)<0?o(0):o(0)-o(q(a,b))<1?o(0)-1:o(q(a,b));return"translate("+c+", "+d+")"}).select("rect").attr("height",function(a,b){return Math.max(Math.abs(o(q(a,b))-o(e&&e[0]||0))||1)}),h=n.copy(),i=o.copy()}),y.renderEnd("discreteBar immediate"),b}var c,d,e,f,g,h,i,j={top:0,right:0,bottom:0,left:0},k=960,l=500,m=Math.floor(1e4*Math.random()),n=d3.scale.ordinal(),o=d3.scale.linear(),p=function(a){return a.x},q=function(a){return a.y},r=[0],s=a.utils.defaultColor(),t=!1,u=d3.format(",.2f"),v=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove","renderEnd"),w="discreteBar",x=250,y=a.utils.renderWatch(v,x);return b.dispatch=v,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return k},set:function(a){k=a}},height:{get:function(){return l},set:function(a){l=a}},forceY:{get:function(){return r},set:function(a){r=a}},showValues:{get:function(){return t},set:function(a){t=a}},x:{get:function(){return p},set:function(a){p=a}},y:{get:function(){return q},set:function(a){q=a}},xScale:{get:function(){return n},set:function(a){n=a}},yScale:{get:function(){return o},set:function(a){o=a}},xDomain:{get:function(){return d},set:function(a){d=a}},yDomain:{get:function(){return e},set:function(a){e=a}},xRange:{get:function(){return f},set:function(a){f=a}},yRange:{get:function(){return g},set:function(a){g=a}},valueFormat:{get:function(){return u},set:function(a){u=a}},id:{get:function(){return m},set:function(a){m=a}},rectClass:{get:function(){return w},set:function(a){w=a}},margin:{get:function(){return j},set:function(a){j.top=void 0!==a.top?a.top:j.top,j.right=void 0!==a.right?a.right:j.right,j.bottom=void 0!==a.bottom?a.bottom:j.bottom,j.left=void 0!==a.left?a.left:j.left}},color:{get:function(){return s},set:function(b){s=a.utils.getColor(b)}},duration:{get:function(){return x},set:function(a){x=a,y.reset(x)}}}),a.utils.initOptions(b),b},a.models.discreteBarChart=function(){"use strict";function b(h){return t.reset(),t.models(e),m&&t.models(f),n&&t.models(g),h.each(function(h){var l=d3.select(this);a.utils.initSVG(l);var q=a.utils.availableWidth(j,l,i),t=a.utils.availableHeight(k,l,i);if(b.update=function(){r.beforeUpdate(),l.transition().duration(s).call(b)},b.container=this,!(h&&h.length&&h.filter(function(a){return a.values.length}).length))return a.utils.noData(b,l),b;l.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale().clamp(!0);var u=l.selectAll("g.nv-wrap.nv-discreteBarWithAxes").data([h]),v=u.enter().append("g").attr("class","nvd3 nv-wrap nv-discreteBarWithAxes").append("g"),w=v.append("defs"),x=u.select("g");v.append("g").attr("class","nv-x nv-axis"),v.append("g").attr("class","nv-y nv-axis").append("g").attr("class","nv-zeroLine").append("line"),v.append("g").attr("class","nv-barsWrap"),x.attr("transform","translate("+i.left+","+i.top+")"),o&&x.select(".nv-y.nv-axis").attr("transform","translate("+q+",0)"),e.width(q).height(t);var y=x.select(".nv-barsWrap").datum(h.filter(function(a){return!a.disabled}));if(y.transition().call(e),w.append("clipPath").attr("id","nv-x-label-clip-"+e.id()).append("rect"),x.select("#nv-x-label-clip-"+e.id()+" rect").attr("width",c.rangeBand()*(p?2:1)).attr("height",16).attr("x",-c.rangeBand()/(p?1:2)),m){f.scale(c)._ticks(a.utils.calcTicksX(q/100,h)).tickSize(-t,0),x.select(".nv-x.nv-axis").attr("transform","translate(0,"+(d.range()[0]+(e.showValues()&&d.domain()[0]<0?16:0))+")"),x.select(".nv-x.nv-axis").call(f); -var z=x.select(".nv-x.nv-axis").selectAll("g");p&&z.selectAll("text").attr("transform",function(a,b,c){return"translate(0,"+(c%2==0?"5":"17")+")"})}n&&(g.scale(d)._ticks(a.utils.calcTicksY(t/36,h)).tickSize(-q,0),x.select(".nv-y.nv-axis").call(g)),x.select(".nv-zeroLine line").attr("x1",0).attr("x2",q).attr("y1",d(0)).attr("y2",d(0))}),t.renderEnd("discreteBar chart immediate"),b}var c,d,e=a.models.discreteBar(),f=a.models.axis(),g=a.models.axis(),h=a.models.tooltip(),i={top:15,right:10,bottom:50,left:60},j=null,k=null,l=a.utils.getColor(),m=!0,n=!0,o=!1,p=!1,q=null,r=d3.dispatch("beforeUpdate","renderEnd"),s=250;f.orient("bottom").showMaxMin(!1).tickFormat(function(a){return a}),g.orient(o?"right":"left").tickFormat(d3.format(",.1f")),h.duration(0).headerEnabled(!1).valueFormatter(function(a,b){return g.tickFormat()(a,b)}).keyFormatter(function(a,b){return f.tickFormat()(a,b)});var t=a.utils.renderWatch(r,s);return e.dispatch.on("elementMouseover.tooltip",function(a){a.series={key:b.x()(a.data),value:b.y()(a.data),color:a.color},h.data(a).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(){h.hidden(!0)}),e.dispatch.on("elementMousemove.tooltip",function(){h.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=r,b.discretebar=e,b.xAxis=f,b.yAxis=g,b.tooltip=h,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return j},set:function(a){j=a}},height:{get:function(){return k},set:function(a){k=a}},staggerLabels:{get:function(){return p},set:function(a){p=a}},showXAxis:{get:function(){return m},set:function(a){m=a}},showYAxis:{get:function(){return n},set:function(a){n=a}},noData:{get:function(){return q},set:function(a){q=a}},tooltips:{get:function(){return h.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),h.enabled(!!b)}},tooltipContent:{get:function(){return h.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),h.contentGenerator(b)}},margin:{get:function(){return i},set:function(a){i.top=void 0!==a.top?a.top:i.top,i.right=void 0!==a.right?a.right:i.right,i.bottom=void 0!==a.bottom?a.bottom:i.bottom,i.left=void 0!==a.left?a.left:i.left}},duration:{get:function(){return s},set:function(a){s=a,t.reset(s),e.duration(s),f.duration(s),g.duration(s)}},color:{get:function(){return l},set:function(b){l=a.utils.getColor(b),e.color(l)}},rightAlignYAxis:{get:function(){return o},set:function(a){o=a,g.orient(a?"right":"left")}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.distribution=function(){"use strict";function b(k){return m.reset(),k.each(function(b){var k=(e-("x"===g?d.left+d.right:d.top+d.bottom),"x"==g?"y":"x"),l=d3.select(this);a.utils.initSVG(l),c=c||j;var n=l.selectAll("g.nv-distribution").data([b]),o=n.enter().append("g").attr("class","nvd3 nv-distribution"),p=(o.append("g"),n.select("g"));n.attr("transform","translate("+d.left+","+d.top+")");var q=p.selectAll("g.nv-dist").data(function(a){return a},function(a){return a.key});q.enter().append("g"),q.attr("class",function(a,b){return"nv-dist nv-series-"+b}).style("stroke",function(a,b){return i(a,b)});var r=q.selectAll("line.nv-dist"+g).data(function(a){return a.values});r.enter().append("line").attr(g+"1",function(a,b){return c(h(a,b))}).attr(g+"2",function(a,b){return c(h(a,b))}),m.transition(q.exit().selectAll("line.nv-dist"+g),"dist exit").attr(g+"1",function(a,b){return j(h(a,b))}).attr(g+"2",function(a,b){return j(h(a,b))}).style("stroke-opacity",0).remove(),r.attr("class",function(a,b){return"nv-dist"+g+" nv-dist"+g+"-"+b}).attr(k+"1",0).attr(k+"2",f),m.transition(r,"dist").attr(g+"1",function(a,b){return j(h(a,b))}).attr(g+"2",function(a,b){return j(h(a,b))}),c=j.copy()}),m.renderEnd("distribution immediate"),b}var c,d={top:0,right:0,bottom:0,left:0},e=400,f=8,g="x",h=function(a){return a[g]},i=a.utils.defaultColor(),j=d3.scale.linear(),k=250,l=d3.dispatch("renderEnd"),m=a.utils.renderWatch(l,k);return b.options=a.utils.optionsFunc.bind(b),b.dispatch=l,b.margin=function(a){return arguments.length?(d.top="undefined"!=typeof a.top?a.top:d.top,d.right="undefined"!=typeof a.right?a.right:d.right,d.bottom="undefined"!=typeof a.bottom?a.bottom:d.bottom,d.left="undefined"!=typeof a.left?a.left:d.left,b):d},b.width=function(a){return arguments.length?(e=a,b):e},b.axis=function(a){return arguments.length?(g=a,b):g},b.size=function(a){return arguments.length?(f=a,b):f},b.getData=function(a){return arguments.length?(h=d3.functor(a),b):h},b.scale=function(a){return arguments.length?(j=a,b):j},b.color=function(c){return arguments.length?(i=a.utils.getColor(c),b):i},b.duration=function(a){return arguments.length?(k=a,m.reset(k),b):k},b},a.models.furiousLegend=function(){"use strict";function b(p){function q(a,b){return"furious"!=o?"#000":m?a.disengaged?g(a,b):"#fff":m?void 0:a.disabled?g(a,b):"#fff"}function r(a,b){return m&&"furious"==o?a.disengaged?"#fff":g(a,b):a.disabled?"#fff":g(a,b)}return p.each(function(b){var p=d-c.left-c.right,s=d3.select(this);a.utils.initSVG(s);var t=s.selectAll("g.nv-legend").data([b]),u=(t.enter().append("g").attr("class","nvd3 nv-legend").append("g"),t.select("g"));t.attr("transform","translate("+c.left+","+c.top+")");var v,w=u.selectAll(".nv-series").data(function(a){return"furious"!=o?a:a.filter(function(a){return m?!0:!a.disengaged})}),x=w.enter().append("g").attr("class","nv-series");if("classic"==o)x.append("circle").style("stroke-width",2).attr("class","nv-legend-symbol").attr("r",5),v=w.select("circle");else if("furious"==o){x.append("rect").style("stroke-width",2).attr("class","nv-legend-symbol").attr("rx",3).attr("ry",3),v=w.select("rect"),x.append("g").attr("class","nv-check-box").property("innerHTML",'').attr("transform","translate(-10,-8)scale(0.5)");var y=w.select(".nv-check-box");y.each(function(a,b){d3.select(this).selectAll("path").attr("stroke",q(a,b))})}x.append("text").attr("text-anchor","start").attr("class","nv-legend-text").attr("dy",".32em").attr("dx","8");var z=w.select("text.nv-legend-text");w.on("mouseover",function(a,b){n.legendMouseover(a,b)}).on("mouseout",function(a,b){n.legendMouseout(a,b)}).on("click",function(a,b){n.legendClick(a,b);var c=w.data();if(k){if("classic"==o)l?(c.forEach(function(a){a.disabled=!0}),a.disabled=!1):(a.disabled=!a.disabled,c.every(function(a){return a.disabled})&&c.forEach(function(a){a.disabled=!1}));else if("furious"==o)if(m)a.disengaged=!a.disengaged,a.userDisabled=void 0==a.userDisabled?!!a.disabled:a.userDisabled,a.disabled=a.disengaged||a.userDisabled;else if(!m){a.disabled=!a.disabled,a.userDisabled=a.disabled;var d=c.filter(function(a){return!a.disengaged});d.every(function(a){return a.userDisabled})&&c.forEach(function(a){a.disabled=a.userDisabled=!1})}n.stateChange({disabled:c.map(function(a){return!!a.disabled}),disengaged:c.map(function(a){return!!a.disengaged})})}}).on("dblclick",function(a,b){if(("furious"!=o||!m)&&(n.legendDblclick(a,b),k)){var c=w.data();c.forEach(function(a){a.disabled=!0,"furious"==o&&(a.userDisabled=a.disabled)}),a.disabled=!1,"furious"==o&&(a.userDisabled=a.disabled),n.stateChange({disabled:c.map(function(a){return!!a.disabled})})}}),w.classed("nv-disabled",function(a){return a.userDisabled}),w.exit().remove(),z.attr("fill",q).text(f);var A;switch(o){case"furious":A=23;break;case"classic":A=20}if(h){var B=[];w.each(function(){var b,c=d3.select(this).select("text");try{if(b=c.node().getComputedTextLength(),0>=b)throw Error()}catch(d){b=a.utils.calcApproxTextWidth(c)}B.push(b+i)});for(var C=0,D=0,E=[];p>D&&Cp&&C>1;){E=[],C--;for(var F=0;F(E[F%C]||0)&&(E[F%C]=B[F]);D=E.reduce(function(a,b){return a+b})}for(var G=[],H=0,I=0;C>H;H++)G[H]=I,I+=E[H];w.attr("transform",function(a,b){return"translate("+G[b%C]+","+(5+Math.floor(b/C)*A)+")"}),j?u.attr("transform","translate("+(d-c.right-D)+","+c.top+")"):u.attr("transform","translate(0,"+c.top+")"),e=c.top+c.bottom+Math.ceil(B.length/C)*A}else{var J,K=5,L=5,M=0;w.attr("transform",function(){var a=d3.select(this).select("text").node().getComputedTextLength()+i;return J=L,dM&&(M=L),"translate("+J+","+K+")"}),u.attr("transform","translate("+(d-c.right-M)+","+c.top+")"),e=c.top+c.bottom+K+15}"furious"==o&&v.attr("width",function(a,b){return z[0][b].getComputedTextLength()+27}).attr("height",18).attr("y",-9).attr("x",-15),v.style("fill",r).style("stroke",function(a,b){return a.color||g(a,b)})}),b}var c={top:5,right:0,bottom:5,left:0},d=400,e=20,f=function(a){return a.key},g=a.utils.getColor(),h=!0,i=28,j=!0,k=!0,l=!1,m=!1,n=d3.dispatch("legendClick","legendDblclick","legendMouseover","legendMouseout","stateChange"),o="classic";return b.dispatch=n,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return d},set:function(a){d=a}},height:{get:function(){return e},set:function(a){e=a}},key:{get:function(){return f},set:function(a){f=a}},align:{get:function(){return h},set:function(a){h=a}},rightAlign:{get:function(){return j},set:function(a){j=a}},padding:{get:function(){return i},set:function(a){i=a}},updateState:{get:function(){return k},set:function(a){k=a}},radioButtonMode:{get:function(){return l},set:function(a){l=a}},expanded:{get:function(){return m},set:function(a){m=a}},vers:{get:function(){return o},set:function(a){o=a}},margin:{get:function(){return c},set:function(a){c.top=void 0!==a.top?a.top:c.top,c.right=void 0!==a.right?a.right:c.right,c.bottom=void 0!==a.bottom?a.bottom:c.bottom,c.left=void 0!==a.left?a.left:c.left}},color:{get:function(){return g},set:function(b){g=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.historicalBar=function(){"use strict";function b(x){return x.each(function(b){w.reset(),k=d3.select(this);var x=a.utils.availableWidth(h,k,g),y=a.utils.availableHeight(i,k,g);a.utils.initSVG(k),l.domain(c||d3.extent(b[0].values.map(n).concat(p))),l.range(r?e||[.5*x/b[0].values.length,x*(b[0].values.length-.5)/b[0].values.length]:e||[0,x]),m.domain(d||d3.extent(b[0].values.map(o).concat(q))).range(f||[y,0]),l.domain()[0]===l.domain()[1]&&l.domain(l.domain()[0]?[l.domain()[0]-.01*l.domain()[0],l.domain()[1]+.01*l.domain()[1]]:[-1,1]),m.domain()[0]===m.domain()[1]&&m.domain(m.domain()[0]?[m.domain()[0]+.01*m.domain()[0],m.domain()[1]-.01*m.domain()[1]]:[-1,1]);var z=k.selectAll("g.nv-wrap.nv-historicalBar-"+j).data([b[0].values]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-historicalBar-"+j),B=A.append("defs"),C=A.append("g"),D=z.select("g");C.append("g").attr("class","nv-bars"),z.attr("transform","translate("+g.left+","+g.top+")"),k.on("click",function(a,b){u.chartClick({data:a,index:b,pos:d3.event,id:j})}),B.append("clipPath").attr("id","nv-chart-clip-path-"+j).append("rect"),z.select("#nv-chart-clip-path-"+j+" rect").attr("width",x).attr("height",y),D.attr("clip-path",s?"url(#nv-chart-clip-path-"+j+")":"");var E=z.select(".nv-bars").selectAll(".nv-bar").data(function(a){return a},function(a,b){return n(a,b)});E.exit().remove(),E.enter().append("rect").attr("x",0).attr("y",function(b,c){return a.utils.NaNtoZero(m(Math.max(0,o(b,c))))}).attr("height",function(b,c){return a.utils.NaNtoZero(Math.abs(m(o(b,c))-m(0)))}).attr("transform",function(a,c){return"translate("+(l(n(a,c))-x/b[0].values.length*.45)+",0)"}).on("mouseover",function(a,b){v&&(d3.select(this).classed("hover",!0),u.elementMouseover({data:a,index:b,color:d3.select(this).style("fill")}))}).on("mouseout",function(a,b){v&&(d3.select(this).classed("hover",!1),u.elementMouseout({data:a,index:b,color:d3.select(this).style("fill")}))}).on("mousemove",function(a,b){v&&u.elementMousemove({data:a,index:b,color:d3.select(this).style("fill")})}).on("click",function(a,b){v&&(u.elementClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation())}).on("dblclick",function(a,b){v&&(u.elementDblClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation())}),E.attr("fill",function(a,b){return t(a,b)}).attr("class",function(a,b,c){return(o(a,b)<0?"nv-bar negative":"nv-bar positive")+" nv-bar-"+c+"-"+b}).watchTransition(w,"bars").attr("transform",function(a,c){return"translate("+(l(n(a,c))-x/b[0].values.length*.45)+",0)"}).attr("width",x/b[0].values.length*.9),E.watchTransition(w,"bars").attr("y",function(b,c){var d=o(b,c)<0?m(0):m(0)-m(o(b,c))<1?m(0)-1:m(o(b,c));return a.utils.NaNtoZero(d)}).attr("height",function(b,c){return a.utils.NaNtoZero(Math.max(Math.abs(m(o(b,c))-m(0)),1))})}),w.renderEnd("historicalBar immediate"),b}var c,d,e,f,g={top:0,right:0,bottom:0,left:0},h=null,i=null,j=Math.floor(1e4*Math.random()),k=null,l=d3.scale.linear(),m=d3.scale.linear(),n=function(a){return a.x},o=function(a){return a.y},p=[],q=[0],r=!1,s=!0,t=a.utils.defaultColor(),u=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove","renderEnd"),v=!0,w=a.utils.renderWatch(u,0);return b.highlightPoint=function(a,b){k.select(".nv-bars .nv-bar-0-"+a).classed("hover",b)},b.clearHighlights=function(){k.select(".nv-bars .nv-bar.hover").classed("hover",!1)},b.dispatch=u,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return h},set:function(a){h=a}},height:{get:function(){return i},set:function(a){i=a}},forceX:{get:function(){return p},set:function(a){p=a}},forceY:{get:function(){return q},set:function(a){q=a}},padData:{get:function(){return r},set:function(a){r=a}},x:{get:function(){return n},set:function(a){n=a}},y:{get:function(){return o},set:function(a){o=a}},xScale:{get:function(){return l},set:function(a){l=a}},yScale:{get:function(){return m},set:function(a){m=a}},xDomain:{get:function(){return c},set:function(a){c=a}},yDomain:{get:function(){return d},set:function(a){d=a}},xRange:{get:function(){return e},set:function(a){e=a}},yRange:{get:function(){return f},set:function(a){f=a}},clipEdge:{get:function(){return s},set:function(a){s=a}},id:{get:function(){return j},set:function(a){j=a}},interactive:{get:function(){return v},set:function(a){v=a}},margin:{get:function(){return g},set:function(a){g.top=void 0!==a.top?a.top:g.top,g.right=void 0!==a.right?a.right:g.right,g.bottom=void 0!==a.bottom?a.bottom:g.bottom,g.left=void 0!==a.left?a.left:g.left}},color:{get:function(){return t},set:function(b){t=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.historicalBarChart=function(b){"use strict";function c(b){return b.each(function(k){z.reset(),z.models(f),q&&z.models(g),r&&z.models(h);var w=d3.select(this),A=this;a.utils.initSVG(w);var B=a.utils.availableWidth(n,w,l),C=a.utils.availableHeight(o,w,l);if(c.update=function(){w.transition().duration(y).call(c)},c.container=this,u.disabled=k.map(function(a){return!!a.disabled}),!v){var D;v={};for(D in u)v[D]=u[D]instanceof Array?u[D].slice(0):u[D]}if(!(k&&k.length&&k.filter(function(a){return a.values.length}).length))return a.utils.noData(c,w),c;w.selectAll(".nv-noData").remove(),d=f.xScale(),e=f.yScale();var E=w.selectAll("g.nv-wrap.nv-historicalBarChart").data([k]),F=E.enter().append("g").attr("class","nvd3 nv-wrap nv-historicalBarChart").append("g"),G=E.select("g");F.append("g").attr("class","nv-x nv-axis"),F.append("g").attr("class","nv-y nv-axis"),F.append("g").attr("class","nv-barsWrap"),F.append("g").attr("class","nv-legendWrap"),F.append("g").attr("class","nv-interactive"),p&&(i.width(B),G.select(".nv-legendWrap").datum(k).call(i),l.top!=i.height()&&(l.top=i.height(),C=a.utils.availableHeight(o,w,l)),E.select(".nv-legendWrap").attr("transform","translate(0,"+-l.top+")")),E.attr("transform","translate("+l.left+","+l.top+")"),s&&G.select(".nv-y.nv-axis").attr("transform","translate("+B+",0)"),t&&(j.width(B).height(C).margin({left:l.left,top:l.top}).svgContainer(w).xScale(d),E.select(".nv-interactive").call(j)),f.width(B).height(C).color(k.map(function(a,b){return a.color||m(a,b)}).filter(function(a,b){return!k[b].disabled}));var H=G.select(".nv-barsWrap").datum(k.filter(function(a){return!a.disabled}));H.transition().call(f),q&&(g.scale(d)._ticks(a.utils.calcTicksX(B/100,k)).tickSize(-C,0),G.select(".nv-x.nv-axis").attr("transform","translate(0,"+e.range()[0]+")"),G.select(".nv-x.nv-axis").transition().call(g)),r&&(h.scale(e)._ticks(a.utils.calcTicksY(C/36,k)).tickSize(-B,0),G.select(".nv-y.nv-axis").transition().call(h)),j.dispatch.on("elementMousemove",function(b){f.clearHighlights();var d,e,i,n=[];k.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(g){e=a.interactiveBisect(g.values,b.pointXValue,c.x()),f.highlightPoint(e,!0);var h=g.values[e];void 0!==h&&(void 0===d&&(d=h),void 0===i&&(i=c.xScale()(c.x()(h,e))),n.push({key:g.key,value:c.y()(h,e),color:m(g,g.seriesIndex),data:g.values[e]}))});var o=g.tickFormat()(c.x()(d,e));j.tooltip.position({left:i+l.left,top:b.mouseY+l.top}).chartContainer(A.parentNode).valueFormatter(function(a){return h.tickFormat()(a)}).data({value:o,index:e,series:n})(),j.renderGuideLine(i)}),j.dispatch.on("elementMouseout",function(){x.tooltipHide(),f.clearHighlights()}),i.dispatch.on("legendClick",function(a){a.disabled=!a.disabled,k.filter(function(a){return!a.disabled}).length||k.map(function(a){return a.disabled=!1,E.selectAll(".nv-series").classed("disabled",!1),a}),u.disabled=k.map(function(a){return!!a.disabled}),x.stateChange(u),b.transition().call(c)}),i.dispatch.on("legendDblclick",function(a){k.forEach(function(a){a.disabled=!0}),a.disabled=!1,u.disabled=k.map(function(a){return!!a.disabled}),x.stateChange(u),c.update()}),x.on("changeState",function(a){"undefined"!=typeof a.disabled&&(k.forEach(function(b,c){b.disabled=a.disabled[c]}),u.disabled=a.disabled),c.update()})}),z.renderEnd("historicalBarChart immediate"),c}var d,e,f=b||a.models.historicalBar(),g=a.models.axis(),h=a.models.axis(),i=a.models.legend(),j=a.interactiveGuideline(),k=a.models.tooltip(),l={top:30,right:90,bottom:50,left:90},m=a.utils.defaultColor(),n=null,o=null,p=!1,q=!0,r=!0,s=!1,t=!1,u={},v=null,w=null,x=d3.dispatch("tooltipHide","stateChange","changeState","renderEnd"),y=250;g.orient("bottom").tickPadding(7),h.orient(s?"right":"left"),k.duration(0).headerEnabled(!1).valueFormatter(function(a,b){return h.tickFormat()(a,b)}).headerFormatter(function(a,b){return g.tickFormat()(a,b)});var z=a.utils.renderWatch(x,0);return f.dispatch.on("elementMouseover.tooltip",function(a){a.series={key:c.x()(a.data),value:c.y()(a.data),color:a.color},k.data(a).hidden(!1)}),f.dispatch.on("elementMouseout.tooltip",function(){k.hidden(!0)}),f.dispatch.on("elementMousemove.tooltip",function(){k.position({top:d3.event.pageY,left:d3.event.pageX})()}),c.dispatch=x,c.bars=f,c.legend=i,c.xAxis=g,c.yAxis=h,c.interactiveLayer=j,c.tooltip=k,c.options=a.utils.optionsFunc.bind(c),c._options=Object.create({},{width:{get:function(){return n},set:function(a){n=a}},height:{get:function(){return o},set:function(a){o=a}},showLegend:{get:function(){return p},set:function(a){p=a}},showXAxis:{get:function(){return q},set:function(a){q=a}},showYAxis:{get:function(){return r},set:function(a){r=a}},defaultState:{get:function(){return v},set:function(a){v=a}},noData:{get:function(){return w},set:function(a){w=a}},tooltips:{get:function(){return k.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),k.enabled(!!b)}},tooltipContent:{get:function(){return k.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),k.contentGenerator(b)}},margin:{get:function(){return l},set:function(a){l.top=void 0!==a.top?a.top:l.top,l.right=void 0!==a.right?a.right:l.right,l.bottom=void 0!==a.bottom?a.bottom:l.bottom,l.left=void 0!==a.left?a.left:l.left}},color:{get:function(){return m},set:function(b){m=a.utils.getColor(b),i.color(m),f.color(m)}},duration:{get:function(){return y},set:function(a){y=a,z.reset(y),h.duration(y),g.duration(y)}},rightAlignYAxis:{get:function(){return s},set:function(a){s=a,h.orient(a?"right":"left")}},useInteractiveGuideline:{get:function(){return t},set:function(a){t=a,a===!0&&c.interactive(!1)}}}),a.utils.inheritOptions(c,f),a.utils.initOptions(c),c},a.models.ohlcBarChart=function(){var b=a.models.historicalBarChart(a.models.ohlcBar());return b.useInteractiveGuideline(!0),b.interactiveLayer.tooltip.contentGenerator(function(a){var c=a.series[0].data,d=c.open'+a.value+"
      open:"+b.yAxis.tickFormat()(c.open)+"
      close:"+b.yAxis.tickFormat()(c.close)+"
      high"+b.yAxis.tickFormat()(c.high)+"
      low:"+b.yAxis.tickFormat()(c.low)+"
      "}),b},a.models.candlestickBarChart=function(){var b=a.models.historicalBarChart(a.models.candlestickBar());return b.useInteractiveGuideline(!0),b.interactiveLayer.tooltip.contentGenerator(function(a){var c=a.series[0].data,d=c.open'+a.value+"
      open:"+b.yAxis.tickFormat()(c.open)+"
      close:"+b.yAxis.tickFormat()(c.close)+"
      high"+b.yAxis.tickFormat()(c.high)+"
      low:"+b.yAxis.tickFormat()(c.low)+"
      "}),b},a.models.legend=function(){"use strict";function b(p){function q(a,b){return"furious"!=o?"#000":m?a.disengaged?"#000":"#fff":m?void 0:(a.color||(a.color=g(a,b)),a.disabled?a.color:"#fff")}function r(a,b){return m&&"furious"==o&&a.disengaged?"#eee":a.color||g(a,b)}function s(a){return m&&"furious"==o?1:a.disabled?0:1}return p.each(function(b){var g=d-c.left-c.right,p=d3.select(this);a.utils.initSVG(p);var t=p.selectAll("g.nv-legend").data([b]),u=t.enter().append("g").attr("class","nvd3 nv-legend").append("g"),v=t.select("g");t.attr("transform","translate("+c.left+","+c.top+")");var w,x,y=v.selectAll(".nv-series").data(function(a){return"furious"!=o?a:a.filter(function(a){return m?!0:!a.disengaged})}),z=y.enter().append("g").attr("class","nv-series");switch(o){case"furious":x=23;break;case"classic":x=20}if("classic"==o)z.append("circle").style("stroke-width",2).attr("class","nv-legend-symbol").attr("r",5),w=y.select("circle");else if("furious"==o){z.append("rect").style("stroke-width",2).attr("class","nv-legend-symbol").attr("rx",3).attr("ry",3),w=y.select(".nv-legend-symbol"),z.append("g").attr("class","nv-check-box").property("innerHTML",'').attr("transform","translate(-10,-8)scale(0.5)");var A=y.select(".nv-check-box");A.each(function(a,b){d3.select(this).selectAll("path").attr("stroke",q(a,b))})}z.append("text").attr("text-anchor","start").attr("class","nv-legend-text").attr("dy",".32em").attr("dx","8");var B=y.select("text.nv-legend-text");y.on("mouseover",function(a,b){n.legendMouseover(a,b)}).on("mouseout",function(a,b){n.legendMouseout(a,b)}).on("click",function(a,b){n.legendClick(a,b);var c=y.data();if(k){if("classic"==o)l?(c.forEach(function(a){a.disabled=!0}),a.disabled=!1):(a.disabled=!a.disabled,c.every(function(a){return a.disabled})&&c.forEach(function(a){a.disabled=!1}));else if("furious"==o)if(m)a.disengaged=!a.disengaged,a.userDisabled=void 0==a.userDisabled?!!a.disabled:a.userDisabled,a.disabled=a.disengaged||a.userDisabled;else if(!m){a.disabled=!a.disabled,a.userDisabled=a.disabled;var d=c.filter(function(a){return!a.disengaged});d.every(function(a){return a.userDisabled})&&c.forEach(function(a){a.disabled=a.userDisabled=!1})}n.stateChange({disabled:c.map(function(a){return!!a.disabled}),disengaged:c.map(function(a){return!!a.disengaged})})}}).on("dblclick",function(a,b){if(("furious"!=o||!m)&&(n.legendDblclick(a,b),k)){var c=y.data();c.forEach(function(a){a.disabled=!0,"furious"==o&&(a.userDisabled=a.disabled)}),a.disabled=!1,"furious"==o&&(a.userDisabled=a.disabled),n.stateChange({disabled:c.map(function(a){return!!a.disabled})})}}),y.classed("nv-disabled",function(a){return a.userDisabled}),y.exit().remove(),B.attr("fill",q).text(f);var C=0;if(h){var D=[];y.each(function(){var b,c=d3.select(this).select("text");try{if(b=c.node().getComputedTextLength(),0>=b)throw Error()}catch(d){b=a.utils.calcApproxTextWidth(c)}D.push(b+i)});var E=0,F=[];for(C=0;g>C&&Eg&&E>1;){F=[],E--;for(var G=0;G(F[G%E]||0)&&(F[G%E]=D[G]);C=F.reduce(function(a,b){return a+b})}for(var H=[],I=0,J=0;E>I;I++)H[I]=J,J+=F[I];y.attr("transform",function(a,b){return"translate("+H[b%E]+","+(5+Math.floor(b/E)*x)+")"}),j?v.attr("transform","translate("+(d-c.right-C)+","+c.top+")"):v.attr("transform","translate(0,"+c.top+")"),e=c.top+c.bottom+Math.ceil(D.length/E)*x}else{var K,L=5,M=5,N=0;y.attr("transform",function(){var a=d3.select(this).select("text").node().getComputedTextLength()+i;return K=M,dN&&(N=M),K+N>C&&(C=K+N),"translate("+K+","+L+")"}),v.attr("transform","translate("+(d-c.right-N)+","+c.top+")"),e=c.top+c.bottom+L+15}if("furious"==o){w.attr("width",function(a,b){return B[0][b].getComputedTextLength()+27}).attr("height",18).attr("y",-9).attr("x",-15),u.insert("rect",":first-child").attr("class","nv-legend-bg").attr("fill","#eee").attr("opacity",0);var O=v.select(".nv-legend-bg");O.transition().duration(300).attr("x",-x).attr("width",C+x-12).attr("height",e+10).attr("y",-c.top-10).attr("opacity",m?1:0)}w.style("fill",r).style("fill-opacity",s).style("stroke",r)}),b}var c={top:5,right:0,bottom:5,left:0},d=400,e=20,f=function(a){return a.key},g=a.utils.getColor(),h=!0,i=32,j=!0,k=!0,l=!1,m=!1,n=d3.dispatch("legendClick","legendDblclick","legendMouseover","legendMouseout","stateChange"),o="classic";return b.dispatch=n,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return d},set:function(a){d=a}},height:{get:function(){return e},set:function(a){e=a}},key:{get:function(){return f},set:function(a){f=a}},align:{get:function(){return h},set:function(a){h=a}},rightAlign:{get:function(){return j},set:function(a){j=a}},padding:{get:function(){return i},set:function(a){i=a}},updateState:{get:function(){return k},set:function(a){k=a}},radioButtonMode:{get:function(){return l},set:function(a){l=a}},expanded:{get:function(){return m},set:function(a){m=a}},vers:{get:function(){return o},set:function(a){o=a}},margin:{get:function(){return c},set:function(a){c.top=void 0!==a.top?a.top:c.top,c.right=void 0!==a.right?a.right:c.right,c.bottom=void 0!==a.bottom?a.bottom:c.bottom,c.left=void 0!==a.left?a.left:c.left}},color:{get:function(){return g},set:function(b){g=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.line=function(){"use strict";function b(r){return v.reset(),v.models(e),r.each(function(b){i=d3.select(this);var r=a.utils.availableWidth(g,i,f),s=a.utils.availableHeight(h,i,f);a.utils.initSVG(i),c=e.xScale(),d=e.yScale(),t=t||c,u=u||d;var w=i.selectAll("g.nv-wrap.nv-line").data([b]),x=w.enter().append("g").attr("class","nvd3 nv-wrap nv-line"),y=x.append("defs"),z=x.append("g"),A=w.select("g");z.append("g").attr("class","nv-groups"),z.append("g").attr("class","nv-scatterWrap"),w.attr("transform","translate("+f.left+","+f.top+")"),e.width(r).height(s);var B=w.select(".nv-scatterWrap");B.call(e),y.append("clipPath").attr("id","nv-edge-clip-"+e.id()).append("rect"),w.select("#nv-edge-clip-"+e.id()+" rect").attr("width",r).attr("height",s>0?s:0),A.attr("clip-path",p?"url(#nv-edge-clip-"+e.id()+")":""),B.attr("clip-path",p?"url(#nv-edge-clip-"+e.id()+")":"");var C=w.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});C.enter().append("g").style("stroke-opacity",1e-6).style("stroke-width",function(a){return a.strokeWidth||j}).style("fill-opacity",1e-6),C.exit().remove(),C.attr("class",function(a,b){return(a.classed||"")+" nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return k(a,b)}).style("stroke",function(a,b){return k(a,b)}),C.watchTransition(v,"line: groups").style("stroke-opacity",1).style("fill-opacity",function(a){return a.fillOpacity||.5});var D=C.selectAll("path.nv-area").data(function(a){return o(a)?[a]:[]});D.enter().append("path").attr("class","nv-area").attr("d",function(b){return d3.svg.area().interpolate(q).defined(n).x(function(b,c){return a.utils.NaNtoZero(t(l(b,c)))}).y0(function(b,c){return a.utils.NaNtoZero(u(m(b,c)))}).y1(function(){return u(d.domain()[0]<=0?d.domain()[1]>=0?0:d.domain()[1]:d.domain()[0])}).apply(this,[b.values])}),C.exit().selectAll("path.nv-area").remove(),D.watchTransition(v,"line: areaPaths").attr("d",function(b){return d3.svg.area().interpolate(q).defined(n).x(function(b,d){return a.utils.NaNtoZero(c(l(b,d)))}).y0(function(b,c){return a.utils.NaNtoZero(d(m(b,c)))}).y1(function(){return d(d.domain()[0]<=0?d.domain()[1]>=0?0:d.domain()[1]:d.domain()[0])}).apply(this,[b.values])});var E=C.selectAll("path.nv-line").data(function(a){return[a.values]});E.enter().append("path").attr("class","nv-line").attr("d",d3.svg.line().interpolate(q).defined(n).x(function(b,c){return a.utils.NaNtoZero(t(l(b,c)))}).y(function(b,c){return a.utils.NaNtoZero(u(m(b,c)))})),E.watchTransition(v,"line: linePaths").attr("d",d3.svg.line().interpolate(q).defined(n).x(function(b,d){return a.utils.NaNtoZero(c(l(b,d)))}).y(function(b,c){return a.utils.NaNtoZero(d(m(b,c)))})),t=c.copy(),u=d.copy()}),v.renderEnd("line immediate"),b}var c,d,e=a.models.scatter(),f={top:0,right:0,bottom:0,left:0},g=960,h=500,i=null,j=1.5,k=a.utils.defaultColor(),l=function(a){return a.x},m=function(a){return a.y},n=function(a,b){return!isNaN(m(a,b))&&null!==m(a,b)},o=function(a){return a.area},p=!1,q="linear",r=250,s=d3.dispatch("elementClick","elementMouseover","elementMouseout","renderEnd");e.pointSize(16).pointDomain([16,256]);var t,u,v=a.utils.renderWatch(s,r);return b.dispatch=s,b.scatter=e,e.dispatch.on("elementClick",function(){s.elementClick.apply(this,arguments)}),e.dispatch.on("elementMouseover",function(){s.elementMouseover.apply(this,arguments)}),e.dispatch.on("elementMouseout",function(){s.elementMouseout.apply(this,arguments)}),b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return g},set:function(a){g=a}},height:{get:function(){return h},set:function(a){h=a}},defined:{get:function(){return n},set:function(a){n=a}},interpolate:{get:function(){return q},set:function(a){q=a}},clipEdge:{get:function(){return p},set:function(a){p=a}},margin:{get:function(){return f},set:function(a){f.top=void 0!==a.top?a.top:f.top,f.right=void 0!==a.right?a.right:f.right,f.bottom=void 0!==a.bottom?a.bottom:f.bottom,f.left=void 0!==a.left?a.left:f.left}},duration:{get:function(){return r},set:function(a){r=a,v.reset(r),e.duration(r)}},isArea:{get:function(){return o},set:function(a){o=d3.functor(a)}},x:{get:function(){return l},set:function(a){l=a,e.x(a)}},y:{get:function(){return m},set:function(a){m=a,e.y(a)}},color:{get:function(){return k},set:function(b){k=a.utils.getColor(b),e.color(k)}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.lineChart=function(){"use strict";function b(j){return y.reset(),y.models(e),p&&y.models(f),q&&y.models(g),j.each(function(j){var v=d3.select(this),y=this;a.utils.initSVG(v);var B=a.utils.availableWidth(m,v,k),C=a.utils.availableHeight(n,v,k);if(b.update=function(){0===x?v.call(b):v.transition().duration(x).call(b)},b.container=this,t.setter(A(j),b.update).getter(z(j)).update(),t.disabled=j.map(function(a){return!!a.disabled}),!u){var D;u={};for(D in t)u[D]=t[D]instanceof Array?t[D].slice(0):t[D] -}if(!(j&&j.length&&j.filter(function(a){return a.values.length}).length))return a.utils.noData(b,v),b;v.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale();var E=v.selectAll("g.nv-wrap.nv-lineChart").data([j]),F=E.enter().append("g").attr("class","nvd3 nv-wrap nv-lineChart").append("g"),G=E.select("g");F.append("rect").style("opacity",0),F.append("g").attr("class","nv-x nv-axis"),F.append("g").attr("class","nv-y nv-axis"),F.append("g").attr("class","nv-linesWrap"),F.append("g").attr("class","nv-legendWrap"),F.append("g").attr("class","nv-interactive"),G.select("rect").attr("width",B).attr("height",C>0?C:0),o&&(h.width(B),G.select(".nv-legendWrap").datum(j).call(h),k.top!=h.height()&&(k.top=h.height(),C=a.utils.availableHeight(n,v,k)),E.select(".nv-legendWrap").attr("transform","translate(0,"+-k.top+")")),E.attr("transform","translate("+k.left+","+k.top+")"),r&&G.select(".nv-y.nv-axis").attr("transform","translate("+B+",0)"),s&&(i.width(B).height(C).margin({left:k.left,top:k.top}).svgContainer(v).xScale(c),E.select(".nv-interactive").call(i)),e.width(B).height(C).color(j.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!j[b].disabled}));var H=G.select(".nv-linesWrap").datum(j.filter(function(a){return!a.disabled}));H.call(e),p&&(f.scale(c)._ticks(a.utils.calcTicksX(B/100,j)).tickSize(-C,0),G.select(".nv-x.nv-axis").attr("transform","translate(0,"+d.range()[0]+")"),G.select(".nv-x.nv-axis").call(f)),q&&(g.scale(d)._ticks(a.utils.calcTicksY(C/36,j)).tickSize(-B,0),G.select(".nv-y.nv-axis").call(g)),h.dispatch.on("stateChange",function(a){for(var c in a)t[c]=a[c];w.stateChange(t),b.update()}),i.dispatch.on("elementMousemove",function(c){e.clearHighlights();var d,h,m,n=[];if(j.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(f,g){h=a.interactiveBisect(f.values,c.pointXValue,b.x());var i=f.values[h],j=b.y()(i,h);null!=j&&e.highlightPoint(g,h,!0),void 0!==i&&(void 0===d&&(d=i),void 0===m&&(m=b.xScale()(b.x()(i,h))),n.push({key:f.key,value:j,color:l(f,f.seriesIndex)}))}),n.length>2){var o=b.yScale().invert(c.mouseY),p=Math.abs(b.yScale().domain()[0]-b.yScale().domain()[1]),q=.03*p,r=a.nearestValueIndex(n.map(function(a){return a.value}),o,q);null!==r&&(n[r].highlight=!0)}var s=f.tickFormat()(b.x()(d,h));i.tooltip.position({left:c.mouseX+k.left,top:c.mouseY+k.top}).chartContainer(y.parentNode).valueFormatter(function(a){return null==a?"N/A":g.tickFormat()(a)}).data({value:s,index:h,series:n})(),i.renderGuideLine(m)}),i.dispatch.on("elementClick",function(c){var d,f=[];j.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(e){var g=a.interactiveBisect(e.values,c.pointXValue,b.x()),h=e.values[g];if("undefined"!=typeof h){"undefined"==typeof d&&(d=b.xScale()(b.x()(h,g)));var i=b.yScale()(b.y()(h,g));f.push({point:h,pointIndex:g,pos:[d,i],seriesIndex:e.seriesIndex,series:e})}}),e.dispatch.elementClick(f)}),i.dispatch.on("elementMouseout",function(){e.clearHighlights()}),w.on("changeState",function(a){"undefined"!=typeof a.disabled&&j.length===a.disabled.length&&(j.forEach(function(b,c){b.disabled=a.disabled[c]}),t.disabled=a.disabled),b.update()})}),y.renderEnd("lineChart immediate"),b}var c,d,e=a.models.line(),f=a.models.axis(),g=a.models.axis(),h=a.models.legend(),i=a.interactiveGuideline(),j=a.models.tooltip(),k={top:30,right:20,bottom:50,left:60},l=a.utils.defaultColor(),m=null,n=null,o=!0,p=!0,q=!0,r=!1,s=!1,t=a.utils.state(),u=null,v=null,w=d3.dispatch("tooltipShow","tooltipHide","stateChange","changeState","renderEnd"),x=250;f.orient("bottom").tickPadding(7),g.orient(r?"right":"left"),j.valueFormatter(function(a,b){return g.tickFormat()(a,b)}).headerFormatter(function(a,b){return f.tickFormat()(a,b)});var y=a.utils.renderWatch(w,x),z=function(a){return function(){return{active:a.map(function(a){return!a.disabled})}}},A=function(a){return function(b){void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return e.dispatch.on("elementMouseover.tooltip",function(a){j.data(a).position(a.pos).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(){j.hidden(!0)}),b.dispatch=w,b.lines=e,b.legend=h,b.xAxis=f,b.yAxis=g,b.interactiveLayer=i,b.tooltip=j,b.dispatch=w,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return m},set:function(a){m=a}},height:{get:function(){return n},set:function(a){n=a}},showLegend:{get:function(){return o},set:function(a){o=a}},showXAxis:{get:function(){return p},set:function(a){p=a}},showYAxis:{get:function(){return q},set:function(a){q=a}},defaultState:{get:function(){return u},set:function(a){u=a}},noData:{get:function(){return v},set:function(a){v=a}},tooltips:{get:function(){return j.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),j.enabled(!!b)}},tooltipContent:{get:function(){return j.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),j.contentGenerator(b)}},margin:{get:function(){return k},set:function(a){k.top=void 0!==a.top?a.top:k.top,k.right=void 0!==a.right?a.right:k.right,k.bottom=void 0!==a.bottom?a.bottom:k.bottom,k.left=void 0!==a.left?a.left:k.left}},duration:{get:function(){return x},set:function(a){x=a,y.reset(x),e.duration(x),f.duration(x),g.duration(x)}},color:{get:function(){return l},set:function(b){l=a.utils.getColor(b),h.color(l),e.color(l)}},rightAlignYAxis:{get:function(){return r},set:function(a){r=a,g.orient(r?"right":"left")}},useInteractiveGuideline:{get:function(){return s},set:function(a){s=a,s&&(e.interactive(!1),e.useVoronoi(!1))}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.linePlusBarChart=function(){"use strict";function b(v){return v.each(function(v){function J(a){var b=+("e"==a),c=b?1:-1,d=X/3;return"M"+.5*c+","+d+"A6,6 0 0 "+b+" "+6.5*c+","+(d+6)+"V"+(2*d-6)+"A6,6 0 0 "+b+" "+.5*c+","+2*d+"ZM"+2.5*c+","+(d+8)+"V"+(2*d-8)+"M"+4.5*c+","+(d+8)+"V"+(2*d-8)}function S(){u.empty()||u.extent(I),kb.data([u.empty()?e.domain():I]).each(function(a){var b=e(a[0])-e.range()[0],c=e.range()[1]-e(a[1]);d3.select(this).select(".left").attr("width",0>b?0:b),d3.select(this).select(".right").attr("x",e(a[1])).attr("width",0>c?0:c)})}function T(){I=u.empty()?null:u.extent(),c=u.empty()?e.domain():u.extent(),K.brush({extent:c,brush:u}),S(),l.width(V).height(W).color(v.map(function(a,b){return a.color||C(a,b)}).filter(function(a,b){return!v[b].disabled&&v[b].bar})),j.width(V).height(W).color(v.map(function(a,b){return a.color||C(a,b)}).filter(function(a,b){return!v[b].disabled&&!v[b].bar}));var b=db.select(".nv-focus .nv-barsWrap").datum(Z.length?Z.map(function(a){return{key:a.key,values:a.values.filter(function(a,b){return l.x()(a,b)>=c[0]&&l.x()(a,b)<=c[1]})}}):[{values:[]}]),h=db.select(".nv-focus .nv-linesWrap").datum($[0].disabled?[{values:[]}]:$.map(function(a){return{area:a.area,fillOpacity:a.fillOpacity,key:a.key,values:a.values.filter(function(a,b){return j.x()(a,b)>=c[0]&&j.x()(a,b)<=c[1]})}}));d=Z.length?l.xScale():j.xScale(),n.scale(d)._ticks(a.utils.calcTicksX(V/100,v)).tickSize(-W,0),n.domain([Math.ceil(c[0]),Math.floor(c[1])]),db.select(".nv-x.nv-axis").transition().duration(L).call(n),b.transition().duration(L).call(l),h.transition().duration(L).call(j),db.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+f.range()[0]+")"),p.scale(f)._ticks(a.utils.calcTicksY(W/36,v)).tickSize(-V,0),q.scale(g)._ticks(a.utils.calcTicksY(W/36,v)).tickSize(Z.length?0:-V,0),db.select(".nv-focus .nv-y1.nv-axis").style("opacity",Z.length?1:0),db.select(".nv-focus .nv-y2.nv-axis").style("opacity",$.length&&!$[0].disabled?1:0).attr("transform","translate("+d.range()[1]+",0)"),db.select(".nv-focus .nv-y1.nv-axis").transition().duration(L).call(p),db.select(".nv-focus .nv-y2.nv-axis").transition().duration(L).call(q)}var U=d3.select(this);a.utils.initSVG(U);var V=a.utils.availableWidth(y,U,w),W=a.utils.availableHeight(z,U,w)-(E?H:0),X=H-x.top-x.bottom;if(b.update=function(){U.transition().duration(L).call(b)},b.container=this,M.setter(R(v),b.update).getter(Q(v)).update(),M.disabled=v.map(function(a){return!!a.disabled}),!N){var Y;N={};for(Y in M)N[Y]=M[Y]instanceof Array?M[Y].slice(0):M[Y]}if(!(v&&v.length&&v.filter(function(a){return a.values.length}).length))return a.utils.noData(b,U),b;U.selectAll(".nv-noData").remove();var Z=v.filter(function(a){return!a.disabled&&a.bar}),$=v.filter(function(a){return!a.bar});d=l.xScale(),e=o.scale(),f=l.yScale(),g=j.yScale(),h=m.yScale(),i=k.yScale();var _=v.filter(function(a){return!a.disabled&&a.bar}).map(function(a){return a.values.map(function(a,b){return{x:A(a,b),y:B(a,b)}})}),ab=v.filter(function(a){return!a.disabled&&!a.bar}).map(function(a){return a.values.map(function(a,b){return{x:A(a,b),y:B(a,b)}})});d.range([0,V]),e.domain(d3.extent(d3.merge(_.concat(ab)),function(a){return a.x})).range([0,V]);var bb=U.selectAll("g.nv-wrap.nv-linePlusBar").data([v]),cb=bb.enter().append("g").attr("class","nvd3 nv-wrap nv-linePlusBar").append("g"),db=bb.select("g");cb.append("g").attr("class","nv-legendWrap");var eb=cb.append("g").attr("class","nv-focus");eb.append("g").attr("class","nv-x nv-axis"),eb.append("g").attr("class","nv-y1 nv-axis"),eb.append("g").attr("class","nv-y2 nv-axis"),eb.append("g").attr("class","nv-barsWrap"),eb.append("g").attr("class","nv-linesWrap");var fb=cb.append("g").attr("class","nv-context");if(fb.append("g").attr("class","nv-x nv-axis"),fb.append("g").attr("class","nv-y1 nv-axis"),fb.append("g").attr("class","nv-y2 nv-axis"),fb.append("g").attr("class","nv-barsWrap"),fb.append("g").attr("class","nv-linesWrap"),fb.append("g").attr("class","nv-brushBackground"),fb.append("g").attr("class","nv-x nv-brush"),D){var gb=t.align()?V/2:V,hb=t.align()?gb:0;t.width(gb),db.select(".nv-legendWrap").datum(v.map(function(a){return a.originalKey=void 0===a.originalKey?a.key:a.originalKey,a.key=a.originalKey+(a.bar?O:P),a})).call(t),w.top!=t.height()&&(w.top=t.height(),W=a.utils.availableHeight(z,U,w)-H),db.select(".nv-legendWrap").attr("transform","translate("+hb+","+-w.top+")")}bb.attr("transform","translate("+w.left+","+w.top+")"),db.select(".nv-context").style("display",E?"initial":"none"),m.width(V).height(X).color(v.map(function(a,b){return a.color||C(a,b)}).filter(function(a,b){return!v[b].disabled&&v[b].bar})),k.width(V).height(X).color(v.map(function(a,b){return a.color||C(a,b)}).filter(function(a,b){return!v[b].disabled&&!v[b].bar}));var ib=db.select(".nv-context .nv-barsWrap").datum(Z.length?Z:[{values:[]}]),jb=db.select(".nv-context .nv-linesWrap").datum($[0].disabled?[{values:[]}]:$);db.select(".nv-context").attr("transform","translate(0,"+(W+w.bottom+x.top)+")"),ib.transition().call(m),jb.transition().call(k),G&&(o._ticks(a.utils.calcTicksX(V/100,v)).tickSize(-X,0),db.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+h.range()[0]+")"),db.select(".nv-context .nv-x.nv-axis").transition().call(o)),F&&(r.scale(h)._ticks(X/36).tickSize(-V,0),s.scale(i)._ticks(X/36).tickSize(Z.length?0:-V,0),db.select(".nv-context .nv-y3.nv-axis").style("opacity",Z.length?1:0).attr("transform","translate(0,"+e.range()[0]+")"),db.select(".nv-context .nv-y2.nv-axis").style("opacity",$.length?1:0).attr("transform","translate("+e.range()[1]+",0)"),db.select(".nv-context .nv-y1.nv-axis").transition().call(r),db.select(".nv-context .nv-y2.nv-axis").transition().call(s)),u.x(e).on("brush",T),I&&u.extent(I);var kb=db.select(".nv-brushBackground").selectAll("g").data([I||u.extent()]),lb=kb.enter().append("g");lb.append("rect").attr("class","left").attr("x",0).attr("y",0).attr("height",X),lb.append("rect").attr("class","right").attr("x",0).attr("y",0).attr("height",X);var mb=db.select(".nv-x.nv-brush").call(u);mb.selectAll("rect").attr("height",X),mb.selectAll(".resize").append("path").attr("d",J),t.dispatch.on("stateChange",function(a){for(var c in a)M[c]=a[c];K.stateChange(M),b.update()}),K.on("changeState",function(a){"undefined"!=typeof a.disabled&&(v.forEach(function(b,c){b.disabled=a.disabled[c]}),M.disabled=a.disabled),b.update()}),T()}),b}var c,d,e,f,g,h,i,j=a.models.line(),k=a.models.line(),l=a.models.historicalBar(),m=a.models.historicalBar(),n=a.models.axis(),o=a.models.axis(),p=a.models.axis(),q=a.models.axis(),r=a.models.axis(),s=a.models.axis(),t=a.models.legend(),u=d3.svg.brush(),v=a.models.tooltip(),w={top:30,right:30,bottom:30,left:60},x={top:0,right:30,bottom:20,left:60},y=null,z=null,A=function(a){return a.x},B=function(a){return a.y},C=a.utils.defaultColor(),D=!0,E=!0,F=!1,G=!0,H=50,I=null,J=null,K=d3.dispatch("brush","stateChange","changeState"),L=0,M=a.utils.state(),N=null,O=" (left axis)",P=" (right axis)";j.clipEdge(!0),k.interactive(!1),n.orient("bottom").tickPadding(5),p.orient("left"),q.orient("right"),o.orient("bottom").tickPadding(5),r.orient("left"),s.orient("right"),v.headerEnabled(!0).headerFormatter(function(a,b){return n.tickFormat()(a,b)});var Q=function(a){return function(){return{active:a.map(function(a){return!a.disabled})}}},R=function(a){return function(b){void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return j.dispatch.on("elementMouseover.tooltip",function(a){v.duration(100).valueFormatter(function(a,b){return q.tickFormat()(a,b)}).data(a).position(a.pos).hidden(!1)}),j.dispatch.on("elementMouseout.tooltip",function(){v.hidden(!0)}),l.dispatch.on("elementMouseover.tooltip",function(a){a.value=b.x()(a.data),a.series={value:b.y()(a.data),color:a.color},v.duration(0).valueFormatter(function(a,b){return p.tickFormat()(a,b)}).data(a).hidden(!1)}),l.dispatch.on("elementMouseout.tooltip",function(){v.hidden(!0)}),l.dispatch.on("elementMousemove.tooltip",function(){v.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=K,b.legend=t,b.lines=j,b.lines2=k,b.bars=l,b.bars2=m,b.xAxis=n,b.x2Axis=o,b.y1Axis=p,b.y2Axis=q,b.y3Axis=r,b.y4Axis=s,b.tooltip=v,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return y},set:function(a){y=a}},height:{get:function(){return z},set:function(a){z=a}},showLegend:{get:function(){return D},set:function(a){D=a}},brushExtent:{get:function(){return I},set:function(a){I=a}},noData:{get:function(){return J},set:function(a){J=a}},focusEnable:{get:function(){return E},set:function(a){E=a}},focusHeight:{get:function(){return H},set:function(a){H=a}},focusShowAxisX:{get:function(){return G},set:function(a){G=a}},focusShowAxisY:{get:function(){return F},set:function(a){F=a}},legendLeftAxisHint:{get:function(){return O},set:function(a){O=a}},legendRightAxisHint:{get:function(){return P},set:function(a){P=a}},tooltips:{get:function(){return v.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),v.enabled(!!b)}},tooltipContent:{get:function(){return v.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),v.contentGenerator(b)}},margin:{get:function(){return w},set:function(a){w.top=void 0!==a.top?a.top:w.top,w.right=void 0!==a.right?a.right:w.right,w.bottom=void 0!==a.bottom?a.bottom:w.bottom,w.left=void 0!==a.left?a.left:w.left}},duration:{get:function(){return L},set:function(a){L=a}},color:{get:function(){return C},set:function(b){C=a.utils.getColor(b),t.color(C)}},x:{get:function(){return A},set:function(a){A=a,j.x(a),k.x(a),l.x(a),m.x(a)}},y:{get:function(){return B},set:function(a){B=a,j.y(a),k.y(a),l.y(a),m.y(a)}}}),a.utils.inheritOptions(b,j),a.utils.initOptions(b),b},a.models.lineWithFocusChart=function(){"use strict";function b(o){return o.each(function(o){function z(a){var b=+("e"==a),c=b?1:-1,d=M/3;return"M"+.5*c+","+d+"A6,6 0 0 "+b+" "+6.5*c+","+(d+6)+"V"+(2*d-6)+"A6,6 0 0 "+b+" "+.5*c+","+2*d+"ZM"+2.5*c+","+(d+8)+"V"+(2*d-8)+"M"+4.5*c+","+(d+8)+"V"+(2*d-8)}function G(){n.empty()||n.extent(y),U.data([n.empty()?e.domain():y]).each(function(a){var b=e(a[0])-c.range()[0],d=K-e(a[1]);d3.select(this).select(".left").attr("width",0>b?0:b),d3.select(this).select(".right").attr("x",e(a[1])).attr("width",0>d?0:d)})}function H(){y=n.empty()?null:n.extent();var a=n.empty()?e.domain():n.extent();if(!(Math.abs(a[0]-a[1])<=1)){A.brush({extent:a,brush:n}),G();var b=Q.select(".nv-focus .nv-linesWrap").datum(o.filter(function(a){return!a.disabled}).map(function(b){return{key:b.key,area:b.area,values:b.values.filter(function(b,c){return g.x()(b,c)>=a[0]&&g.x()(b,c)<=a[1]})}}));b.transition().duration(B).call(g),Q.select(".nv-focus .nv-x.nv-axis").transition().duration(B).call(i),Q.select(".nv-focus .nv-y.nv-axis").transition().duration(B).call(j)}}var I=d3.select(this),J=this;a.utils.initSVG(I);var K=a.utils.availableWidth(t,I,q),L=a.utils.availableHeight(u,I,q)-v,M=v-r.top-r.bottom;if(b.update=function(){I.transition().duration(B).call(b)},b.container=this,C.setter(F(o),b.update).getter(E(o)).update(),C.disabled=o.map(function(a){return!!a.disabled}),!D){var N;D={};for(N in C)D[N]=C[N]instanceof Array?C[N].slice(0):C[N]}if(!(o&&o.length&&o.filter(function(a){return a.values.length}).length))return a.utils.noData(b,I),b;I.selectAll(".nv-noData").remove(),c=g.xScale(),d=g.yScale(),e=h.xScale(),f=h.yScale();var O=I.selectAll("g.nv-wrap.nv-lineWithFocusChart").data([o]),P=O.enter().append("g").attr("class","nvd3 nv-wrap nv-lineWithFocusChart").append("g"),Q=O.select("g");P.append("g").attr("class","nv-legendWrap");var R=P.append("g").attr("class","nv-focus");R.append("g").attr("class","nv-x nv-axis"),R.append("g").attr("class","nv-y nv-axis"),R.append("g").attr("class","nv-linesWrap"),R.append("g").attr("class","nv-interactive");var S=P.append("g").attr("class","nv-context");S.append("g").attr("class","nv-x nv-axis"),S.append("g").attr("class","nv-y nv-axis"),S.append("g").attr("class","nv-linesWrap"),S.append("g").attr("class","nv-brushBackground"),S.append("g").attr("class","nv-x nv-brush"),x&&(m.width(K),Q.select(".nv-legendWrap").datum(o).call(m),q.top!=m.height()&&(q.top=m.height(),L=a.utils.availableHeight(u,I,q)-v),Q.select(".nv-legendWrap").attr("transform","translate(0,"+-q.top+")")),O.attr("transform","translate("+q.left+","+q.top+")"),w&&(p.width(K).height(L).margin({left:q.left,top:q.top}).svgContainer(I).xScale(c),O.select(".nv-interactive").call(p)),g.width(K).height(L).color(o.map(function(a,b){return a.color||s(a,b)}).filter(function(a,b){return!o[b].disabled})),h.defined(g.defined()).width(K).height(M).color(o.map(function(a,b){return a.color||s(a,b)}).filter(function(a,b){return!o[b].disabled})),Q.select(".nv-context").attr("transform","translate(0,"+(L+q.bottom+r.top)+")");var T=Q.select(".nv-context .nv-linesWrap").datum(o.filter(function(a){return!a.disabled}));d3.transition(T).call(h),i.scale(c)._ticks(a.utils.calcTicksX(K/100,o)).tickSize(-L,0),j.scale(d)._ticks(a.utils.calcTicksY(L/36,o)).tickSize(-K,0),Q.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+L+")"),n.x(e).on("brush",function(){H()}),y&&n.extent(y);var U=Q.select(".nv-brushBackground").selectAll("g").data([y||n.extent()]),V=U.enter().append("g");V.append("rect").attr("class","left").attr("x",0).attr("y",0).attr("height",M),V.append("rect").attr("class","right").attr("x",0).attr("y",0).attr("height",M);var W=Q.select(".nv-x.nv-brush").call(n);W.selectAll("rect").attr("height",M),W.selectAll(".resize").append("path").attr("d",z),H(),k.scale(e)._ticks(a.utils.calcTicksX(K/100,o)).tickSize(-M,0),Q.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+f.range()[0]+")"),d3.transition(Q.select(".nv-context .nv-x.nv-axis")).call(k),l.scale(f)._ticks(a.utils.calcTicksY(M/36,o)).tickSize(-K,0),d3.transition(Q.select(".nv-context .nv-y.nv-axis")).call(l),Q.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+f.range()[0]+")"),m.dispatch.on("stateChange",function(a){for(var c in a)C[c]=a[c];A.stateChange(C),b.update()}),p.dispatch.on("elementMousemove",function(c){g.clearHighlights();var d,f,h,k=[];if(o.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(i,j){var l=n.empty()?e.domain():n.extent(),m=i.values.filter(function(a,b){return g.x()(a,b)>=l[0]&&g.x()(a,b)<=l[1]});f=a.interactiveBisect(m,c.pointXValue,g.x());var o=m[f],p=b.y()(o,f);null!=p&&g.highlightPoint(j,f,!0),void 0!==o&&(void 0===d&&(d=o),void 0===h&&(h=b.xScale()(b.x()(o,f))),k.push({key:i.key,value:b.y()(o,f),color:s(i,i.seriesIndex)}))}),k.length>2){var l=b.yScale().invert(c.mouseY),m=Math.abs(b.yScale().domain()[0]-b.yScale().domain()[1]),r=.03*m,t=a.nearestValueIndex(k.map(function(a){return a.value}),l,r);null!==t&&(k[t].highlight=!0)}var u=i.tickFormat()(b.x()(d,f));p.tooltip.position({left:c.mouseX+q.left,top:c.mouseY+q.top}).chartContainer(J.parentNode).valueFormatter(function(a){return null==a?"N/A":j.tickFormat()(a)}).data({value:u,index:f,series:k})(),p.renderGuideLine(h)}),p.dispatch.on("elementMouseout",function(){g.clearHighlights()}),A.on("changeState",function(a){"undefined"!=typeof a.disabled&&o.forEach(function(b,c){b.disabled=a.disabled[c]}),b.update()})}),b}var c,d,e,f,g=a.models.line(),h=a.models.line(),i=a.models.axis(),j=a.models.axis(),k=a.models.axis(),l=a.models.axis(),m=a.models.legend(),n=d3.svg.brush(),o=a.models.tooltip(),p=a.interactiveGuideline(),q={top:30,right:30,bottom:30,left:60},r={top:0,right:30,bottom:20,left:60},s=a.utils.defaultColor(),t=null,u=null,v=50,w=!1,x=!0,y=null,z=null,A=d3.dispatch("brush","stateChange","changeState"),B=250,C=a.utils.state(),D=null;g.clipEdge(!0).duration(0),h.interactive(!1),i.orient("bottom").tickPadding(5),j.orient("left"),k.orient("bottom").tickPadding(5),l.orient("left"),o.valueFormatter(function(a,b){return j.tickFormat()(a,b)}).headerFormatter(function(a,b){return i.tickFormat()(a,b)});var E=function(a){return function(){return{active:a.map(function(a){return!a.disabled})}}},F=function(a){return function(b){void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return g.dispatch.on("elementMouseover.tooltip",function(a){o.data(a).position(a.pos).hidden(!1)}),g.dispatch.on("elementMouseout.tooltip",function(){o.hidden(!0)}),b.dispatch=A,b.legend=m,b.lines=g,b.lines2=h,b.xAxis=i,b.yAxis=j,b.x2Axis=k,b.y2Axis=l,b.interactiveLayer=p,b.tooltip=o,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return t},set:function(a){t=a}},height:{get:function(){return u},set:function(a){u=a}},focusHeight:{get:function(){return v},set:function(a){v=a}},showLegend:{get:function(){return x},set:function(a){x=a}},brushExtent:{get:function(){return y},set:function(a){y=a}},defaultState:{get:function(){return D},set:function(a){D=a}},noData:{get:function(){return z},set:function(a){z=a}},tooltips:{get:function(){return o.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),o.enabled(!!b)}},tooltipContent:{get:function(){return o.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),o.contentGenerator(b)}},margin:{get:function(){return q},set:function(a){q.top=void 0!==a.top?a.top:q.top,q.right=void 0!==a.right?a.right:q.right,q.bottom=void 0!==a.bottom?a.bottom:q.bottom,q.left=void 0!==a.left?a.left:q.left}},color:{get:function(){return s},set:function(b){s=a.utils.getColor(b),m.color(s)}},interpolate:{get:function(){return g.interpolate()},set:function(a){g.interpolate(a),h.interpolate(a)}},xTickFormat:{get:function(){return i.tickFormat()},set:function(a){i.tickFormat(a),k.tickFormat(a)}},yTickFormat:{get:function(){return j.tickFormat()},set:function(a){j.tickFormat(a),l.tickFormat(a)}},duration:{get:function(){return B},set:function(a){B=a,j.duration(B),l.duration(B),i.duration(B),k.duration(B)}},x:{get:function(){return g.x()},set:function(a){g.x(a),h.x(a)}},y:{get:function(){return g.y()},set:function(a){g.y(a),h.y(a)}},useInteractiveGuideline:{get:function(){return w},set:function(a){w=a,w&&(g.interactive(!1),g.useVoronoi(!1))}}}),a.utils.inheritOptions(b,g),a.utils.initOptions(b),b},a.models.multiBar=function(){"use strict";function b(E){return C.reset(),E.each(function(b){var E=k-j.left-j.right,F=l-j.top-j.bottom;p=d3.select(this),a.utils.initSVG(p);var G=0;if(x&&b.length&&(x=[{values:b[0].values.map(function(a){return{x:a.x,y:0,series:a.series,size:.01}})}]),u){var H=d3.layout.stack().offset(v).values(function(a){return a.values}).y(r)(!b.length&&x?x:b);H.forEach(function(a,c){a.nonStackable?(b[c].nonStackableSeries=G++,H[c]=b[c]):c>0&&H[c-1].nonStackable&&H[c].values.map(function(a,b){a.y0-=H[c-1].values[b].y,a.y1=a.y0+a.y})}),b=H}b.forEach(function(a,b){a.values.forEach(function(c){c.series=b,c.key=a.key})}),u&&b[0].values.map(function(a,c){var d=0,e=0;b.map(function(a,f){if(!b[f].nonStackable){var g=a.values[c];g.size=Math.abs(g.y),g.y<0?(g.y1=e,e-=g.size):(g.y1=g.size+d,d+=g.size)}})});var I=d&&e?[]:b.map(function(a,b){return a.values.map(function(a,c){return{x:q(a,c),y:r(a,c),y0:a.y0,y1:a.y1,idx:b}})});m.domain(d||d3.merge(I).map(function(a){return a.x})).rangeBands(f||[0,E],A),n.domain(e||d3.extent(d3.merge(I).map(function(a){var c=a.y;return u&&!b[a.idx].nonStackable&&(c=a.y>0?a.y1:a.y1+a.y),c}).concat(s))).range(g||[F,0]),m.domain()[0]===m.domain()[1]&&m.domain(m.domain()[0]?[m.domain()[0]-.01*m.domain()[0],m.domain()[1]+.01*m.domain()[1]]:[-1,1]),n.domain()[0]===n.domain()[1]&&n.domain(n.domain()[0]?[n.domain()[0]+.01*n.domain()[0],n.domain()[1]-.01*n.domain()[1]]:[-1,1]),h=h||m,i=i||n;var J=p.selectAll("g.nv-wrap.nv-multibar").data([b]),K=J.enter().append("g").attr("class","nvd3 nv-wrap nv-multibar"),L=K.append("defs"),M=K.append("g"),N=J.select("g");M.append("g").attr("class","nv-groups"),J.attr("transform","translate("+j.left+","+j.top+")"),L.append("clipPath").attr("id","nv-edge-clip-"+o).append("rect"),J.select("#nv-edge-clip-"+o+" rect").attr("width",E).attr("height",F),N.attr("clip-path",t?"url(#nv-edge-clip-"+o+")":"");var O=J.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a,b){return b});O.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6);var P=C.transition(O.exit().selectAll("rect.nv-bar"),"multibarExit",Math.min(100,z)).attr("y",function(a){var c=i(0)||0;return u&&b[a.series]&&!b[a.series].nonStackable&&(c=i(a.y0)),c}).attr("height",0).remove();P.delay&&P.delay(function(a,b){var c=b*(z/(D+1))-b;return c}),O.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return w(a,b)}).style("stroke",function(a,b){return w(a,b)}),O.style("stroke-opacity",1).style("fill-opacity",.75);var Q=O.selectAll("rect.nv-bar").data(function(a){return x&&!b.length?x.values:a.values});Q.exit().remove();Q.enter().append("rect").attr("class",function(a,b){return r(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("x",function(a,c,d){return u&&!b[d].nonStackable?0:d*m.rangeBand()/b.length}).attr("y",function(a,c,d){return i(u&&!b[d].nonStackable?a.y0:0)||0}).attr("height",0).attr("width",function(a,c,d){return m.rangeBand()/(u&&!b[d].nonStackable?1:b.length)}).attr("transform",function(a,b){return"translate("+m(q(a,b))+",0)"});Q.style("fill",function(a,b,c){return w(a,c,b)}).style("stroke",function(a,b,c){return w(a,c,b)}).on("mouseover",function(a,b){d3.select(this).classed("hover",!0),B.elementMouseover({data:a,index:b,color:d3.select(this).style("fill")})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),B.elementMouseout({data:a,index:b,color:d3.select(this).style("fill")})}).on("mousemove",function(a,b){B.elementMousemove({data:a,index:b,color:d3.select(this).style("fill")})}).on("click",function(a,b){B.elementClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()}).on("dblclick",function(a,b){B.elementDblClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()}),Q.attr("class",function(a,b){return r(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("transform",function(a,b){return"translate("+m(q(a,b))+",0)"}),y&&(c||(c=b.map(function(){return!0})),Q.style("fill",function(a,b,d){return d3.rgb(y(a,b)).darker(c.map(function(a,b){return b}).filter(function(a,b){return!c[b]})[d]).toString()}).style("stroke",function(a,b,d){return d3.rgb(y(a,b)).darker(c.map(function(a,b){return b}).filter(function(a,b){return!c[b]})[d]).toString()}));var R=Q.watchTransition(C,"multibar",Math.min(250,z)).delay(function(a,c){return c*z/b[0].values.length});u?R.attr("y",function(a,c,d){var e=0;return e=b[d].nonStackable?r(a,c)<0?n(0):n(0)-n(r(a,c))<-1?n(0)-1:n(r(a,c))||0:n(a.y1)}).attr("height",function(a,c,d){return b[d].nonStackable?Math.max(Math.abs(n(r(a,c))-n(0)),1)||0:Math.max(Math.abs(n(a.y+a.y0)-n(a.y0)),1)}).attr("x",function(a,c,d){var e=0;return b[d].nonStackable&&(e=a.series*m.rangeBand()/b.length,b.length!==G&&(e=b[d].nonStackableSeries*m.rangeBand()/(2*G))),e}).attr("width",function(a,c,d){if(b[d].nonStackable){var e=m.rangeBand()/G;return b.length!==G&&(e=m.rangeBand()/(2*G)),e}return m.rangeBand()}):R.attr("x",function(a){return a.series*m.rangeBand()/b.length}).attr("width",m.rangeBand()/b.length).attr("y",function(a,b){return r(a,b)<0?n(0):n(0)-n(r(a,b))<1?n(0)-1:n(r(a,b))||0}).attr("height",function(a,b){return Math.max(Math.abs(n(r(a,b))-n(0)),1)||0}),h=m.copy(),i=n.copy(),b[0]&&b[0].values&&(D=b[0].values.length)}),C.renderEnd("multibar immediate"),b}var c,d,e,f,g,h,i,j={top:0,right:0,bottom:0,left:0},k=960,l=500,m=d3.scale.ordinal(),n=d3.scale.linear(),o=Math.floor(1e4*Math.random()),p=null,q=function(a){return a.x},r=function(a){return a.y},s=[0],t=!0,u=!1,v="zero",w=a.utils.defaultColor(),x=!1,y=null,z=500,A=.1,B=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove","renderEnd"),C=a.utils.renderWatch(B,z),D=0;return b.dispatch=B,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return k},set:function(a){k=a}},height:{get:function(){return l},set:function(a){l=a}},x:{get:function(){return q},set:function(a){q=a}},y:{get:function(){return r},set:function(a){r=a}},xScale:{get:function(){return m},set:function(a){m=a}},yScale:{get:function(){return n},set:function(a){n=a}},xDomain:{get:function(){return d},set:function(a){d=a}},yDomain:{get:function(){return e},set:function(a){e=a}},xRange:{get:function(){return f},set:function(a){f=a}},yRange:{get:function(){return g},set:function(a){g=a}},forceY:{get:function(){return s},set:function(a){s=a}},stacked:{get:function(){return u},set:function(a){u=a}},stackOffset:{get:function(){return v},set:function(a){v=a}},clipEdge:{get:function(){return t},set:function(a){t=a}},disabled:{get:function(){return c},set:function(a){c=a}},id:{get:function(){return o},set:function(a){o=a}},hideable:{get:function(){return x},set:function(a){x=a}},groupSpacing:{get:function(){return A},set:function(a){A=a}},margin:{get:function(){return j},set:function(a){j.top=void 0!==a.top?a.top:j.top,j.right=void 0!==a.right?a.right:j.right,j.bottom=void 0!==a.bottom?a.bottom:j.bottom,j.left=void 0!==a.left?a.left:j.left}},duration:{get:function(){return z},set:function(a){z=a,C.reset(z)}},color:{get:function(){return w},set:function(b){w=a.utils.getColor(b)}},barColor:{get:function(){return y},set:function(b){y=b?a.utils.getColor(b):null}}}),a.utils.initOptions(b),b},a.models.multiBarChart=function(){"use strict";function b(j){return D.reset(),D.models(e),r&&D.models(f),s&&D.models(g),j.each(function(j){var z=d3.select(this);a.utils.initSVG(z);var D=a.utils.availableWidth(l,z,k),H=a.utils.availableHeight(m,z,k);if(b.update=function(){0===C?z.call(b):z.transition().duration(C).call(b)},b.container=this,x.setter(G(j),b.update).getter(F(j)).update(),x.disabled=j.map(function(a){return!!a.disabled}),!y){var I;y={};for(I in x)y[I]=x[I]instanceof Array?x[I].slice(0):x[I]}if(!(j&&j.length&&j.filter(function(a){return a.values.length}).length))return a.utils.noData(b,z),b;z.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale(); -var J=z.selectAll("g.nv-wrap.nv-multiBarWithLegend").data([j]),K=J.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarWithLegend").append("g"),L=J.select("g");if(K.append("g").attr("class","nv-x nv-axis"),K.append("g").attr("class","nv-y nv-axis"),K.append("g").attr("class","nv-barsWrap"),K.append("g").attr("class","nv-legendWrap"),K.append("g").attr("class","nv-controlsWrap"),q&&(h.width(D-B()),L.select(".nv-legendWrap").datum(j).call(h),k.top!=h.height()&&(k.top=h.height(),H=a.utils.availableHeight(m,z,k)),L.select(".nv-legendWrap").attr("transform","translate("+B()+","+-k.top+")")),o){var M=[{key:p.grouped||"Grouped",disabled:e.stacked()},{key:p.stacked||"Stacked",disabled:!e.stacked()}];i.width(B()).color(["#444","#444","#444"]),L.select(".nv-controlsWrap").datum(M).attr("transform","translate(0,"+-k.top+")").call(i)}J.attr("transform","translate("+k.left+","+k.top+")"),t&&L.select(".nv-y.nv-axis").attr("transform","translate("+D+",0)"),e.disabled(j.map(function(a){return a.disabled})).width(D).height(H).color(j.map(function(a,b){return a.color||n(a,b)}).filter(function(a,b){return!j[b].disabled}));var N=L.select(".nv-barsWrap").datum(j.filter(function(a){return!a.disabled}));if(N.call(e),r){f.scale(c)._ticks(a.utils.calcTicksX(D/100,j)).tickSize(-H,0),L.select(".nv-x.nv-axis").attr("transform","translate(0,"+d.range()[0]+")"),L.select(".nv-x.nv-axis").call(f);var O=L.select(".nv-x.nv-axis > g").selectAll("g");if(O.selectAll("line, text").style("opacity",1),v){var P=function(a,b){return"translate("+a+","+b+")"},Q=5,R=17;O.selectAll("text").attr("transform",function(a,b,c){return P(0,c%2==0?Q:R)});var S=d3.selectAll(".nv-x.nv-axis .nv-wrap g g text")[0].length;L.selectAll(".nv-x.nv-axis .nv-axisMaxMin text").attr("transform",function(a,b){return P(0,0===b||S%2!==0?R:Q)})}u&&O.filter(function(a,b){return b%Math.ceil(j[0].values.length/(D/100))!==0}).selectAll("text, line").style("opacity",0),w&&O.selectAll(".tick text").attr("transform","rotate("+w+" 0,0)").style("text-anchor",w>0?"start":"end"),L.select(".nv-x.nv-axis").selectAll("g.nv-axisMaxMin text").style("opacity",1)}s&&(g.scale(d)._ticks(a.utils.calcTicksY(H/36,j)).tickSize(-D,0),L.select(".nv-y.nv-axis").call(g)),h.dispatch.on("stateChange",function(a){for(var c in a)x[c]=a[c];A.stateChange(x),b.update()}),i.dispatch.on("legendClick",function(a){if(a.disabled){switch(M=M.map(function(a){return a.disabled=!0,a}),a.disabled=!1,a.key){case"Grouped":case p.grouped:e.stacked(!1);break;case"Stacked":case p.stacked:e.stacked(!0)}x.stacked=e.stacked(),A.stateChange(x),b.update()}}),A.on("changeState",function(a){"undefined"!=typeof a.disabled&&(j.forEach(function(b,c){b.disabled=a.disabled[c]}),x.disabled=a.disabled),"undefined"!=typeof a.stacked&&(e.stacked(a.stacked),x.stacked=a.stacked,E=a.stacked),b.update()})}),D.renderEnd("multibarchart immediate"),b}var c,d,e=a.models.multiBar(),f=a.models.axis(),g=a.models.axis(),h=a.models.legend(),i=a.models.legend(),j=a.models.tooltip(),k={top:30,right:20,bottom:50,left:60},l=null,m=null,n=a.utils.defaultColor(),o=!0,p={},q=!0,r=!0,s=!0,t=!1,u=!0,v=!1,w=0,x=a.utils.state(),y=null,z=null,A=d3.dispatch("stateChange","changeState","renderEnd"),B=function(){return o?180:0},C=250;x.stacked=!1,e.stacked(!1),f.orient("bottom").tickPadding(7).showMaxMin(!1).tickFormat(function(a){return a}),g.orient(t?"right":"left").tickFormat(d3.format(",.1f")),j.duration(0).valueFormatter(function(a,b){return g.tickFormat()(a,b)}).headerFormatter(function(a,b){return f.tickFormat()(a,b)}),i.updateState(!1);var D=a.utils.renderWatch(A),E=!1,F=function(a){return function(){return{active:a.map(function(a){return!a.disabled}),stacked:E}}},G=function(a){return function(b){void 0!==b.stacked&&(E=b.stacked),void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return e.dispatch.on("elementMouseover.tooltip",function(a){a.value=b.x()(a.data),a.series={key:a.data.key,value:b.y()(a.data),color:a.color},j.data(a).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(){j.hidden(!0)}),e.dispatch.on("elementMousemove.tooltip",function(){j.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=A,b.multibar=e,b.legend=h,b.controls=i,b.xAxis=f,b.yAxis=g,b.state=x,b.tooltip=j,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return l},set:function(a){l=a}},height:{get:function(){return m},set:function(a){m=a}},showLegend:{get:function(){return q},set:function(a){q=a}},showControls:{get:function(){return o},set:function(a){o=a}},controlLabels:{get:function(){return p},set:function(a){p=a}},showXAxis:{get:function(){return r},set:function(a){r=a}},showYAxis:{get:function(){return s},set:function(a){s=a}},defaultState:{get:function(){return y},set:function(a){y=a}},noData:{get:function(){return z},set:function(a){z=a}},reduceXTicks:{get:function(){return u},set:function(a){u=a}},rotateLabels:{get:function(){return w},set:function(a){w=a}},staggerLabels:{get:function(){return v},set:function(a){v=a}},tooltips:{get:function(){return j.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),j.enabled(!!b)}},tooltipContent:{get:function(){return j.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),j.contentGenerator(b)}},margin:{get:function(){return k},set:function(a){k.top=void 0!==a.top?a.top:k.top,k.right=void 0!==a.right?a.right:k.right,k.bottom=void 0!==a.bottom?a.bottom:k.bottom,k.left=void 0!==a.left?a.left:k.left}},duration:{get:function(){return C},set:function(a){C=a,e.duration(C),f.duration(C),g.duration(C),D.reset(C)}},color:{get:function(){return n},set:function(b){n=a.utils.getColor(b),h.color(n)}},rightAlignYAxis:{get:function(){return t},set:function(a){t=a,g.orient(t?"right":"left")}},barColor:{get:function(){return e.barColor},set:function(a){e.barColor(a),h.color(function(a,b){return d3.rgb("#ccc").darker(1.5*b).toString()})}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.multiBarHorizontal=function(){"use strict";function b(m){return E.reset(),m.each(function(b){var m=k-j.left-j.right,C=l-j.top-j.bottom;n=d3.select(this),a.utils.initSVG(n),w&&(b=d3.layout.stack().offset("zero").values(function(a){return a.values}).y(r)(b)),b.forEach(function(a,b){a.values.forEach(function(c){c.series=b,c.key=a.key})}),w&&b[0].values.map(function(a,c){var d=0,e=0;b.map(function(a){var b=a.values[c];b.size=Math.abs(b.y),b.y<0?(b.y1=e-b.size,e-=b.size):(b.y1=d,d+=b.size)})});var F=d&&e?[]:b.map(function(a){return a.values.map(function(a,b){return{x:q(a,b),y:r(a,b),y0:a.y0,y1:a.y1}})});o.domain(d||d3.merge(F).map(function(a){return a.x})).rangeBands(f||[0,C],A),p.domain(e||d3.extent(d3.merge(F).map(function(a){return w?a.y>0?a.y1+a.y:a.y1:a.y}).concat(t))),p.range(x&&!w?g||[p.domain()[0]<0?z:0,m-(p.domain()[1]>0?z:0)]:g||[0,m]),h=h||o,i=i||d3.scale.linear().domain(p.domain()).range([p(0),p(0)]);{var G=d3.select(this).selectAll("g.nv-wrap.nv-multibarHorizontal").data([b]),H=G.enter().append("g").attr("class","nvd3 nv-wrap nv-multibarHorizontal"),I=(H.append("defs"),H.append("g"));G.select("g")}I.append("g").attr("class","nv-groups"),G.attr("transform","translate("+j.left+","+j.top+")");var J=G.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a,b){return b});J.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),J.exit().watchTransition(E,"multibarhorizontal: exit groups").style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),J.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return u(a,b)}).style("stroke",function(a,b){return u(a,b)}),J.watchTransition(E,"multibarhorizontal: groups").style("stroke-opacity",1).style("fill-opacity",.75);var K=J.selectAll("g.nv-bar").data(function(a){return a.values});K.exit().remove();var L=K.enter().append("g").attr("transform",function(a,c,d){return"translate("+i(w?a.y0:0)+","+(w?0:d*o.rangeBand()/b.length+o(q(a,c)))+")"});L.append("rect").attr("width",0).attr("height",o.rangeBand()/(w?1:b.length)),K.on("mouseover",function(a,b){d3.select(this).classed("hover",!0),D.elementMouseover({data:a,index:b,color:d3.select(this).style("fill")})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),D.elementMouseout({data:a,index:b,color:d3.select(this).style("fill")})}).on("mouseout",function(a,b){D.elementMouseout({data:a,index:b,color:d3.select(this).style("fill")})}).on("mousemove",function(a,b){D.elementMousemove({data:a,index:b,color:d3.select(this).style("fill")})}).on("click",function(a,b){D.elementClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()}).on("dblclick",function(a,b){D.elementDblClick({data:a,index:b,color:d3.select(this).style("fill")}),d3.event.stopPropagation()}),s(b[0],0)&&(L.append("polyline"),K.select("polyline").attr("fill","none").attr("points",function(a,c){var d=s(a,c),e=.8*o.rangeBand()/(2*(w?1:b.length));d=d.length?d:[-Math.abs(d),Math.abs(d)],d=d.map(function(a){return p(a)-p(0)});var f=[[d[0],-e],[d[0],e],[d[0],0],[d[1],0],[d[1],-e],[d[1],e]];return f.map(function(a){return a.join(",")}).join(" ")}).attr("transform",function(a,c){var d=o.rangeBand()/(2*(w?1:b.length));return"translate("+(r(a,c)<0?0:p(r(a,c))-p(0))+", "+d+")"})),L.append("text"),x&&!w?(K.select("text").attr("text-anchor",function(a,b){return r(a,b)<0?"end":"start"}).attr("y",o.rangeBand()/(2*b.length)).attr("dy",".32em").text(function(a,b){var c=B(r(a,b)),d=s(a,b);return void 0===d?c:d.length?c+"+"+B(Math.abs(d[1]))+"-"+B(Math.abs(d[0])):c+"±"+B(Math.abs(d))}),K.watchTransition(E,"multibarhorizontal: bars").select("text").attr("x",function(a,b){return r(a,b)<0?-4:p(r(a,b))-p(0)+4})):K.selectAll("text").text(""),y&&!w?(L.append("text").classed("nv-bar-label",!0),K.select("text.nv-bar-label").attr("text-anchor",function(a,b){return r(a,b)<0?"start":"end"}).attr("y",o.rangeBand()/(2*b.length)).attr("dy",".32em").text(function(a,b){return q(a,b)}),K.watchTransition(E,"multibarhorizontal: bars").select("text.nv-bar-label").attr("x",function(a,b){return r(a,b)<0?p(0)-p(r(a,b))+4:-4})):K.selectAll("text.nv-bar-label").text(""),K.attr("class",function(a,b){return r(a,b)<0?"nv-bar negative":"nv-bar positive"}),v&&(c||(c=b.map(function(){return!0})),K.style("fill",function(a,b,d){return d3.rgb(v(a,b)).darker(c.map(function(a,b){return b}).filter(function(a,b){return!c[b]})[d]).toString()}).style("stroke",function(a,b,d){return d3.rgb(v(a,b)).darker(c.map(function(a,b){return b}).filter(function(a,b){return!c[b]})[d]).toString()})),w?K.watchTransition(E,"multibarhorizontal: bars").attr("transform",function(a,b){return"translate("+p(a.y1)+","+o(q(a,b))+")"}).select("rect").attr("width",function(a,b){return Math.abs(p(r(a,b)+a.y0)-p(a.y0))}).attr("height",o.rangeBand()):K.watchTransition(E,"multibarhorizontal: bars").attr("transform",function(a,c){return"translate("+p(r(a,c)<0?r(a,c):0)+","+(a.series*o.rangeBand()/b.length+o(q(a,c)))+")"}).select("rect").attr("height",o.rangeBand()/b.length).attr("width",function(a,b){return Math.max(Math.abs(p(r(a,b))-p(0)),1)}),h=o.copy(),i=p.copy()}),E.renderEnd("multibarHorizontal immediate"),b}var c,d,e,f,g,h,i,j={top:0,right:0,bottom:0,left:0},k=960,l=500,m=Math.floor(1e4*Math.random()),n=null,o=d3.scale.ordinal(),p=d3.scale.linear(),q=function(a){return a.x},r=function(a){return a.y},s=function(a){return a.yErr},t=[0],u=a.utils.defaultColor(),v=null,w=!1,x=!1,y=!1,z=60,A=.1,B=d3.format(",.2f"),C=250,D=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove","renderEnd"),E=a.utils.renderWatch(D,C);return b.dispatch=D,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return k},set:function(a){k=a}},height:{get:function(){return l},set:function(a){l=a}},x:{get:function(){return q},set:function(a){q=a}},y:{get:function(){return r},set:function(a){r=a}},yErr:{get:function(){return s},set:function(a){s=a}},xScale:{get:function(){return o},set:function(a){o=a}},yScale:{get:function(){return p},set:function(a){p=a}},xDomain:{get:function(){return d},set:function(a){d=a}},yDomain:{get:function(){return e},set:function(a){e=a}},xRange:{get:function(){return f},set:function(a){f=a}},yRange:{get:function(){return g},set:function(a){g=a}},forceY:{get:function(){return t},set:function(a){t=a}},stacked:{get:function(){return w},set:function(a){w=a}},showValues:{get:function(){return x},set:function(a){x=a}},disabled:{get:function(){return c},set:function(a){c=a}},id:{get:function(){return m},set:function(a){m=a}},valueFormat:{get:function(){return B},set:function(a){B=a}},valuePadding:{get:function(){return z},set:function(a){z=a}},groupSpacing:{get:function(){return A},set:function(a){A=a}},margin:{get:function(){return j},set:function(a){j.top=void 0!==a.top?a.top:j.top,j.right=void 0!==a.right?a.right:j.right,j.bottom=void 0!==a.bottom?a.bottom:j.bottom,j.left=void 0!==a.left?a.left:j.left}},duration:{get:function(){return C},set:function(a){C=a,E.reset(C)}},color:{get:function(){return u},set:function(b){u=a.utils.getColor(b)}},barColor:{get:function(){return v},set:function(b){v=b?a.utils.getColor(b):null}}}),a.utils.initOptions(b),b},a.models.multiBarHorizontalChart=function(){"use strict";function b(j){return C.reset(),C.models(e),r&&C.models(f),s&&C.models(g),j.each(function(j){var w=d3.select(this);a.utils.initSVG(w);var C=a.utils.availableWidth(l,w,k),D=a.utils.availableHeight(m,w,k);if(b.update=function(){w.transition().duration(z).call(b)},b.container=this,t=e.stacked(),u.setter(B(j),b.update).getter(A(j)).update(),u.disabled=j.map(function(a){return!!a.disabled}),!v){var E;v={};for(E in u)v[E]=u[E]instanceof Array?u[E].slice(0):u[E]}if(!(j&&j.length&&j.filter(function(a){return a.values.length}).length))return a.utils.noData(b,w),b;w.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale();var F=w.selectAll("g.nv-wrap.nv-multiBarHorizontalChart").data([j]),G=F.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarHorizontalChart").append("g"),H=F.select("g");if(G.append("g").attr("class","nv-x nv-axis"),G.append("g").attr("class","nv-y nv-axis").append("g").attr("class","nv-zeroLine").append("line"),G.append("g").attr("class","nv-barsWrap"),G.append("g").attr("class","nv-legendWrap"),G.append("g").attr("class","nv-controlsWrap"),q&&(h.width(C-y()),H.select(".nv-legendWrap").datum(j).call(h),k.top!=h.height()&&(k.top=h.height(),D=a.utils.availableHeight(m,w,k)),H.select(".nv-legendWrap").attr("transform","translate("+y()+","+-k.top+")")),o){var I=[{key:p.grouped||"Grouped",disabled:e.stacked()},{key:p.stacked||"Stacked",disabled:!e.stacked()}];i.width(y()).color(["#444","#444","#444"]),H.select(".nv-controlsWrap").datum(I).attr("transform","translate(0,"+-k.top+")").call(i)}F.attr("transform","translate("+k.left+","+k.top+")"),e.disabled(j.map(function(a){return a.disabled})).width(C).height(D).color(j.map(function(a,b){return a.color||n(a,b)}).filter(function(a,b){return!j[b].disabled}));var J=H.select(".nv-barsWrap").datum(j.filter(function(a){return!a.disabled}));if(J.transition().call(e),r){f.scale(c)._ticks(a.utils.calcTicksY(D/24,j)).tickSize(-C,0),H.select(".nv-x.nv-axis").call(f);var K=H.select(".nv-x.nv-axis").selectAll("g");K.selectAll("line, text")}s&&(g.scale(d)._ticks(a.utils.calcTicksX(C/100,j)).tickSize(-D,0),H.select(".nv-y.nv-axis").attr("transform","translate(0,"+D+")"),H.select(".nv-y.nv-axis").call(g)),H.select(".nv-zeroLine line").attr("x1",d(0)).attr("x2",d(0)).attr("y1",0).attr("y2",-D),h.dispatch.on("stateChange",function(a){for(var c in a)u[c]=a[c];x.stateChange(u),b.update()}),i.dispatch.on("legendClick",function(a){if(a.disabled){switch(I=I.map(function(a){return a.disabled=!0,a}),a.disabled=!1,a.key){case"Grouped":e.stacked(!1);break;case"Stacked":e.stacked(!0)}u.stacked=e.stacked(),x.stateChange(u),t=e.stacked(),b.update()}}),x.on("changeState",function(a){"undefined"!=typeof a.disabled&&(j.forEach(function(b,c){b.disabled=a.disabled[c]}),u.disabled=a.disabled),"undefined"!=typeof a.stacked&&(e.stacked(a.stacked),u.stacked=a.stacked,t=a.stacked),b.update()})}),C.renderEnd("multibar horizontal chart immediate"),b}var c,d,e=a.models.multiBarHorizontal(),f=a.models.axis(),g=a.models.axis(),h=a.models.legend().height(30),i=a.models.legend().height(30),j=a.models.tooltip(),k={top:30,right:20,bottom:50,left:60},l=null,m=null,n=a.utils.defaultColor(),o=!0,p={},q=!0,r=!0,s=!0,t=!1,u=a.utils.state(),v=null,w=null,x=d3.dispatch("stateChange","changeState","renderEnd"),y=function(){return o?180:0},z=250;u.stacked=!1,e.stacked(t),f.orient("left").tickPadding(5).showMaxMin(!1).tickFormat(function(a){return a}),g.orient("bottom").tickFormat(d3.format(",.1f")),j.duration(0).valueFormatter(function(a,b){return g.tickFormat()(a,b)}).headerFormatter(function(a,b){return f.tickFormat()(a,b)}),i.updateState(!1);var A=function(a){return function(){return{active:a.map(function(a){return!a.disabled}),stacked:t}}},B=function(a){return function(b){void 0!==b.stacked&&(t=b.stacked),void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}},C=a.utils.renderWatch(x,z);return e.dispatch.on("elementMouseover.tooltip",function(a){a.value=b.x()(a.data),a.series={key:a.data.key,value:b.y()(a.data),color:a.color},j.data(a).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(){j.hidden(!0)}),e.dispatch.on("elementMousemove.tooltip",function(){j.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=x,b.multibar=e,b.legend=h,b.controls=i,b.xAxis=f,b.yAxis=g,b.state=u,b.tooltip=j,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return l},set:function(a){l=a}},height:{get:function(){return m},set:function(a){m=a}},showLegend:{get:function(){return q},set:function(a){q=a}},showControls:{get:function(){return o},set:function(a){o=a}},controlLabels:{get:function(){return p},set:function(a){p=a}},showXAxis:{get:function(){return r},set:function(a){r=a}},showYAxis:{get:function(){return s},set:function(a){s=a}},defaultState:{get:function(){return v},set:function(a){v=a}},noData:{get:function(){return w},set:function(a){w=a}},tooltips:{get:function(){return j.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),j.enabled(!!b)}},tooltipContent:{get:function(){return j.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),j.contentGenerator(b)}},margin:{get:function(){return k},set:function(a){k.top=void 0!==a.top?a.top:k.top,k.right=void 0!==a.right?a.right:k.right,k.bottom=void 0!==a.bottom?a.bottom:k.bottom,k.left=void 0!==a.left?a.left:k.left}},duration:{get:function(){return z},set:function(a){z=a,C.reset(z),e.duration(z),f.duration(z),g.duration(z)}},color:{get:function(){return n},set:function(b){n=a.utils.getColor(b),h.color(n)}},barColor:{get:function(){return e.barColor},set:function(a){e.barColor(a),h.color(function(a,b){return d3.rgb("#ccc").darker(1.5*b).toString()})}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.multiChart=function(){"use strict";function b(j){return j.each(function(j){function k(a){var b=2===j[a.seriesIndex].yAxis?z:y;a.value=a.point.x,a.series={value:a.point.y,color:a.point.color},B.duration(100).valueFormatter(function(a,c){return b.tickFormat()(a,c)}).data(a).position(a.pos).hidden(!1)}function l(a){var b=2===j[a.seriesIndex].yAxis?z:y;a.point.x=v.x()(a.point),a.point.y=v.y()(a.point),B.duration(100).valueFormatter(function(a,c){return b.tickFormat()(a,c)}).data(a).position(a.pos).hidden(!1)}function n(a){var b=2===j[a.data.series].yAxis?z:y;a.value=t.x()(a.data),a.series={value:t.y()(a.data),color:a.color},B.duration(0).valueFormatter(function(a,c){return b.tickFormat()(a,c)}).data(a).hidden(!1)}var C=d3.select(this);a.utils.initSVG(C),b.update=function(){C.transition().call(b)},b.container=this;var D=a.utils.availableWidth(g,C,e),E=a.utils.availableHeight(h,C,e),F=j.filter(function(a){return"line"==a.type&&1==a.yAxis}),G=j.filter(function(a){return"line"==a.type&&2==a.yAxis}),H=j.filter(function(a){return"bar"==a.type&&1==a.yAxis}),I=j.filter(function(a){return"bar"==a.type&&2==a.yAxis}),J=j.filter(function(a){return"area"==a.type&&1==a.yAxis}),K=j.filter(function(a){return"area"==a.type&&2==a.yAxis});if(!(j&&j.length&&j.filter(function(a){return a.values.length}).length))return a.utils.noData(b,C),b;C.selectAll(".nv-noData").remove();var L=j.filter(function(a){return!a.disabled&&1==a.yAxis}).map(function(a){return a.values.map(function(a){return{x:a.x,y:a.y}})}),M=j.filter(function(a){return!a.disabled&&2==a.yAxis}).map(function(a){return a.values.map(function(a){return{x:a.x,y:a.y}})});o.domain(d3.extent(d3.merge(L.concat(M)),function(a){return a.x})).range([0,D]);var N=C.selectAll("g.wrap.multiChart").data([j]),O=N.enter().append("g").attr("class","wrap nvd3 multiChart").append("g");O.append("g").attr("class","nv-x nv-axis"),O.append("g").attr("class","nv-y1 nv-axis"),O.append("g").attr("class","nv-y2 nv-axis"),O.append("g").attr("class","lines1Wrap"),O.append("g").attr("class","lines2Wrap"),O.append("g").attr("class","bars1Wrap"),O.append("g").attr("class","bars2Wrap"),O.append("g").attr("class","stack1Wrap"),O.append("g").attr("class","stack2Wrap"),O.append("g").attr("class","legendWrap");var P=N.select("g"),Q=j.map(function(a,b){return j[b].color||f(a,b)});if(i){var R=A.align()?D/2:D,S=A.align()?R:0;A.width(R),A.color(Q),P.select(".legendWrap").datum(j.map(function(a){return a.originalKey=void 0===a.originalKey?a.key:a.originalKey,a.key=a.originalKey+(1==a.yAxis?"":" (right axis)"),a})).call(A),e.top!=A.height()&&(e.top=A.height(),E=a.utils.availableHeight(h,C,e)),P.select(".legendWrap").attr("transform","translate("+S+","+-e.top+")")}r.width(D).height(E).interpolate(m).color(Q.filter(function(a,b){return!j[b].disabled&&1==j[b].yAxis&&"line"==j[b].type})),s.width(D).height(E).interpolate(m).color(Q.filter(function(a,b){return!j[b].disabled&&2==j[b].yAxis&&"line"==j[b].type})),t.width(D).height(E).color(Q.filter(function(a,b){return!j[b].disabled&&1==j[b].yAxis&&"bar"==j[b].type})),u.width(D).height(E).color(Q.filter(function(a,b){return!j[b].disabled&&2==j[b].yAxis&&"bar"==j[b].type})),v.width(D).height(E).color(Q.filter(function(a,b){return!j[b].disabled&&1==j[b].yAxis&&"area"==j[b].type})),w.width(D).height(E).color(Q.filter(function(a,b){return!j[b].disabled&&2==j[b].yAxis&&"area"==j[b].type})),P.attr("transform","translate("+e.left+","+e.top+")");var T=P.select(".lines1Wrap").datum(F.filter(function(a){return!a.disabled})),U=P.select(".bars1Wrap").datum(H.filter(function(a){return!a.disabled})),V=P.select(".stack1Wrap").datum(J.filter(function(a){return!a.disabled})),W=P.select(".lines2Wrap").datum(G.filter(function(a){return!a.disabled})),X=P.select(".bars2Wrap").datum(I.filter(function(a){return!a.disabled})),Y=P.select(".stack2Wrap").datum(K.filter(function(a){return!a.disabled})),Z=J.length?J.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[],$=K.length?K.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[];p.domain(c||d3.extent(d3.merge(L).concat(Z),function(a){return a.y})).range([0,E]),q.domain(d||d3.extent(d3.merge(M).concat($),function(a){return a.y})).range([0,E]),r.yDomain(p.domain()),t.yDomain(p.domain()),v.yDomain(p.domain()),s.yDomain(q.domain()),u.yDomain(q.domain()),w.yDomain(q.domain()),J.length&&d3.transition(V).call(v),K.length&&d3.transition(Y).call(w),H.length&&d3.transition(U).call(t),I.length&&d3.transition(X).call(u),F.length&&d3.transition(T).call(r),G.length&&d3.transition(W).call(s),x._ticks(a.utils.calcTicksX(D/100,j)).tickSize(-E,0),P.select(".nv-x.nv-axis").attr("transform","translate(0,"+E+")"),d3.transition(P.select(".nv-x.nv-axis")).call(x),y._ticks(a.utils.calcTicksY(E/36,j)).tickSize(-D,0),d3.transition(P.select(".nv-y1.nv-axis")).call(y),z._ticks(a.utils.calcTicksY(E/36,j)).tickSize(-D,0),d3.transition(P.select(".nv-y2.nv-axis")).call(z),P.select(".nv-y1.nv-axis").classed("nv-disabled",L.length?!1:!0).attr("transform","translate("+o.range()[0]+",0)"),P.select(".nv-y2.nv-axis").classed("nv-disabled",M.length?!1:!0).attr("transform","translate("+o.range()[1]+",0)"),A.dispatch.on("stateChange",function(){b.update()}),r.dispatch.on("elementMouseover.tooltip",k),s.dispatch.on("elementMouseover.tooltip",k),r.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),s.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),v.dispatch.on("elementMouseover.tooltip",l),w.dispatch.on("elementMouseover.tooltip",l),v.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),w.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),t.dispatch.on("elementMouseover.tooltip",n),u.dispatch.on("elementMouseover.tooltip",n),t.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),u.dispatch.on("elementMouseout.tooltip",function(){B.hidden(!0)}),t.dispatch.on("elementMousemove.tooltip",function(){B.position({top:d3.event.pageY,left:d3.event.pageX})()}),u.dispatch.on("elementMousemove.tooltip",function(){B.position({top:d3.event.pageY,left:d3.event.pageX})()})}),b}var c,d,e={top:30,right:20,bottom:50,left:60},f=a.utils.defaultColor(),g=null,h=null,i=!0,j=null,k=function(a){return a.x},l=function(a){return a.y},m="monotone",n=!0,o=d3.scale.linear(),p=d3.scale.linear(),q=d3.scale.linear(),r=a.models.line().yScale(p),s=a.models.line().yScale(q),t=a.models.multiBar().stacked(!1).yScale(p),u=a.models.multiBar().stacked(!1).yScale(q),v=a.models.stackedArea().yScale(p),w=a.models.stackedArea().yScale(q),x=a.models.axis().scale(o).orient("bottom").tickPadding(5),y=a.models.axis().scale(p).orient("left"),z=a.models.axis().scale(q).orient("right"),A=a.models.legend().height(30),B=a.models.tooltip(),C=d3.dispatch();return b.dispatch=C,b.lines1=r,b.lines2=s,b.bars1=t,b.bars2=u,b.stack1=v,b.stack2=w,b.xAxis=x,b.yAxis1=y,b.yAxis2=z,b.tooltip=B,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return g},set:function(a){g=a}},height:{get:function(){return h},set:function(a){h=a}},showLegend:{get:function(){return i},set:function(a){i=a}},yDomain1:{get:function(){return c},set:function(a){c=a}},yDomain2:{get:function(){return d},set:function(a){d=a}},noData:{get:function(){return j},set:function(a){j=a}},interpolate:{get:function(){return m},set:function(a){m=a}},tooltips:{get:function(){return B.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),B.enabled(!!b)}},tooltipContent:{get:function(){return B.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),B.contentGenerator(b)}},margin:{get:function(){return e},set:function(a){e.top=void 0!==a.top?a.top:e.top,e.right=void 0!==a.right?a.right:e.right,e.bottom=void 0!==a.bottom?a.bottom:e.bottom,e.left=void 0!==a.left?a.left:e.left}},color:{get:function(){return f},set:function(b){f=a.utils.getColor(b)}},x:{get:function(){return k},set:function(a){k=a,r.x(a),s.x(a),t.x(a),u.x(a),v.x(a),w.x(a)}},y:{get:function(){return l},set:function(a){l=a,r.y(a),s.y(a),v.y(a),w.y(a),t.y(a),u.y(a)}},useVoronoi:{get:function(){return n},set:function(a){n=a,r.useVoronoi(a),s.useVoronoi(a),v.useVoronoi(a),w.useVoronoi(a)}}}),a.utils.initOptions(b),b},a.models.ohlcBar=function(){"use strict";function b(y){return y.each(function(b){k=d3.select(this);var y=a.utils.availableWidth(h,k,g),A=a.utils.availableHeight(i,k,g);a.utils.initSVG(k);var B=y/b[0].values.length*.9;l.domain(c||d3.extent(b[0].values.map(n).concat(t))),l.range(v?e||[.5*y/b[0].values.length,y*(b[0].values.length-.5)/b[0].values.length]:e||[5+B/2,y-B/2-5]),m.domain(d||[d3.min(b[0].values.map(s).concat(u)),d3.max(b[0].values.map(r).concat(u))]).range(f||[A,0]),l.domain()[0]===l.domain()[1]&&l.domain(l.domain()[0]?[l.domain()[0]-.01*l.domain()[0],l.domain()[1]+.01*l.domain()[1]]:[-1,1]),m.domain()[0]===m.domain()[1]&&m.domain(m.domain()[0]?[m.domain()[0]+.01*m.domain()[0],m.domain()[1]-.01*m.domain()[1]]:[-1,1]);var C=d3.select(this).selectAll("g.nv-wrap.nv-ohlcBar").data([b[0].values]),D=C.enter().append("g").attr("class","nvd3 nv-wrap nv-ohlcBar"),E=D.append("defs"),F=D.append("g"),G=C.select("g");F.append("g").attr("class","nv-ticks"),C.attr("transform","translate("+g.left+","+g.top+")"),k.on("click",function(a,b){z.chartClick({data:a,index:b,pos:d3.event,id:j})}),E.append("clipPath").attr("id","nv-chart-clip-path-"+j).append("rect"),C.select("#nv-chart-clip-path-"+j+" rect").attr("width",y).attr("height",A),G.attr("clip-path",w?"url(#nv-chart-clip-path-"+j+")":"");var H=C.select(".nv-ticks").selectAll(".nv-tick").data(function(a){return a});H.exit().remove(),H.enter().append("path").attr("class",function(a,b,c){return(p(a,b)>q(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}).attr("d",function(a,b){return"m0,0l0,"+(m(p(a,b))-m(r(a,b)))+"l"+-B/2+",0l"+B/2+",0l0,"+(m(s(a,b))-m(p(a,b)))+"l0,"+(m(q(a,b))-m(s(a,b)))+"l"+B/2+",0l"+-B/2+",0z"}).attr("transform",function(a,b){return"translate("+l(n(a,b))+","+m(r(a,b))+")"}).attr("fill",function(){return x[0]}).attr("stroke",function(){return x[0]}).attr("x",0).attr("y",function(a,b){return m(Math.max(0,o(a,b)))}).attr("height",function(a,b){return Math.abs(m(o(a,b))-m(0))}),H.attr("class",function(a,b,c){return(p(a,b)>q(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}),d3.transition(H).attr("transform",function(a,b){return"translate("+l(n(a,b))+","+m(r(a,b))+")"}).attr("d",function(a,c){var d=y/b[0].values.length*.9;return"m0,0l0,"+(m(p(a,c))-m(r(a,c)))+"l"+-d/2+",0l"+d/2+",0l0,"+(m(s(a,c))-m(p(a,c)))+"l0,"+(m(q(a,c))-m(s(a,c)))+"l"+d/2+",0l"+-d/2+",0z"})}),b}var c,d,e,f,g={top:0,right:0,bottom:0,left:0},h=null,i=null,j=Math.floor(1e4*Math.random()),k=null,l=d3.scale.linear(),m=d3.scale.linear(),n=function(a){return a.x},o=function(a){return a.y},p=function(a){return a.open},q=function(a){return a.close},r=function(a){return a.high},s=function(a){return a.low},t=[],u=[],v=!1,w=!0,x=a.utils.defaultColor(),y=!1,z=d3.dispatch("tooltipShow","tooltipHide","stateChange","changeState","renderEnd","chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove");return b.highlightPoint=function(a,c){b.clearHighlights(),k.select(".nv-ohlcBar .nv-tick-0-"+a).classed("hover",c)},b.clearHighlights=function(){k.select(".nv-ohlcBar .nv-tick.hover").classed("hover",!1)},b.dispatch=z,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return h},set:function(a){h=a}},height:{get:function(){return i},set:function(a){i=a}},xScale:{get:function(){return l},set:function(a){l=a}},yScale:{get:function(){return m},set:function(a){m=a}},xDomain:{get:function(){return c},set:function(a){c=a}},yDomain:{get:function(){return d},set:function(a){d=a}},xRange:{get:function(){return e},set:function(a){e=a}},yRange:{get:function(){return f},set:function(a){f=a}},forceX:{get:function(){return t},set:function(a){t=a}},forceY:{get:function(){return u},set:function(a){u=a}},padData:{get:function(){return v},set:function(a){v=a}},clipEdge:{get:function(){return w},set:function(a){w=a}},id:{get:function(){return j},set:function(a){j=a}},interactive:{get:function(){return y},set:function(a){y=a}},x:{get:function(){return n},set:function(a){n=a}},y:{get:function(){return o},set:function(a){o=a}},open:{get:function(){return p()},set:function(a){p=a}},close:{get:function(){return q()},set:function(a){q=a}},high:{get:function(){return r},set:function(a){r=a}},low:{get:function(){return s},set:function(a){s=a}},margin:{get:function(){return g},set:function(a){g.top=void 0!=a.top?a.top:g.top,g.right=void 0!=a.right?a.right:g.right,g.bottom=void 0!=a.bottom?a.bottom:g.bottom,g.left=void 0!=a.left?a.left:g.left -}},color:{get:function(){return x},set:function(b){x=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.parallelCoordinates=function(){"use strict";function b(p){return p.each(function(b){function p(a){return F(h.map(function(b){if(isNaN(a[b])||isNaN(parseFloat(a[b]))){var c=g[b].domain(),d=g[b].range(),e=c[0]-(c[1]-c[0])/9;if(J.indexOf(b)<0){var h=d3.scale.linear().domain([e,c[1]]).range([x-12,d[1]]);g[b].brush.y(h),J.push(b)}return[f(b),g[b](e)]}return J.length>0?(D.style("display","inline"),E.style("display","inline")):(D.style("display","none"),E.style("display","none")),[f(b),g[b](a[b])]}))}function q(){var a=h.filter(function(a){return!g[a].brush.empty()}),b=a.map(function(a){return g[a].brush.extent()});k=[],a.forEach(function(a,c){k[c]={dimension:a,extent:b[c]}}),l=[],M.style("display",function(c){var d=a.every(function(a,d){return isNaN(c[a])&&b[d][0]==g[a].brush.y().domain()[0]?!0:b[d][0]<=c[a]&&c[a]<=b[d][1]});return d&&l.push(c),d?null:"none"}),o.brush({filters:k,active:l})}function r(a){m[a]=this.parentNode.__origin__=f(a),L.attr("visibility","hidden")}function s(a){m[a]=Math.min(w,Math.max(0,this.parentNode.__origin__+=d3.event.x)),M.attr("d",p),h.sort(function(a,b){return u(a)-u(b)}),f.domain(h),N.attr("transform",function(a){return"translate("+u(a)+")"})}function t(a){delete this.parentNode.__origin__,delete m[a],d3.select(this.parentNode).attr("transform","translate("+f(a)+")"),M.attr("d",p),L.attr("d",p).attr("visibility",null)}function u(a){var b=m[a];return null==b?f(a):b}var v=d3.select(this),w=a.utils.availableWidth(d,v,c),x=a.utils.availableHeight(e,v,c);a.utils.initSVG(v),l=b,f.rangePoints([0,w],1).domain(h);var y={};h.forEach(function(a){var c=d3.extent(b,function(b){return+b[a]});return y[a]=!1,void 0===c[0]&&(y[a]=!0,c[0]=0,c[1]=0),c[0]===c[1]&&(c[0]=c[0]-1,c[1]=c[1]+1),g[a]=d3.scale.linear().domain(c).range([.9*(x-12),0]),g[a].brush=d3.svg.brush().y(g[a]).on("brush",q),"name"!=a});var z=v.selectAll("g.nv-wrap.nv-parallelCoordinates").data([b]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-parallelCoordinates"),B=A.append("g"),C=z.select("g");B.append("g").attr("class","nv-parallelCoordinates background"),B.append("g").attr("class","nv-parallelCoordinates foreground"),B.append("g").attr("class","nv-parallelCoordinates missingValuesline"),z.attr("transform","translate("+c.left+","+c.top+")");var D,E,F=d3.svg.line().interpolate("cardinal").tension(n),G=d3.svg.axis().orient("left"),H=d3.behavior.drag().on("dragstart",r).on("drag",s).on("dragend",t),I=f.range()[1]-f.range()[0],J=[],K=[0+I/2,x-12,w-I/2,x-12];D=z.select(".missingValuesline").selectAll("line").data([K]),D.enter().append("line"),D.exit().remove(),D.attr("x1",function(a){return a[0]}).attr("y1",function(a){return a[1]}).attr("x2",function(a){return a[2]}).attr("y2",function(a){return a[3]}),E=z.select(".missingValuesline").selectAll("text").data(["undefined values"]),E.append("text").data(["undefined values"]),E.enter().append("text"),E.exit().remove(),E.attr("y",x).attr("x",w-92-I/2).text(function(a){return a});var L=z.select(".background").selectAll("path").data(b);L.enter().append("path"),L.exit().remove(),L.attr("d",p);var M=z.select(".foreground").selectAll("path").data(b);M.enter().append("path"),M.exit().remove(),M.attr("d",p).attr("stroke",j),M.on("mouseover",function(a,b){d3.select(this).classed("hover",!0),o.elementMouseover({label:a.name,data:a.data,index:b,pos:[d3.mouse(this.parentNode)[0],d3.mouse(this.parentNode)[1]]})}),M.on("mouseout",function(a,b){d3.select(this).classed("hover",!1),o.elementMouseout({label:a.name,data:a.data,index:b})});var N=C.selectAll(".dimension").data(h),O=N.enter().append("g").attr("class","nv-parallelCoordinates dimension");O.append("g").attr("class","nv-parallelCoordinates nv-axis"),O.append("g").attr("class","nv-parallelCoordinates-brush"),O.append("text").attr("class","nv-parallelCoordinates nv-label"),N.attr("transform",function(a){return"translate("+f(a)+",0)"}),N.exit().remove(),N.select(".nv-label").style("cursor","move").attr("dy","-1em").attr("text-anchor","middle").text(String).on("mouseover",function(a){o.elementMouseover({dim:a,pos:[d3.mouse(this.parentNode.parentNode)[0],d3.mouse(this.parentNode.parentNode)[1]]})}).on("mouseout",function(a){o.elementMouseout({dim:a})}).call(H),N.select(".nv-axis").each(function(a,b){d3.select(this).call(G.scale(g[a]).tickFormat(d3.format(i[b])))}),N.select(".nv-parallelCoordinates-brush").each(function(a){d3.select(this).call(g[a].brush)}).selectAll("rect").attr("x",-8).attr("width",16)}),b}var c={top:30,right:0,bottom:10,left:0},d=null,e=null,f=d3.scale.ordinal(),g={},h=[],i=[],j=a.utils.defaultColor(),k=[],l=[],m=[],n=1,o=d3.dispatch("brush","elementMouseover","elementMouseout");return b.dispatch=o,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return d},set:function(a){d=a}},height:{get:function(){return e},set:function(a){e=a}},dimensionNames:{get:function(){return h},set:function(a){h=a}},dimensionFormats:{get:function(){return i},set:function(a){i=a}},lineTension:{get:function(){return n},set:function(a){n=a}},dimensions:{get:function(){return h},set:function(b){a.deprecated("dimensions","use dimensionNames instead"),h=b}},margin:{get:function(){return c},set:function(a){c.top=void 0!==a.top?a.top:c.top,c.right=void 0!==a.right?a.right:c.right,c.bottom=void 0!==a.bottom?a.bottom:c.bottom,c.left=void 0!==a.left?a.left:c.left}},color:{get:function(){return j},set:function(b){j=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.pie=function(){"use strict";function b(E){return D.reset(),E.each(function(b){function E(a,b){a.endAngle=isNaN(a.endAngle)?0:a.endAngle,a.startAngle=isNaN(a.startAngle)?0:a.startAngle,p||(a.innerRadius=0);var c=d3.interpolate(this._current,a);return this._current=c(0),function(a){return B[b](c(a))}}var F=d-c.left-c.right,G=e-c.top-c.bottom,H=Math.min(F,G)/2,I=[],J=[];if(i=d3.select(this),0===z.length)for(var K=H-H/5,L=y*H,M=0;Mc)return"";if("function"==typeof n)d=n(a,b,{key:f(a.data),value:g(a.data),percent:k(c)});else switch(n){case"key":d=f(a.data);break;case"value":d=k(g(a.data));break;case"percent":d=d3.format("%")(c)}return d})}}),D.renderEnd("pie immediate"),b}var c={top:0,right:0,bottom:0,left:0},d=500,e=500,f=function(a){return a.x},g=function(a){return a.y},h=Math.floor(1e4*Math.random()),i=null,j=a.utils.defaultColor(),k=d3.format(",.2f"),l=!0,m=!1,n="key",o=.02,p=!1,q=!1,r=!0,s=0,t=!1,u=!1,v=!1,w=!1,x=0,y=.5,z=[],A=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout","elementMousemove","renderEnd"),B=[],C=[],D=a.utils.renderWatch(A);return b.dispatch=A,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{arcsRadius:{get:function(){return z},set:function(a){z=a}},width:{get:function(){return d},set:function(a){d=a}},height:{get:function(){return e},set:function(a){e=a}},showLabels:{get:function(){return l},set:function(a){l=a}},title:{get:function(){return q},set:function(a){q=a}},titleOffset:{get:function(){return s},set:function(a){s=a}},labelThreshold:{get:function(){return o},set:function(a){o=a}},valueFormat:{get:function(){return k},set:function(a){k=a}},x:{get:function(){return f},set:function(a){f=a}},id:{get:function(){return h},set:function(a){h=a}},endAngle:{get:function(){return w},set:function(a){w=a}},startAngle:{get:function(){return u},set:function(a){u=a}},padAngle:{get:function(){return v},set:function(a){v=a}},cornerRadius:{get:function(){return x},set:function(a){x=a}},donutRatio:{get:function(){return y},set:function(a){y=a}},labelsOutside:{get:function(){return m},set:function(a){m=a}},labelSunbeamLayout:{get:function(){return t},set:function(a){t=a}},donut:{get:function(){return p},set:function(a){p=a}},growOnHover:{get:function(){return r},set:function(a){r=a}},pieLabelsOutside:{get:function(){return m},set:function(b){m=b,a.deprecated("pieLabelsOutside","use labelsOutside instead")}},donutLabelsOutside:{get:function(){return m},set:function(b){m=b,a.deprecated("donutLabelsOutside","use labelsOutside instead")}},labelFormat:{get:function(){return k},set:function(b){k=b,a.deprecated("labelFormat","use valueFormat instead")}},margin:{get:function(){return c},set:function(a){c.top="undefined"!=typeof a.top?a.top:c.top,c.right="undefined"!=typeof a.right?a.right:c.right,c.bottom="undefined"!=typeof a.bottom?a.bottom:c.bottom,c.left="undefined"!=typeof a.left?a.left:c.left}},y:{get:function(){return g},set:function(a){g=d3.functor(a)}},color:{get:function(){return j},set:function(b){j=a.utils.getColor(b)}},labelType:{get:function(){return n},set:function(a){n=a||"key"}}}),a.utils.initOptions(b),b},a.models.pieChart=function(){"use strict";function b(e){return q.reset(),q.models(c),e.each(function(e){var k=d3.select(this);a.utils.initSVG(k);var n=a.utils.availableWidth(g,k,f),o=a.utils.availableHeight(h,k,f);if(b.update=function(){k.transition().call(b)},b.container=this,l.setter(s(e),b.update).getter(r(e)).update(),l.disabled=e.map(function(a){return!!a.disabled}),!m){var q;m={};for(q in l)m[q]=l[q]instanceof Array?l[q].slice(0):l[q]}if(!e||!e.length)return a.utils.noData(b,k),b;k.selectAll(".nv-noData").remove();var t=k.selectAll("g.nv-wrap.nv-pieChart").data([e]),u=t.enter().append("g").attr("class","nvd3 nv-wrap nv-pieChart").append("g"),v=t.select("g");if(u.append("g").attr("class","nv-pieWrap"),u.append("g").attr("class","nv-legendWrap"),i)if("top"===j)d.width(n).key(c.x()),t.select(".nv-legendWrap").datum(e).call(d),f.top!=d.height()&&(f.top=d.height(),o=a.utils.availableHeight(h,k,f)),t.select(".nv-legendWrap").attr("transform","translate(0,"+-f.top+")");else if("right"===j){var w=a.models.legend().width();w>n/2&&(w=n/2),d.height(o).key(c.x()),d.width(w),n-=d.width(),t.select(".nv-legendWrap").datum(e).call(d).attr("transform","translate("+n+",0)")}t.attr("transform","translate("+f.left+","+f.top+")"),c.width(n).height(o);var x=v.select(".nv-pieWrap").datum([e]);d3.transition(x).call(c),d.dispatch.on("stateChange",function(a){for(var c in a)l[c]=a[c];p.stateChange(l),b.update()}),p.on("changeState",function(a){"undefined"!=typeof a.disabled&&(e.forEach(function(b,c){b.disabled=a.disabled[c]}),l.disabled=a.disabled),b.update()})}),q.renderEnd("pieChart immediate"),b}var c=a.models.pie(),d=a.models.legend(),e=a.models.tooltip(),f={top:30,right:20,bottom:20,left:20},g=null,h=null,i=!0,j="top",k=a.utils.defaultColor(),l=a.utils.state(),m=null,n=null,o=250,p=d3.dispatch("tooltipShow","tooltipHide","stateChange","changeState","renderEnd");e.headerEnabled(!1).duration(0).valueFormatter(function(a,b){return c.valueFormat()(a,b)});var q=a.utils.renderWatch(p),r=function(a){return function(){return{active:a.map(function(a){return!a.disabled})}}},s=function(a){return function(b){void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return c.dispatch.on("elementMouseover.tooltip",function(a){a.series={key:b.x()(a.data),value:b.y()(a.data),color:a.color},e.data(a).hidden(!1)}),c.dispatch.on("elementMouseout.tooltip",function(){e.hidden(!0)}),c.dispatch.on("elementMousemove.tooltip",function(){e.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.legend=d,b.dispatch=p,b.pie=c,b.tooltip=e,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{noData:{get:function(){return n},set:function(a){n=a}},showLegend:{get:function(){return i},set:function(a){i=a}},legendPosition:{get:function(){return j},set:function(a){j=a}},defaultState:{get:function(){return m},set:function(a){m=a}},tooltips:{get:function(){return e.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),e.enabled(!!b)}},tooltipContent:{get:function(){return e.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),e.contentGenerator(b)}},color:{get:function(){return k},set:function(a){k=a,d.color(k),c.color(k)}},duration:{get:function(){return o},set:function(a){o=a,q.reset(o)}},margin:{get:function(){return f},set:function(a){f.top=void 0!==a.top?a.top:f.top,f.right=void 0!==a.right?a.right:f.right,f.bottom=void 0!==a.bottom?a.bottom:f.bottom,f.left=void 0!==a.left?a.left:f.left}}}),a.utils.inheritOptions(b,c),a.utils.initOptions(b),b},a.models.scatter=function(){"use strict";function b(N){return P.reset(),N.each(function(b){function N(){if(O=!1,!w)return!1;if(M===!0){var a=d3.merge(b.map(function(a,b){return a.values.map(function(a,c){var d=p(a,c),e=q(a,c);return[m(d)+1e-4*Math.random(),n(e)+1e-4*Math.random(),b,c,a]}).filter(function(a,b){return x(a[4],b)})}));if(0==a.length)return!1;a.length<3&&(a.push([m.range()[0]-20,n.range()[0]-20,null,null]),a.push([m.range()[1]+20,n.range()[1]+20,null,null]),a.push([m.range()[0]-20,n.range()[0]+20,null,null]),a.push([m.range()[1]+20,n.range()[1]-20,null,null]));var c=d3.geom.polygon([[-10,-10],[-10,i+10],[h+10,i+10],[h+10,-10]]),d=d3.geom.voronoi(a).map(function(b,d){return{data:c.clip(b),series:a[d][2],point:a[d][3]}});U.select(".nv-point-paths").selectAll("path").remove();var e=U.select(".nv-point-paths").selectAll("path").data(d),f=e.enter().append("svg:path").attr("d",function(a){return a&&a.data&&0!==a.data.length?"M"+a.data.join(",")+"Z":"M 0 0"}).attr("id",function(a,b){return"nv-path-"+b}).attr("clip-path",function(a,b){return"url(#nv-clip-"+b+")"});C&&f.style("fill",d3.rgb(230,230,230)).style("fill-opacity",.4).style("stroke-opacity",1).style("stroke",d3.rgb(200,200,200)),B&&(U.select(".nv-point-clips").selectAll("clipPath").remove(),U.select(".nv-point-clips").selectAll("clipPath").data(a).enter().append("svg:clipPath").attr("id",function(a,b){return"nv-clip-"+b}).append("svg:circle").attr("cx",function(a){return a[0]}).attr("cy",function(a){return a[1]}).attr("r",D));var k=function(a,c){if(O)return 0;var d=b[a.series];if(void 0!==d){var e=d.values[a.point];e.color=j(d,a.series),e.x=p(e),e.y=q(e);var f=l.node().getBoundingClientRect(),h=window.pageYOffset||document.documentElement.scrollTop,i=window.pageXOffset||document.documentElement.scrollLeft,k={left:m(p(e,a.point))+f.left+i+g.left+10,top:n(q(e,a.point))+f.top+h+g.top+10};c({point:e,series:d,pos:k,seriesIndex:a.series,pointIndex:a.point})}};e.on("click",function(a){k(a,L.elementClick)}).on("dblclick",function(a){k(a,L.elementDblClick)}).on("mouseover",function(a){k(a,L.elementMouseover)}).on("mouseout",function(a){k(a,L.elementMouseout)})}else U.select(".nv-groups").selectAll(".nv-group").selectAll(".nv-point").on("click",function(a,c){if(O||!b[a.series])return 0;var d=b[a.series],e=d.values[c];L.elementClick({point:e,series:d,pos:[m(p(e,c))+g.left,n(q(e,c))+g.top],seriesIndex:a.series,pointIndex:c})}).on("dblclick",function(a,c){if(O||!b[a.series])return 0;var d=b[a.series],e=d.values[c];L.elementDblClick({point:e,series:d,pos:[m(p(e,c))+g.left,n(q(e,c))+g.top],seriesIndex:a.series,pointIndex:c})}).on("mouseover",function(a,c){if(O||!b[a.series])return 0;var d=b[a.series],e=d.values[c];L.elementMouseover({point:e,series:d,pos:[m(p(e,c))+g.left,n(q(e,c))+g.top],seriesIndex:a.series,pointIndex:c,color:j(a,c)})}).on("mouseout",function(a,c){if(O||!b[a.series])return 0;var d=b[a.series],e=d.values[c];L.elementMouseout({point:e,series:d,seriesIndex:a.series,pointIndex:c,color:j(a,c)})})}l=d3.select(this);var R=a.utils.availableWidth(h,l,g),S=a.utils.availableHeight(i,l,g);a.utils.initSVG(l),b.forEach(function(a,b){a.values.forEach(function(a){a.series=b})});var T=E&&F&&I?[]:d3.merge(b.map(function(a){return a.values.map(function(a,b){return{x:p(a,b),y:q(a,b),size:r(a,b)}})}));m.domain(E||d3.extent(T.map(function(a){return a.x}).concat(t))),m.range(y&&b[0]?G||[(R*z+R)/(2*b[0].values.length),R-R*(1+z)/(2*b[0].values.length)]:G||[0,R]),n.domain(F||d3.extent(T.map(function(a){return a.y}).concat(u))).range(H||[S,0]),o.domain(I||d3.extent(T.map(function(a){return a.size}).concat(v))).range(J||Q),K=m.domain()[0]===m.domain()[1]||n.domain()[0]===n.domain()[1],m.domain()[0]===m.domain()[1]&&m.domain(m.domain()[0]?[m.domain()[0]-.01*m.domain()[0],m.domain()[1]+.01*m.domain()[1]]:[-1,1]),n.domain()[0]===n.domain()[1]&&n.domain(n.domain()[0]?[n.domain()[0]-.01*n.domain()[0],n.domain()[1]+.01*n.domain()[1]]:[-1,1]),isNaN(m.domain()[0])&&m.domain([-1,1]),isNaN(n.domain()[0])&&n.domain([-1,1]),c=c||m,d=d||n,e=e||o;var U=l.selectAll("g.nv-wrap.nv-scatter").data([b]),V=U.enter().append("g").attr("class","nvd3 nv-wrap nv-scatter nv-chart-"+k),W=V.append("defs"),X=V.append("g"),Y=U.select("g");U.classed("nv-single-point",K),X.append("g").attr("class","nv-groups"),X.append("g").attr("class","nv-point-paths"),V.append("g").attr("class","nv-point-clips"),U.attr("transform","translate("+g.left+","+g.top+")"),W.append("clipPath").attr("id","nv-edge-clip-"+k).append("rect"),U.select("#nv-edge-clip-"+k+" rect").attr("width",R).attr("height",S>0?S:0),Y.attr("clip-path",A?"url(#nv-edge-clip-"+k+")":""),O=!0;var Z=U.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});Z.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),Z.exit().remove(),Z.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}),Z.watchTransition(P,"scatter: groups").style("fill",function(a,b){return j(a,b)}).style("stroke",function(a,b){return j(a,b)}).style("stroke-opacity",1).style("fill-opacity",.5);var $=Z.selectAll("path.nv-point").data(function(a){return a.values.map(function(a,b){return[a,b]}).filter(function(a,b){return x(a[0],b)})});$.enter().append("path").style("fill",function(a){return a.color}).style("stroke",function(a){return a.color}).attr("transform",function(a){return"translate("+c(p(a[0],a[1]))+","+d(q(a[0],a[1]))+")"}).attr("d",a.utils.symbol().type(function(a){return s(a[0])}).size(function(a){return o(r(a[0],a[1]))})),$.exit().remove(),Z.exit().selectAll("path.nv-point").watchTransition(P,"scatter exit").attr("transform",function(a){return"translate("+m(p(a[0],a[1]))+","+n(q(a[0],a[1]))+")"}).remove(),$.each(function(a){d3.select(this).classed("nv-point",!0).classed("nv-point-"+a[1],!0).classed("nv-noninteractive",!w).classed("hover",!1)}),$.watchTransition(P,"scatter points").attr("transform",function(a){return"translate("+m(p(a[0],a[1]))+","+n(q(a[0],a[1]))+")"}).attr("d",a.utils.symbol().type(function(a){return s(a[0])}).size(function(a){return o(r(a[0],a[1]))})),clearTimeout(f),f=setTimeout(N,300),c=m.copy(),d=n.copy(),e=o.copy()}),P.renderEnd("scatter immediate"),b}var c,d,e,f,g={top:0,right:0,bottom:0,left:0},h=null,i=null,j=a.utils.defaultColor(),k=Math.floor(1e5*Math.random()),l=null,m=d3.scale.linear(),n=d3.scale.linear(),o=d3.scale.linear(),p=function(a){return a.x},q=function(a){return a.y},r=function(a){return a.size||1},s=function(a){return a.shape||"circle"},t=[],u=[],v=[],w=!0,x=function(a){return!a.notActive},y=!1,z=.1,A=!1,B=!0,C=!1,D=function(){return 25},E=null,F=null,G=null,H=null,I=null,J=null,K=!1,L=d3.dispatch("elementClick","elementDblClick","elementMouseover","elementMouseout","renderEnd"),M=!0,N=250,O=!1,P=a.utils.renderWatch(L,N),Q=[16,256];return b.dispatch=L,b.options=a.utils.optionsFunc.bind(b),b._calls=new function(){this.clearHighlights=function(){return a.dom.write(function(){l.selectAll(".nv-point.hover").classed("hover",!1)}),null},this.highlightPoint=function(b,c,d){a.dom.write(function(){l.select(" .nv-series-"+b+" .nv-point-"+c).classed("hover",d)})}},L.on("elementMouseover.point",function(a){w&&b._calls.highlightPoint(a.seriesIndex,a.pointIndex,!0)}),L.on("elementMouseout.point",function(a){w&&b._calls.highlightPoint(a.seriesIndex,a.pointIndex,!1)}),b._options=Object.create({},{width:{get:function(){return h},set:function(a){h=a}},height:{get:function(){return i},set:function(a){i=a}},xScale:{get:function(){return m},set:function(a){m=a}},yScale:{get:function(){return n},set:function(a){n=a}},pointScale:{get:function(){return o},set:function(a){o=a}},xDomain:{get:function(){return E},set:function(a){E=a}},yDomain:{get:function(){return F},set:function(a){F=a}},pointDomain:{get:function(){return I},set:function(a){I=a}},xRange:{get:function(){return G},set:function(a){G=a}},yRange:{get:function(){return H},set:function(a){H=a}},pointRange:{get:function(){return J},set:function(a){J=a}},forceX:{get:function(){return t},set:function(a){t=a}},forceY:{get:function(){return u},set:function(a){u=a}},forcePoint:{get:function(){return v},set:function(a){v=a}},interactive:{get:function(){return w},set:function(a){w=a}},pointActive:{get:function(){return x},set:function(a){x=a}},padDataOuter:{get:function(){return z},set:function(a){z=a}},padData:{get:function(){return y},set:function(a){y=a}},clipEdge:{get:function(){return A},set:function(a){A=a}},clipVoronoi:{get:function(){return B},set:function(a){B=a}},clipRadius:{get:function(){return D},set:function(a){D=a}},showVoronoi:{get:function(){return C},set:function(a){C=a}},id:{get:function(){return k},set:function(a){k=a}},x:{get:function(){return p},set:function(a){p=d3.functor(a)}},y:{get:function(){return q},set:function(a){q=d3.functor(a)}},pointSize:{get:function(){return r},set:function(a){r=d3.functor(a)}},pointShape:{get:function(){return s},set:function(a){s=d3.functor(a)}},margin:{get:function(){return g},set:function(a){g.top=void 0!==a.top?a.top:g.top,g.right=void 0!==a.right?a.right:g.right,g.bottom=void 0!==a.bottom?a.bottom:g.bottom,g.left=void 0!==a.left?a.left:g.left}},duration:{get:function(){return N},set:function(a){N=a,P.reset(N)}},color:{get:function(){return j},set:function(b){j=a.utils.getColor(b)}},useVoronoi:{get:function(){return M},set:function(a){M=a,M===!1&&(B=!1)}}}),a.utils.initOptions(b),b},a.models.scatterChart=function(){"use strict";function b(z){return D.reset(),D.models(c),t&&D.models(d),u&&D.models(e),q&&D.models(g),r&&D.models(h),z.each(function(z){m=d3.select(this),a.utils.initSVG(m);var G=a.utils.availableWidth(k,m,j),H=a.utils.availableHeight(l,m,j);if(b.update=function(){0===A?m.call(b):m.transition().duration(A).call(b)},b.container=this,w.setter(F(z),b.update).getter(E(z)).update(),w.disabled=z.map(function(a){return!!a.disabled}),!x){var I;x={};for(I in w)x[I]=w[I]instanceof Array?w[I].slice(0):w[I]}if(!(z&&z.length&&z.filter(function(a){return a.values.length}).length))return a.utils.noData(b,m),D.renderEnd("scatter immediate"),b;m.selectAll(".nv-noData").remove(),o=c.xScale(),p=c.yScale();var J=m.selectAll("g.nv-wrap.nv-scatterChart").data([z]),K=J.enter().append("g").attr("class","nvd3 nv-wrap nv-scatterChart nv-chart-"+c.id()),L=K.append("g"),M=J.select("g");if(L.append("rect").attr("class","nvd3 nv-background").style("pointer-events","none"),L.append("g").attr("class","nv-x nv-axis"),L.append("g").attr("class","nv-y nv-axis"),L.append("g").attr("class","nv-scatterWrap"),L.append("g").attr("class","nv-regressionLinesWrap"),L.append("g").attr("class","nv-distWrap"),L.append("g").attr("class","nv-legendWrap"),v&&M.select(".nv-y.nv-axis").attr("transform","translate("+G+",0)"),s){var N=G;f.width(N),J.select(".nv-legendWrap").datum(z).call(f),j.top!=f.height()&&(j.top=f.height(),H=a.utils.availableHeight(l,m,j)),J.select(".nv-legendWrap").attr("transform","translate(0,"+-j.top+")")}J.attr("transform","translate("+j.left+","+j.top+")"),c.width(G).height(H).color(z.map(function(a,b){return a.color=a.color||n(a,b),a.color}).filter(function(a,b){return!z[b].disabled})),J.select(".nv-scatterWrap").datum(z.filter(function(a){return!a.disabled})).call(c),J.select(".nv-regressionLinesWrap").attr("clip-path","url(#nv-edge-clip-"+c.id()+")");var O=J.select(".nv-regressionLinesWrap").selectAll(".nv-regLines").data(function(a){return a});O.enter().append("g").attr("class","nv-regLines");var P=O.selectAll(".nv-regLine").data(function(a){return[a]});P.enter().append("line").attr("class","nv-regLine").style("stroke-opacity",0),P.filter(function(a){return a.intercept&&a.slope}).watchTransition(D,"scatterPlusLineChart: regline").attr("x1",o.range()[0]).attr("x2",o.range()[1]).attr("y1",function(a){return p(o.domain()[0]*a.slope+a.intercept)}).attr("y2",function(a){return p(o.domain()[1]*a.slope+a.intercept)}).style("stroke",function(a,b,c){return n(a,c)}).style("stroke-opacity",function(a){return a.disabled||"undefined"==typeof a.slope||"undefined"==typeof a.intercept?0:1}),t&&(d.scale(o)._ticks(a.utils.calcTicksX(G/100,z)).tickSize(-H,0),M.select(".nv-x.nv-axis").attr("transform","translate(0,"+p.range()[0]+")").call(d)),u&&(e.scale(p)._ticks(a.utils.calcTicksY(H/36,z)).tickSize(-G,0),M.select(".nv-y.nv-axis").call(e)),q&&(g.getData(c.x()).scale(o).width(G).color(z.map(function(a,b){return a.color||n(a,b)}).filter(function(a,b){return!z[b].disabled})),L.select(".nv-distWrap").append("g").attr("class","nv-distributionX"),M.select(".nv-distributionX").attr("transform","translate(0,"+p.range()[0]+")").datum(z.filter(function(a){return!a.disabled})).call(g)),r&&(h.getData(c.y()).scale(p).width(H).color(z.map(function(a,b){return a.color||n(a,b)}).filter(function(a,b){return!z[b].disabled})),L.select(".nv-distWrap").append("g").attr("class","nv-distributionY"),M.select(".nv-distributionY").attr("transform","translate("+(v?G:-h.size())+",0)").datum(z.filter(function(a){return!a.disabled})).call(h)),f.dispatch.on("stateChange",function(a){for(var c in a)w[c]=a[c];y.stateChange(w),b.update()}),y.on("changeState",function(a){"undefined"!=typeof a.disabled&&(z.forEach(function(b,c){b.disabled=a.disabled[c]}),w.disabled=a.disabled),b.update()}),c.dispatch.on("elementMouseout.tooltip",function(a){i.hidden(!0),m.select(".nv-chart-"+c.id()+" .nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",0),m.select(".nv-chart-"+c.id()+" .nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",h.size())}),c.dispatch.on("elementMouseover.tooltip",function(a){m.select(".nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",a.pos.top-H-j.top),m.select(".nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",a.pos.left+g.size()-j.left),i.position(a.pos).data(a).hidden(!1)}),B=o.copy(),C=p.copy()}),D.renderEnd("scatter with line immediate"),b}var c=a.models.scatter(),d=a.models.axis(),e=a.models.axis(),f=a.models.legend(),g=a.models.distribution(),h=a.models.distribution(),i=a.models.tooltip(),j={top:30,right:20,bottom:50,left:75},k=null,l=null,m=null,n=a.utils.defaultColor(),o=c.xScale(),p=c.yScale(),q=!1,r=!1,s=!0,t=!0,u=!0,v=!1,w=a.utils.state(),x=null,y=d3.dispatch("stateChange","changeState","renderEnd"),z=null,A=250;c.xScale(o).yScale(p),d.orient("bottom").tickPadding(10),e.orient(v?"right":"left").tickPadding(10),g.axis("x"),h.axis("y"),i.headerFormatter(function(a,b){return d.tickFormat()(a,b)}).valueFormatter(function(a,b){return e.tickFormat()(a,b)});var B,C,D=a.utils.renderWatch(y,A),E=function(a){return function(){return{active:a.map(function(a){return!a.disabled})}}},F=function(a){return function(b){void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}};return b.dispatch=y,b.scatter=c,b.legend=f,b.xAxis=d,b.yAxis=e,b.distX=g,b.distY=h,b.tooltip=i,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return k},set:function(a){k=a}},height:{get:function(){return l},set:function(a){l=a}},container:{get:function(){return m},set:function(a){m=a}},showDistX:{get:function(){return q},set:function(a){q=a}},showDistY:{get:function(){return r},set:function(a){r=a}},showLegend:{get:function(){return s},set:function(a){s=a}},showXAxis:{get:function(){return t},set:function(a){t=a}},showYAxis:{get:function(){return u},set:function(a){u=a}},defaultState:{get:function(){return x},set:function(a){x=a}},noData:{get:function(){return z},set:function(a){z=a}},duration:{get:function(){return A},set:function(a){A=a}},tooltips:{get:function(){return i.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),i.enabled(!!b) -}},tooltipContent:{get:function(){return i.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),i.contentGenerator(b)}},tooltipXContent:{get:function(){return i.contentGenerator()},set:function(){a.deprecated("tooltipContent","This option is removed, put values into main tooltip.")}},tooltipYContent:{get:function(){return i.contentGenerator()},set:function(){a.deprecated("tooltipContent","This option is removed, put values into main tooltip.")}},margin:{get:function(){return j},set:function(a){j.top=void 0!==a.top?a.top:j.top,j.right=void 0!==a.right?a.right:j.right,j.bottom=void 0!==a.bottom?a.bottom:j.bottom,j.left=void 0!==a.left?a.left:j.left}},rightAlignYAxis:{get:function(){return v},set:function(a){v=a,e.orient(a?"right":"left")}},color:{get:function(){return n},set:function(b){n=a.utils.getColor(b),f.color(n),g.color(n),h.color(n)}}}),a.utils.inheritOptions(b,c),a.utils.initOptions(b),b},a.models.sparkline=function(){"use strict";function b(k){return k.each(function(b){var k=h-g.left-g.right,q=i-g.top-g.bottom;j=d3.select(this),a.utils.initSVG(j),l.domain(c||d3.extent(b,n)).range(e||[0,k]),m.domain(d||d3.extent(b,o)).range(f||[q,0]);{var r=j.selectAll("g.nv-wrap.nv-sparkline").data([b]),s=r.enter().append("g").attr("class","nvd3 nv-wrap nv-sparkline");s.append("g"),r.select("g")}r.attr("transform","translate("+g.left+","+g.top+")");var t=r.selectAll("path").data(function(a){return[a]});t.enter().append("path"),t.exit().remove(),t.style("stroke",function(a,b){return a.color||p(a,b)}).attr("d",d3.svg.line().x(function(a,b){return l(n(a,b))}).y(function(a,b){return m(o(a,b))}));var u=r.selectAll("circle.nv-point").data(function(a){function b(b){if(-1!=b){var c=a[b];return c.pointIndex=b,c}return null}var c=a.map(function(a,b){return o(a,b)}),d=b(c.lastIndexOf(m.domain()[1])),e=b(c.indexOf(m.domain()[0])),f=b(c.length-1);return[e,d,f].filter(function(a){return null!=a})});u.enter().append("circle"),u.exit().remove(),u.attr("cx",function(a){return l(n(a,a.pointIndex))}).attr("cy",function(a){return m(o(a,a.pointIndex))}).attr("r",2).attr("class",function(a){return n(a,a.pointIndex)==l.domain()[1]?"nv-point nv-currentValue":o(a,a.pointIndex)==m.domain()[0]?"nv-point nv-minValue":"nv-point nv-maxValue"})}),b}var c,d,e,f,g={top:2,right:0,bottom:2,left:0},h=400,i=32,j=null,k=!0,l=d3.scale.linear(),m=d3.scale.linear(),n=function(a){return a.x},o=function(a){return a.y},p=a.utils.getColor(["#000"]);return b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return h},set:function(a){h=a}},height:{get:function(){return i},set:function(a){i=a}},xDomain:{get:function(){return c},set:function(a){c=a}},yDomain:{get:function(){return d},set:function(a){d=a}},xRange:{get:function(){return e},set:function(a){e=a}},yRange:{get:function(){return f},set:function(a){f=a}},xScale:{get:function(){return l},set:function(a){l=a}},yScale:{get:function(){return m},set:function(a){m=a}},animate:{get:function(){return k},set:function(a){k=a}},x:{get:function(){return n},set:function(a){n=d3.functor(a)}},y:{get:function(){return o},set:function(a){o=d3.functor(a)}},margin:{get:function(){return g},set:function(a){g.top=void 0!==a.top?a.top:g.top,g.right=void 0!==a.right?a.right:g.right,g.bottom=void 0!==a.bottom?a.bottom:g.bottom,g.left=void 0!==a.left?a.left:g.left}},color:{get:function(){return p},set:function(b){p=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.sparklinePlus=function(){"use strict";function b(p){return p.each(function(p){function q(){if(!j){var a=z.selectAll(".nv-hoverValue").data(i),b=a.enter().append("g").attr("class","nv-hoverValue").style("stroke-opacity",0).style("fill-opacity",0);a.exit().transition().duration(250).style("stroke-opacity",0).style("fill-opacity",0).remove(),a.attr("transform",function(a){return"translate("+c(e.x()(p[a],a))+",0)"}).transition().duration(250).style("stroke-opacity",1).style("fill-opacity",1),i.length&&(b.append("line").attr("x1",0).attr("y1",-f.top).attr("x2",0).attr("y2",u),b.append("text").attr("class","nv-xValue").attr("x",-6).attr("y",-f.top).attr("text-anchor","end").attr("dy",".9em"),z.select(".nv-hoverValue .nv-xValue").text(k(e.x()(p[i[0]],i[0]))),b.append("text").attr("class","nv-yValue").attr("x",6).attr("y",-f.top).attr("text-anchor","start").attr("dy",".9em"),z.select(".nv-hoverValue .nv-yValue").text(l(e.y()(p[i[0]],i[0]))))}}function r(){function a(a,b){for(var c=Math.abs(e.x()(a[0],0)-b),d=0,f=0;fc;++c){for(b=0,d=0;bb;b++)a[b][c][1]/=d;else for(b=0;e>b;b++)a[b][c][1]=0}for(c=0;f>c;++c)g[c]=0;return g}}),u.renderEnd("stackedArea immediate"),b}var c,d,e={top:0,right:0,bottom:0,left:0},f=960,g=500,h=a.utils.defaultColor(),i=Math.floor(1e5*Math.random()),j=null,k=function(a){return a.x},l=function(a){return a.y},m="stack",n="zero",o="default",p="linear",q=!1,r=a.models.scatter(),s=250,t=d3.dispatch("areaClick","areaMouseover","areaMouseout","renderEnd","elementClick","elementMouseover","elementMouseout");r.pointSize(2.2).pointDomain([2.2,2.2]);var u=a.utils.renderWatch(t,s);return b.dispatch=t,b.scatter=r,r.dispatch.on("elementClick",function(){t.elementClick.apply(this,arguments)}),r.dispatch.on("elementMouseover",function(){t.elementMouseover.apply(this,arguments)}),r.dispatch.on("elementMouseout",function(){t.elementMouseout.apply(this,arguments)}),b.interpolate=function(a){return arguments.length?(p=a,b):p},b.duration=function(a){return arguments.length?(s=a,u.reset(s),r.duration(s),b):s},b.dispatch=t,b.scatter=r,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return f},set:function(a){f=a}},height:{get:function(){return g},set:function(a){g=a}},clipEdge:{get:function(){return q},set:function(a){q=a}},offset:{get:function(){return n},set:function(a){n=a}},order:{get:function(){return o},set:function(a){o=a}},interpolate:{get:function(){return p},set:function(a){p=a}},x:{get:function(){return k},set:function(a){k=d3.functor(a)}},y:{get:function(){return l},set:function(a){l=d3.functor(a)}},margin:{get:function(){return e},set:function(a){e.top=void 0!==a.top?a.top:e.top,e.right=void 0!==a.right?a.right:e.right,e.bottom=void 0!==a.bottom?a.bottom:e.bottom,e.left=void 0!==a.left?a.left:e.left}},color:{get:function(){return h},set:function(b){h=a.utils.getColor(b)}},style:{get:function(){return m},set:function(a){switch(m=a){case"stack":b.offset("zero"),b.order("default");break;case"stream":b.offset("wiggle"),b.order("inside-out");break;case"stream-center":b.offset("silhouette"),b.order("inside-out");break;case"expand":b.offset("expand"),b.order("default");break;case"stack_percent":b.offset(b.d3_stackedOffset_stackPercent),b.order("default")}}},duration:{get:function(){return s},set:function(a){s=a,u.reset(s),r.duration(s)}}}),a.utils.inheritOptions(b,r),a.utils.initOptions(b),b},a.models.stackedAreaChart=function(){"use strict";function b(k){return F.reset(),F.models(e),r&&F.models(f),s&&F.models(g),k.each(function(k){var x=d3.select(this),F=this;a.utils.initSVG(x);var K=a.utils.availableWidth(m,x,l),L=a.utils.availableHeight(n,x,l);if(b.update=function(){x.transition().duration(C).call(b)},b.container=this,v.setter(I(k),b.update).getter(H(k)).update(),v.disabled=k.map(function(a){return!!a.disabled}),!w){var M;w={};for(M in v)w[M]=v[M]instanceof Array?v[M].slice(0):v[M]}if(!(k&&k.length&&k.filter(function(a){return a.values.length}).length))return a.utils.noData(b,x),b;x.selectAll(".nv-noData").remove(),c=e.xScale(),d=e.yScale();var N=x.selectAll("g.nv-wrap.nv-stackedAreaChart").data([k]),O=N.enter().append("g").attr("class","nvd3 nv-wrap nv-stackedAreaChart").append("g"),P=N.select("g");if(O.append("rect").style("opacity",0),O.append("g").attr("class","nv-x nv-axis"),O.append("g").attr("class","nv-y nv-axis"),O.append("g").attr("class","nv-stackedWrap"),O.append("g").attr("class","nv-legendWrap"),O.append("g").attr("class","nv-controlsWrap"),O.append("g").attr("class","nv-interactive"),P.select("rect").attr("width",K).attr("height",L),q){var Q=p?K-z:K;h.width(Q),P.select(".nv-legendWrap").datum(k).call(h),l.top!=h.height()&&(l.top=h.height(),L=a.utils.availableHeight(n,x,l)),P.select(".nv-legendWrap").attr("transform","translate("+(K-Q)+","+-l.top+")")}if(p){var R=[{key:B.stacked||"Stacked",metaKey:"Stacked",disabled:"stack"!=e.style(),style:"stack"},{key:B.stream||"Stream",metaKey:"Stream",disabled:"stream"!=e.style(),style:"stream"},{key:B.expanded||"Expanded",metaKey:"Expanded",disabled:"expand"!=e.style(),style:"expand"},{key:B.stack_percent||"Stack %",metaKey:"Stack_Percent",disabled:"stack_percent"!=e.style(),style:"stack_percent"}];z=A.length/3*260,R=R.filter(function(a){return-1!==A.indexOf(a.metaKey)}),i.width(z).color(["#444","#444","#444"]),P.select(".nv-controlsWrap").datum(R).call(i),l.top!=Math.max(i.height(),h.height())&&(l.top=Math.max(i.height(),h.height()),L=a.utils.availableHeight(n,x,l)),P.select(".nv-controlsWrap").attr("transform","translate(0,"+-l.top+")")}N.attr("transform","translate("+l.left+","+l.top+")"),t&&P.select(".nv-y.nv-axis").attr("transform","translate("+K+",0)"),u&&(j.width(K).height(L).margin({left:l.left,top:l.top}).svgContainer(x).xScale(c),N.select(".nv-interactive").call(j)),e.width(K).height(L);var S=P.select(".nv-stackedWrap").datum(k);if(S.transition().call(e),r&&(f.scale(c)._ticks(a.utils.calcTicksX(K/100,k)).tickSize(-L,0),P.select(".nv-x.nv-axis").attr("transform","translate(0,"+L+")"),P.select(".nv-x.nv-axis").transition().duration(0).call(f)),s){var T;if(T="wiggle"===e.offset()?0:a.utils.calcTicksY(L/36,k),g.scale(d)._ticks(T).tickSize(-K,0),"expand"===e.style()||"stack_percent"===e.style()){var U=g.tickFormat();D&&U===J||(D=U),g.tickFormat(J)}else D&&(g.tickFormat(D),D=null);P.select(".nv-y.nv-axis").transition().duration(0).call(g)}e.dispatch.on("areaClick.toggle",function(a){k.forEach(1===k.filter(function(a){return!a.disabled}).length?function(a){a.disabled=!1}:function(b,c){b.disabled=c!=a.seriesIndex}),v.disabled=k.map(function(a){return!!a.disabled}),y.stateChange(v),b.update()}),h.dispatch.on("stateChange",function(a){for(var c in a)v[c]=a[c];y.stateChange(v),b.update()}),i.dispatch.on("legendClick",function(a){a.disabled&&(R=R.map(function(a){return a.disabled=!0,a}),a.disabled=!1,e.style(a.style),v.style=e.style(),y.stateChange(v),b.update())}),j.dispatch.on("elementMousemove",function(c){e.clearHighlights();var d,g,h,i=[];if(k.filter(function(a,b){return a.seriesIndex=b,!a.disabled}).forEach(function(f,j){g=a.interactiveBisect(f.values,c.pointXValue,b.x());var k=f.values[g],l=b.y()(k,g);if(null!=l&&e.highlightPoint(j,g,!0),"undefined"!=typeof k){"undefined"==typeof d&&(d=k),"undefined"==typeof h&&(h=b.xScale()(b.x()(k,g)));var m="expand"==e.style()?k.display.y:b.y()(k,g);i.push({key:f.key,value:m,color:o(f,f.seriesIndex),stackedValue:k.display})}}),i.reverse(),i.length>2){var m=b.yScale().invert(c.mouseY),n=null;i.forEach(function(a,b){m=Math.abs(m);var c=Math.abs(a.stackedValue.y0),d=Math.abs(a.stackedValue.y);return m>=c&&d+c>=m?void(n=b):void 0}),null!=n&&(i[n].highlight=!0)}var p=f.tickFormat()(b.x()(d,g)),q=j.tooltip.valueFormatter();"expand"===e.style()||"stack_percent"===e.style()?(E||(E=q),q=d3.format(".1%")):E&&(q=E,E=null),j.tooltip.position({left:h+l.left,top:c.mouseY+l.top}).chartContainer(F.parentNode).valueFormatter(q).data({value:p,series:i})(),j.renderGuideLine(h)}),j.dispatch.on("elementMouseout",function(){e.clearHighlights()}),y.on("changeState",function(a){"undefined"!=typeof a.disabled&&k.length===a.disabled.length&&(k.forEach(function(b,c){b.disabled=a.disabled[c]}),v.disabled=a.disabled),"undefined"!=typeof a.style&&(e.style(a.style),G=a.style),b.update()})}),F.renderEnd("stacked Area chart immediate"),b}var c,d,e=a.models.stackedArea(),f=a.models.axis(),g=a.models.axis(),h=a.models.legend(),i=a.models.legend(),j=a.interactiveGuideline(),k=a.models.tooltip(),l={top:30,right:25,bottom:50,left:60},m=null,n=null,o=a.utils.defaultColor(),p=!0,q=!0,r=!0,s=!0,t=!1,u=!1,v=a.utils.state(),w=null,x=null,y=d3.dispatch("stateChange","changeState","renderEnd"),z=250,A=["Stacked","Stream","Expanded"],B={},C=250;v.style=e.style(),f.orient("bottom").tickPadding(7),g.orient(t?"right":"left"),k.headerFormatter(function(a,b){return f.tickFormat()(a,b)}).valueFormatter(function(a,b){return g.tickFormat()(a,b)}),j.tooltip.headerFormatter(function(a,b){return f.tickFormat()(a,b)}).valueFormatter(function(a,b){return g.tickFormat()(a,b)});var D=null,E=null;i.updateState(!1);var F=a.utils.renderWatch(y),G=e.style(),H=function(a){return function(){return{active:a.map(function(a){return!a.disabled}),style:e.style()}}},I=function(a){return function(b){void 0!==b.style&&(G=b.style),void 0!==b.active&&a.forEach(function(a,c){a.disabled=!b.active[c]})}},J=d3.format("%");return e.dispatch.on("elementMouseover.tooltip",function(a){a.point.x=e.x()(a.point),a.point.y=e.y()(a.point),k.data(a).position(a.pos).hidden(!1)}),e.dispatch.on("elementMouseout.tooltip",function(){k.hidden(!0)}),b.dispatch=y,b.stacked=e,b.legend=h,b.controls=i,b.xAxis=f,b.yAxis=g,b.interactiveLayer=j,b.tooltip=k,b.dispatch=y,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return m},set:function(a){m=a}},height:{get:function(){return n},set:function(a){n=a}},showLegend:{get:function(){return q},set:function(a){q=a}},showXAxis:{get:function(){return r},set:function(a){r=a}},showYAxis:{get:function(){return s},set:function(a){s=a}},defaultState:{get:function(){return w},set:function(a){w=a}},noData:{get:function(){return x},set:function(a){x=a}},showControls:{get:function(){return p},set:function(a){p=a}},controlLabels:{get:function(){return B},set:function(a){B=a}},controlOptions:{get:function(){return A},set:function(a){A=a}},tooltips:{get:function(){return k.enabled()},set:function(b){a.deprecated("tooltips","use chart.tooltip.enabled() instead"),k.enabled(!!b)}},tooltipContent:{get:function(){return k.contentGenerator()},set:function(b){a.deprecated("tooltipContent","use chart.tooltip.contentGenerator() instead"),k.contentGenerator(b)}},margin:{get:function(){return l},set:function(a){l.top=void 0!==a.top?a.top:l.top,l.right=void 0!==a.right?a.right:l.right,l.bottom=void 0!==a.bottom?a.bottom:l.bottom,l.left=void 0!==a.left?a.left:l.left}},duration:{get:function(){return C},set:function(a){C=a,F.reset(C),e.duration(C),f.duration(C),g.duration(C)}},color:{get:function(){return o},set:function(b){o=a.utils.getColor(b),h.color(o),e.color(o)}},rightAlignYAxis:{get:function(){return t},set:function(a){t=a,g.orient(t?"right":"left")}},useInteractiveGuideline:{get:function(){return u},set:function(a){u=!!a,b.interactive(!a),b.useVoronoi(!a),e.scatter.interactive(!a)}}}),a.utils.inheritOptions(b,e),a.utils.initOptions(b),b},a.models.sunburst=function(){"use strict";function b(u){return t.reset(),u.each(function(b){function t(a){a.x0=a.x,a.dx0=a.dx}function u(a){var b=d3.interpolate(p.domain(),[a.x,a.x+a.dx]),c=d3.interpolate(q.domain(),[a.y,1]),d=d3.interpolate(q.range(),[a.y?20:0,y]);return function(a,e){return e?function(){return s(a)}:function(e){return p.domain(b(e)),q.domain(c(e)).range(d(e)),s(a)}}}l=d3.select(this);var v,w=a.utils.availableWidth(g,l,f),x=a.utils.availableHeight(h,l,f),y=Math.min(w,x)/2;a.utils.initSVG(l);var z=l.selectAll(".nv-wrap.nv-sunburst").data(b),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-sunburst nv-chart-"+k),B=A.selectAll("nv-sunburst");z.attr("transform","translate("+w/2+","+x/2+")"),l.on("click",function(a,b){o.chartClick({data:a,index:b,pos:d3.event,id:k})}),q.range([0,y]),c=c||b,e=b[0],r.value(j[i]||j.count),v=B.data(r.nodes).enter().append("path").attr("d",s).style("fill",function(a){return m((a.children?a:a.parent).name)}).style("stroke","#FFF").on("click",function(a){d!==c&&c!==a&&(d=c),c=a,v.transition().duration(n).attrTween("d",u(a))}).each(t).on("dblclick",function(a){d.parent==a&&v.transition().duration(n).attrTween("d",u(e))}).each(t).on("mouseover",function(a){d3.select(this).classed("hover",!0).style("opacity",.8),o.elementMouseover({data:a,color:d3.select(this).style("fill")})}).on("mouseout",function(a){d3.select(this).classed("hover",!1).style("opacity",1),o.elementMouseout({data:a})}).on("mousemove",function(a){o.elementMousemove({data:a})})}),t.renderEnd("sunburst immediate"),b}var c,d,e,f={top:0,right:0,bottom:0,left:0},g=null,h=null,i="count",j={count:function(){return 1},size:function(a){return a.size}},k=Math.floor(1e4*Math.random()),l=null,m=a.utils.defaultColor(),n=500,o=d3.dispatch("chartClick","elementClick","elementDblClick","elementMousemove","elementMouseover","elementMouseout","renderEnd"),p=d3.scale.linear().range([0,2*Math.PI]),q=d3.scale.sqrt(),r=d3.layout.partition().sort(null).value(function(){return 1}),s=d3.svg.arc().startAngle(function(a){return Math.max(0,Math.min(2*Math.PI,p(a.x)))}).endAngle(function(a){return Math.max(0,Math.min(2*Math.PI,p(a.x+a.dx)))}).innerRadius(function(a){return Math.max(0,q(a.y))}).outerRadius(function(a){return Math.max(0,q(a.y+a.dy))}),t=a.utils.renderWatch(o);return b.dispatch=o,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{width:{get:function(){return g},set:function(a){g=a}},height:{get:function(){return h},set:function(a){h=a}},mode:{get:function(){return i},set:function(a){i=a}},id:{get:function(){return k},set:function(a){k=a}},duration:{get:function(){return n},set:function(a){n=a}},margin:{get:function(){return f},set:function(a){f.top=void 0!=a.top?a.top:f.top,f.right=void 0!=a.right?a.right:f.right,f.bottom=void 0!=a.bottom?a.bottom:f.bottom,f.left=void 0!=a.left?a.left:f.left}},color:{get:function(){return m},set:function(b){m=a.utils.getColor(b)}}}),a.utils.initOptions(b),b},a.models.sunburstChart=function(){"use strict";function b(d){return m.reset(),m.models(c),d.each(function(d){var h=d3.select(this);a.utils.initSVG(h);var i=a.utils.availableWidth(f,h,e),j=a.utils.availableHeight(g,h,e);if(b.update=function(){0===k?h.call(b):h.transition().duration(k).call(b)},b.container=this,!d||!d.length)return a.utils.noData(b,h),b;h.selectAll(".nv-noData").remove();var l=h.selectAll("g.nv-wrap.nv-sunburstChart").data(d),m=l.enter().append("g").attr("class","nvd3 nv-wrap nv-sunburstChart").append("g"),n=l.select("g");m.append("g").attr("class","nv-sunburstWrap"),l.attr("transform","translate("+e.left+","+e.top+")"),c.width(i).height(j);var o=n.select(".nv-sunburstWrap").datum(d);d3.transition(o).call(c)}),m.renderEnd("sunburstChart immediate"),b}var c=a.models.sunburst(),d=a.models.tooltip(),e={top:30,right:20,bottom:20,left:20},f=null,g=null,h=a.utils.defaultColor(),i=(Math.round(1e5*Math.random()),null),j=null,k=250,l=d3.dispatch("tooltipShow","tooltipHide","stateChange","changeState","renderEnd"),m=a.utils.renderWatch(l);return d.headerEnabled(!1).duration(0).valueFormatter(function(a){return a}),c.dispatch.on("elementMouseover.tooltip",function(a){a.series={key:a.data.name,value:a.data.size,color:a.color},d.data(a).hidden(!1)}),c.dispatch.on("elementMouseout.tooltip",function(){d.hidden(!0)}),c.dispatch.on("elementMousemove.tooltip",function(){d.position({top:d3.event.pageY,left:d3.event.pageX})()}),b.dispatch=l,b.sunburst=c,b.tooltip=d,b.options=a.utils.optionsFunc.bind(b),b._options=Object.create({},{noData:{get:function(){return j},set:function(a){j=a}},defaultState:{get:function(){return i},set:function(a){i=a}},color:{get:function(){return h},set:function(a){h=a,c.color(h)}},duration:{get:function(){return k},set:function(a){k=a,m.reset(k),c.duration(k)}},margin:{get:function(){return e},set:function(a){e.top=void 0!==a.top?a.top:e.top,e.right=void 0!==a.right?a.right:e.right,e.bottom=void 0!==a.bottom?a.bottom:e.bottom,e.left=void 0!==a.left?a.left:e.left}}}),a.utils.inheritOptions(b,c),a.utils.initOptions(b),b},a.version="1.8.1"}();/* - Copyright (C) Federico Zivolo 2020 - Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT). - */(function(e,t){'object'==typeof exports&&'undefined'!=typeof module?module.exports=t():'function'==typeof define&&define.amd?define(t):e.Popper=t()})(this,function(){'use strict';function e(e){return e&&'[object Function]'==={}.toString.call(e)}function t(e,t){if(1!==e.nodeType)return[];var o=e.ownerDocument.defaultView,n=o.getComputedStyle(e,null);return t?n[t]:n}function o(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function n(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}var i=t(e),r=i.overflow,p=i.overflowX,s=i.overflowY;return /(auto|scroll|overlay)/.test(r+s+p)?e:n(o(e))}function i(e){return e&&e.referenceNode?e.referenceNode:e}function r(e){return 11===e?re:10===e?pe:re||pe}function p(e){if(!e)return document.documentElement;for(var o=r(10)?document.body:null,n=e.offsetParent||null;n===o&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&'BODY'!==i&&'HTML'!==i?-1!==['TH','TD','TABLE'].indexOf(n.nodeName)&&'static'===t(n,'position')?p(n):n:e?e.ownerDocument.documentElement:document.documentElement}function s(e){var t=e.nodeName;return'BODY'!==t&&('HTML'===t||p(e.firstElementChild)===e)}function d(e){return null===e.parentNode?e:d(e.parentNode)}function a(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return document.documentElement;var o=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,n=o?e:t,i=o?t:e,r=document.createRange();r.setStart(n,0),r.setEnd(i,0);var l=r.commonAncestorContainer;if(e!==l&&t!==l||n.contains(i))return s(l)?l:p(l);var f=d(e);return f.host?a(f.host,t):a(e,d(t).host)}function l(e){var t=1=o.clientWidth&&n>=o.clientHeight}),l=0a[e]&&!t.escapeWithReference&&(n=Q(f[o],a[e]-('right'===e?f.width:f.height))),ae({},o,n)}};return l.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';f=le({},f,m[t](e))}),e.offsets.popper=f,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,o=t.popper,n=t.reference,i=e.placement.split('-')[0],r=Z,p=-1!==['top','bottom'].indexOf(i),s=p?'right':'bottom',d=p?'left':'top',a=p?'width':'height';return o[s]r(n[s])&&(e.offsets.popper[d]=r(n[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,o){var n;if(!K(e.instance.modifiers,'arrow','keepTogether'))return e;var i=o.element;if('string'==typeof i){if(i=e.instance.popper.querySelector(i),!i)return e;}else if(!e.instance.popper.contains(i))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var r=e.placement.split('-')[0],p=e.offsets,s=p.popper,d=p.reference,a=-1!==['left','right'].indexOf(r),l=a?'height':'width',f=a?'Top':'Left',m=f.toLowerCase(),h=a?'left':'top',c=a?'bottom':'right',u=S(i)[l];d[c]-us[c]&&(e.offsets.popper[m]+=d[m]+u-s[c]),e.offsets.popper=g(e.offsets.popper);var b=d[m]+d[l]/2-u/2,w=t(e.instance.popper),y=parseFloat(w['margin'+f]),E=parseFloat(w['border'+f+'Width']),v=b-e.offsets.popper[m]-y-E;return v=ee(Q(s[l]-u,v),0),e.arrowElement=i,e.offsets.arrow=(n={},ae(n,m,$(v)),ae(n,h,''),n),e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(W(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=v(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),n=e.placement.split('-')[0],i=T(n),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case ce.FLIP:p=[n,i];break;case ce.CLOCKWISE:p=G(n);break;case ce.COUNTERCLOCKWISE:p=G(n,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(n!==s||p.length===d+1)return e;n=e.placement.split('-')[0],i=T(n);var a=e.offsets.popper,l=e.offsets.reference,f=Z,m='left'===n&&f(a.right)>f(l.left)||'right'===n&&f(a.left)f(l.top)||'bottom'===n&&f(a.top)f(o.right),g=f(a.top)f(o.bottom),b='left'===n&&h||'right'===n&&c||'top'===n&&g||'bottom'===n&&u,w=-1!==['top','bottom'].indexOf(n),y=!!t.flipVariations&&(w&&'start'===r&&h||w&&'end'===r&&c||!w&&'start'===r&&g||!w&&'end'===r&&u),E=!!t.flipVariationsByContent&&(w&&'start'===r&&c||w&&'end'===r&&h||!w&&'start'===r&&u||!w&&'end'===r&&g),v=y||E;(m||b||v)&&(e.flipped=!0,(m||b)&&(n=p[d+1]),v&&(r=z(r)),e.placement=n+(r?'-'+r:''),e.offsets.popper=le({},e.offsets.popper,C(e.instance.popper,e.offsets.reference,e.placement)),e=P(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport',flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,o=t.split('-')[0],n=e.offsets,i=n.popper,r=n.reference,p=-1!==['left','right'].indexOf(o),s=-1===['top','left'].indexOf(o);return i[p?'left':'top']=r[o]-(s?i[p?'width':'height']:0),e.placement=T(t),e.offsets.popper=g(i),e}},hide:{order:800,enabled:!0,fn:function(e){if(!K(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=D(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottomo.right||t.top>o.bottom||t.rightwindow.devicePixelRatio||!fe),c='bottom'===o?'top':'bottom',g='right'===n?'left':'right',b=B('transform');if(d='bottom'==c?'HTML'===l.nodeName?-l.clientHeight+h.bottom:-f.height+h.bottom:h.top,s='right'==g?'HTML'===l.nodeName?-l.clientWidth+h.right:-f.width+h.right:h.left,a&&b)m[b]='translate3d('+s+'px, '+d+'px, 0)',m[c]=0,m[g]=0,m.willChange='transform';else{var w='bottom'==c?-1:1,y='right'==g?-1:1;m[c]=d*w,m[g]=s*y,m.willChange=c+', '+g}var E={"x-placement":e.placement};return e.attributes=le({},E,e.attributes),e.styles=le({},m,e.styles),e.arrowStyles=le({},e.offsets.arrow,e.arrowStyles),e},gpuAcceleration:!0,x:'bottom',y:'right'},applyStyle:{order:900,enabled:!0,fn:function(e){return V(e.instance.popper,e.styles),j(e.instance.popper,e.attributes),e.arrowElement&&Object.keys(e.arrowStyles).length&&V(e.arrowElement,e.arrowStyles),e},onLoad:function(e,t,o,n,i){var r=L(i,t,e,o.positionFixed),p=O(o.placement,r,t,e,o.modifiers.flip.boundariesElement,o.modifiers.flip.padding);return t.setAttribute('x-placement',p),V(t,{position:o.positionFixed?'fixed':'absolute'}),o},gpuAcceleration:void 0}}},ge}); -//# sourceMappingURL=popper.min.js.map - {{lineNumber}}{{lineContent}} - - -{{lines}} - -
      - - {{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{crap}} - - - - - {{name}} - {{lines_bar}} -
      {{lines_executed_percent}}
      -
      {{lines_number}}
      - {{branches_bar}} -
      {{branches_executed_percent}}
      -
      {{branches_number}}
      - {{paths_bar}} -
      {{paths_executed_percent}}
      -
      {{paths_number}}
      - {{methods_bar}} -
      {{methods_tested_percent}}
      -
      {{methods_number}}
      - {{crap}} - - - -
      -

      Paths

      -

      - Below are the source code lines that represent each code path as identified by Xdebug. Please note a path is not - necessarily coterminous with a line, a line may contain multiple paths and therefore show up more than once. - Please also be aware that some paths may include implicit rather than explicit branches, e.g. an if statement - always has an else as part of its logical flow even if you didn't write one. -

      -{{paths}} + return $newDiff; + } +} + * The normal anonymous class structure violates assumptions about the order of token offsets. + * Namely, the constructor arguments are part of the Expr\New_ node and follow the class node, even + * though they are actually interleaved with them. This special node type is used temporarily to + * restore a sane token offset order. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @internal */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report; - -use function dirname; -use function file_put_contents; -use function serialize; -use function sprintf; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -final class PHP +class PrintableNewAnonClassNode extends Expr { - public function process(CodeCoverage $coverage, ?string $target = null) : string + /** @var Node\AttributeGroup[] PHP attribute groups */ + public $attrGroups; + /** @var int Modifiers */ + public $flags; + /** @var Node\Arg[] Arguments */ + public $args; + /** @var null|Node\Name Name of extended class */ + public $extends; + /** @var Node\Name[] Names of implemented interfaces */ + public $implements; + /** @var Node\Stmt[] Statements */ + public $stmts; + public function __construct(array $attrGroups, int $flags, array $args, ?Node\Name $extends, array $implements, array $stmts, array $attributes) { - $buffer = sprintf("attrGroups = $attrGroups; + $this->flags = $flags; + $this->args = $args; + $this->extends = $extends; + $this->implements = $implements; + $this->stmts = $stmts; + } + public static function fromNewNode(Expr\New_ $newNode) + { + $class = $newNode->class; + assert($class instanceof Node\Stmt\Class_); + // We don't assert that $class->name is null here, to allow consumers to assign unique names + // to anonymous classes for their own purposes. We simplify ignore the name here. + return new self($class->attrGroups, $class->flags, $newNode->args, $class->extends, $class->implements, $class->stmts, $newNode->getAttributes()); + } + public function getType(): string + { + return 'Expr_PrintableNewAnonClass'; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'flags', 'args', 'extends', 'implements', 'stmts']; } } +namespace PHPUnitPHAR\PhpParser\Internal; + +/** + * Provides operations on token streams, for use by pretty printer. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * @internal */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report; - -use const PHP_EOL; -use function array_map; -use function date; -use function ksort; -use function max; -use function sprintf; -use function str_pad; -use function strlen; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Percentage; -final class Text +class TokenStream { + /** @var array Tokens (in token_get_all format) */ + private $tokens; + /** @var int[] Map from position to indentation */ + private $indentMap; /** - * @var string + * Create token stream instance. + * + * @param array $tokens Tokens in token_get_all() format */ - private const COLOR_GREEN = "\x1b[30;42m"; + public function __construct(array $tokens) + { + $this->tokens = $tokens; + $this->indentMap = $this->calcIndentMap(); + } /** - * @var string + * Whether the given position is immediately surrounded by parenthesis. + * + * @param int $startPos Start position + * @param int $endPos End position + * + * @return bool */ - private const COLOR_YELLOW = "\x1b[30;43m"; + public function haveParens(int $startPos, int $endPos): bool + { + return $this->haveTokenImmediatelyBefore($startPos, '(') && $this->haveTokenImmediatelyAfter($endPos, ')'); + } /** - * @var string + * Whether the given position is immediately surrounded by braces. + * + * @param int $startPos Start position + * @param int $endPos End position + * + * @return bool */ - private const COLOR_RED = "\x1b[37;41m"; + public function haveBraces(int $startPos, int $endPos): bool + { + return ($this->haveTokenImmediatelyBefore($startPos, '{') || $this->haveTokenImmediatelyBefore($startPos, \T_CURLY_OPEN)) && $this->haveTokenImmediatelyAfter($endPos, '}'); + } /** - * @var string + * Check whether the position is directly preceded by a certain token type. + * + * During this check whitespace and comments are skipped. + * + * @param int $pos Position before which the token should occur + * @param int|string $expectedTokenType Token to check for + * + * @return bool Whether the expected token was found */ - private const COLOR_HEADER = "\x1b[1;37;40m"; + public function haveTokenImmediatelyBefore(int $pos, $expectedTokenType): bool + { + $tokens = $this->tokens; + $pos--; + for (; $pos >= 0; $pos--) { + $tokenType = $tokens[$pos][0]; + if ($tokenType === $expectedTokenType) { + return \true; + } + if ($tokenType !== \T_WHITESPACE && $tokenType !== \T_COMMENT && $tokenType !== \T_DOC_COMMENT) { + break; + } + } + return \false; + } /** - * @var string + * Check whether the position is directly followed by a certain token type. + * + * During this check whitespace and comments are skipped. + * + * @param int $pos Position after which the token should occur + * @param int|string $expectedTokenType Token to check for + * + * @return bool Whether the expected token was found */ - private const COLOR_RESET = "\x1b[0m"; + public function haveTokenImmediatelyAfter(int $pos, $expectedTokenType): bool + { + $tokens = $this->tokens; + $pos++; + for (; $pos < \count($tokens); $pos++) { + $tokenType = $tokens[$pos][0]; + if ($tokenType === $expectedTokenType) { + return \true; + } + if ($tokenType !== \T_WHITESPACE && $tokenType !== \T_COMMENT && $tokenType !== \T_DOC_COMMENT) { + break; + } + } + return \false; + } + public function skipLeft(int $pos, $skipTokenType) + { + $tokens = $this->tokens; + $pos = $this->skipLeftWhitespace($pos); + if ($skipTokenType === \T_WHITESPACE) { + return $pos; + } + if ($tokens[$pos][0] !== $skipTokenType) { + // Shouldn't happen. The skip token MUST be there + throw new \Exception('Encountered unexpected token'); + } + $pos--; + return $this->skipLeftWhitespace($pos); + } + public function skipRight(int $pos, $skipTokenType) + { + $tokens = $this->tokens; + $pos = $this->skipRightWhitespace($pos); + if ($skipTokenType === \T_WHITESPACE) { + return $pos; + } + if ($tokens[$pos][0] !== $skipTokenType) { + // Shouldn't happen. The skip token MUST be there + throw new \Exception('Encountered unexpected token'); + } + $pos++; + return $this->skipRightWhitespace($pos); + } /** - * @var string + * Return first non-whitespace token position smaller or equal to passed position. + * + * @param int $pos Token position + * @return int Non-whitespace token position */ - private const COLOR_EOL = "\x1b[2K"; + public function skipLeftWhitespace(int $pos) + { + $tokens = $this->tokens; + for (; $pos >= 0; $pos--) { + $type = $tokens[$pos][0]; + if ($type !== \T_WHITESPACE && $type !== \T_COMMENT && $type !== \T_DOC_COMMENT) { + break; + } + } + return $pos; + } /** - * @var int + * Return first non-whitespace position greater or equal to passed position. + * + * @param int $pos Token position + * @return int Non-whitespace token position */ - private $lowUpperBound; + public function skipRightWhitespace(int $pos) + { + $tokens = $this->tokens; + for ($count = \count($tokens); $pos < $count; $pos++) { + $type = $tokens[$pos][0]; + if ($type !== \T_WHITESPACE && $type !== \T_COMMENT && $type !== \T_DOC_COMMENT) { + break; + } + } + return $pos; + } + public function findRight(int $pos, $findTokenType) + { + $tokens = $this->tokens; + for ($count = \count($tokens); $pos < $count; $pos++) { + $type = $tokens[$pos][0]; + if ($type === $findTokenType) { + return $pos; + } + } + return -1; + } /** - * @var int + * Whether the given position range contains a certain token type. + * + * @param int $startPos Starting position (inclusive) + * @param int $endPos Ending position (exclusive) + * @param int|string $tokenType Token type to look for + * @return bool Whether the token occurs in the given range */ - private $highLowerBound; + public function haveTokenInRange(int $startPos, int $endPos, $tokenType) + { + $tokens = $this->tokens; + for ($pos = $startPos; $pos < $endPos; $pos++) { + if ($tokens[$pos][0] === $tokenType) { + return \true; + } + } + return \false; + } + public function haveBracesInRange(int $startPos, int $endPos) + { + return $this->haveTokenInRange($startPos, $endPos, '{') || $this->haveTokenInRange($startPos, $endPos, \T_CURLY_OPEN) || $this->haveTokenInRange($startPos, $endPos, '}'); + } + public function haveTagInRange(int $startPos, int $endPos): bool + { + return $this->haveTokenInRange($startPos, $endPos, \T_OPEN_TAG) || $this->haveTokenInRange($startPos, $endPos, \T_CLOSE_TAG); + } /** - * @var bool + * Get indentation before token position. + * + * @param int $pos Token position + * + * @return int Indentation depth (in spaces) */ - private $showUncoveredFiles; + public function getIndentationBefore(int $pos): int + { + return $this->indentMap[$pos]; + } /** - * @var bool + * Get the code corresponding to a token offset range, optionally adjusted for indentation. + * + * @param int $from Token start position (inclusive) + * @param int $to Token end position (exclusive) + * @param int $indent By how much the code should be indented (can be negative as well) + * + * @return string Code corresponding to token range, adjusted for indentation */ - private $showOnlySummary; - public function __construct(int $lowUpperBound = 50, int $highLowerBound = 90, bool $showUncoveredFiles = \false, bool $showOnlySummary = \false) + public function getTokenCode(int $from, int $to, int $indent): string { - $this->lowUpperBound = $lowUpperBound; - $this->highLowerBound = $highLowerBound; - $this->showUncoveredFiles = $showUncoveredFiles; - $this->showOnlySummary = $showOnlySummary; + $tokens = $this->tokens; + $result = ''; + for ($pos = $from; $pos < $to; $pos++) { + $token = $tokens[$pos]; + if (\is_array($token)) { + $type = $token[0]; + $content = $token[1]; + if ($type === \T_CONSTANT_ENCAPSED_STRING || $type === \T_ENCAPSED_AND_WHITESPACE) { + $result .= $content; + } else if ($indent < 0) { + $result .= str_replace("\n" . str_repeat(" ", -$indent), "\n", $content); + } elseif ($indent > 0) { + $result .= str_replace("\n", "\n" . str_repeat(" ", $indent), $content); + } else { + $result .= $content; + } + } else { + $result .= $token; + } + } + return $result; } - public function process(CodeCoverage $coverage, bool $showColors = \false) : string + /** + * Precalculate the indentation at every token position. + * + * @return int[] Token position to indentation map + */ + private function calcIndentMap() { - $hasBranchCoverage = !empty($coverage->getData(\true)->functionCoverage()); - $output = PHP_EOL . PHP_EOL; - $report = $coverage->getReport(); - $colors = ['header' => '', 'classes' => '', 'methods' => '', 'lines' => '', 'branches' => '', 'paths' => '', 'reset' => '', 'eol' => '']; - if ($showColors) { - $colors['classes'] = $this->coverageColor($report->numberOfTestedClassesAndTraits(), $report->numberOfClassesAndTraits()); - $colors['methods'] = $this->coverageColor($report->numberOfTestedMethods(), $report->numberOfMethods()); - $colors['lines'] = $this->coverageColor($report->numberOfExecutedLines(), $report->numberOfExecutableLines()); - $colors['branches'] = $this->coverageColor($report->numberOfExecutedBranches(), $report->numberOfExecutableBranches()); - $colors['paths'] = $this->coverageColor($report->numberOfExecutedPaths(), $report->numberOfExecutablePaths()); - $colors['reset'] = self::COLOR_RESET; - $colors['header'] = self::COLOR_HEADER; - $colors['eol'] = self::COLOR_EOL; - } - $classes = sprintf(' Classes: %6s (%d/%d)', Percentage::fromFractionAndTotal($report->numberOfTestedClassesAndTraits(), $report->numberOfClassesAndTraits())->asString(), $report->numberOfTestedClassesAndTraits(), $report->numberOfClassesAndTraits()); - $methods = sprintf(' Methods: %6s (%d/%d)', Percentage::fromFractionAndTotal($report->numberOfTestedMethods(), $report->numberOfMethods())->asString(), $report->numberOfTestedMethods(), $report->numberOfMethods()); - $paths = ''; - $branches = ''; - if ($hasBranchCoverage) { - $paths = sprintf(' Paths: %6s (%d/%d)', Percentage::fromFractionAndTotal($report->numberOfExecutedPaths(), $report->numberOfExecutablePaths())->asString(), $report->numberOfExecutedPaths(), $report->numberOfExecutablePaths()); - $branches = sprintf(' Branches: %6s (%d/%d)', Percentage::fromFractionAndTotal($report->numberOfExecutedBranches(), $report->numberOfExecutableBranches())->asString(), $report->numberOfExecutedBranches(), $report->numberOfExecutableBranches()); - } - $lines = sprintf(' Lines: %6s (%d/%d)', Percentage::fromFractionAndTotal($report->numberOfExecutedLines(), $report->numberOfExecutableLines())->asString(), $report->numberOfExecutedLines(), $report->numberOfExecutableLines()); - $padding = max(array_map('strlen', [$classes, $methods, $lines])); - if ($this->showOnlySummary) { - $title = 'Code Coverage Report Summary:'; - $padding = max($padding, strlen($title)); - $output .= $this->format($colors['header'], $padding, $title); - } else { - $date = date(' Y-m-d H:i:s'); - $title = 'Code Coverage Report:'; - $output .= $this->format($colors['header'], $padding, $title); - $output .= $this->format($colors['header'], $padding, $date); - $output .= $this->format($colors['header'], $padding, ''); - $output .= $this->format($colors['header'], $padding, ' Summary:'); - } - $output .= $this->format($colors['classes'], $padding, $classes); - $output .= $this->format($colors['methods'], $padding, $methods); - if ($hasBranchCoverage) { - $output .= $this->format($colors['paths'], $padding, $paths); - $output .= $this->format($colors['branches'], $padding, $branches); - } - $output .= $this->format($colors['lines'], $padding, $lines); - if ($this->showOnlySummary) { - return $output . PHP_EOL; + $indentMap = []; + $indent = 0; + foreach ($this->tokens as $token) { + $indentMap[] = $indent; + if ($token[0] === \T_WHITESPACE) { + $content = $token[1]; + $newlinePos = \strrpos($content, "\n"); + if (\false !== $newlinePos) { + $indent = \strlen($content) - $newlinePos - 1; + } + } } - $classCoverage = []; - foreach ($report as $item) { - if (!$item instanceof File) { - continue; + // Add a sentinel for one past end of the file + $indentMap[] = $indent; + return $indentMap; + } +} +dumpComments = !empty($options['dumpComments']); + $this->dumpPositions = !empty($options['dumpPositions']); + } + /** + * Dumps a node or array. + * + * @param array|Node $node Node or array to dump + * @param string|null $code Code corresponding to dumped AST. This only needs to be passed if + * the dumpPositions option is enabled and the dumping of node offsets + * is desired. + * + * @return string Dumped value + */ + public function dump($node, ?string $code = null): string + { + $this->code = $code; + return $this->dumpRecursive($node); + } + protected function dumpRecursive($node) + { + if ($node instanceof Node) { + $r = $node->getType(); + if ($this->dumpPositions && null !== $p = $this->dumpPosition($node)) { + $r .= $p; } - $classes = $item->classesAndTraits(); - foreach ($classes as $className => $class) { - $classExecutableLines = 0; - $classExecutedLines = 0; - $classExecutableBranches = 0; - $classExecutedBranches = 0; - $classExecutablePaths = 0; - $classExecutedPaths = 0; - $coveredMethods = 0; - $classMethods = 0; - foreach ($class['methods'] as $method) { - if ($method['executableLines'] == 0) { - continue; - } - $classMethods++; - $classExecutableLines += $method['executableLines']; - $classExecutedLines += $method['executedLines']; - $classExecutableBranches += $method['executableBranches']; - $classExecutedBranches += $method['executedBranches']; - $classExecutablePaths += $method['executablePaths']; - $classExecutedPaths += $method['executedPaths']; - if ($method['coverage'] == 100) { - $coveredMethods++; + $r .= '('; + foreach ($node->getSubNodeNames() as $key) { + $r .= "\n " . $key . ': '; + $value = $node->{$key}; + if (null === $value) { + $r .= 'null'; + } elseif (\false === $value) { + $r .= 'false'; + } elseif (\true === $value) { + $r .= 'true'; + } elseif (is_scalar($value)) { + if ('flags' === $key || 'newModifier' === $key) { + $r .= $this->dumpFlags($value); + } elseif ('type' === $key && $node instanceof Include_) { + $r .= $this->dumpIncludeType($value); + } elseif ('type' === $key && ($node instanceof Use_ || $node instanceof UseUse || $node instanceof GroupUse)) { + $r .= $this->dumpUseType($value); + } else { + $r .= $value; } + } else { + $r .= str_replace("\n", "\n ", $this->dumpRecursive($value)); } - $classCoverage[$className] = ['namespace' => $class['namespace'], 'className' => $className, 'methodsCovered' => $coveredMethods, 'methodCount' => $classMethods, 'statementsCovered' => $classExecutedLines, 'statementCount' => $classExecutableLines, 'branchesCovered' => $classExecutedBranches, 'branchesCount' => $classExecutableBranches, 'pathsCovered' => $classExecutedPaths, 'pathsCount' => $classExecutablePaths]; } - } - ksort($classCoverage); - $methodColor = ''; - $pathsColor = ''; - $branchesColor = ''; - $linesColor = ''; - $resetColor = ''; - foreach ($classCoverage as $fullQualifiedPath => $classInfo) { - if ($this->showUncoveredFiles || $classInfo['statementsCovered'] != 0) { - if ($showColors) { - $methodColor = $this->coverageColor($classInfo['methodsCovered'], $classInfo['methodCount']); - $pathsColor = $this->coverageColor($classInfo['pathsCovered'], $classInfo['pathsCount']); - $branchesColor = $this->coverageColor($classInfo['branchesCovered'], $classInfo['branchesCount']); - $linesColor = $this->coverageColor($classInfo['statementsCovered'], $classInfo['statementCount']); - $resetColor = $colors['reset']; - } - $output .= PHP_EOL . $fullQualifiedPath . PHP_EOL . ' ' . $methodColor . 'Methods: ' . $this->printCoverageCounts($classInfo['methodsCovered'], $classInfo['methodCount'], 2) . $resetColor . ' '; - if ($hasBranchCoverage) { - $output .= ' ' . $pathsColor . 'Paths: ' . $this->printCoverageCounts($classInfo['pathsCovered'], $classInfo['pathsCount'], 3) . $resetColor . ' ' . ' ' . $branchesColor . 'Branches: ' . $this->printCoverageCounts($classInfo['branchesCovered'], $classInfo['branchesCount'], 3) . $resetColor . ' '; + if ($this->dumpComments && $comments = $node->getComments()) { + $r .= "\n comments: " . str_replace("\n", "\n ", $this->dumpRecursive($comments)); + } + } elseif (is_array($node)) { + $r = 'array('; + foreach ($node as $key => $value) { + $r .= "\n " . $key . ': '; + if (null === $value) { + $r .= 'null'; + } elseif (\false === $value) { + $r .= 'false'; + } elseif (\true === $value) { + $r .= 'true'; + } elseif (is_scalar($value)) { + $r .= $value; + } else { + $r .= str_replace("\n", "\n ", $this->dumpRecursive($value)); } - $output .= ' ' . $linesColor . 'Lines: ' . $this->printCoverageCounts($classInfo['statementsCovered'], $classInfo['statementCount'], 3) . $resetColor; } + } elseif ($node instanceof Comment) { + return $node->getReformattedText(); + } else { + throw new \InvalidArgumentException('Can only dump nodes and arrays.'); } - return $output . PHP_EOL; + return $r . "\n)"; } - private function coverageColor(int $numberOfCoveredElements, int $totalNumberOfElements) : string + protected function dumpFlags($flags) { - $coverage = Percentage::fromFractionAndTotal($numberOfCoveredElements, $totalNumberOfElements); - if ($coverage->asFloat() >= $this->highLowerBound) { - return self::COLOR_GREEN; + $strs = []; + if ($flags & Class_::MODIFIER_PUBLIC) { + $strs[] = 'MODIFIER_PUBLIC'; } - if ($coverage->asFloat() > $this->lowUpperBound) { - return self::COLOR_YELLOW; + if ($flags & Class_::MODIFIER_PROTECTED) { + $strs[] = 'MODIFIER_PROTECTED'; + } + if ($flags & Class_::MODIFIER_PRIVATE) { + $strs[] = 'MODIFIER_PRIVATE'; + } + if ($flags & Class_::MODIFIER_ABSTRACT) { + $strs[] = 'MODIFIER_ABSTRACT'; + } + if ($flags & Class_::MODIFIER_STATIC) { + $strs[] = 'MODIFIER_STATIC'; + } + if ($flags & Class_::MODIFIER_FINAL) { + $strs[] = 'MODIFIER_FINAL'; + } + if ($flags & Class_::MODIFIER_READONLY) { + $strs[] = 'MODIFIER_READONLY'; + } + if ($strs) { + return implode(' | ', $strs) . ' (' . $flags . ')'; + } else { + return $flags; } - return self::COLOR_RED; } - private function printCoverageCounts(int $numberOfCoveredElements, int $totalNumberOfElements, int $precision) : string + protected function dumpIncludeType($type) { - $format = '%' . $precision . 's'; - return Percentage::fromFractionAndTotal($numberOfCoveredElements, $totalNumberOfElements)->asFixedWidthString() . ' (' . sprintf($format, $numberOfCoveredElements) . '/' . sprintf($format, $totalNumberOfElements) . ')'; + $map = [Include_::TYPE_INCLUDE => 'TYPE_INCLUDE', Include_::TYPE_INCLUDE_ONCE => 'TYPE_INCLUDE_ONCE', Include_::TYPE_REQUIRE => 'TYPE_REQUIRE', Include_::TYPE_REQUIRE_ONCE => 'TYPE_REQUIRE_ONCE']; + if (!isset($map[$type])) { + return $type; + } + return $map[$type] . ' (' . $type . ')'; } - /** - * @param false|string $string - */ - private function format(string $color, int $padding, $string) : string + protected function dumpUseType($type) { - $reset = $color ? self::COLOR_RESET : ''; - return $color . str_pad((string) $string, $padding) . $reset . PHP_EOL; + $map = [Use_::TYPE_UNKNOWN => 'TYPE_UNKNOWN', Use_::TYPE_NORMAL => 'TYPE_NORMAL', Use_::TYPE_FUNCTION => 'TYPE_FUNCTION', Use_::TYPE_CONSTANT => 'TYPE_CONSTANT']; + if (!isset($map[$type])) { + return $type; + } + return $map[$type] . ' (' . $type . ')'; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use function constant; -use function phpversion; -use DateTimeImmutable; -use DOMElement; -use PHPUnit\SebastianBergmann\Environment\Runtime; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class BuildInformation -{ /** - * @var DOMElement + * Dump node position, if possible. + * + * @param Node $node Node for which to dump position + * + * @return string|null Dump of position, or null if position information not available */ - private $contextNode; - public function __construct(DOMElement $contextNode) - { - $this->contextNode = $contextNode; - } - public function setRuntimeInformation(Runtime $runtime) : void + protected function dumpPosition(Node $node) { - $runtimeNode = $this->nodeByName('runtime'); - $runtimeNode->setAttribute('name', $runtime->getName()); - $runtimeNode->setAttribute('version', $runtime->getVersion()); - $runtimeNode->setAttribute('url', $runtime->getVendorUrl()); - $driverNode = $this->nodeByName('driver'); - if ($runtime->hasPHPDBGCodeCoverage()) { - $driverNode->setAttribute('name', 'phpdbg'); - $driverNode->setAttribute('version', constant('PHPDBG_VERSION')); - } - if ($runtime->hasXdebug()) { - $driverNode->setAttribute('name', 'xdebug'); - $driverNode->setAttribute('version', phpversion('xdebug')); + if (!$node->hasAttribute('startLine') || !$node->hasAttribute('endLine')) { + return null; } - if ($runtime->hasPCOV()) { - $driverNode->setAttribute('name', 'pcov'); - $driverNode->setAttribute('version', phpversion('pcov')); + $start = $node->getStartLine(); + $end = $node->getEndLine(); + if ($node->hasAttribute('startFilePos') && $node->hasAttribute('endFilePos') && null !== $this->code) { + $start .= ':' . $this->toColumn($this->code, $node->getStartFilePos()); + $end .= ':' . $this->toColumn($this->code, $node->getEndFilePos()); } + return "[{$start} - {$end}]"; } - public function setBuildTime(DateTimeImmutable $date) : void - { - $this->contextNode->setAttribute('time', $date->format('D M j G:i:s T Y')); - } - public function setGeneratorVersions(string $phpUnitVersion, string $coverageVersion) : void - { - $this->contextNode->setAttribute('phpunit', $phpUnitVersion); - $this->contextNode->setAttribute('coverage', $coverageVersion); - } - private function nodeByName(string $name) : DOMElement + // Copied from Error class + private function toColumn($code, $pos) { - $node = $this->contextNode->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', $name)->item(0); - if (!$node) { - $node = $this->contextNode->appendChild($this->contextNode->ownerDocument->createElementNS('https://schema.phpunit.de/coverage/1.0', $name)); + if ($pos > strlen($code)) { + throw new \RuntimeException('Invalid position information'); } - return $node; + $lineStartPos = strrpos($code, "\n", $pos - strlen($code)); + if (\false === $lineStartPos) { + $lineStartPos = -1; + } + return $pos - $lineStartPos; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; +namespace PHPUnitPHAR\PhpParser; -use DOMElement; -use PHPUnit\SebastianBergmann\CodeCoverage\ReportAlreadyFinalizedException; -use XMLWriter; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage +/* + * This parser is based on a skeleton written by Moriyoshi Koizumi, which in + * turn is based on work by Masato Bito. */ -final class Coverage +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\Node\Expr\Cast\Double; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Param; +use PHPUnitPHAR\PhpParser\Node\Scalar\Encapsed; +use PHPUnitPHAR\PhpParser\Node\Scalar\LNumber; +use PHPUnitPHAR\PhpParser\Node\Scalar\String_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Class_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ClassConst; +use PHPUnitPHAR\PhpParser\Node\Stmt\ClassMethod; +use PHPUnitPHAR\PhpParser\Node\Stmt\Else_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ElseIf_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Enum_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Interface_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Namespace_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Nop; +use PHPUnitPHAR\PhpParser\Node\Stmt\Property; +use PHPUnitPHAR\PhpParser\Node\Stmt\TryCatch; +use PHPUnitPHAR\PhpParser\Node\Stmt\UseUse; +use PHPUnitPHAR\PhpParser\Node\VarLikeIdentifier; +abstract class ParserAbstract implements Parser { - /** - * @var XMLWriter + const SYMBOL_NONE = -1; + /* + * The following members will be filled with generated parsing data: */ - private $writer; + /** @var int Size of $tokenToSymbol map */ + protected $tokenToSymbolMapSize; + /** @var int Size of $action table */ + protected $actionTableSize; + /** @var int Size of $goto table */ + protected $gotoTableSize; + /** @var int Symbol number signifying an invalid token */ + protected $invalidSymbol; + /** @var int Symbol number of error recovery token */ + protected $errorSymbol; + /** @var int Action number signifying default action */ + protected $defaultAction; + /** @var int Rule number signifying that an unexpected token was encountered */ + protected $unexpectedTokenRule; + protected $YY2TBLSTATE; + /** @var int Number of non-leaf states */ + protected $numNonLeafStates; + /** @var int[] Map of lexer tokens to internal symbols */ + protected $tokenToSymbol; + /** @var string[] Map of symbols to their names */ + protected $symbolToName; + /** @var array Names of the production rules (only necessary for debugging) */ + protected $productions; + /** @var int[] Map of states to a displacement into the $action table. The corresponding action for this + * state/symbol pair is $action[$actionBase[$state] + $symbol]. If $actionBase[$state] is 0, the + * action is defaulted, i.e. $actionDefault[$state] should be used instead. */ + protected $actionBase; + /** @var int[] Table of actions. Indexed according to $actionBase comment. */ + protected $action; + /** @var int[] Table indexed analogously to $action. If $actionCheck[$actionBase[$state] + $symbol] != $symbol + * then the action is defaulted, i.e. $actionDefault[$state] should be used instead. */ + protected $actionCheck; + /** @var int[] Map of states to their default action */ + protected $actionDefault; + /** @var callable[] Semantic action callbacks */ + protected $reduceCallbacks; + /** @var int[] Map of non-terminals to a displacement into the $goto table. The corresponding goto state for this + * non-terminal/state pair is $goto[$gotoBase[$nonTerminal] + $state] (unless defaulted) */ + protected $gotoBase; + /** @var int[] Table of states to goto after reduction. Indexed according to $gotoBase comment. */ + protected $goto; + /** @var int[] Table indexed analogously to $goto. If $gotoCheck[$gotoBase[$nonTerminal] + $state] != $nonTerminal + * then the goto state is defaulted, i.e. $gotoDefault[$nonTerminal] should be used. */ + protected $gotoCheck; + /** @var int[] Map of non-terminals to the default state to goto after their reduction */ + protected $gotoDefault; + /** @var int[] Map of rules to the non-terminal on their left-hand side, i.e. the non-terminal to use for + * determining the state to goto after reduction. */ + protected $ruleToNonTerminal; + /** @var int[] Map of rules to the length of their right-hand side, which is the number of elements that have to + * be popped from the stack(s) on reduction. */ + protected $ruleToLength; + /* + * The following members are part of the parser state: + */ + /** @var Lexer Lexer that is used when parsing */ + protected $lexer; + /** @var mixed Temporary value containing the result of last semantic action (reduction) */ + protected $semValue; + /** @var array Semantic value stack (contains values of tokens and semantic action results) */ + protected $semStack; + /** @var array[] Start attribute stack */ + protected $startAttributeStack; + /** @var array[] End attribute stack */ + protected $endAttributeStack; + /** @var array End attributes of last *shifted* token */ + protected $endAttributes; + /** @var array Start attributes of last *read* token */ + protected $lookaheadStartAttributes; + /** @var ErrorHandler Error handler */ + protected $errorHandler; + /** @var int Error state, used to avoid error floods */ + protected $errorState; /** - * @var DOMElement + * Initialize $reduceCallbacks map. */ - private $contextNode; + abstract protected function initReduceCallbacks(); /** - * @var bool + * Creates a parser instance. + * + * Options: Currently none. + * + * @param Lexer $lexer A lexer + * @param array $options Options array. */ - private $finalized = \false; - public function __construct(DOMElement $context, string $line) + public function __construct(Lexer $lexer, array $options = []) { - $this->contextNode = $context; - $this->writer = new XMLWriter(); - $this->writer->openMemory(); - $this->writer->startElementNS(null, $context->nodeName, 'https://schema.phpunit.de/coverage/1.0'); - $this->writer->writeAttribute('nr', $line); + $this->lexer = $lexer; + if (isset($options['throwOnError'])) { + throw new \LogicException('"throwOnError" is no longer supported, use "errorHandler" instead'); + } + $this->initReduceCallbacks(); } /** - * @throws ReportAlreadyFinalizedException + * Parses PHP code into a node tree. + * + * If a non-throwing error handler is used, the parser will continue parsing after an error + * occurred and attempt to build a partial AST. + * + * @param string $code The source code to parse + * @param ErrorHandler|null $errorHandler Error handler to use for lexer/parser errors, defaults + * to ErrorHandler\Throwing. + * + * @return Node\Stmt[]|null Array of statements (or null non-throwing error handler is used and + * the parser was unable to recover from an error). */ - public function addTest(string $test) : void + public function parse(string $code, ?ErrorHandler $errorHandler = null) { - if ($this->finalized) { - throw new ReportAlreadyFinalizedException(); - } - $this->writer->startElement('covered'); - $this->writer->writeAttribute('by', $test); - $this->writer->endElement(); + $this->errorHandler = $errorHandler ?: new ErrorHandler\Throwing(); + $this->lexer->startLexing($code, $this->errorHandler); + $result = $this->doParse(); + // Clear out some of the interior state, so we don't hold onto unnecessary + // memory between uses of the parser + $this->startAttributeStack = []; + $this->endAttributeStack = []; + $this->semStack = []; + $this->semValue = null; + return $result; } - public function finalize() : void + protected function doParse() { - $this->writer->endElement(); - $fragment = $this->contextNode->ownerDocument->createDocumentFragment(); - $fragment->appendXML($this->writer->outputMemory()); - $this->contextNode->parentNode->replaceChild($fragment, $this->contextNode); - $this->finalized = \true; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Directory extends Node -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use const DIRECTORY_SEPARATOR; -use const PHP_EOL; -use function count; -use function dirname; -use function file_get_contents; -use function file_put_contents; -use function is_array; -use function is_dir; -use function is_file; -use function is_writable; -use function libxml_clear_errors; -use function libxml_get_errors; -use function libxml_use_internal_errors; -use function sprintf; -use function strlen; -use function substr; -use DateTimeImmutable; -use DOMDocument; -use PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\PathExistsButIsNotDirectoryException; -use PHPUnit\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\AbstractNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Node\File as FileNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem as DirectoryUtil; -use PHPUnit\SebastianBergmann\CodeCoverage\Version; -use PHPUnit\SebastianBergmann\CodeCoverage\XmlException; -use PHPUnit\SebastianBergmann\Environment\Runtime; -final class Facade -{ - /** - * @var string - */ - private $target; - /** - * @var Project - */ - private $project; - /** - * @var string - */ - private $phpUnitVersion; - public function __construct(string $version) + // We start off with no lookahead-token + $symbol = self::SYMBOL_NONE; + // The attributes for a node are taken from the first and last token of the node. + // From the first token only the startAttributes are taken and from the last only + // the endAttributes. Both are merged using the array union operator (+). + $startAttributes = []; + $endAttributes = []; + $this->endAttributes = $endAttributes; + // Keep stack of start and end attributes + $this->startAttributeStack = []; + $this->endAttributeStack = [$endAttributes]; + // Start off in the initial state and keep a stack of previous states + $state = 0; + $stateStack = [$state]; + // Semantic value stack (contains values of tokens and semantic action results) + $this->semStack = []; + // Current position in the stack(s) + $stackPos = 0; + $this->errorState = 0; + for (;;) { + //$this->traceNewState($state, $symbol); + if ($this->actionBase[$state] === 0) { + $rule = $this->actionDefault[$state]; + } else { + if ($symbol === self::SYMBOL_NONE) { + // Fetch the next token id from the lexer and fetch additional info by-ref. + // The end attributes are fetched into a temporary variable and only set once the token is really + // shifted (not during read). Otherwise you would sometimes get off-by-one errors, when a rule is + // reduced after a token was read but not yet shifted. + $tokenId = $this->lexer->getNextToken($tokenValue, $startAttributes, $endAttributes); + // map the lexer token id to the internally used symbols + $symbol = $tokenId >= 0 && $tokenId < $this->tokenToSymbolMapSize ? $this->tokenToSymbol[$tokenId] : $this->invalidSymbol; + if ($symbol === $this->invalidSymbol) { + throw new \RangeException(sprintf('The lexer returned an invalid token (id=%d, value=%s)', $tokenId, $tokenValue)); + } + // Allow productions to access the start attributes of the lookahead token. + $this->lookaheadStartAttributes = $startAttributes; + //$this->traceRead($symbol); + } + $idx = $this->actionBase[$state] + $symbol; + if (($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $symbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol) && ($action = $this->action[$idx]) !== $this->defaultAction) { + /* + * >= numNonLeafStates: shift and reduce + * > 0: shift + * = 0: accept + * < 0: reduce + * = -YYUNEXPECTED: error + */ + if ($action > 0) { + /* shift */ + //$this->traceShift($symbol); + ++$stackPos; + $stateStack[$stackPos] = $state = $action; + $this->semStack[$stackPos] = $tokenValue; + $this->startAttributeStack[$stackPos] = $startAttributes; + $this->endAttributeStack[$stackPos] = $endAttributes; + $this->endAttributes = $endAttributes; + $symbol = self::SYMBOL_NONE; + if ($this->errorState) { + --$this->errorState; + } + if ($action < $this->numNonLeafStates) { + continue; + } + /* $yyn >= numNonLeafStates means shift-and-reduce */ + $rule = $action - $this->numNonLeafStates; + } else { + $rule = -$action; + } + } else { + $rule = $this->actionDefault[$state]; + } + } + for (;;) { + if ($rule === 0) { + /* accept */ + //$this->traceAccept(); + return $this->semValue; + } elseif ($rule !== $this->unexpectedTokenRule) { + /* reduce */ + //$this->traceReduce($rule); + try { + $this->reduceCallbacks[$rule]($stackPos); + } catch (Error $e) { + if (-1 === $e->getStartLine() && isset($startAttributes['startLine'])) { + $e->setStartLine($startAttributes['startLine']); + } + $this->emitError($e); + // Can't recover from this type of error + return null; + } + /* Goto - shift nonterminal */ + $lastEndAttributes = $this->endAttributeStack[$stackPos]; + $ruleLength = $this->ruleToLength[$rule]; + $stackPos -= $ruleLength; + $nonTerminal = $this->ruleToNonTerminal[$rule]; + $idx = $this->gotoBase[$nonTerminal] + $stateStack[$stackPos]; + if ($idx >= 0 && $idx < $this->gotoTableSize && $this->gotoCheck[$idx] === $nonTerminal) { + $state = $this->goto[$idx]; + } else { + $state = $this->gotoDefault[$nonTerminal]; + } + ++$stackPos; + $stateStack[$stackPos] = $state; + $this->semStack[$stackPos] = $this->semValue; + $this->endAttributeStack[$stackPos] = $lastEndAttributes; + if ($ruleLength === 0) { + // Empty productions use the start attributes of the lookahead token. + $this->startAttributeStack[$stackPos] = $this->lookaheadStartAttributes; + } + } else { + /* error */ + switch ($this->errorState) { + case 0: + $msg = $this->getErrorMessage($symbol, $state); + $this->emitError(new Error($msg, $startAttributes + $endAttributes)); + // Break missing intentionally + case 1: + case 2: + $this->errorState = 3; + // Pop until error-expecting state uncovered + while (!(($idx = $this->actionBase[$state] + $this->errorSymbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $this->errorSymbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $this->errorSymbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $this->errorSymbol) || ($action = $this->action[$idx]) === $this->defaultAction) { + // Not totally sure about this + if ($stackPos <= 0) { + // Could not recover from error + return null; + } + $state = $stateStack[--$stackPos]; + //$this->tracePop($state); + } + //$this->traceShift($this->errorSymbol); + ++$stackPos; + $stateStack[$stackPos] = $state = $action; + // We treat the error symbol as being empty, so we reset the end attributes + // to the end attributes of the last non-error symbol + $this->startAttributeStack[$stackPos] = $this->lookaheadStartAttributes; + $this->endAttributeStack[$stackPos] = $this->endAttributeStack[$stackPos - 1]; + $this->endAttributes = $this->endAttributeStack[$stackPos - 1]; + break; + case 3: + if ($symbol === 0) { + // Reached EOF without recovering from error + return null; + } + //$this->traceDiscard($symbol); + $symbol = self::SYMBOL_NONE; + break 2; + } + } + if ($state < $this->numNonLeafStates) { + break; + } + /* >= numNonLeafStates means shift-and-reduce */ + $rule = $state - $this->numNonLeafStates; + } + } + throw new \RuntimeException('Reached end of parser loop'); + } + protected function emitError(Error $error) { - $this->phpUnitVersion = $version; + $this->errorHandler->handleError($error); } /** - * @throws XmlException + * Format error message including expected tokens. + * + * @param int $symbol Unexpected symbol + * @param int $state State at time of error + * + * @return string Formatted error message */ - public function process(CodeCoverage $coverage, string $target) : void + protected function getErrorMessage(int $symbol, int $state): string { - if (substr($target, -1, 1) !== DIRECTORY_SEPARATOR) { - $target .= DIRECTORY_SEPARATOR; + $expectedString = ''; + if ($expected = $this->getExpectedTokens($state)) { + $expectedString = ', expecting ' . implode(' or ', $expected); } - $this->target = $target; - $this->initTargetDirectory($target); - $report = $coverage->getReport(); - $this->project = new Project($coverage->getReport()->name()); - $this->setBuildInformation(); - $this->processTests($coverage->getTests()); - $this->processDirectory($report, $this->project); - $this->saveDocument($this->project->asDom(), 'index'); - } - private function setBuildInformation() : void - { - $buildNode = $this->project->buildInformation(); - $buildNode->setRuntimeInformation(new Runtime()); - $buildNode->setBuildTime(new DateTimeImmutable()); - $buildNode->setGeneratorVersions($this->phpUnitVersion, Version::id()); + return 'Syntax error, unexpected ' . $this->symbolToName[$symbol] . $expectedString; } /** - * @throws PathExistsButIsNotDirectoryException - * @throws WriteOperationFailedException + * Get limited number of expected tokens in given state. + * + * @param int $state State + * + * @return string[] Expected tokens. If too many, an empty array is returned. */ - private function initTargetDirectory(string $directory) : void + protected function getExpectedTokens(int $state): array { - if (is_file($directory)) { - if (!is_dir($directory)) { - throw new PathExistsButIsNotDirectoryException($directory); - } - if (!is_writable($directory)) { - throw new WriteOperationFailedException($directory); + $expected = []; + $base = $this->actionBase[$state]; + foreach ($this->symbolToName as $symbol => $name) { + $idx = $base + $symbol; + if ($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol || $state < $this->YY2TBLSTATE && ($idx = $this->actionBase[$state + $this->numNonLeafStates] + $symbol) >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol) { + if ($this->action[$idx] !== $this->unexpectedTokenRule && $this->action[$idx] !== $this->defaultAction && $symbol !== $this->errorSymbol) { + if (count($expected) === 4) { + /* Too many expected tokens */ + return []; + } + $expected[] = $name; + } } } - DirectoryUtil::createDirectory($directory); + return $expected; } - /** - * @throws XmlException + /* + * Tracing functions used for debugging the parser. */ - private function processDirectory(DirectoryNode $directory, Node $context) : void - { - $directoryName = $directory->name(); - if ($this->project->projectSourceDirectory() === $directoryName) { - $directoryName = '/'; - } - $directoryObject = $context->addDirectory($directoryName); - $this->setTotals($directory, $directoryObject->totals()); - foreach ($directory->directories() as $node) { - $this->processDirectory($node, $directoryObject); - } - foreach ($directory->files() as $node) { - $this->processFile($node, $directoryObject); - } + /* + protected function traceNewState($state, $symbol) { + echo '% State ' . $state + . ', Lookahead ' . ($symbol == self::SYMBOL_NONE ? '--none--' : $this->symbolToName[$symbol]) . "\n"; + } + + protected function traceRead($symbol) { + echo '% Reading ' . $this->symbolToName[$symbol] . "\n"; + } + + protected function traceShift($symbol) { + echo '% Shift ' . $this->symbolToName[$symbol] . "\n"; + } + + protected function traceAccept() { + echo "% Accepted.\n"; + } + + protected function traceReduce($n) { + echo '% Reduce by (' . $n . ') ' . $this->productions[$n] . "\n"; + } + + protected function tracePop($state) { + echo '% Recovering, uncovered state ' . $state . "\n"; + } + + protected function traceDiscard($symbol) { + echo '% Discard ' . $this->symbolToName[$symbol] . "\n"; } + */ + /* + * Helper functions invoked by semantic actions + */ /** - * @throws XmlException + * Moves statements of semicolon-style namespaces into $ns->stmts and checks various error conditions. + * + * @param Node\Stmt[] $stmts + * @return Node\Stmt[] */ - private function processFile(FileNode $file, Directory $context) : void + protected function handleNamespaces(array $stmts): array { - $fileObject = $context->addFile($file->name(), $file->id() . '.xml'); - $this->setTotals($file, $fileObject->totals()); - $path = substr($file->pathAsString(), strlen($this->project->projectSourceDirectory())); - $fileReport = new Report($path); - $this->setTotals($file, $fileReport->totals()); - foreach ($file->classesAndTraits() as $unit) { - $this->processUnit($unit, $fileReport); - } - foreach ($file->functions() as $function) { - $this->processFunction($function, $fileReport); - } - foreach ($file->lineCoverageData() as $line => $tests) { - if (!is_array($tests) || count($tests) === 0) { - continue; + $hasErrored = \false; + $style = $this->getNamespacingStyle($stmts); + if (null === $style) { + // not namespaced, nothing to do + return $stmts; + } elseif ('brace' === $style) { + // For braced namespaces we only have to check that there are no invalid statements between the namespaces + $afterFirstNamespace = \false; + foreach ($stmts as $stmt) { + if ($stmt instanceof Node\Stmt\Namespace_) { + $afterFirstNamespace = \true; + } elseif (!$stmt instanceof Node\Stmt\HaltCompiler && !$stmt instanceof Node\Stmt\Nop && $afterFirstNamespace && !$hasErrored) { + $this->emitError(new Error('No code may exist outside of namespace {}', $stmt->getAttributes())); + $hasErrored = \true; + // Avoid one error for every statement + } } - $coverage = $fileReport->lineCoverage((string) $line); - foreach ($tests as $test) { - $coverage->addTest($test); + return $stmts; + } else { + // For semicolon namespaces we have to move the statements after a namespace declaration into ->stmts + $resultStmts = []; + $targetStmts =& $resultStmts; + $lastNs = null; + foreach ($stmts as $stmt) { + if ($stmt instanceof Node\Stmt\Namespace_) { + if ($lastNs !== null) { + $this->fixupNamespaceAttributes($lastNs); + } + if ($stmt->stmts === null) { + $stmt->stmts = []; + $targetStmts =& $stmt->stmts; + $resultStmts[] = $stmt; + } else { + // This handles the invalid case of mixed style namespaces + $resultStmts[] = $stmt; + $targetStmts =& $resultStmts; + } + $lastNs = $stmt; + } elseif ($stmt instanceof Node\Stmt\HaltCompiler) { + // __halt_compiler() is not moved into the namespace + $resultStmts[] = $stmt; + } else { + $targetStmts[] = $stmt; + } } - $coverage->finalize(); + if ($lastNs !== null) { + $this->fixupNamespaceAttributes($lastNs); + } + return $resultStmts; } - $fileReport->source()->setSourceCode(file_get_contents($file->pathAsString())); - $this->saveDocument($fileReport->asDom(), $file->id()); } - private function processUnit(array $unit, Report $report) : void + private function fixupNamespaceAttributes(Node\Stmt\Namespace_ $stmt) { - if (isset($unit['className'])) { - $unitObject = $report->classObject($unit['className']); - } else { - $unitObject = $report->traitObject($unit['traitName']); - } - $unitObject->setLines($unit['startLine'], $unit['executableLines'], $unit['executedLines']); - $unitObject->setCrap((float) $unit['crap']); - $unitObject->setNamespace($unit['namespace']); - foreach ($unit['methods'] as $method) { - $methodObject = $unitObject->addMethod($method['methodName']); - $methodObject->setSignature($method['signature']); - $methodObject->setLines((string) $method['startLine'], (string) $method['endLine']); - $methodObject->setCrap($method['crap']); - $methodObject->setTotals((string) $method['executableLines'], (string) $method['executedLines'], (string) $method['coverage']); + // We moved the statements into the namespace node, as such the end of the namespace node + // needs to be extended to the end of the statements. + if (empty($stmt->stmts)) { + return; } - } - private function processFunction(array $function, Report $report) : void - { - $functionObject = $report->functionObject($function['functionName']); - $functionObject->setSignature($function['signature']); - $functionObject->setLines((string) $function['startLine']); - $functionObject->setCrap($function['crap']); - $functionObject->setTotals((string) $function['executableLines'], (string) $function['executedLines'], (string) $function['coverage']); - } - private function processTests(array $tests) : void - { - $testsObject = $this->project->tests(); - foreach ($tests as $test => $result) { - $testsObject->addTest($test, $result); + // We only move the builtin end attributes here. This is the best we can do with the + // knowledge we have. + $endAttributes = ['endLine', 'endFilePos', 'endTokenPos']; + $lastStmt = $stmt->stmts[count($stmt->stmts) - 1]; + foreach ($endAttributes as $endAttribute) { + if ($lastStmt->hasAttribute($endAttribute)) { + $stmt->setAttribute($endAttribute, $lastStmt->getAttribute($endAttribute)); + } } } - private function setTotals(AbstractNode $node, Totals $totals) : void - { - $loc = $node->linesOfCode(); - $totals->setNumLines($loc['linesOfCode'], $loc['commentLinesOfCode'], $loc['nonCommentLinesOfCode'], $node->numberOfExecutableLines(), $node->numberOfExecutedLines()); - $totals->setNumClasses($node->numberOfClasses(), $node->numberOfTestedClasses()); - $totals->setNumTraits($node->numberOfTraits(), $node->numberOfTestedTraits()); - $totals->setNumMethods($node->numberOfMethods(), $node->numberOfTestedMethods()); - $totals->setNumFunctions($node->numberOfFunctions(), $node->numberOfTestedFunctions()); - } - private function targetDirectory() : string - { - return $this->target; - } - /** - * @throws XmlException - */ - private function saveDocument(DOMDocument $document, string $name) : void - { - $filename = sprintf('%s/%s.xml', $this->targetDirectory(), $name); - $document->formatOutput = \true; - $document->preserveWhiteSpace = \false; - $this->initTargetDirectory(dirname($filename)); - file_put_contents($filename, $this->documentAsString($document)); - } /** - * @throws XmlException + * Determine namespacing style (semicolon or brace) * - * @see https://bugs.php.net/bug.php?id=79191 + * @param Node[] $stmts Top-level statements. + * + * @return null|string One of "semicolon", "brace" or null (no namespaces) */ - private function documentAsString(DOMDocument $document) : string + private function getNamespacingStyle(array $stmts) { - $xmlErrorHandling = libxml_use_internal_errors(\true); - $xml = $document->saveXML(); - if ($xml === \false) { - $message = 'Unable to generate the XML'; - foreach (libxml_get_errors() as $error) { - $message .= PHP_EOL . $error->message; + $style = null; + $hasNotAllowedStmts = \false; + foreach ($stmts as $i => $stmt) { + if ($stmt instanceof Node\Stmt\Namespace_) { + $currentStyle = null === $stmt->stmts ? 'semicolon' : 'brace'; + if (null === $style) { + $style = $currentStyle; + if ($hasNotAllowedStmts) { + $this->emitError(new Error('Namespace declaration statement has to be the very first statement in the script', $stmt->getLine())); + } + } elseif ($style !== $currentStyle) { + $this->emitError(new Error('Cannot mix bracketed namespace declarations with unbracketed namespace declarations', $stmt->getLine())); + // Treat like semicolon style for namespace normalization + return 'semicolon'; + } + continue; } - throw new XmlException($message); + /* declare(), __halt_compiler() and nops can be used before a namespace declaration */ + if ($stmt instanceof Node\Stmt\Declare_ || $stmt instanceof Node\Stmt\HaltCompiler || $stmt instanceof Node\Stmt\Nop) { + continue; + } + /* There may be a hashbang line at the very start of the file */ + if ($i === 0 && $stmt instanceof Node\Stmt\InlineHTML && preg_match('/\A#!.*\r?\n\z/', $stmt->value)) { + continue; + } + /* Everything else if forbidden before namespace declarations */ + $hasNotAllowedStmts = \true; } - libxml_clear_errors(); - libxml_use_internal_errors($xmlErrorHandling); - return $xml; + return $style; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use DOMDocument; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -class File -{ - /** - * @var DOMDocument - */ - private $dom; /** - * @var DOMElement + * Fix up parsing of static property calls in PHP 5. + * + * In PHP 5 A::$b[c][d] and A::$b[c][d]() have very different interpretation. The former is + * interpreted as (A::$b)[c][d], while the latter is the same as A::{$b[c][d]}(). We parse the + * latter as the former initially and this method fixes the AST into the correct form when we + * encounter the "()". + * + * @param Node\Expr\StaticPropertyFetch|Node\Expr\ArrayDimFetch $prop + * @param Node\Arg[] $args + * @param array $attributes + * + * @return Expr\StaticCall */ - private $contextNode; - public function __construct(DOMElement $context) - { - $this->dom = $context->ownerDocument; - $this->contextNode = $context; - } - public function totals() : Totals + protected function fixupPhp5StaticPropCall($prop, array $args, array $attributes): Expr\StaticCall { - $totalsContainer = $this->contextNode->firstChild; - if (!$totalsContainer) { - $totalsContainer = $this->contextNode->appendChild($this->dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'totals')); + if ($prop instanceof Node\Expr\StaticPropertyFetch) { + $name = $prop->name instanceof VarLikeIdentifier ? $prop->name->toString() : $prop->name; + $var = new Expr\Variable($name, $prop->name->getAttributes()); + return new Expr\StaticCall($prop->class, $var, $args, $attributes); + } elseif ($prop instanceof Node\Expr\ArrayDimFetch) { + $tmp = $prop; + while ($tmp->var instanceof Node\Expr\ArrayDimFetch) { + $tmp = $tmp->var; + } + /** @var Expr\StaticPropertyFetch $staticProp */ + $staticProp = $tmp->var; + // Set start attributes to attributes of innermost node + $tmp = $prop; + $this->fixupStartAttributes($tmp, $staticProp->name); + while ($tmp->var instanceof Node\Expr\ArrayDimFetch) { + $tmp = $tmp->var; + $this->fixupStartAttributes($tmp, $staticProp->name); + } + $name = $staticProp->name instanceof VarLikeIdentifier ? $staticProp->name->toString() : $staticProp->name; + $tmp->var = new Expr\Variable($name, $staticProp->name->getAttributes()); + return new Expr\StaticCall($staticProp->class, $prop, $args, $attributes); + } else { + throw new \Exception(); } - return new Totals($totalsContainer); } - public function lineCoverage(string $line) : Coverage + protected function fixupStartAttributes(Node $to, Node $from) { - $coverage = $this->contextNode->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'coverage')->item(0); - if (!$coverage) { - $coverage = $this->contextNode->appendChild($this->dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'coverage')); + $startAttributes = ['startLine', 'startFilePos', 'startTokenPos']; + foreach ($startAttributes as $startAttribute) { + if ($from->hasAttribute($startAttribute)) { + $to->setAttribute($startAttribute, $from->getAttribute($startAttribute)); + } } - $lineNode = $coverage->appendChild($this->dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'line')); - return new Coverage($lineNode, $line); - } - protected function contextNode() : DOMElement - { - return $this->contextNode; } - protected function dom() : DOMDocument + protected function handleBuiltinTypes(Name $name) { - return $this->dom; + $builtinTypes = ['bool' => \true, 'int' => \true, 'float' => \true, 'string' => \true, 'iterable' => \true, 'void' => \true, 'object' => \true, 'null' => \true, 'false' => \true, 'mixed' => \true, 'never' => \true, 'true' => \true]; + if (!$name->isUnqualified()) { + return $name; + } + $lowerName = $name->toLowerString(); + if (!isset($builtinTypes[$lowerName])) { + return $name; + } + return new Node\Identifier($lowerName, $name->getAttributes()); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Method -{ /** - * @var DOMElement + * Get combined start and end attributes at a stack location + * + * @param int $pos Stack location + * + * @return array Combined start and end attributes */ - private $contextNode; - public function __construct(DOMElement $context, string $name) - { - $this->contextNode = $context; - $this->setName($name); - } - public function setSignature(string $signature) : void + protected function getAttributesAt(int $pos): array { - $this->contextNode->setAttribute('signature', $signature); + return $this->startAttributeStack[$pos] + $this->endAttributeStack[$pos]; } - public function setLines(string $start, ?string $end = null) : void + protected function getFloatCastKind(string $cast): int { - $this->contextNode->setAttribute('start', $start); - if ($end !== null) { - $this->contextNode->setAttribute('end', $end); + $cast = strtolower($cast); + if (strpos($cast, 'float') !== \false) { + return Double::KIND_FLOAT; } + if (strpos($cast, 'real') !== \false) { + return Double::KIND_REAL; + } + return Double::KIND_DOUBLE; } - public function setTotals(string $executable, string $executed, string $coverage) : void - { - $this->contextNode->setAttribute('executable', $executable); - $this->contextNode->setAttribute('executed', $executed); - $this->contextNode->setAttribute('coverage', $coverage); - } - public function setCrap(string $crap) : void - { - $this->contextNode->setAttribute('crap', $crap); - } - private function setName(string $name) : void + protected function parseLNumber($str, $attributes, $allowInvalidOctal = \false) { - $this->contextNode->setAttribute('name', $name); + try { + return LNumber::fromString($str, $attributes, $allowInvalidOctal); + } catch (Error $error) { + $this->emitError($error); + // Use dummy value + return new LNumber(0, $attributes); + } } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use DOMDocument; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -abstract class Node -{ - /** - * @var DOMDocument - */ - private $dom; /** - * @var DOMElement + * Parse a T_NUM_STRING token into either an integer or string node. + * + * @param string $str Number string + * @param array $attributes Attributes + * + * @return LNumber|String_ Integer or string node. */ - private $contextNode; - public function __construct(DOMElement $context) - { - $this->setContextNode($context); - } - public function dom() : DOMDocument - { - return $this->dom; - } - public function totals() : Totals + protected function parseNumString(string $str, array $attributes) { - $totalsContainer = $this->contextNode()->firstChild; - if (!$totalsContainer) { - $totalsContainer = $this->contextNode()->appendChild($this->dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'totals')); + if (!preg_match('/^(?:0|-?[1-9][0-9]*)$/', $str)) { + return new String_($str, $attributes); } - return new Totals($totalsContainer); - } - public function addDirectory(string $name) : Directory - { - $dirNode = $this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'directory'); - $dirNode->setAttribute('name', $name); - $this->contextNode()->appendChild($dirNode); - return new Directory($dirNode); + $num = +$str; + if (!is_int($num)) { + return new String_($str, $attributes); + } + return new LNumber($num, $attributes); } - public function addFile(string $name, string $href) : File + protected function stripIndentation(string $string, int $indentLen, string $indentChar, bool $newlineAtStart, bool $newlineAtEnd, array $attributes) { - $fileNode = $this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'file'); - $fileNode->setAttribute('name', $name); - $fileNode->setAttribute('href', $href); - $this->contextNode()->appendChild($fileNode); - return new File($fileNode); + if ($indentLen === 0) { + return $string; + } + $start = $newlineAtStart ? '(?:(?<=\n)|\A)' : '(?<=\n)'; + $end = $newlineAtEnd ? '(?:(?=[\r\n])|\z)' : '(?=[\r\n])'; + $regex = '/' . $start . '([ \t]*)(' . $end . ')?/'; + return preg_replace_callback($regex, function ($matches) use ($indentLen, $indentChar, $attributes) { + $prefix = substr($matches[1], 0, $indentLen); + if (\false !== strpos($prefix, $indentChar === " " ? "\t" : " ")) { + $this->emitError(new Error('Invalid indentation - tabs and spaces cannot be mixed', $attributes)); + } elseif (strlen($prefix) < $indentLen && !isset($matches[2])) { + $this->emitError(new Error('Invalid body indentation level ' . '(expecting an indentation level of at least ' . $indentLen . ')', $attributes)); + } + return substr($matches[0], strlen($prefix)); + }, $string); } - protected function setContextNode(DOMElement $context) : void + protected function parseDocString(string $startToken, $contents, string $endToken, array $attributes, array $endTokenAttributes, bool $parseUnicodeEscape) { - $this->dom = $context->ownerDocument; - $this->contextNode = $context; + $kind = strpos($startToken, "'") === \false ? String_::KIND_HEREDOC : String_::KIND_NOWDOC; + $regex = '/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/'; + $result = preg_match($regex, $startToken, $matches); + assert($result === 1); + $label = $matches[1]; + $result = preg_match('/\A[ \t]*/', $endToken, $matches); + assert($result === 1); + $indentation = $matches[0]; + $attributes['kind'] = $kind; + $attributes['docLabel'] = $label; + $attributes['docIndentation'] = $indentation; + $indentHasSpaces = \false !== strpos($indentation, " "); + $indentHasTabs = \false !== strpos($indentation, "\t"); + if ($indentHasSpaces && $indentHasTabs) { + $this->emitError(new Error('Invalid indentation - tabs and spaces cannot be mixed', $endTokenAttributes)); + // Proceed processing as if this doc string is not indented + $indentation = ''; + } + $indentLen = \strlen($indentation); + $indentChar = $indentHasSpaces ? " " : "\t"; + if (\is_string($contents)) { + if ($contents === '') { + return new String_('', $attributes); + } + $contents = $this->stripIndentation($contents, $indentLen, $indentChar, \true, \true, $attributes); + $contents = preg_replace('~(\r\n|\n|\r)\z~', '', $contents); + if ($kind === String_::KIND_HEREDOC) { + $contents = String_::parseEscapeSequences($contents, null, $parseUnicodeEscape); + } + return new String_($contents, $attributes); + } else { + assert(count($contents) > 0); + if (!$contents[0] instanceof Node\Scalar\EncapsedStringPart) { + // If there is no leading encapsed string part, pretend there is an empty one + $this->stripIndentation('', $indentLen, $indentChar, \true, \false, $contents[0]->getAttributes()); + } + $newContents = []; + foreach ($contents as $i => $part) { + if ($part instanceof Node\Scalar\EncapsedStringPart) { + $isLast = $i === \count($contents) - 1; + $part->value = $this->stripIndentation($part->value, $indentLen, $indentChar, $i === 0, $isLast, $part->getAttributes()); + $part->value = String_::parseEscapeSequences($part->value, null, $parseUnicodeEscape); + if ($isLast) { + $part->value = preg_replace('~(\r\n|\n|\r)\z~', '', $part->value); + } + if ('' === $part->value) { + continue; + } + } + $newContents[] = $part; + } + return new Encapsed($newContents, $attributes); + } } - protected function contextNode() : DOMElement + /** + * Create attributes for a zero-length common-capturing nop. + * + * @param Comment[] $comments + * @return array + */ + protected function createCommentNopAttributes(array $comments) { - return $this->contextNode; + $comment = $comments[count($comments) - 1]; + $commentEndLine = $comment->getEndLine(); + $commentEndFilePos = $comment->getEndFilePos(); + $commentEndTokenPos = $comment->getEndTokenPos(); + $attributes = ['comments' => $comments]; + if (-1 !== $commentEndLine) { + $attributes['startLine'] = $commentEndLine; + $attributes['endLine'] = $commentEndLine; + } + if (-1 !== $commentEndFilePos) { + $attributes['startFilePos'] = $commentEndFilePos + 1; + $attributes['endFilePos'] = $commentEndFilePos; + } + if (-1 !== $commentEndTokenPos) { + $attributes['startTokenPos'] = $commentEndTokenPos + 1; + $attributes['endTokenPos'] = $commentEndTokenPos; + } + return $attributes; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use DOMDocument; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Project extends Node -{ - public function __construct(string $directory) + /** @param ElseIf_|Else_ $node */ + protected function fixupAlternativeElse($node) { - $this->init(); - $this->setProjectSourceDirectory($directory); + // Make sure a trailing nop statement carrying comments is part of the node. + $numStmts = \count($node->stmts); + if ($numStmts !== 0 && $node->stmts[$numStmts - 1] instanceof Nop) { + $nopAttrs = $node->stmts[$numStmts - 1]->getAttributes(); + if (isset($nopAttrs['endLine'])) { + $node->setAttribute('endLine', $nopAttrs['endLine']); + } + if (isset($nopAttrs['endFilePos'])) { + $node->setAttribute('endFilePos', $nopAttrs['endFilePos']); + } + if (isset($nopAttrs['endTokenPos'])) { + $node->setAttribute('endTokenPos', $nopAttrs['endTokenPos']); + } + } } - public function projectSourceDirectory() : string + protected function checkClassModifier($a, $b, $modifierPos) { - return $this->contextNode()->getAttribute('source'); + try { + Class_::verifyClassModifier($a, $b); + } catch (Error $error) { + $error->setAttributes($this->getAttributesAt($modifierPos)); + $this->emitError($error); + } } - public function buildInformation() : BuildInformation + protected function checkModifier($a, $b, $modifierPos) { - $buildNode = $this->dom()->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'build')->item(0); - if (!$buildNode) { - $buildNode = $this->dom()->documentElement->appendChild($this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'build')); + // Jumping through some hoops here because verifyModifier() is also used elsewhere + try { + Class_::verifyModifier($a, $b); + } catch (Error $error) { + $error->setAttributes($this->getAttributesAt($modifierPos)); + $this->emitError($error); } - return new BuildInformation($buildNode); } - public function tests() : Tests + protected function checkParam(Param $node) { - $testsNode = $this->contextNode()->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'tests')->item(0); - if (!$testsNode) { - $testsNode = $this->contextNode()->appendChild($this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'tests')); + if ($node->variadic && null !== $node->default) { + $this->emitError(new Error('Variadic parameter cannot have a default value', $node->default->getAttributes())); } - return new Tests($testsNode); } - public function asDom() : DOMDocument + protected function checkTryCatch(TryCatch $node) { - return $this->dom(); + if (empty($node->catches) && null === $node->finally) { + $this->emitError(new Error('Cannot use try without catch or finally', $node->getAttributes())); + } } - private function init() : void + protected function checkNamespace(Namespace_ $node) { - $dom = new DOMDocument(); - $dom->loadXML(''); - $this->setContextNode($dom->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'project')->item(0)); + if (null !== $node->stmts) { + foreach ($node->stmts as $stmt) { + if ($stmt instanceof Namespace_) { + $this->emitError(new Error('Namespace declarations cannot be nested', $stmt->getAttributes())); + } + } + } } - private function setProjectSourceDirectory(string $name) : void + private function checkClassName($name, $namePos) { - $this->contextNode()->setAttribute('source', $name); + if (null !== $name && $name->isSpecialClassName()) { + $this->emitError(new Error(sprintf('Cannot use \'%s\' as class name as it is reserved', $name), $this->getAttributesAt($namePos))); + } } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use function basename; -use function dirname; -use DOMDocument; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Report extends File -{ - public function __construct(string $name) + private function checkImplementedInterfaces(array $interfaces) { - $dom = new DOMDocument(); - $dom->loadXML(''); - $contextNode = $dom->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'file')->item(0); - parent::__construct($contextNode); - $this->setName($name); + foreach ($interfaces as $interface) { + if ($interface->isSpecialClassName()) { + $this->emitError(new Error(sprintf('Cannot use \'%s\' as interface name as it is reserved', $interface), $interface->getAttributes())); + } + } } - public function asDom() : DOMDocument + protected function checkClass(Class_ $node, $namePos) { - return $this->dom(); + $this->checkClassName($node->name, $namePos); + if ($node->extends && $node->extends->isSpecialClassName()) { + $this->emitError(new Error(sprintf('Cannot use \'%s\' as class name as it is reserved', $node->extends), $node->extends->getAttributes())); + } + $this->checkImplementedInterfaces($node->implements); } - public function functionObject($name) : Method + protected function checkInterface(Interface_ $node, $namePos) { - $node = $this->contextNode()->appendChild($this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'function')); - return new Method($node, $name); + $this->checkClassName($node->name, $namePos); + $this->checkImplementedInterfaces($node->extends); } - public function classObject($name) : Unit + protected function checkEnum(Enum_ $node, $namePos) { - return $this->unitObject('class', $name); + $this->checkClassName($node->name, $namePos); + $this->checkImplementedInterfaces($node->implements); } - public function traitObject($name) : Unit + protected function checkClassMethod(ClassMethod $node, $modifierPos) { - return $this->unitObject('trait', $name); + if ($node->flags & Class_::MODIFIER_STATIC) { + switch ($node->name->toLowerString()) { + case '__construct': + $this->emitError(new Error(sprintf('Constructor %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); + break; + case '__destruct': + $this->emitError(new Error(sprintf('Destructor %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); + break; + case '__clone': + $this->emitError(new Error(sprintf('Clone method %s() cannot be static', $node->name), $this->getAttributesAt($modifierPos))); + break; + } + } + if ($node->flags & Class_::MODIFIER_READONLY) { + $this->emitError(new Error(sprintf('Method %s() cannot be readonly', $node->name), $this->getAttributesAt($modifierPos))); + } } - public function source() : Source + protected function checkClassConst(ClassConst $node, $modifierPos) { - $source = $this->contextNode()->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'source')->item(0); - if (!$source) { - $source = $this->contextNode()->appendChild($this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', 'source')); + if ($node->flags & Class_::MODIFIER_STATIC) { + $this->emitError(new Error("Cannot use 'static' as constant modifier", $this->getAttributesAt($modifierPos))); + } + if ($node->flags & Class_::MODIFIER_ABSTRACT) { + $this->emitError(new Error("Cannot use 'abstract' as constant modifier", $this->getAttributesAt($modifierPos))); + } + if ($node->flags & Class_::MODIFIER_READONLY) { + $this->emitError(new Error("Cannot use 'readonly' as constant modifier", $this->getAttributesAt($modifierPos))); } - return new Source($source); } - private function setName(string $name) : void + protected function checkProperty(Property $node, $modifierPos) { - $this->contextNode()->setAttribute('name', basename($name)); - $this->contextNode()->setAttribute('path', dirname($name)); + if ($node->flags & Class_::MODIFIER_ABSTRACT) { + $this->emitError(new Error('Properties cannot be declared abstract', $this->getAttributesAt($modifierPos))); + } + if ($node->flags & Class_::MODIFIER_FINAL) { + $this->emitError(new Error('Properties cannot be declared final', $this->getAttributesAt($modifierPos))); + } } - private function unitObject(string $tagName, $name) : Unit + protected function checkUseUse(UseUse $node, $namePos) { - $node = $this->contextNode()->appendChild($this->dom()->createElementNS('https://schema.phpunit.de/coverage/1.0', $tagName)); - return new Unit($node, $name); + if ($node->alias && $node->alias->isSpecialClassName()) { + $this->emitError(new Error(sprintf('Cannot use %s as %s because \'%2$s\' is a special class name', $node->name, $node->alias), $this->getAttributesAt($namePos))); + } } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; +namespace PHPUnitPHAR\PhpParser; -use DOMElement; -use PHPUnit\TheSeer\Tokenizer\NamespaceUri; -use PHPUnit\TheSeer\Tokenizer\Tokenizer; -use PHPUnit\TheSeer\Tokenizer\XMLSerializer; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Source +use PHPUnitPHAR\PhpParser\Lexer\Emulative; +use PHPUnitPHAR\PhpParser\Parser\Php7; +class ParserFactory { - /** @var DOMElement */ - private $context; - public function __construct(DOMElement $context) + const PREFER_PHP7 = 1; + const PREFER_PHP5 = 2; + const ONLY_PHP7 = 3; + const ONLY_PHP5 = 4; + /** + * Creates a Parser instance, according to the provided kind. + * + * @param int $kind One of ::PREFER_PHP7, ::PREFER_PHP5, ::ONLY_PHP7 or ::ONLY_PHP5 + * @param Lexer|null $lexer Lexer to use. Defaults to emulative lexer when not specified + * @param array $parserOptions Parser options. See ParserAbstract::__construct() argument + * + * @return Parser The parser instance + */ + public function create(int $kind, ?Lexer $lexer = null, array $parserOptions = []): Parser { - $this->context = $context; + if (null === $lexer) { + $lexer = new Lexer\Emulative(); + } + switch ($kind) { + case self::PREFER_PHP7: + return new Parser\Multiple([new Parser\Php7($lexer, $parserOptions), new Parser\Php5($lexer, $parserOptions)]); + case self::PREFER_PHP5: + return new Parser\Multiple([new Parser\Php5($lexer, $parserOptions), new Parser\Php7($lexer, $parserOptions)]); + case self::ONLY_PHP7: + return new Parser\Php7($lexer, $parserOptions); + case self::ONLY_PHP5: + return new Parser\Php5($lexer, $parserOptions); + default: + throw new \LogicException('Kind must be one of ::PREFER_PHP7, ::PREFER_PHP5, ::ONLY_PHP7 or ::ONLY_PHP5'); + } } - public function setSourceCode(string $source) : void + /** + * Create a parser targeting the newest version supported by this library. Code for older + * versions will be accepted if there have been no relevant backwards-compatibility breaks in + * PHP. + * + * All supported lexer attributes (comments, startLine, endLine, startTokenPos, endTokenPos, + * startFilePos, endFilePos) will be enabled. + */ + public function createForNewestSupportedVersion(): Parser { - $context = $this->context; - $tokens = (new Tokenizer())->parse($source); - $srcDom = (new XMLSerializer(new NamespaceUri($context->namespaceURI)))->toDom($tokens); - $context->parentNode->replaceChild($context->ownerDocument->importNode($srcDom->documentElement, \true), $context); + return new Php7(new Emulative($this->getLexerOptions())); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Tests -{ - private $contextNode; - private $codeMap = [ - -1 => 'UNKNOWN', - // PHPUnit_Runner_BaseTestRunner::STATUS_UNKNOWN - 0 => 'PASSED', - // PHPUnit_Runner_BaseTestRunner::STATUS_PASSED - 1 => 'SKIPPED', - // PHPUnit_Runner_BaseTestRunner::STATUS_SKIPPED - 2 => 'INCOMPLETE', - // PHPUnit_Runner_BaseTestRunner::STATUS_INCOMPLETE - 3 => 'FAILURE', - // PHPUnit_Runner_BaseTestRunner::STATUS_FAILURE - 4 => 'ERROR', - // PHPUnit_Runner_BaseTestRunner::STATUS_ERROR - 5 => 'RISKY', - // PHPUnit_Runner_BaseTestRunner::STATUS_RISKY - 6 => 'WARNING', - ]; - public function __construct(DOMElement $context) + /** + * Create a parser targeting the host PHP version, that is the PHP version we're currently + * running on. This parser will not use any token emulation. + * + * All supported lexer attributes (comments, startLine, endLine, startTokenPos, endTokenPos, + * startFilePos, endFilePos) will be enabled. + */ + public function createForHostVersion(): Parser { - $this->contextNode = $context; + return new Php7(new Lexer($this->getLexerOptions())); } - public function addTest(string $test, array $result) : void + private function getLexerOptions(): array { - $node = $this->contextNode->appendChild($this->contextNode->ownerDocument->createElementNS('https://schema.phpunit.de/coverage/1.0', 'test')); - $node->setAttribute('name', $test); - $node->setAttribute('size', $result['size']); - $node->setAttribute('result', (string) $result['status']); - $node->setAttribute('status', $this->codeMap[(int) $result['status']]); + return ['usedAttributes' => ['comments', 'startLine', 'endLine', 'startTokenPos', 'endTokenPos', 'startFilePos', 'endFilePos']]; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; +namespace PHPUnitPHAR\PhpParser\Parser; -use function sprintf; -use DOMElement; -use DOMNode; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Percentage; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Totals +/* GENERATED file based on grammar/tokens.y */ +final class Tokens { - /** - * @var DOMNode - */ - private $container; - /** - * @var DOMElement - */ - private $linesNode; - /** - * @var DOMElement - */ - private $methodsNode; - /** - * @var DOMElement - */ - private $functionsNode; - /** - * @var DOMElement - */ - private $classesNode; - /** - * @var DOMElement - */ - private $traitsNode; - public function __construct(DOMElement $container) - { - $this->container = $container; - $dom = $container->ownerDocument; - $this->linesNode = $dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'lines'); - $this->methodsNode = $dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'methods'); - $this->functionsNode = $dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'functions'); - $this->classesNode = $dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'classes'); - $this->traitsNode = $dom->createElementNS('https://schema.phpunit.de/coverage/1.0', 'traits'); - $container->appendChild($this->linesNode); - $container->appendChild($this->methodsNode); - $container->appendChild($this->functionsNode); - $container->appendChild($this->classesNode); - $container->appendChild($this->traitsNode); - } - public function container() : DOMNode - { - return $this->container; - } - public function setNumLines(int $loc, int $cloc, int $ncloc, int $executable, int $executed) : void - { - $this->linesNode->setAttribute('total', (string) $loc); - $this->linesNode->setAttribute('comments', (string) $cloc); - $this->linesNode->setAttribute('code', (string) $ncloc); - $this->linesNode->setAttribute('executable', (string) $executable); - $this->linesNode->setAttribute('executed', (string) $executed); - $this->linesNode->setAttribute('percent', $executable === 0 ? '0' : sprintf('%01.2F', Percentage::fromFractionAndTotal($executed, $executable)->asFloat())); - } - public function setNumClasses(int $count, int $tested) : void - { - $this->classesNode->setAttribute('count', (string) $count); - $this->classesNode->setAttribute('tested', (string) $tested); - $this->classesNode->setAttribute('percent', $count === 0 ? '0' : sprintf('%01.2F', Percentage::fromFractionAndTotal($tested, $count)->asFloat())); - } - public function setNumTraits(int $count, int $tested) : void - { - $this->traitsNode->setAttribute('count', (string) $count); - $this->traitsNode->setAttribute('tested', (string) $tested); - $this->traitsNode->setAttribute('percent', $count === 0 ? '0' : sprintf('%01.2F', Percentage::fromFractionAndTotal($tested, $count)->asFloat())); - } - public function setNumMethods(int $count, int $tested) : void - { - $this->methodsNode->setAttribute('count', (string) $count); - $this->methodsNode->setAttribute('tested', (string) $tested); - $this->methodsNode->setAttribute('percent', $count === 0 ? '0' : sprintf('%01.2F', Percentage::fromFractionAndTotal($tested, $count)->asFloat())); - } - public function setNumFunctions(int $count, int $tested) : void - { - $this->functionsNode->setAttribute('count', (string) $count); - $this->functionsNode->setAttribute('tested', (string) $tested); - $this->functionsNode->setAttribute('percent', $count === 0 ? '0' : sprintf('%01.2F', Percentage::fromFractionAndTotal($tested, $count)->asFloat())); - } + const YYERRTOK = 256; + const T_THROW = 257; + const T_INCLUDE = 258; + const T_INCLUDE_ONCE = 259; + const T_EVAL = 260; + const T_REQUIRE = 261; + const T_REQUIRE_ONCE = 262; + const T_LOGICAL_OR = 263; + const T_LOGICAL_XOR = 264; + const T_LOGICAL_AND = 265; + const T_PRINT = 266; + const T_YIELD = 267; + const T_DOUBLE_ARROW = 268; + const T_YIELD_FROM = 269; + const T_PLUS_EQUAL = 270; + const T_MINUS_EQUAL = 271; + const T_MUL_EQUAL = 272; + const T_DIV_EQUAL = 273; + const T_CONCAT_EQUAL = 274; + const T_MOD_EQUAL = 275; + const T_AND_EQUAL = 276; + const T_OR_EQUAL = 277; + const T_XOR_EQUAL = 278; + const T_SL_EQUAL = 279; + const T_SR_EQUAL = 280; + const T_POW_EQUAL = 281; + const T_COALESCE_EQUAL = 282; + const T_COALESCE = 283; + const T_BOOLEAN_OR = 284; + const T_BOOLEAN_AND = 285; + const T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG = 286; + const T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG = 287; + const T_IS_EQUAL = 288; + const T_IS_NOT_EQUAL = 289; + const T_IS_IDENTICAL = 290; + const T_IS_NOT_IDENTICAL = 291; + const T_SPACESHIP = 292; + const T_IS_SMALLER_OR_EQUAL = 293; + const T_IS_GREATER_OR_EQUAL = 294; + const T_SL = 295; + const T_SR = 296; + const T_INSTANCEOF = 297; + const T_INC = 298; + const T_DEC = 299; + const T_INT_CAST = 300; + const T_DOUBLE_CAST = 301; + const T_STRING_CAST = 302; + const T_ARRAY_CAST = 303; + const T_OBJECT_CAST = 304; + const T_BOOL_CAST = 305; + const T_UNSET_CAST = 306; + const T_POW = 307; + const T_NEW = 308; + const T_CLONE = 309; + const T_EXIT = 310; + const T_IF = 311; + const T_ELSEIF = 312; + const T_ELSE = 313; + const T_ENDIF = 314; + const T_LNUMBER = 315; + const T_DNUMBER = 316; + const T_STRING = 317; + const T_STRING_VARNAME = 318; + const T_VARIABLE = 319; + const T_NUM_STRING = 320; + const T_INLINE_HTML = 321; + const T_ENCAPSED_AND_WHITESPACE = 322; + const T_CONSTANT_ENCAPSED_STRING = 323; + const T_ECHO = 324; + const T_DO = 325; + const T_WHILE = 326; + const T_ENDWHILE = 327; + const T_FOR = 328; + const T_ENDFOR = 329; + const T_FOREACH = 330; + const T_ENDFOREACH = 331; + const T_DECLARE = 332; + const T_ENDDECLARE = 333; + const T_AS = 334; + const T_SWITCH = 335; + const T_MATCH = 336; + const T_ENDSWITCH = 337; + const T_CASE = 338; + const T_DEFAULT = 339; + const T_BREAK = 340; + const T_CONTINUE = 341; + const T_GOTO = 342; + const T_FUNCTION = 343; + const T_FN = 344; + const T_CONST = 345; + const T_RETURN = 346; + const T_TRY = 347; + const T_CATCH = 348; + const T_FINALLY = 349; + const T_USE = 350; + const T_INSTEADOF = 351; + const T_GLOBAL = 352; + const T_STATIC = 353; + const T_ABSTRACT = 354; + const T_FINAL = 355; + const T_PRIVATE = 356; + const T_PROTECTED = 357; + const T_PUBLIC = 358; + const T_READONLY = 359; + const T_VAR = 360; + const T_UNSET = 361; + const T_ISSET = 362; + const T_EMPTY = 363; + const T_HALT_COMPILER = 364; + const T_CLASS = 365; + const T_TRAIT = 366; + const T_INTERFACE = 367; + const T_ENUM = 368; + const T_EXTENDS = 369; + const T_IMPLEMENTS = 370; + const T_OBJECT_OPERATOR = 371; + const T_NULLSAFE_OBJECT_OPERATOR = 372; + const T_LIST = 373; + const T_ARRAY = 374; + const T_CALLABLE = 375; + const T_CLASS_C = 376; + const T_TRAIT_C = 377; + const T_METHOD_C = 378; + const T_FUNC_C = 379; + const T_LINE = 380; + const T_FILE = 381; + const T_START_HEREDOC = 382; + const T_END_HEREDOC = 383; + const T_DOLLAR_OPEN_CURLY_BRACES = 384; + const T_CURLY_OPEN = 385; + const T_PAAMAYIM_NEKUDOTAYIM = 386; + const T_NAMESPACE = 387; + const T_NS_C = 388; + const T_DIR = 389; + const T_NS_SEPARATOR = 390; + const T_ELLIPSIS = 391; + const T_NAME_FULLY_QUALIFIED = 392; + const T_NAME_QUALIFIED = 393; + const T_NAME_RELATIVE = 394; + const T_ATTRIBUTE = 395; } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Report\Xml; +namespace PHPUnitPHAR\PhpParser\Parser; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Unit +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\ErrorHandler; +use PHPUnitPHAR\PhpParser\Parser; +class Multiple implements Parser { + /** @var Parser[] List of parsers to try, in order of preference */ + private $parsers; /** - * @var DOMElement + * Create a parser which will try multiple parsers in an order of preference. + * + * Parsers will be invoked in the order they're provided to the constructor. If one of the + * parsers runs without throwing, it's output is returned. Otherwise the exception that the + * first parser generated is thrown. + * + * @param Parser[] $parsers */ - private $contextNode; - public function __construct(DOMElement $context, string $name) - { - $this->contextNode = $context; - $this->setName($name); - } - public function setLines(int $start, int $executable, int $executed) : void - { - $this->contextNode->setAttribute('start', (string) $start); - $this->contextNode->setAttribute('executable', (string) $executable); - $this->contextNode->setAttribute('executed', (string) $executed); - } - public function setCrap(float $crap) : void + public function __construct(array $parsers) { - $this->contextNode->setAttribute('crap', (string) $crap); + $this->parsers = $parsers; } - public function setNamespace(string $namespace) : void + public function parse(string $code, ?ErrorHandler $errorHandler = null) { - $node = $this->contextNode->getElementsByTagNameNS('https://schema.phpunit.de/coverage/1.0', 'namespace')->item(0); - if (!$node) { - $node = $this->contextNode->appendChild($this->contextNode->ownerDocument->createElementNS('https://schema.phpunit.de/coverage/1.0', 'namespace')); + if (null === $errorHandler) { + $errorHandler = new ErrorHandler\Throwing(); } - $node->setAttribute('name', $namespace); - } - public function addMethod(string $name) : Method - { - $node = $this->contextNode->appendChild($this->contextNode->ownerDocument->createElementNS('https://schema.phpunit.de/coverage/1.0', 'method')); - return new Method($node, $name); + list($firstStmts, $firstError) = $this->tryParse($this->parsers[0], $errorHandler, $code); + if ($firstError === null) { + return $firstStmts; + } + for ($i = 1, $c = count($this->parsers); $i < $c; ++$i) { + list($stmts, $error) = $this->tryParse($this->parsers[$i], $errorHandler, $code); + if ($error === null) { + return $stmts; + } + } + throw $firstError; } - private function setName(string $name) : void + private function tryParse(Parser $parser, ErrorHandler $errorHandler, $code) { - $this->contextNode->setAttribute('name', $name); + $stmts = null; + $error = null; + try { + $stmts = $parser->parse($code, $errorHandler); + } catch (Error $error) { + } + return [$stmts, $error]; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; +namespace PHPUnitPHAR\PhpParser\Parser; -use PHPUnit\SebastianBergmann\CodeCoverage\Filter; -final class CacheWarmer +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Scalar; +use PHPUnitPHAR\PhpParser\Node\Stmt; +/* This is an automatically GENERATED file, which should not be manually edited. + * Instead edit one of the following: + * * the grammar files grammar/php5.y or grammar/php7.y + * * the skeleton file grammar/parser.template + * * the preprocessing script grammar/rebuildParsers.php + */ +class Php7 extends \PHPUnitPHAR\PhpParser\ParserAbstract { - public function warmCache(string $cacheDirectory, bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode, Filter $filter) : void + protected $tokenToSymbolMapSize = 396; + protected $actionTableSize = 1241; + protected $gotoTableSize = 629; + protected $invalidSymbol = 168; + protected $errorSymbol = 1; + protected $defaultAction = -32766; + protected $unexpectedTokenRule = 32767; + protected $YY2TBLSTATE = 434; + protected $numNonLeafStates = 736; + protected $symbolToName = array("EOF", "error", "T_THROW", "T_INCLUDE", "T_INCLUDE_ONCE", "T_EVAL", "T_REQUIRE", "T_REQUIRE_ONCE", "','", "T_LOGICAL_OR", "T_LOGICAL_XOR", "T_LOGICAL_AND", "T_PRINT", "T_YIELD", "T_DOUBLE_ARROW", "T_YIELD_FROM", "'='", "T_PLUS_EQUAL", "T_MINUS_EQUAL", "T_MUL_EQUAL", "T_DIV_EQUAL", "T_CONCAT_EQUAL", "T_MOD_EQUAL", "T_AND_EQUAL", "T_OR_EQUAL", "T_XOR_EQUAL", "T_SL_EQUAL", "T_SR_EQUAL", "T_POW_EQUAL", "T_COALESCE_EQUAL", "'?'", "':'", "T_COALESCE", "T_BOOLEAN_OR", "T_BOOLEAN_AND", "'|'", "'^'", "T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG", "T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG", "T_IS_EQUAL", "T_IS_NOT_EQUAL", "T_IS_IDENTICAL", "T_IS_NOT_IDENTICAL", "T_SPACESHIP", "'<'", "T_IS_SMALLER_OR_EQUAL", "'>'", "T_IS_GREATER_OR_EQUAL", "T_SL", "T_SR", "'+'", "'-'", "'.'", "'*'", "'/'", "'%'", "'!'", "T_INSTANCEOF", "'~'", "T_INC", "T_DEC", "T_INT_CAST", "T_DOUBLE_CAST", "T_STRING_CAST", "T_ARRAY_CAST", "T_OBJECT_CAST", "T_BOOL_CAST", "T_UNSET_CAST", "'@'", "T_POW", "'['", "T_NEW", "T_CLONE", "T_EXIT", "T_IF", "T_ELSEIF", "T_ELSE", "T_ENDIF", "T_LNUMBER", "T_DNUMBER", "T_STRING", "T_STRING_VARNAME", "T_VARIABLE", "T_NUM_STRING", "T_INLINE_HTML", "T_ENCAPSED_AND_WHITESPACE", "T_CONSTANT_ENCAPSED_STRING", "T_ECHO", "T_DO", "T_WHILE", "T_ENDWHILE", "T_FOR", "T_ENDFOR", "T_FOREACH", "T_ENDFOREACH", "T_DECLARE", "T_ENDDECLARE", "T_AS", "T_SWITCH", "T_MATCH", "T_ENDSWITCH", "T_CASE", "T_DEFAULT", "T_BREAK", "T_CONTINUE", "T_GOTO", "T_FUNCTION", "T_FN", "T_CONST", "T_RETURN", "T_TRY", "T_CATCH", "T_FINALLY", "T_USE", "T_INSTEADOF", "T_GLOBAL", "T_STATIC", "T_ABSTRACT", "T_FINAL", "T_PRIVATE", "T_PROTECTED", "T_PUBLIC", "T_READONLY", "T_VAR", "T_UNSET", "T_ISSET", "T_EMPTY", "T_HALT_COMPILER", "T_CLASS", "T_TRAIT", "T_INTERFACE", "T_ENUM", "T_EXTENDS", "T_IMPLEMENTS", "T_OBJECT_OPERATOR", "T_NULLSAFE_OBJECT_OPERATOR", "T_LIST", "T_ARRAY", "T_CALLABLE", "T_CLASS_C", "T_TRAIT_C", "T_METHOD_C", "T_FUNC_C", "T_LINE", "T_FILE", "T_START_HEREDOC", "T_END_HEREDOC", "T_DOLLAR_OPEN_CURLY_BRACES", "T_CURLY_OPEN", "T_PAAMAYIM_NEKUDOTAYIM", "T_NAMESPACE", "T_NS_C", "T_DIR", "T_NS_SEPARATOR", "T_ELLIPSIS", "T_NAME_FULLY_QUALIFIED", "T_NAME_QUALIFIED", "T_NAME_RELATIVE", "T_ATTRIBUTE", "';'", "']'", "'{'", "'}'", "'('", "')'", "'`'", "'\"'", "'\$'"); + protected $tokenToSymbol = array(0, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 56, 166, 168, 167, 55, 168, 168, 163, 164, 53, 50, 8, 51, 52, 54, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 31, 159, 44, 16, 46, 30, 68, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 70, 168, 160, 36, 168, 165, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 161, 35, 162, 58, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158); + protected $action = array(133, 134, 135, 579, 136, 137, 0, 748, 749, 750, 138, 38, 327, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, 102, 103, 104, 105, 106, 1109, 1110, 1111, 1108, 1107, 1106, 1112, 742, 741, -32766, 1232, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, -32767, 2, 107, 108, 109, 751, 274, 381, 380, -32766, -32766, -32766, -32766, 104, 105, 106, 1024, 422, 110, 265, 139, 403, 755, 756, 757, 758, 466, 467, 428, 938, 291, -32766, 287, -32766, -32766, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 789, 580, 790, 791, 792, 793, 781, 782, 344, 345, 784, 785, 770, 771, 772, 774, 775, 776, 355, 816, 817, 818, 819, 820, 581, 777, 778, 582, 583, 810, 801, 799, 800, 813, 796, 797, 687, -545, 584, 585, 795, 586, 587, 588, 589, 590, 591, -328, -593, -367, 1234, -367, 798, 592, 593, -593, 140, -32766, -32766, -32766, 133, 134, 135, 579, 136, 137, 1057, 748, 749, 750, 138, 38, 688, 1020, 1019, 1018, 1021, 390, -32766, 7, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 379, 380, 1033, 689, 690, 742, 741, -32766, -32766, -32766, 422, -545, -545, -590, -32766, -32766, -32766, 1032, -32766, 127, -590, 1236, 1235, 1237, 1318, 751, -545, 290, -32766, 283, -32766, -32766, -32766, -32766, -32766, 1236, 1235, 1237, -545, 265, 139, 403, 755, 756, 757, 758, 16, 481, 428, 458, 459, 460, 298, 722, 35, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 789, 580, 790, 791, 792, 793, 781, 782, 344, 345, 784, 785, 770, 771, 772, 774, 775, 776, 355, 816, 817, 818, 819, 820, 581, 777, 778, 582, 583, 810, 801, 799, 800, 813, 796, 797, 129, 824, 584, 585, 795, 586, 587, 588, 589, 590, 591, -328, 83, 84, 85, -593, 798, 592, 593, -593, 149, 773, 743, 744, 745, 746, 747, 824, 748, 749, 750, 786, 787, 37, 145, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 291, 274, 835, 254, 1109, 1110, 1111, 1108, 1107, 1106, 1112, -590, 860, 110, 861, -590, 482, 751, -32766, -32766, -32766, -32766, -32766, 142, 603, 1085, 742, 741, 1262, 326, 987, 752, 753, 754, 755, 756, 757, 758, 309, -32766, 822, -32766, -32766, -32766, -32766, 242, 553, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 789, 812, 790, 791, 792, 793, 781, 782, 783, 811, 784, 785, 770, 771, 772, 774, 775, 776, 815, 816, 817, 818, 819, 820, 821, 777, 778, 779, 780, 810, 801, 799, 800, 813, 796, 797, 311, 940, 788, 794, 795, 802, 803, 805, 804, 806, 807, 323, 609, 1274, 1033, 833, 798, 809, 808, 50, 51, 52, 512, 53, 54, 860, 241, 861, 918, 55, 56, -111, 57, -32766, -32766, -32766, -111, 826, -111, 290, 1302, 1347, 356, 305, 1348, 339, -111, -111, -111, -111, -111, -111, -111, -111, -32766, -194, -32766, -32766, -32766, -193, 956, 957, 829, -86, 988, 958, 834, 58, 59, 340, 428, 952, -544, 60, 832, 61, 247, 248, 62, 63, 64, 65, 66, 67, 68, 69, 1241, 28, 267, 70, 444, 513, -342, -32766, 141, 1268, 1269, 514, 918, 833, 326, -272, 918, 1266, 42, 25, 515, 940, 516, 14, 517, 908, 518, 828, 369, 519, 520, 373, 709, 1033, 44, 45, 445, 376, 375, 388, 46, 521, 712, -86, 440, 1101, 367, 338, -543, 441, -544, -544, 830, 1227, 442, 523, 524, 525, 290, 1236, 1235, 1237, 361, 1030, 443, -544, 1087, 526, 527, 839, 1255, 1256, 1257, 1258, 1252, 1253, 297, -544, 151, -550, -584, 833, 1259, 1254, -584, 1033, 1236, 1235, 1237, 298, -154, -154, -154, 152, 71, 908, 321, 322, 326, 908, 920, 1030, 707, 833, 154, -154, 1337, -154, 155, -154, 283, -154, -543, -543, 82, 1232, 1086, 1322, 734, 156, 326, 374, 158, 1033, 1321, -194, -79, -543, -88, -193, 742, 741, 956, 957, 653, 26, -32766, 522, -51, -543, 33, -549, 894, 952, -111, -111, -111, 32, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, -59, 75, 28, 672, 673, 326, -58, 36, 250, 920, 124, 707, 125, 920, 833, 707, -154, 130, 1266, 131, -32766, -547, 144, -542, 150, 406, 1234, 377, 378, 1146, 1148, 382, 383, -32766, -32766, -32766, -85, -32766, 1056, -32766, -542, -32766, 644, 645, -32766, 159, 160, 161, 1232, -32766, -32766, -32766, 162, -79, 1227, -32766, -32766, 742, 741, 163, -302, -32766, 419, -75, -4, 918, -73, 287, 526, 527, -32766, 1255, 1256, 1257, 1258, 1252, 1253, -72, -71, -70, -69, -68, -67, 1259, 1254, -547, -547, -542, -542, 742, 741, -66, -47, -18, -32766, 73, 148, 918, 322, 326, 1234, 273, -542, 284, -542, -542, 723, -32766, -32766, -32766, 726, -32766, -547, -32766, -542, -32766, 917, 147, -32766, -542, 288, 289, -298, -32766, -32766, -32766, -32766, 713, 279, -32766, -32766, -542, 1234, 280, 285, -32766, 419, 48, 286, -32766, -32766, -32766, 332, -32766, -32766, -32766, 292, -32766, 908, 293, -32766, 934, 274, 1030, 918, -32766, -32766, -32766, 110, 682, 132, -32766, -32766, 833, 146, -32766, 559, -32766, 419, 659, 374, 824, 435, 1349, 74, 1033, -32766, 296, 654, 1116, 908, 956, 957, 306, 714, 698, 522, 555, 303, 13, 310, 852, 952, -111, -111, -111, 700, 463, 492, 953, 283, 299, 300, -32766, 49, 675, 918, 304, 660, 1234, 676, 936, 1273, -32766, 10, 1263, -32766, -32766, -32766, 642, -32766, 918, -32766, 920, -32766, 707, -4, -32766, 126, 34, 918, 565, -32766, -32766, -32766, -32766, 0, 908, -32766, -32766, 0, 1234, 918, 0, -32766, 419, 0, 0, -32766, -32766, -32766, 717, -32766, -32766, -32766, 920, -32766, 707, 1033, -32766, 724, 1275, 0, 487, -32766, -32766, -32766, -32766, 301, 302, -32766, -32766, -507, 1234, 571, -497, -32766, 419, 607, 8, -32766, -32766, -32766, 372, -32766, -32766, -32766, 17, -32766, 908, 371, -32766, 832, 298, 320, 128, -32766, -32766, -32766, 40, 370, 41, -32766, -32766, 908, -250, -250, -250, -32766, 419, 731, 374, 973, 908, 707, 732, 899, -32766, 997, 974, 728, 981, 956, 957, 971, 908, 982, 522, 897, 969, 1090, 1093, 894, 952, -111, -111, -111, 28, 1094, 1091, 1092, -249, -249, -249, 1241, 1098, 708, 374, 844, 833, 1288, 1306, 1340, 1266, 647, 1267, 711, 715, 956, 957, 716, 1241, 718, 522, 920, 719, 707, -250, 894, 952, -111, -111, -111, 720, -16, 721, 725, 710, -511, 920, 895, 707, -578, 1232, 1344, 1346, 855, 854, 920, 1227, 707, -577, 863, 946, 989, 862, 1345, 945, 943, 944, 920, 947, 707, -249, 527, 1218, 1255, 1256, 1257, 1258, 1252, 1253, 927, 937, 925, 979, 980, 631, 1259, 1254, 1343, 1300, -32766, 1289, 1307, 833, 1316, -275, 1234, -576, 73, -550, -549, 322, 326, -32766, -32766, -32766, -548, -32766, -491, -32766, 833, -32766, 1, 29, -32766, 30, 39, 43, 47, -32766, -32766, -32766, 72, 76, 77, -32766, -32766, 1232, -111, -111, 78, -32766, 419, -111, 79, 80, 81, 143, 153, -111, -32766, 157, 246, 328, 1232, -111, -111, 356, -32766, 357, -111, 358, 359, 360, 361, 362, -111, 363, 364, 365, 366, 368, 436, 0, -273, -32766, -272, 19, 20, 298, 21, 22, 24, 405, 75, 1203, 483, 484, 326, 491, 0, 494, 495, 496, 497, 501, 298, 502, 503, 510, 693, 75, 0, 1245, 1186, 326, 1264, 1059, 1058, 1039, 1222, 1035, -277, -103, 18, 23, 27, 295, 404, 600, 604, 633, 699, 1190, 1240, 1187, 1319, 0, 0, 0, 326); + protected $actionCheck = array(2, 3, 4, 5, 6, 7, 0, 9, 10, 11, 12, 13, 70, 9, 10, 11, 9, 10, 11, 44, 45, 46, 47, 48, 49, 50, 51, 52, 116, 117, 118, 119, 120, 121, 122, 37, 38, 30, 116, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 8, 53, 54, 55, 57, 57, 106, 107, 137, 9, 10, 11, 50, 51, 52, 1, 116, 69, 71, 72, 73, 74, 75, 76, 77, 134, 135, 80, 1, 30, 30, 30, 32, 33, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 80, 70, 136, 137, 138, 139, 140, 141, 142, 143, 144, 8, 1, 106, 80, 108, 150, 151, 152, 8, 154, 9, 10, 11, 2, 3, 4, 5, 6, 7, 164, 9, 10, 11, 12, 13, 116, 119, 120, 121, 122, 106, 30, 108, 32, 33, 34, 35, 36, 37, 38, 9, 10, 11, 106, 107, 138, 137, 138, 37, 38, 9, 10, 11, 116, 134, 135, 1, 9, 10, 11, 137, 30, 14, 8, 155, 156, 157, 1, 57, 149, 163, 30, 163, 32, 33, 34, 35, 36, 155, 156, 157, 161, 71, 72, 73, 74, 75, 76, 77, 8, 31, 80, 129, 130, 131, 158, 161, 8, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 8, 80, 136, 137, 138, 139, 140, 141, 142, 143, 144, 164, 9, 10, 11, 160, 150, 151, 152, 164, 154, 2, 3, 4, 5, 6, 7, 80, 9, 10, 11, 12, 13, 30, 8, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 30, 57, 1, 8, 116, 117, 118, 119, 120, 121, 122, 160, 106, 69, 108, 164, 161, 57, 9, 10, 11, 9, 10, 161, 1, 1, 37, 38, 1, 167, 31, 71, 72, 73, 74, 75, 76, 77, 8, 30, 80, 32, 33, 34, 35, 14, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 8, 122, 136, 137, 138, 139, 140, 141, 142, 143, 144, 8, 51, 146, 138, 82, 150, 151, 152, 2, 3, 4, 5, 6, 7, 106, 97, 108, 1, 12, 13, 101, 15, 9, 10, 11, 106, 80, 108, 163, 1, 80, 163, 113, 83, 8, 116, 117, 118, 119, 120, 121, 122, 123, 30, 8, 32, 33, 34, 8, 117, 118, 80, 31, 159, 122, 159, 50, 51, 8, 80, 128, 70, 56, 155, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 1, 70, 71, 72, 73, 74, 162, 9, 161, 78, 79, 80, 1, 82, 167, 164, 1, 86, 87, 88, 89, 122, 91, 101, 93, 84, 95, 156, 8, 98, 99, 8, 161, 138, 103, 104, 105, 106, 107, 8, 109, 110, 31, 97, 8, 123, 115, 116, 70, 8, 134, 135, 156, 122, 8, 124, 125, 126, 163, 155, 156, 157, 163, 116, 8, 149, 162, 136, 137, 8, 139, 140, 141, 142, 143, 144, 145, 161, 14, 163, 160, 82, 151, 152, 164, 138, 155, 156, 157, 158, 75, 76, 77, 14, 163, 84, 165, 166, 167, 84, 159, 116, 161, 82, 14, 90, 85, 92, 14, 94, 163, 96, 134, 135, 161, 116, 159, 1, 161, 14, 167, 106, 14, 138, 8, 164, 16, 149, 31, 164, 37, 38, 117, 118, 75, 76, 137, 122, 31, 161, 14, 163, 127, 128, 129, 130, 131, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 16, 163, 70, 75, 76, 167, 16, 147, 148, 159, 16, 161, 16, 159, 82, 161, 162, 16, 86, 16, 74, 70, 16, 70, 101, 102, 80, 106, 107, 59, 60, 106, 107, 87, 88, 89, 31, 91, 1, 93, 70, 95, 111, 112, 98, 16, 16, 16, 116, 103, 104, 105, 16, 31, 122, 109, 110, 37, 38, 16, 35, 115, 116, 31, 0, 1, 31, 30, 136, 137, 124, 139, 140, 141, 142, 143, 144, 31, 31, 31, 31, 31, 31, 151, 152, 134, 135, 134, 135, 37, 38, 31, 31, 31, 74, 163, 31, 1, 166, 167, 80, 31, 149, 31, 134, 135, 31, 87, 88, 89, 31, 91, 161, 93, 161, 95, 31, 31, 98, 149, 37, 37, 35, 103, 104, 105, 74, 31, 35, 109, 110, 161, 80, 35, 35, 115, 116, 70, 35, 87, 88, 89, 35, 91, 124, 93, 37, 95, 84, 37, 98, 38, 57, 116, 1, 103, 104, 105, 69, 77, 31, 109, 110, 82, 70, 85, 89, 115, 116, 96, 106, 80, 108, 83, 154, 138, 124, 113, 90, 82, 84, 117, 118, 114, 31, 80, 122, 85, 132, 97, 132, 127, 128, 129, 130, 131, 92, 97, 97, 128, 163, 134, 135, 74, 70, 94, 1, 133, 100, 80, 100, 154, 146, 137, 150, 160, 87, 88, 89, 113, 91, 1, 93, 159, 95, 161, 162, 98, 161, 161, 1, 153, 103, 104, 105, 74, -1, 84, 109, 110, -1, 80, 1, -1, 115, 116, -1, -1, 87, 88, 89, 31, 91, 124, 93, 159, 95, 161, 138, 98, 31, 146, -1, 102, 103, 104, 105, 74, 134, 135, 109, 110, 149, 80, 81, 149, 115, 116, 153, 149, 87, 88, 89, 149, 91, 124, 93, 149, 95, 84, 149, 98, 155, 158, 161, 161, 103, 104, 105, 159, 161, 159, 109, 110, 84, 100, 101, 102, 115, 116, 159, 106, 159, 84, 161, 159, 159, 124, 159, 159, 162, 159, 117, 118, 159, 84, 159, 122, 159, 159, 159, 159, 127, 128, 129, 130, 131, 70, 159, 159, 159, 100, 101, 102, 1, 159, 161, 106, 160, 82, 160, 160, 160, 86, 160, 166, 161, 161, 117, 118, 161, 1, 161, 122, 159, 161, 161, 162, 127, 128, 129, 130, 131, 161, 31, 161, 161, 161, 165, 159, 162, 161, 163, 116, 162, 162, 162, 162, 159, 122, 161, 163, 162, 162, 162, 162, 162, 162, 162, 162, 159, 162, 161, 162, 137, 162, 139, 140, 141, 142, 143, 144, 162, 162, 162, 162, 162, 162, 151, 152, 162, 162, 74, 162, 162, 82, 162, 164, 80, 163, 163, 163, 163, 166, 167, 87, 88, 89, 163, 91, 163, 93, 82, 95, 163, 163, 98, 163, 163, 163, 163, 103, 104, 105, 163, 163, 163, 109, 110, 116, 117, 118, 163, 115, 116, 122, 163, 163, 163, 163, 163, 128, 124, 163, 163, 163, 116, 117, 118, 163, 137, 163, 122, 163, 163, 163, 163, 163, 128, 163, 163, 163, 163, 163, 163, -1, 164, 137, 164, 164, 164, 158, 164, 164, 164, 164, 163, 165, 164, 164, 167, 164, -1, 164, 164, 164, 164, 164, 158, 164, 164, 164, 164, 163, -1, 164, 164, 167, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, -1, -1, -1, 167); + protected $actionBase = array(0, -2, 154, 542, 752, 893, 929, 52, 374, 431, 398, 869, 793, 235, 307, 307, 793, 307, 784, 908, 908, 917, 908, 538, 841, 468, 468, 468, 708, 708, 708, 708, 740, 740, 849, 849, 881, 817, 634, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 348, 346, 370, 653, 1063, 1069, 1065, 1070, 1061, 1060, 1064, 1066, 1071, 946, 947, 774, 949, 950, 943, 952, 1067, 882, 1062, 1068, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 525, 191, 359, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 174, 174, 174, 620, 620, 51, 465, 356, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 658, 184, 144, 144, 7, 7, 7, 7, 7, 1031, 371, 1048, -25, -25, -25, -25, 50, 725, 526, 449, 39, 317, 80, 474, 474, 13, 13, 512, 512, 422, 422, 512, 512, 512, 808, 808, 808, 808, 443, 505, 360, 308, -78, 209, 209, 209, 209, -78, -78, -78, -78, 803, 877, -78, -78, -78, 63, 641, 641, 822, -1, -1, -1, 641, 253, 790, 548, 253, 384, 548, 480, 402, 764, 759, -49, 447, 764, 639, 755, 198, 143, 825, 609, 825, 1059, 320, 768, 426, 749, 720, 874, 904, 1072, 796, 941, 798, 942, 106, -58, 710, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1073, 336, 1059, 423, 1073, 1073, 1073, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 619, 423, 586, 616, 423, 795, 336, 348, 814, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 750, 202, 348, 346, 78, 78, 484, 65, 78, 78, 78, 78, 348, 348, 348, 348, 609, 783, 766, 613, 813, 492, 783, 783, 783, 473, 135, 378, 488, 713, 775, 67, 779, 779, 785, 969, 969, 779, 769, 779, 785, 975, 779, 779, 969, 969, 823, 280, 563, 478, 550, 568, 969, 377, 779, 779, 779, 779, 746, 573, 779, 342, 314, 779, 779, 746, 744, 760, 43, 762, 969, 969, 969, 746, 547, 762, 762, 762, 839, 844, 794, 758, 444, 433, 588, 232, 801, 758, 758, 779, 558, 794, 758, 794, 758, 745, 758, 758, 758, 794, 758, 769, 502, 758, 717, 583, 224, 758, 6, 979, 980, 624, 981, 973, 987, 1019, 991, 992, 873, 965, 999, 974, 993, 972, 970, 773, 682, 684, 818, 811, 963, 777, 777, 777, 956, 777, 777, 777, 777, 777, 777, 777, 777, 682, 743, 829, 765, 1006, 689, 691, 754, 906, 901, 1030, 1004, 1049, 994, 828, 694, 1028, 1008, 846, 821, 1009, 1010, 1029, 1050, 1052, 910, 782, 911, 912, 876, 1012, 883, 777, 979, 992, 693, 974, 993, 972, 970, 748, 739, 737, 738, 736, 735, 723, 734, 753, 1053, 954, 907, 878, 1011, 957, 682, 879, 1023, 756, 1032, 1033, 827, 788, 778, 880, 913, 1014, 1015, 1016, 884, 1054, 887, 830, 1024, 951, 1035, 789, 918, 1037, 1038, 1039, 1040, 889, 919, 892, 916, 900, 845, 776, 1020, 761, 920, 591, 787, 791, 800, 1018, 606, 1000, 902, 921, 922, 1041, 1043, 1044, 923, 924, 995, 847, 1026, 799, 1027, 1022, 848, 850, 617, 797, 1055, 781, 786, 772, 621, 632, 925, 927, 931, 998, 763, 770, 853, 855, 1056, 771, 1057, 938, 635, 857, 718, 939, 1046, 719, 724, 637, 678, 672, 731, 792, 903, 826, 757, 780, 1017, 724, 767, 858, 940, 859, 860, 867, 1045, 868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458, 458, 458, 458, 458, 458, 307, 307, 307, 307, 307, 307, 307, 0, 0, 307, 0, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 66, 66, 291, 291, 291, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 0, 291, 291, 291, 291, 291, 291, 291, 291, 66, 823, 66, -1, -1, -1, -1, 66, 66, 66, -88, -88, 66, 384, 66, 66, -1, -1, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 0, 0, 423, 548, 66, 769, 769, 769, 769, 66, 66, 66, 66, 548, 548, 66, 66, 66, 0, 0, 0, 0, 0, 0, 0, 0, 423, 548, 0, 423, 0, 0, 769, 769, 66, 384, 823, 643, 66, 0, 0, 0, 0, 423, 769, 423, 336, 779, 548, 779, 336, 336, 78, 348, 643, 611, 611, 611, 611, 0, 0, 609, 823, 823, 823, 823, 823, 823, 823, 823, 823, 823, 823, 769, 0, 823, 0, 769, 769, 769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 769, 0, 0, 969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 975, 0, 0, 0, 0, 0, 0, 769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 777, 788, 0, 788, 0, 777, 777, 777, 0, 0, 0, 0, 797, 771); + protected $actionDefault = array(3, 32767, 103, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 101, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 596, 596, 596, 596, 32767, 32767, 254, 103, 32767, 32767, 469, 387, 387, 387, 32767, 32767, 540, 540, 540, 540, 540, 540, 32767, 32767, 32767, 32767, 32767, 32767, 469, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 101, 32767, 32767, 32767, 37, 7, 8, 10, 11, 50, 17, 324, 32767, 32767, 32767, 32767, 103, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 589, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 473, 452, 453, 455, 456, 386, 541, 595, 327, 592, 385, 146, 339, 329, 242, 330, 258, 474, 259, 475, 478, 479, 215, 287, 382, 150, 151, 416, 470, 418, 468, 472, 417, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 390, 391, 471, 449, 448, 447, 32767, 32767, 414, 415, 419, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 103, 32767, 389, 422, 420, 421, 438, 439, 436, 437, 440, 32767, 32767, 32767, 441, 442, 443, 444, 316, 32767, 32767, 366, 364, 316, 112, 32767, 32767, 429, 430, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 534, 446, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 103, 32767, 101, 536, 411, 413, 503, 424, 425, 423, 393, 32767, 510, 32767, 103, 32767, 512, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 535, 32767, 542, 542, 32767, 496, 101, 195, 32767, 32767, 32767, 195, 195, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 603, 496, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 32767, 195, 111, 32767, 32767, 32767, 101, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 190, 32767, 268, 270, 103, 557, 195, 32767, 515, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 508, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 496, 434, 139, 32767, 139, 542, 426, 427, 428, 498, 542, 542, 542, 312, 289, 32767, 32767, 32767, 32767, 513, 513, 101, 101, 101, 101, 508, 32767, 32767, 32767, 32767, 112, 100, 100, 100, 100, 100, 104, 102, 32767, 32767, 32767, 32767, 223, 100, 32767, 102, 102, 32767, 32767, 223, 225, 212, 102, 227, 32767, 561, 562, 223, 102, 227, 227, 227, 247, 247, 485, 318, 102, 100, 102, 102, 197, 318, 318, 32767, 102, 485, 318, 485, 318, 199, 318, 318, 318, 485, 318, 32767, 102, 318, 214, 100, 100, 318, 32767, 32767, 32767, 498, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 222, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 529, 32767, 546, 559, 432, 433, 435, 544, 457, 458, 459, 460, 461, 462, 463, 465, 591, 32767, 502, 32767, 32767, 32767, 338, 601, 32767, 601, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 602, 32767, 542, 32767, 32767, 32767, 32767, 431, 9, 76, 491, 43, 44, 52, 58, 519, 520, 521, 522, 516, 517, 523, 518, 32767, 32767, 524, 567, 32767, 32767, 543, 594, 32767, 32767, 32767, 32767, 32767, 32767, 139, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 529, 32767, 137, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 525, 32767, 32767, 32767, 542, 32767, 32767, 32767, 32767, 314, 311, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 542, 32767, 32767, 32767, 32767, 32767, 291, 32767, 308, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 286, 32767, 32767, 381, 498, 294, 296, 297, 32767, 32767, 32767, 32767, 360, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 153, 153, 3, 3, 341, 153, 153, 153, 341, 341, 153, 341, 341, 341, 153, 153, 153, 153, 153, 153, 280, 185, 262, 265, 247, 247, 153, 352, 153); + protected $goto = array(196, 196, 1031, 703, 694, 430, 658, 1062, 1334, 1334, 424, 313, 314, 335, 573, 319, 429, 336, 431, 635, 651, 652, 850, 669, 670, 671, 1334, 167, 167, 167, 167, 221, 197, 193, 193, 177, 179, 216, 193, 193, 193, 193, 193, 194, 194, 194, 194, 194, 194, 188, 189, 190, 191, 192, 218, 216, 219, 534, 535, 420, 536, 538, 539, 540, 541, 542, 543, 544, 545, 1132, 168, 169, 170, 195, 171, 172, 173, 166, 174, 175, 176, 178, 215, 217, 220, 238, 243, 244, 245, 257, 258, 259, 260, 261, 262, 263, 264, 268, 269, 270, 271, 281, 282, 316, 317, 318, 425, 426, 427, 578, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 180, 237, 181, 198, 199, 200, 239, 188, 189, 190, 191, 192, 218, 1132, 201, 182, 183, 184, 202, 198, 185, 240, 203, 201, 165, 204, 205, 186, 206, 207, 208, 187, 209, 210, 211, 212, 213, 214, 853, 851, 278, 278, 278, 278, 418, 620, 620, 350, 570, 597, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1283, 1283, 831, 618, 655, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 353, 353, 353, 353, 866, 557, 550, 858, 825, 907, 902, 903, 916, 859, 904, 856, 905, 906, 857, 878, 457, 910, 865, 884, 546, 546, 546, 546, 831, 601, 831, 1084, 1079, 1080, 1081, 341, 550, 557, 566, 567, 343, 576, 599, 613, 614, 407, 408, 972, 465, 465, 667, 15, 668, 1323, 411, 412, 413, 465, 681, 348, 1233, 414, 1233, 478, 569, 346, 439, 1031, 1031, 1233, 993, 480, 1031, 393, 1031, 1031, 1104, 1105, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1315, 1315, 1315, 1315, 1233, 657, 1333, 1333, 1055, 1233, 1233, 1233, 1233, 1037, 1036, 1233, 1233, 1233, 1034, 1034, 1181, 354, 678, 949, 1333, 437, 1026, 1042, 1043, 337, 691, 354, 354, 827, 923, 691, 1040, 1041, 924, 691, 663, 1336, 939, 871, 939, 354, 354, 1281, 1281, 354, 679, 1350, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 552, 537, 537, 911, 354, 912, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 548, 564, 548, 574, 611, 730, 634, 636, 849, 548, 656, 475, 1308, 1309, 680, 684, 1007, 692, 701, 1003, 252, 252, 996, 970, 970, 968, 970, 729, 843, 549, 1005, 1000, 423, 455, 608, 1294, 846, 955, 966, 966, 966, 966, 325, 308, 455, 960, 967, 249, 249, 249, 249, 251, 253, 402, 351, 352, 683, 868, 551, 561, 449, 449, 449, 551, 1305, 561, 1305, 612, 396, 461, 1010, 1010, 1224, 1305, 395, 398, 558, 598, 602, 1015, 468, 577, 469, 470, 1310, 1311, 876, 552, 846, 1341, 1342, 964, 409, 702, 733, 324, 275, 324, 1317, 1317, 1317, 1317, 606, 621, 624, 625, 626, 627, 648, 649, 650, 705, 1068, 596, 1097, 874, 706, 476, 1228, 507, 697, 880, 1095, 1115, 432, 1301, 628, 630, 632, 432, 879, 867, 1067, 1071, 5, 1072, 6, 1038, 1038, 977, 0, 975, 662, 1049, 1045, 1046, 0, 0, 0, 0, 1226, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 928, 1120, 449, 965, 1070, 0, 0, 616, 1303, 1303, 1070, 1229, 1230, 1012, 499, 0, 500, 0, 0, 841, 0, 870, 506, 661, 991, 1113, 883, 1212, 941, 864, 0, 1213, 1216, 942, 1217, 0, 0, 1231, 1291, 1292, 0, 1223, 0, 0, 0, 846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255); + protected $gotoCheck = array(42, 42, 72, 9, 72, 65, 65, 126, 181, 181, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 85, 85, 26, 85, 85, 85, 181, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 15, 27, 23, 23, 23, 23, 43, 107, 107, 96, 170, 129, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 168, 168, 12, 55, 55, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 24, 24, 24, 24, 35, 75, 75, 15, 6, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 35, 82, 15, 35, 45, 106, 106, 106, 106, 12, 106, 12, 15, 15, 15, 15, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 81, 81, 49, 148, 148, 81, 75, 81, 179, 81, 81, 81, 148, 81, 177, 72, 81, 72, 83, 103, 81, 82, 72, 72, 72, 102, 83, 72, 61, 72, 72, 143, 143, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 9, 9, 9, 9, 72, 63, 180, 180, 113, 72, 72, 72, 72, 117, 117, 72, 72, 72, 88, 88, 150, 14, 88, 88, 180, 112, 88, 88, 88, 29, 7, 14, 14, 7, 72, 7, 118, 118, 72, 7, 119, 180, 9, 39, 9, 14, 14, 169, 169, 14, 115, 14, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 14, 171, 171, 64, 14, 64, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 19, 48, 19, 2, 2, 48, 48, 48, 25, 19, 48, 174, 174, 174, 48, 48, 48, 48, 48, 48, 5, 5, 25, 25, 25, 25, 25, 25, 18, 25, 25, 25, 13, 19, 13, 14, 22, 91, 19, 19, 19, 19, 167, 167, 19, 19, 19, 5, 5, 5, 5, 5, 5, 28, 96, 96, 14, 37, 9, 9, 23, 23, 23, 9, 129, 9, 129, 79, 9, 9, 106, 106, 159, 129, 58, 58, 58, 58, 58, 109, 9, 9, 9, 9, 176, 176, 9, 14, 22, 9, 9, 92, 92, 92, 98, 24, 24, 24, 129, 129, 129, 129, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 128, 8, 8, 9, 8, 156, 20, 8, 8, 41, 8, 146, 116, 129, 84, 84, 84, 116, 16, 16, 16, 16, 46, 131, 46, 116, 116, 95, -1, 16, 116, 116, 116, 116, -1, -1, -1, -1, 14, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 17, 17, 23, 16, 129, -1, -1, 17, 129, 129, 129, 20, 20, 17, 154, -1, 154, -1, -1, 20, -1, 17, 154, 17, 17, 16, 16, 78, 78, 17, -1, 78, 78, 78, 78, -1, -1, 20, 20, 20, -1, 17, -1, -1, -1, 22, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 5); + protected $gotoBase = array(0, 0, -339, 0, 0, 386, 195, 312, 472, -10, 0, 0, -109, 62, 13, -184, 46, 65, 86, 102, 93, 0, 125, 162, 197, 371, 18, 160, 83, 22, 0, 0, 0, 0, 0, -166, 0, 85, 0, 9, 0, 48, -1, 157, 0, 207, -232, 0, -340, 223, 0, 0, 0, 0, 0, 148, 0, 0, 396, 0, 0, 231, 0, 52, 334, -236, 0, 0, 0, 0, 0, 0, -5, 0, 0, -139, 0, 0, 149, 91, 112, -245, -58, -205, 15, -695, 0, 0, 28, 0, 0, 75, 154, 0, 0, 64, -310, 0, 55, 0, 0, 0, 235, 221, 0, 0, 196, -71, 0, 77, 0, 0, 37, 24, 0, 56, 219, 23, 40, 39, 0, 0, 0, 0, 0, 0, 5, 0, 106, 166, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 47, 0, 214, 0, 35, 0, 0, 0, 49, 0, 45, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 88, -56, 95, 144, 111, 0, 0, 78, 0, 80, 229, 0, 222, -12, -299, 0, 0); + protected $gotoDefault = array(-32768, 511, 737, 4, 738, 932, 814, 823, 594, 528, 704, 347, 622, 421, 1299, 909, 1119, 575, 842, 1242, 1250, 456, 845, 330, 727, 891, 892, 893, 399, 385, 391, 397, 646, 623, 493, 877, 452, 869, 485, 872, 451, 881, 164, 417, 509, 885, 3, 888, 554, 919, 386, 896, 387, 674, 898, 560, 900, 901, 394, 400, 401, 1124, 568, 619, 913, 256, 562, 914, 384, 915, 922, 389, 392, 685, 464, 504, 498, 410, 1099, 563, 605, 643, 446, 472, 617, 629, 615, 479, 433, 415, 329, 954, 962, 486, 462, 976, 349, 984, 735, 1131, 637, 488, 992, 638, 999, 1002, 529, 530, 477, 1014, 272, 1017, 489, 12, 664, 1028, 1029, 665, 639, 1051, 640, 666, 641, 1053, 471, 595, 1061, 453, 1069, 1287, 454, 1073, 266, 1076, 277, 416, 434, 1082, 1083, 9, 1089, 695, 696, 11, 276, 508, 1114, 686, 450, 1130, 438, 1200, 1202, 556, 490, 1220, 1219, 677, 505, 1225, 447, 1290, 448, 531, 473, 315, 532, 307, 333, 312, 547, 294, 334, 533, 474, 1296, 1304, 331, 31, 1324, 1335, 342, 572, 610); + protected $ruleToNonTerminal = array(0, 1, 3, 3, 2, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 10, 11, 11, 11, 12, 12, 13, 13, 14, 15, 15, 16, 16, 17, 17, 18, 18, 21, 21, 22, 23, 23, 24, 24, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 29, 29, 30, 30, 32, 34, 34, 28, 36, 36, 33, 38, 38, 35, 35, 37, 37, 39, 39, 31, 40, 40, 41, 43, 44, 44, 45, 45, 46, 46, 48, 47, 47, 47, 47, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 25, 25, 68, 68, 71, 71, 70, 69, 69, 62, 74, 74, 75, 75, 76, 76, 77, 77, 78, 78, 79, 79, 26, 26, 27, 27, 27, 27, 27, 87, 87, 89, 89, 82, 82, 90, 90, 91, 91, 91, 83, 83, 86, 86, 84, 84, 92, 93, 93, 56, 56, 64, 64, 67, 67, 67, 66, 94, 94, 95, 57, 57, 57, 57, 96, 96, 97, 97, 98, 98, 99, 100, 100, 101, 101, 102, 102, 54, 54, 50, 50, 104, 52, 52, 105, 51, 51, 53, 53, 63, 63, 63, 63, 80, 80, 108, 108, 110, 110, 111, 111, 111, 111, 109, 109, 109, 113, 113, 113, 113, 88, 88, 116, 116, 116, 117, 117, 114, 114, 118, 118, 120, 120, 121, 121, 115, 122, 122, 119, 123, 123, 123, 123, 112, 112, 81, 81, 81, 20, 20, 20, 125, 124, 124, 126, 126, 126, 126, 59, 127, 127, 128, 60, 130, 130, 131, 131, 132, 132, 85, 133, 133, 133, 133, 133, 133, 133, 138, 138, 139, 139, 140, 140, 140, 140, 140, 141, 142, 142, 137, 137, 134, 134, 136, 136, 144, 144, 143, 143, 143, 143, 143, 143, 143, 135, 145, 145, 147, 146, 146, 61, 103, 148, 148, 55, 55, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 155, 149, 149, 154, 154, 157, 158, 158, 159, 160, 161, 161, 161, 161, 19, 19, 72, 72, 72, 72, 150, 150, 150, 150, 163, 163, 151, 151, 153, 153, 153, 156, 156, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 169, 169, 107, 171, 171, 171, 171, 152, 152, 152, 152, 152, 152, 152, 152, 58, 58, 166, 166, 166, 166, 172, 172, 162, 162, 162, 173, 173, 173, 173, 173, 173, 73, 73, 65, 65, 65, 65, 129, 129, 129, 129, 176, 175, 165, 165, 165, 165, 165, 165, 165, 164, 164, 164, 174, 174, 174, 174, 106, 170, 178, 178, 177, 177, 179, 179, 179, 179, 179, 179, 179, 179, 167, 167, 167, 167, 181, 182, 180, 180, 180, 180, 180, 180, 180, 180, 183, 183, 183, 183); + protected $ruleToLength = array(1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 1, 3, 4, 1, 2, 0, 1, 1, 1, 1, 1, 3, 5, 4, 3, 4, 2, 3, 1, 1, 7, 6, 2, 3, 1, 2, 3, 1, 2, 3, 1, 1, 3, 1, 3, 1, 2, 2, 3, 1, 3, 2, 3, 1, 3, 3, 2, 0, 1, 1, 1, 1, 1, 3, 7, 10, 5, 7, 9, 5, 3, 3, 3, 3, 3, 3, 1, 2, 5, 7, 9, 6, 5, 6, 3, 2, 1, 1, 1, 0, 2, 1, 3, 8, 0, 4, 2, 1, 3, 0, 1, 0, 1, 0, 1, 3, 1, 1, 1, 8, 9, 7, 8, 7, 6, 8, 0, 2, 0, 2, 1, 2, 1, 2, 1, 1, 1, 0, 2, 0, 2, 0, 2, 2, 1, 3, 1, 4, 1, 4, 1, 1, 4, 2, 1, 3, 3, 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, 7, 0, 2, 1, 3, 3, 4, 1, 4, 0, 2, 5, 0, 2, 6, 0, 2, 0, 3, 1, 2, 1, 1, 2, 0, 1, 3, 0, 2, 1, 1, 1, 1, 6, 8, 6, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 1, 1, 2, 1, 1, 0, 1, 0, 2, 2, 2, 4, 3, 1, 1, 3, 1, 2, 2, 3, 2, 3, 1, 1, 2, 3, 1, 1, 3, 2, 0, 1, 5, 5, 6, 10, 3, 5, 1, 1, 3, 0, 2, 4, 5, 4, 4, 4, 3, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 2, 2, 3, 1, 0, 1, 1, 3, 3, 3, 4, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, 3, 4, 4, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 3, 2, 1, 2, 4, 2, 2, 8, 9, 8, 9, 9, 10, 9, 10, 8, 3, 2, 0, 4, 2, 1, 3, 2, 1, 2, 2, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 0, 3, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 3, 3, 4, 1, 1, 3, 1, 1, 1, 1, 1, 3, 2, 3, 0, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 4, 4, 1, 4, 4, 0, 1, 1, 1, 3, 3, 1, 4, 2, 2, 1, 3, 1, 4, 4, 3, 3, 3, 3, 1, 3, 1, 1, 3, 1, 1, 4, 1, 1, 1, 3, 1, 1, 2, 1, 3, 4, 3, 2, 0, 2, 2, 1, 2, 1, 1, 1, 4, 3, 3, 3, 3, 6, 3, 1, 1, 2, 1); + protected function initReduceCallbacks() { - $analyser = new CachingFileAnalyser($cacheDirectory, new ParsingFileAnalyser($useAnnotationsForIgnoringCode, $ignoreDeprecatedCode)); - foreach ($filter->files() as $file) { - $analyser->process($file); - } + $this->reduceCallbacks = [0 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 1 => function ($stackPos) { + $this->semValue = $this->handleNamespaces($this->semStack[$stackPos - (1 - 1)]); + }, 2 => function ($stackPos) { + if (is_array($this->semStack[$stackPos - (2 - 2)])) { + $this->semValue = array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + } else { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 3 => function ($stackPos) { + $this->semValue = array(); + }, 4 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 5 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 6 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 7 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 8 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 9 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 10 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 11 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 12 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 13 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 14 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 15 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 16 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 17 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 18 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 19 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 20 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 21 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 22 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 23 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 24 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 25 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 26 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 27 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 28 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 29 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 30 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 31 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 32 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 33 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 34 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 35 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 36 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 37 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 38 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 39 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 40 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 41 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 42 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 43 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 44 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 45 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 46 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 47 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 48 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 49 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 50 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 51 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 52 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 53 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 54 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 55 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 56 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 57 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 58 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 59 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 60 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 61 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 62 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 63 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 64 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 65 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 66 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 67 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 68 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 69 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 70 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 71 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 72 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 73 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 74 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 75 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 76 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 77 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 78 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 79 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 80 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 81 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 82 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 83 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 84 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 85 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 86 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 87 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 88 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 89 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 90 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 91 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 92 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 93 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 94 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 95 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 96 => function ($stackPos) { + $this->semValue = new Name(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 97 => function ($stackPos) { + $this->semValue = new Expr\Variable(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 98 => function ($stackPos) { + /* nothing */ + }, 99 => function ($stackPos) { + /* nothing */ + }, 100 => function ($stackPos) { + /* nothing */ + }, 101 => function ($stackPos) { + $this->emitError(new Error('A trailing comma is not allowed here', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); + }, 102 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 103 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 104 => function ($stackPos) { + $this->semValue = new Node\Attribute($this->semStack[$stackPos - (1 - 1)], [], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 105 => function ($stackPos) { + $this->semValue = new Node\Attribute($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 106 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 107 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 108 => function ($stackPos) { + $this->semValue = new Node\AttributeGroup($this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 109 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 110 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 111 => function ($stackPos) { + $this->semValue = []; + }, 112 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 113 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 114 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 115 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 116 => function ($stackPos) { + $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 117 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (3 - 2)], null, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON); + $this->checkNamespace($this->semValue); + }, 118 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); + $this->checkNamespace($this->semValue); + }, 119 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); + $this->checkNamespace($this->semValue); + }, 120 => function ($stackPos) { + $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 121 => function ($stackPos) { + $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 122 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 123 => function ($stackPos) { + $this->semValue = new Stmt\Const_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 124 => function ($stackPos) { + $this->semValue = Stmt\Use_::TYPE_FUNCTION; + }, 125 => function ($stackPos) { + $this->semValue = Stmt\Use_::TYPE_CONSTANT; + }, 126 => function ($stackPos) { + $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->semStack[$stackPos - (7 - 2)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 127 => function ($stackPos) { + $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 128 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 129 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 130 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 131 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 132 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 133 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 134 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 135 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 136 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 137 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); + }, 138 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); + }, 139 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); + }, 140 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); + }, 141 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + $this->semValue->type = Stmt\Use_::TYPE_NORMAL; + }, 142 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue->type = $this->semStack[$stackPos - (2 - 1)]; + }, 143 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 144 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 145 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 146 => function ($stackPos) { + $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 147 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 148 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 149 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 150 => function ($stackPos) { + $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos - (3 - 1)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributeStack[$stackPos - (3 - 1)]), $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 151 => function ($stackPos) { + $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos - (3 - 1)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributeStack[$stackPos - (3 - 1)]), $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 152 => function ($stackPos) { + if (is_array($this->semStack[$stackPos - (2 - 2)])) { + $this->semValue = array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + } else { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 153 => function ($stackPos) { + $this->semValue = array(); + }, 154 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 155 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 156 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 157 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 158 => function ($stackPos) { + throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 159 => function ($stackPos) { + if ($this->semStack[$stackPos - (3 - 2)]) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)]; + $stmts = $this->semValue; + if (!empty($attrs['comments'])) { + $stmts[0]->setAttribute('comments', array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); + } + } else { + $startAttributes = $this->startAttributeStack[$stackPos - (3 - 1)]; + if (isset($startAttributes['comments'])) { + $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); + } else { + $this->semValue = null; + } + if (null === $this->semValue) { + $this->semValue = array(); + } + } + }, 160 => function ($stackPos) { + $this->semValue = new Stmt\If_($this->semStack[$stackPos - (7 - 3)], ['stmts' => is_array($this->semStack[$stackPos - (7 - 5)]) ? $this->semStack[$stackPos - (7 - 5)] : array($this->semStack[$stackPos - (7 - 5)]), 'elseifs' => $this->semStack[$stackPos - (7 - 6)], 'else' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 161 => function ($stackPos) { + $this->semValue = new Stmt\If_($this->semStack[$stackPos - (10 - 3)], ['stmts' => $this->semStack[$stackPos - (10 - 6)], 'elseifs' => $this->semStack[$stackPos - (10 - 7)], 'else' => $this->semStack[$stackPos - (10 - 8)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + }, 162 => function ($stackPos) { + $this->semValue = new Stmt\While_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 163 => function ($stackPos) { + $this->semValue = new Stmt\Do_($this->semStack[$stackPos - (7 - 5)], is_array($this->semStack[$stackPos - (7 - 2)]) ? $this->semStack[$stackPos - (7 - 2)] : array($this->semStack[$stackPos - (7 - 2)]), $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 164 => function ($stackPos) { + $this->semValue = new Stmt\For_(['init' => $this->semStack[$stackPos - (9 - 3)], 'cond' => $this->semStack[$stackPos - (9 - 5)], 'loop' => $this->semStack[$stackPos - (9 - 7)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 165 => function ($stackPos) { + $this->semValue = new Stmt\Switch_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 166 => function ($stackPos) { + $this->semValue = new Stmt\Break_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 167 => function ($stackPos) { + $this->semValue = new Stmt\Continue_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 168 => function ($stackPos) { + $this->semValue = new Stmt\Return_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 169 => function ($stackPos) { + $this->semValue = new Stmt\Global_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 170 => function ($stackPos) { + $this->semValue = new Stmt\Static_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 171 => function ($stackPos) { + $this->semValue = new Stmt\Echo_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 172 => function ($stackPos) { + $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 173 => function ($stackPos) { + $e = $this->semStack[$stackPos - (2 - 1)]; + if ($e instanceof Expr\Throw_) { + // For backwards-compatibility reasons, convert throw in statement position into + // Stmt\Throw_ rather than Stmt\Expression(Expr\Throw_). + $this->semValue = new Stmt\Throw_($e->expr, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + } else { + $this->semValue = new Stmt\Expression($e, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + } + }, 174 => function ($stackPos) { + $this->semValue = new Stmt\Unset_($this->semStack[$stackPos - (5 - 3)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 175 => function ($stackPos) { + $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 176 => function ($stackPos) { + $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (9 - 3)], $this->semStack[$stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$stackPos - (9 - 5)], 'byRef' => $this->semStack[$stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 177 => function ($stackPos) { + $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (6 - 3)], new Expr\Error($this->startAttributeStack[$stackPos - (6 - 4)] + $this->endAttributeStack[$stackPos - (6 - 4)]), ['stmts' => $this->semStack[$stackPos - (6 - 6)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 178 => function ($stackPos) { + $this->semValue = new Stmt\Declare_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 179 => function ($stackPos) { + $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 5)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + $this->checkTryCatch($this->semValue); + }, 180 => function ($stackPos) { + $this->semValue = new Stmt\Goto_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 181 => function ($stackPos) { + $this->semValue = new Stmt\Label($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 182 => function ($stackPos) { + $this->semValue = array(); + /* means: no statement */ + }, 183 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 184 => function ($stackPos) { + $startAttributes = $this->startAttributeStack[$stackPos - (1 - 1)]; + if (isset($startAttributes['comments'])) { + $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); + } else { + $this->semValue = null; + } + if ($this->semValue === null) { + $this->semValue = array(); + } + /* means: no statement */ + }, 185 => function ($stackPos) { + $this->semValue = array(); + }, 186 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 187 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 188 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 189 => function ($stackPos) { + $this->semValue = new Stmt\Catch_($this->semStack[$stackPos - (8 - 3)], $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 7)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 190 => function ($stackPos) { + $this->semValue = null; + }, 191 => function ($stackPos) { + $this->semValue = new Stmt\Finally_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 192 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 193 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 194 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 195 => function ($stackPos) { + $this->semValue = \false; + }, 196 => function ($stackPos) { + $this->semValue = \true; + }, 197 => function ($stackPos) { + $this->semValue = \false; + }, 198 => function ($stackPos) { + $this->semValue = \true; + }, 199 => function ($stackPos) { + $this->semValue = \false; + }, 200 => function ($stackPos) { + $this->semValue = \true; + }, 201 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 202 => function ($stackPos) { + $this->semValue = []; + }, 203 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 204 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 205 => function ($stackPos) { + $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (8 - 3)], ['byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 5)], 'returnType' => $this->semStack[$stackPos - (8 - 7)], 'stmts' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 206 => function ($stackPos) { + $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (9 - 4)], ['byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 6)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 207 => function ($stackPos) { + $this->semValue = new Stmt\Class_($this->semStack[$stackPos - (7 - 2)], ['type' => $this->semStack[$stackPos - (7 - 1)], 'extends' => $this->semStack[$stackPos - (7 - 3)], 'implements' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + $this->checkClass($this->semValue, $stackPos - (7 - 2)); + }, 208 => function ($stackPos) { + $this->semValue = new Stmt\Class_($this->semStack[$stackPos - (8 - 3)], ['type' => $this->semStack[$stackPos - (8 - 2)], 'extends' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + $this->checkClass($this->semValue, $stackPos - (8 - 3)); + }, 209 => function ($stackPos) { + $this->semValue = new Stmt\Interface_($this->semStack[$stackPos - (7 - 3)], ['extends' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)], 'attrGroups' => $this->semStack[$stackPos - (7 - 1)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + $this->checkInterface($this->semValue, $stackPos - (7 - 3)); + }, 210 => function ($stackPos) { + $this->semValue = new Stmt\Trait_($this->semStack[$stackPos - (6 - 3)], ['stmts' => $this->semStack[$stackPos - (6 - 5)], 'attrGroups' => $this->semStack[$stackPos - (6 - 1)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 211 => function ($stackPos) { + $this->semValue = new Stmt\Enum_($this->semStack[$stackPos - (8 - 3)], ['scalarType' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + $this->checkEnum($this->semValue, $stackPos - (8 - 3)); + }, 212 => function ($stackPos) { + $this->semValue = null; + }, 213 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 214 => function ($stackPos) { + $this->semValue = null; + }, 215 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 216 => function ($stackPos) { + $this->semValue = 0; + }, 217 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 218 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 219 => function ($stackPos) { + $this->checkClassModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); + $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; + }, 220 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; + }, 221 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_FINAL; + }, 222 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_READONLY; + }, 223 => function ($stackPos) { + $this->semValue = null; + }, 224 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 225 => function ($stackPos) { + $this->semValue = array(); + }, 226 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 227 => function ($stackPos) { + $this->semValue = array(); + }, 228 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 229 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 230 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 231 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 232 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 233 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 234 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 235 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 236 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 237 => function ($stackPos) { + $this->semValue = null; + }, 238 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 239 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 240 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 241 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 242 => function ($stackPos) { + $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 243 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 244 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 3)]; + }, 245 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 246 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (5 - 3)]; + }, 247 => function ($stackPos) { + $this->semValue = array(); + }, 248 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 249 => function ($stackPos) { + $this->semValue = new Stmt\Case_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 250 => function ($stackPos) { + $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 251 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 252 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 253 => function ($stackPos) { + $this->semValue = new Expr\Match_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 254 => function ($stackPos) { + $this->semValue = []; + }, 255 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 256 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 257 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 258 => function ($stackPos) { + $this->semValue = new Node\MatchArm($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 259 => function ($stackPos) { + $this->semValue = new Node\MatchArm(null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 260 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 261 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 262 => function ($stackPos) { + $this->semValue = array(); + }, 263 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 264 => function ($stackPos) { + $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (5 - 3)], is_array($this->semStack[$stackPos - (5 - 5)]) ? $this->semStack[$stackPos - (5 - 5)] : array($this->semStack[$stackPos - (5 - 5)]), $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 265 => function ($stackPos) { + $this->semValue = array(); + }, 266 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 267 => function ($stackPos) { + $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + $this->fixupAlternativeElse($this->semValue); + }, 268 => function ($stackPos) { + $this->semValue = null; + }, 269 => function ($stackPos) { + $this->semValue = new Stmt\Else_(is_array($this->semStack[$stackPos - (2 - 2)]) ? $this->semStack[$stackPos - (2 - 2)] : array($this->semStack[$stackPos - (2 - 2)]), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 270 => function ($stackPos) { + $this->semValue = null; + }, 271 => function ($stackPos) { + $this->semValue = new Stmt\Else_($this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->fixupAlternativeElse($this->semValue); + }, 272 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); + }, 273 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (2 - 2)], \true); + }, 274 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); + }, 275 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); + }, 276 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 277 => function ($stackPos) { + $this->semValue = array(); + }, 278 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 279 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 280 => function ($stackPos) { + $this->semValue = 0; + }, 281 => function ($stackPos) { + $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); + $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; + }, 282 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; + }, 283 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; + }, 284 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; + }, 285 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_READONLY; + }, 286 => function ($stackPos) { + $this->semValue = new Node\Param($this->semStack[$stackPos - (6 - 6)], null, $this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 1)]); + $this->checkParam($this->semValue); + }, 287 => function ($stackPos) { + $this->semValue = new Node\Param($this->semStack[$stackPos - (8 - 6)], $this->semStack[$stackPos - (8 - 8)], $this->semStack[$stackPos - (8 - 3)], $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 5)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (8 - 2)], $this->semStack[$stackPos - (8 - 1)]); + $this->checkParam($this->semValue); + }, 288 => function ($stackPos) { + $this->semValue = new Node\Param(new Expr\Error($this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes), null, $this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 1)]); + }, 289 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 290 => function ($stackPos) { + $this->semValue = new Node\NullableType($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 291 => function ($stackPos) { + $this->semValue = new Node\UnionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 292 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 293 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 294 => function ($stackPos) { + $this->semValue = new Node\Name('static', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 295 => function ($stackPos) { + $this->semValue = $this->handleBuiltinTypes($this->semStack[$stackPos - (1 - 1)]); + }, 296 => function ($stackPos) { + $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 297 => function ($stackPos) { + $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 298 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 299 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 300 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 301 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 302 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 303 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 304 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 305 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 306 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 307 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 308 => function ($stackPos) { + $this->semValue = new Node\IntersectionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 309 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 310 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 311 => function ($stackPos) { + $this->semValue = new Node\IntersectionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 312 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 313 => function ($stackPos) { + $this->semValue = new Node\NullableType($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 314 => function ($stackPos) { + $this->semValue = new Node\UnionType($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 315 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 316 => function ($stackPos) { + $this->semValue = null; + }, 317 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 318 => function ($stackPos) { + $this->semValue = null; + }, 319 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 320 => function ($stackPos) { + $this->semValue = null; + }, 321 => function ($stackPos) { + $this->semValue = array(); + }, 322 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 323 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 2)]); + }, 324 => function ($stackPos) { + $this->semValue = new Node\VariadicPlaceholder($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 325 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 326 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 327 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (1 - 1)], \false, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 328 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \true, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 329 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \false, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 330 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (3 - 3)], \false, \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (3 - 1)]); + }, 331 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 332 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 333 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 334 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 335 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 336 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 337 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 338 => function ($stackPos) { + $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 339 => function ($stackPos) { + $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 340 => function ($stackPos) { + if ($this->semStack[$stackPos - (2 - 2)] !== null) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } else { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 341 => function ($stackPos) { + $this->semValue = array(); + }, 342 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 343 => function ($stackPos) { + $this->semValue = new Stmt\Property($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 1)]); + $this->checkProperty($this->semValue, $stackPos - (5 - 2)); + }, 344 => function ($stackPos) { + $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos - (5 - 4)], $this->semStack[$stackPos - (5 - 2)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (5 - 1)]); + $this->checkClassConst($this->semValue, $stackPos - (5 - 2)); + }, 345 => function ($stackPos) { + $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos - (6 - 5)], $this->semStack[$stackPos - (6 - 2)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes, $this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 4)]); + $this->checkClassConst($this->semValue, $stackPos - (6 - 2)); + }, 346 => function ($stackPos) { + $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos - (10 - 5)], ['type' => $this->semStack[$stackPos - (10 - 2)], 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 7)], 'returnType' => $this->semStack[$stackPos - (10 - 9)], 'stmts' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + $this->checkClassMethod($this->semValue, $stackPos - (10 - 2)); + }, 347 => function ($stackPos) { + $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 348 => function ($stackPos) { + $this->semValue = new Stmt\EnumCase($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->semStack[$stackPos - (5 - 1)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 349 => function ($stackPos) { + $this->semValue = null; + /* will be skipped */ + }, 350 => function ($stackPos) { + $this->semValue = array(); + }, 351 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 352 => function ($stackPos) { + $this->semValue = array(); + }, 353 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 354 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 355 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (5 - 1)][0], $this->semStack[$stackPos - (5 - 1)][1], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 356 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], null, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 357 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 358 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 359 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 360 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 361 => function ($stackPos) { + $this->semValue = array(null, $this->semStack[$stackPos - (1 - 1)]); + }, 362 => function ($stackPos) { + $this->semValue = null; + }, 363 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 364 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 365 => function ($stackPos) { + $this->semValue = 0; + }, 366 => function ($stackPos) { + $this->semValue = 0; + }, 367 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 368 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 369 => function ($stackPos) { + $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); + $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; + }, 370 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; + }, 371 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; + }, 372 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; + }, 373 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_STATIC; + }, 374 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; + }, 375 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_FINAL; + }, 376 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_READONLY; + }, 377 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 378 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 379 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 380 => function ($stackPos) { + $this->semValue = new Node\VarLikeIdentifier(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 381 => function ($stackPos) { + $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 382 => function ($stackPos) { + $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 383 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 384 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 385 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 386 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 387 => function ($stackPos) { + $this->semValue = array(); + }, 388 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 389 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 390 => function ($stackPos) { + $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 391 => function ($stackPos) { + $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 392 => function ($stackPos) { + $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 393 => function ($stackPos) { + $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 394 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 395 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 396 => function ($stackPos) { + $this->semValue = new Expr\Clone_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 397 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 398 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 399 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 400 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 401 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 402 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 403 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 404 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 405 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 406 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 407 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 408 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 409 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 410 => function ($stackPos) { + $this->semValue = new Expr\PostInc($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 411 => function ($stackPos) { + $this->semValue = new Expr\PreInc($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 412 => function ($stackPos) { + $this->semValue = new Expr\PostDec($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 413 => function ($stackPos) { + $this->semValue = new Expr\PreDec($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 414 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 415 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 416 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 417 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 418 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 419 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 420 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 421 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 422 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 423 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 424 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 425 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 426 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 427 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 428 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 429 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 430 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 431 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 432 => function ($stackPos) { + $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 433 => function ($stackPos) { + $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 434 => function ($stackPos) { + $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 435 => function ($stackPos) { + $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 436 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 437 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 438 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 439 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 440 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 441 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 442 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 443 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 444 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 445 => function ($stackPos) { + $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 446 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 447 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 448 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 449 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 450 => function ($stackPos) { + $this->semValue = new Expr\Isset_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 451 => function ($stackPos) { + $this->semValue = new Expr\Empty_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 452 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 453 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 454 => function ($stackPos) { + $this->semValue = new Expr\Eval_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 455 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 456 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 457 => function ($stackPos) { + $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 458 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; + $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos - (2 - 1)]); + $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos - (2 - 2)], $attrs); + }, 459 => function ($stackPos) { + $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 460 => function ($stackPos) { + $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 461 => function ($stackPos) { + $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 462 => function ($stackPos) { + $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 463 => function ($stackPos) { + $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 464 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; + $attrs['kind'] = strtolower($this->semStack[$stackPos - (2 - 1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE; + $this->semValue = new Expr\Exit_($this->semStack[$stackPos - (2 - 2)], $attrs); + }, 465 => function ($stackPos) { + $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 466 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 467 => function ($stackPos) { + $this->semValue = new Expr\ShellExec($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 468 => function ($stackPos) { + $this->semValue = new Expr\Print_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 469 => function ($stackPos) { + $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 470 => function ($stackPos) { + $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (2 - 2)], null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 471 => function ($stackPos) { + $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 472 => function ($stackPos) { + $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 473 => function ($stackPos) { + $this->semValue = new Expr\Throw_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 474 => function ($stackPos) { + $this->semValue = new Expr\ArrowFunction(['static' => \false, 'byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 4)], 'returnType' => $this->semStack[$stackPos - (8 - 6)], 'expr' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 475 => function ($stackPos) { + $this->semValue = new Expr\ArrowFunction(['static' => \true, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'returnType' => $this->semStack[$stackPos - (9 - 7)], 'expr' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 476 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (8 - 2)], 'params' => $this->semStack[$stackPos - (8 - 4)], 'uses' => $this->semStack[$stackPos - (8 - 6)], 'returnType' => $this->semStack[$stackPos - (8 - 7)], 'stmts' => $this->semStack[$stackPos - (8 - 8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 477 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'uses' => $this->semStack[$stackPos - (9 - 7)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 478 => function ($stackPos) { + $this->semValue = new Expr\ArrowFunction(['static' => \false, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'returnType' => $this->semStack[$stackPos - (9 - 7)], 'expr' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 479 => function ($stackPos) { + $this->semValue = new Expr\ArrowFunction(['static' => \true, 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 6)], 'returnType' => $this->semStack[$stackPos - (10 - 8)], 'expr' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + }, 480 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 5)], 'uses' => $this->semStack[$stackPos - (9 - 7)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)], 'attrGroups' => $this->semStack[$stackPos - (9 - 1)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 481 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (10 - 4)], 'params' => $this->semStack[$stackPos - (10 - 6)], 'uses' => $this->semStack[$stackPos - (10 - 8)], 'returnType' => $this->semStack[$stackPos - (10 - 9)], 'stmts' => $this->semStack[$stackPos - (10 - 10)], 'attrGroups' => $this->semStack[$stackPos - (10 - 1)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + }, 482 => function ($stackPos) { + $this->semValue = array(new Stmt\Class_(null, ['type' => $this->semStack[$stackPos - (8 - 2)], 'extends' => $this->semStack[$stackPos - (8 - 4)], 'implements' => $this->semStack[$stackPos - (8 - 5)], 'stmts' => $this->semStack[$stackPos - (8 - 7)], 'attrGroups' => $this->semStack[$stackPos - (8 - 1)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (8 - 3)]); + $this->checkClass($this->semValue[0], -1); + }, 483 => function ($stackPos) { + $this->semValue = new Expr\New_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 484 => function ($stackPos) { + list($class, $ctorArgs) = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 485 => function ($stackPos) { + $this->semValue = array(); + }, 486 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 3)]; + }, 487 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 488 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 489 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 490 => function ($stackPos) { + $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos - (2 - 2)], $this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 491 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 492 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 493 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 494 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 495 => function ($stackPos) { + $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 496 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 497 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 498 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 499 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 500 => function ($stackPos) { + $this->semValue = new Name\FullyQualified(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 501 => function ($stackPos) { + $this->semValue = new Name\Relative(substr($this->semStack[$stackPos - (1 - 1)], 10), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 502 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 503 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 504 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 505 => function ($stackPos) { + $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->errorState = 2; + }, 506 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 507 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 508 => function ($stackPos) { + $this->semValue = null; + }, 509 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 510 => function ($stackPos) { + $this->semValue = array(); + }, 511 => function ($stackPos) { + $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos - (1 - 1)], '`'), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); + }, 512 => function ($stackPos) { + foreach ($this->semStack[$stackPos - (1 - 1)] as $s) { + if ($s instanceof Node\Scalar\EncapsedStringPart) { + $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', \true); + } + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 513 => function ($stackPos) { + $this->semValue = array(); + }, 514 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 515 => function ($stackPos) { + $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 516 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 517 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 518 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 519 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 520 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 521 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 522 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 523 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 524 => function ($stackPos) { + $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 525 => function ($stackPos) { + $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 526 => function ($stackPos) { + $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], new Expr\Error($this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)]), $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->errorState = 2; + }, 527 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; + $attrs['kind'] = Expr\Array_::KIND_SHORT; + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $attrs); + }, 528 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes; + $attrs['kind'] = Expr\Array_::KIND_LONG; + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $attrs); + }, 529 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 530 => function ($stackPos) { + $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 531 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; + $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED; + foreach ($this->semStack[$stackPos - (3 - 2)] as $s) { + if ($s instanceof Node\Scalar\EncapsedStringPart) { + $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', \true); + } + } + $this->semValue = new Scalar\Encapsed($this->semStack[$stackPos - (3 - 2)], $attrs); + }, 532 => function ($stackPos) { + $this->semValue = $this->parseLNumber($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 533 => function ($stackPos) { + $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 534 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 535 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 536 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 537 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); + }, 538 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (2 - 1)], '', $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (2 - 2)] + $this->endAttributeStack[$stackPos - (2 - 2)], \true); + }, 539 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); + }, 540 => function ($stackPos) { + $this->semValue = null; + }, 541 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 542 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 543 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 544 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 545 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 546 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 547 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 548 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 549 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 550 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 551 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 552 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 553 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 554 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 555 => function ($stackPos) { + $this->semValue = new Expr\MethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 556 => function ($stackPos) { + $this->semValue = new Expr\NullsafeMethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 557 => function ($stackPos) { + $this->semValue = null; + }, 558 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 559 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 560 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 561 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 562 => function ($stackPos) { + $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 563 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 564 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 565 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 566 => function ($stackPos) { + $this->semValue = new Expr\Variable(new Expr\Error($this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + $this->errorState = 2; + }, 567 => function ($stackPos) { + $var = $this->semStack[$stackPos - (1 - 1)]->name; + $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes) : $var; + }, 568 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 569 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 570 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 571 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 572 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 573 => function ($stackPos) { + $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 574 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 575 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 576 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 577 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 578 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 579 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 580 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 581 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 582 => function ($stackPos) { + $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->errorState = 2; + }, 583 => function ($stackPos) { + $this->semValue = new Expr\List_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 584 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + $end = count($this->semValue) - 1; + if ($this->semValue[$end] === null) { + array_pop($this->semValue); + } + }, 585 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 586 => function ($stackPos) { + /* do nothing -- prevent default action of $$=$this->semStack[$1]. See $551. */ + }, 587 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 588 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 589 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 590 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 591 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 592 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 593 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 1)], \true, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 594 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 595 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, \true); + }, 596 => function ($stackPos) { + $this->semValue = null; + }, 597 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 598 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 599 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 600 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + }, 601 => function ($stackPos) { + $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 602 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 603 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 604 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 605 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 606 => function ($stackPos) { + $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 607 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 608 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 609 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 4)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 610 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 611 => function ($stackPos) { + $this->semValue = new Scalar\String_($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 612 => function ($stackPos) { + $this->semValue = $this->parseNumString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 613 => function ($stackPos) { + $this->semValue = $this->parseNumString('-' . $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 614 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }]; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; +namespace PHPUnitPHAR\PhpParser\Parser; -use function file_get_contents; -use function file_put_contents; -use function implode; -use function is_file; -use function md5; -use function serialize; -use PHPUnit\SebastianBergmann\CodeCoverage\Util\Filesystem; -use PHPUnit\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Expr; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Scalar; +use PHPUnitPHAR\PhpParser\Node\Stmt; +/* This is an automatically GENERATED file, which should not be manually edited. + * Instead edit one of the following: + * * the grammar files grammar/php5.y or grammar/php7.y + * * the skeleton file grammar/parser.template + * * the preprocessing script grammar/rebuildParsers.php */ -final class CachingFileAnalyser implements FileAnalyser +class Php5 extends \PHPUnitPHAR\PhpParser\ParserAbstract { - /** - * @var ?string - */ - private static $cacheVersion; - /** - * @var FileAnalyser - */ - private $analyser; - /** - * @var array - */ - private $cache = []; - /** - * @var string - */ - private $directory; - public function __construct(string $directory, FileAnalyser $analyser) - { - Filesystem::createDirectory($directory); - $this->analyser = $analyser; - $this->directory = $directory; - } - public function classesIn(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['classesIn']; - } - public function traitsIn(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['traitsIn']; - } - public function functionsIn(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['functionsIn']; - } - /** - * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} - */ - public function linesOfCodeFor(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['linesOfCodeFor']; - } - public function executableLinesIn(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['executableLinesIn']; - } - public function ignoredLinesFor(string $filename) : array - { - if (!isset($this->cache[$filename])) { - $this->process($filename); - } - return $this->cache[$filename]['ignoredLinesFor']; - } - public function process(string $filename) : void - { - $cache = $this->read($filename); - if ($cache !== \false) { - $this->cache[$filename] = $cache; - return; - } - $this->cache[$filename] = ['classesIn' => $this->analyser->classesIn($filename), 'traitsIn' => $this->analyser->traitsIn($filename), 'functionsIn' => $this->analyser->functionsIn($filename), 'linesOfCodeFor' => $this->analyser->linesOfCodeFor($filename), 'ignoredLinesFor' => $this->analyser->ignoredLinesFor($filename), 'executableLinesIn' => $this->analyser->executableLinesIn($filename)]; - $this->write($filename, $this->cache[$filename]); - } - /** - * @return mixed - */ - private function read(string $filename) - { - $cacheFile = $this->cacheFile($filename); - if (!is_file($cacheFile)) { - return \false; - } - return \unserialize(file_get_contents($cacheFile), ['allowed_classes' => \false]); - } - /** - * @param mixed $data - */ - private function write(string $filename, $data) : void - { - file_put_contents($this->cacheFile($filename), serialize($data)); - } - private function cacheFile(string $filename) : string - { - return $this->directory . \DIRECTORY_SEPARATOR . md5($filename . "\x00" . file_get_contents($filename) . "\x00" . self::cacheVersion()); - } - private static function cacheVersion() : string + protected $tokenToSymbolMapSize = 396; + protected $actionTableSize = 1099; + protected $gotoTableSize = 640; + protected $invalidSymbol = 168; + protected $errorSymbol = 1; + protected $defaultAction = -32766; + protected $unexpectedTokenRule = 32767; + protected $YY2TBLSTATE = 415; + protected $numNonLeafStates = 663; + protected $symbolToName = array("EOF", "error", "T_THROW", "T_INCLUDE", "T_INCLUDE_ONCE", "T_EVAL", "T_REQUIRE", "T_REQUIRE_ONCE", "','", "T_LOGICAL_OR", "T_LOGICAL_XOR", "T_LOGICAL_AND", "T_PRINT", "T_YIELD", "T_DOUBLE_ARROW", "T_YIELD_FROM", "'='", "T_PLUS_EQUAL", "T_MINUS_EQUAL", "T_MUL_EQUAL", "T_DIV_EQUAL", "T_CONCAT_EQUAL", "T_MOD_EQUAL", "T_AND_EQUAL", "T_OR_EQUAL", "T_XOR_EQUAL", "T_SL_EQUAL", "T_SR_EQUAL", "T_POW_EQUAL", "T_COALESCE_EQUAL", "'?'", "':'", "T_COALESCE", "T_BOOLEAN_OR", "T_BOOLEAN_AND", "'|'", "'^'", "T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG", "T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG", "T_IS_EQUAL", "T_IS_NOT_EQUAL", "T_IS_IDENTICAL", "T_IS_NOT_IDENTICAL", "T_SPACESHIP", "'<'", "T_IS_SMALLER_OR_EQUAL", "'>'", "T_IS_GREATER_OR_EQUAL", "T_SL", "T_SR", "'+'", "'-'", "'.'", "'*'", "'/'", "'%'", "'!'", "T_INSTANCEOF", "'~'", "T_INC", "T_DEC", "T_INT_CAST", "T_DOUBLE_CAST", "T_STRING_CAST", "T_ARRAY_CAST", "T_OBJECT_CAST", "T_BOOL_CAST", "T_UNSET_CAST", "'@'", "T_POW", "'['", "T_NEW", "T_CLONE", "T_EXIT", "T_IF", "T_ELSEIF", "T_ELSE", "T_ENDIF", "T_LNUMBER", "T_DNUMBER", "T_STRING", "T_STRING_VARNAME", "T_VARIABLE", "T_NUM_STRING", "T_INLINE_HTML", "T_ENCAPSED_AND_WHITESPACE", "T_CONSTANT_ENCAPSED_STRING", "T_ECHO", "T_DO", "T_WHILE", "T_ENDWHILE", "T_FOR", "T_ENDFOR", "T_FOREACH", "T_ENDFOREACH", "T_DECLARE", "T_ENDDECLARE", "T_AS", "T_SWITCH", "T_MATCH", "T_ENDSWITCH", "T_CASE", "T_DEFAULT", "T_BREAK", "T_CONTINUE", "T_GOTO", "T_FUNCTION", "T_FN", "T_CONST", "T_RETURN", "T_TRY", "T_CATCH", "T_FINALLY", "T_USE", "T_INSTEADOF", "T_GLOBAL", "T_STATIC", "T_ABSTRACT", "T_FINAL", "T_PRIVATE", "T_PROTECTED", "T_PUBLIC", "T_READONLY", "T_VAR", "T_UNSET", "T_ISSET", "T_EMPTY", "T_HALT_COMPILER", "T_CLASS", "T_TRAIT", "T_INTERFACE", "T_EXTENDS", "T_IMPLEMENTS", "T_OBJECT_OPERATOR", "T_LIST", "T_ARRAY", "T_CALLABLE", "T_CLASS_C", "T_TRAIT_C", "T_METHOD_C", "T_FUNC_C", "T_LINE", "T_FILE", "T_START_HEREDOC", "T_END_HEREDOC", "T_DOLLAR_OPEN_CURLY_BRACES", "T_CURLY_OPEN", "T_PAAMAYIM_NEKUDOTAYIM", "T_NAMESPACE", "T_NS_C", "T_DIR", "T_NS_SEPARATOR", "T_ELLIPSIS", "T_NAME_FULLY_QUALIFIED", "T_NAME_QUALIFIED", "T_NAME_RELATIVE", "';'", "'{'", "'}'", "'('", "')'", "'\$'", "'`'", "']'", "'\"'", "T_ENUM", "T_NULLSAFE_OBJECT_OPERATOR", "T_ATTRIBUTE"); + protected $tokenToSymbol = array(0, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 56, 164, 168, 161, 55, 168, 168, 159, 160, 53, 50, 8, 51, 52, 54, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 31, 156, 44, 16, 46, 30, 68, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 70, 168, 163, 36, 168, 162, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 157, 35, 158, 58, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 165, 131, 132, 133, 166, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 167); + protected $action = array(700, 670, 671, 672, 673, 674, 286, 675, 676, 677, 713, 714, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, 245, 246, 242, 243, 244, -32766, -32766, 678, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 1229, 245, 246, 1230, 679, 680, 681, 682, 683, 684, 685, 899, 900, 747, -32766, -32766, -32766, -32766, -32766, -32766, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 716, 739, 717, 718, 719, 720, 708, 709, 710, 738, 711, 712, 697, 698, 699, 701, 702, 703, 741, 742, 743, 744, 745, 746, 875, 704, 705, 706, 707, 737, 728, 726, 727, 723, 724, 1046, 715, 721, 722, 729, 730, 732, 731, 733, 734, 55, 56, 425, 57, 58, 725, 736, 735, 755, 59, 60, -226, 61, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 337, -32767, -32767, -32767, -32767, 29, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 620, -32766, -32766, -32766, -32766, 62, 63, 1046, -32766, -32766, -32766, 64, 419, 65, 294, 295, 66, 67, 68, 69, 70, 71, 72, 73, 823, 25, 302, 74, 418, 984, 986, 669, 668, 1100, 1101, 1078, 755, 755, 767, 1220, 768, 470, -32766, -32766, -32766, 341, 749, 824, 54, -32767, -32767, -32767, -32767, 98, 99, 100, 101, 102, 220, 221, 222, 362, 876, -32766, 27, -32766, -32766, -32766, -32766, -32766, 1046, 493, 126, 1080, 1079, 1081, 370, 1068, 930, 207, 478, 479, 952, 953, 954, 951, 950, 949, 128, 480, 481, 803, 1106, 1107, 1108, 1109, 1103, 1104, 319, 32, 297, 10, 211, -515, 1110, 1105, 669, 668, 1080, 1079, 1081, 220, 221, 222, 41, 364, 341, 334, 421, 336, 426, -128, -128, -128, 313, 1046, 469, -4, 824, 54, 812, 770, 207, 40, 21, 427, -128, 471, -128, 472, -128, 473, -128, 1046, 428, 220, 221, 222, -32766, 33, 34, 429, 361, 327, 52, 35, 474, -32766, -32766, -32766, 342, 357, 358, 475, 476, 48, 207, 249, 669, 668, 477, 443, 300, 795, 846, 430, 431, 28, -32766, 814, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, -32767, 952, 953, 954, 951, 950, 949, 422, 755, 424, 426, 826, 634, -128, -32766, -32766, 469, 824, 54, 288, 812, 1151, 755, 40, 21, 427, 317, 471, 345, 472, 129, 473, 9, 1186, 428, 769, 360, 324, 905, 33, 34, 429, 361, 1046, 415, 35, 474, 944, 1068, 315, 125, 357, 358, 475, 476, -32766, -32766, -32766, 926, 302, 477, 121, 1068, 759, 846, 430, 431, 669, 668, 423, 755, 1152, 809, 1046, 480, 766, -32766, 805, -32766, -32766, -32766, -32766, -261, 127, 347, 436, 841, 341, 1078, 1200, 426, 446, 826, 634, -4, 807, 469, 824, 54, 436, 812, 341, 755, 40, 21, 427, 444, 471, 130, 472, 1068, 473, 346, 767, 428, 768, -211, -211, -211, 33, 34, 429, 361, 308, 1076, 35, 474, -32766, -32766, -32766, 1046, 357, 358, 475, 476, -32766, -32766, -32766, 906, 120, 477, 539, 1068, 795, 846, 430, 431, 436, -32766, 341, -32766, -32766, -32766, 1046, 480, 810, -32766, 925, -32766, -32766, 754, 1080, 1079, 1081, 49, -32766, -32766, -32766, 749, 751, 426, 1201, 826, 634, -211, 30, 469, 669, 668, 436, 812, 341, 75, 40, 21, 427, -32766, 471, 1064, 472, 124, 473, 669, 668, 428, 212, -210, -210, -210, 33, 34, 429, 361, 51, 1186, 35, 474, 755, -32766, -32766, -32766, 357, 358, 475, 476, 213, 824, 54, 221, 222, 477, 20, 581, 795, 846, 430, 431, 220, 221, 222, 755, 222, 247, 78, 79, 80, 81, 341, 207, 517, 103, 104, 105, 752, 307, 131, 637, 1068, 207, 341, 207, 122, 826, 634, -210, 36, 106, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 1112, 307, 346, 436, 214, 341, 824, 54, 426, 123, 250, 129, 134, 106, 469, -32766, 572, 1112, 812, 245, 246, 40, 21, 427, 251, 471, 252, 472, 341, 473, 453, 22, 428, 207, 899, 900, 638, 33, 34, 429, 824, 54, -86, 35, 474, 220, 221, 222, 314, 357, 358, 100, 101, 102, 239, 240, 241, 645, 477, -230, 458, 589, 135, 374, 596, 597, 207, 760, 640, 648, 642, 941, 654, 929, 662, 822, 133, 307, 837, 426, -32766, 106, 749, 43, 44, 469, 45, 442, 46, 812, 826, 634, 40, 21, 427, 47, 471, 50, 472, 53, 473, 132, 608, 428, 302, 604, -280, -32766, 33, 34, 429, 824, 54, 426, 35, 474, 755, 957, -84, 469, 357, 358, 521, 812, 628, 363, 40, 21, 427, 477, 471, 575, 472, -515, 473, 847, 616, 428, -423, -32766, 11, 646, 33, 34, 429, 824, 54, 445, 35, 474, 462, 285, 578, 1111, 357, 358, 593, 369, 848, 594, 290, 826, 634, 477, 0, 0, 532, 0, 0, 325, 0, 0, 0, 0, 0, 651, 0, 0, 0, 322, 326, 0, 0, 0, 426, 0, 0, 0, 0, 323, 469, 316, 318, -516, 812, 862, 634, 40, 21, 427, 0, 471, 0, 472, 0, 473, 1158, 0, 428, 0, -414, 6, 7, 33, 34, 429, 824, 54, 426, 35, 474, 12, 14, 373, 469, 357, 358, -424, 812, 563, 754, 40, 21, 427, 477, 471, 248, 472, 839, 473, 38, 39, 428, 657, 658, 765, 813, 33, 34, 429, 821, 800, 815, 35, 474, 215, 216, 878, 869, 357, 358, 217, 870, 218, 798, 863, 826, 634, 477, 860, 858, 936, 937, 934, 820, 209, 804, 806, 808, 811, 933, 763, 764, 1100, 1101, 935, 659, 78, 335, 426, 359, 1102, 635, 639, 641, 469, 643, 644, 647, 812, 826, 634, 40, 21, 427, 649, 471, 650, 472, 652, 473, 653, 636, 428, 796, 1226, 1228, 762, 33, 34, 429, 215, 216, 845, 35, 474, 761, 217, 844, 218, 357, 358, 1227, 843, 1060, 831, 1048, 842, 1049, 477, 559, 209, 1106, 1107, 1108, 1109, 1103, 1104, 398, 1100, 1101, 829, 942, 867, 1110, 1105, 868, 1102, 457, 1225, 1194, 1192, 1177, 1157, 219, 1190, 1091, 917, 1198, 1188, 0, 826, 634, 24, -433, 26, 31, 37, 42, 76, 77, 210, 287, 292, 293, 308, 309, 310, 311, 339, 356, 416, 0, -227, -226, 16, 17, 18, 393, 454, 461, 463, 467, 553, 625, 1051, 559, 1054, 1106, 1107, 1108, 1109, 1103, 1104, 398, 907, 1116, 1050, 1026, 564, 1110, 1105, 1025, 1093, 1055, 0, 1044, 0, 1057, 1056, 219, 1059, 1058, 1075, 0, 1191, 1176, 1172, 1189, 1090, 1223, 1117, 1171, 600); + protected $actionCheck = array(2, 3, 4, 5, 6, 7, 14, 9, 10, 11, 12, 13, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 0, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 9, 10, 11, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 69, 70, 53, 54, 55, 9, 10, 57, 30, 116, 32, 33, 34, 35, 36, 37, 38, 80, 69, 70, 83, 71, 72, 73, 74, 75, 76, 77, 135, 136, 80, 33, 34, 35, 36, 37, 38, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 31, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 13, 134, 135, 136, 137, 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, 148, 149, 150, 82, 12, 13, 160, 15, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 8, 44, 45, 46, 47, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 80, 33, 34, 35, 36, 50, 51, 13, 9, 10, 11, 56, 128, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 1, 70, 71, 72, 73, 59, 60, 37, 38, 78, 79, 80, 82, 82, 106, 85, 108, 86, 9, 10, 11, 161, 80, 1, 2, 44, 45, 46, 47, 48, 49, 50, 51, 52, 9, 10, 11, 106, 156, 30, 8, 32, 33, 34, 35, 36, 13, 116, 8, 153, 154, 155, 8, 122, 158, 30, 125, 126, 116, 117, 118, 119, 120, 121, 31, 134, 135, 156, 137, 138, 139, 140, 141, 142, 143, 145, 146, 8, 8, 133, 149, 150, 37, 38, 153, 154, 155, 9, 10, 11, 159, 8, 161, 162, 8, 164, 74, 75, 76, 77, 8, 13, 80, 0, 1, 2, 84, 158, 30, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 13, 98, 9, 10, 11, 9, 103, 104, 105, 106, 8, 70, 109, 110, 9, 10, 11, 8, 115, 116, 117, 118, 70, 30, 31, 37, 38, 124, 31, 8, 127, 128, 129, 130, 8, 30, 156, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 116, 117, 118, 119, 120, 121, 8, 82, 8, 74, 156, 157, 158, 33, 34, 80, 1, 2, 8, 84, 163, 82, 87, 88, 89, 133, 91, 70, 93, 152, 95, 108, 82, 98, 158, 8, 113, 160, 103, 104, 105, 106, 13, 108, 109, 110, 123, 122, 113, 157, 115, 116, 117, 118, 9, 10, 11, 156, 71, 124, 157, 122, 127, 128, 129, 130, 37, 38, 8, 82, 160, 156, 13, 134, 156, 30, 156, 32, 33, 34, 35, 158, 157, 148, 159, 122, 161, 80, 1, 74, 133, 156, 157, 158, 156, 80, 1, 2, 159, 84, 161, 82, 87, 88, 89, 157, 91, 157, 93, 122, 95, 161, 106, 98, 108, 100, 101, 102, 103, 104, 105, 106, 159, 116, 109, 110, 9, 10, 11, 13, 115, 116, 117, 118, 9, 10, 11, 160, 16, 124, 81, 122, 127, 128, 129, 130, 159, 30, 161, 32, 33, 34, 13, 134, 156, 30, 156, 32, 33, 153, 153, 154, 155, 70, 9, 10, 11, 80, 80, 74, 160, 156, 157, 158, 14, 80, 37, 38, 159, 84, 161, 152, 87, 88, 89, 30, 91, 160, 93, 14, 95, 37, 38, 98, 16, 100, 101, 102, 103, 104, 105, 106, 70, 82, 109, 110, 82, 33, 34, 35, 115, 116, 117, 118, 16, 1, 2, 10, 11, 124, 160, 85, 127, 128, 129, 130, 9, 10, 11, 82, 11, 14, 157, 9, 10, 11, 161, 30, 85, 53, 54, 55, 154, 57, 157, 31, 122, 30, 161, 30, 157, 156, 157, 158, 30, 69, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 144, 57, 161, 159, 16, 161, 1, 2, 74, 157, 16, 152, 157, 69, 80, 116, 161, 144, 84, 69, 70, 87, 88, 89, 16, 91, 16, 93, 161, 95, 75, 76, 98, 30, 135, 136, 31, 103, 104, 105, 1, 2, 31, 109, 110, 9, 10, 11, 31, 115, 116, 50, 51, 52, 50, 51, 52, 31, 124, 160, 75, 76, 101, 102, 111, 112, 30, 156, 157, 31, 31, 156, 157, 156, 157, 31, 31, 57, 38, 74, 33, 69, 80, 70, 70, 80, 70, 89, 70, 84, 156, 157, 87, 88, 89, 70, 91, 70, 93, 70, 95, 70, 96, 98, 71, 77, 82, 85, 103, 104, 105, 1, 2, 74, 109, 110, 82, 82, 97, 80, 115, 116, 85, 84, 92, 106, 87, 88, 89, 124, 91, 90, 93, 133, 95, 128, 94, 98, 147, 116, 97, 31, 103, 104, 105, 1, 2, 97, 109, 110, 97, 97, 100, 144, 115, 116, 100, 106, 128, 113, 161, 156, 157, 124, -1, -1, 151, -1, -1, 114, -1, -1, -1, -1, -1, 31, -1, -1, -1, 131, 131, -1, -1, -1, 74, -1, -1, -1, -1, 132, 80, 133, 133, 133, 84, 156, 157, 87, 88, 89, -1, 91, -1, 93, -1, 95, 144, -1, 98, -1, 147, 147, 147, 103, 104, 105, 1, 2, 74, 109, 110, 147, 147, 147, 80, 115, 116, 147, 84, 151, 153, 87, 88, 89, 124, 91, 31, 93, 152, 95, 156, 156, 98, 156, 156, 156, 156, 103, 104, 105, 156, 156, 156, 109, 110, 50, 51, 156, 156, 115, 116, 56, 156, 58, 156, 156, 156, 157, 124, 156, 156, 156, 156, 156, 156, 70, 156, 156, 156, 156, 156, 156, 156, 78, 79, 156, 158, 157, 157, 74, 157, 86, 157, 157, 157, 80, 157, 157, 157, 84, 156, 157, 87, 88, 89, 157, 91, 157, 93, 157, 95, 157, 157, 98, 158, 158, 158, 158, 103, 104, 105, 50, 51, 158, 109, 110, 158, 56, 158, 58, 115, 116, 158, 158, 158, 158, 158, 158, 158, 124, 135, 70, 137, 138, 139, 140, 141, 142, 143, 78, 79, 158, 158, 158, 149, 150, 158, 86, 158, 158, 158, 158, 158, 164, 159, 158, 158, 158, 158, 158, -1, 156, 157, 159, 162, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, -1, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 135, 160, 137, 138, 139, 140, 141, 142, 143, 160, 160, 160, 160, 160, 149, 150, 160, 160, 163, -1, 162, -1, 163, 163, 159, 163, 163, 163, -1, 163, 163, 163, 163, 163, 163, 163, 163, 163); + protected $actionBase = array(0, 229, 310, 390, 470, 103, 325, 325, 784, -2, -2, 149, -2, -2, -2, 660, 765, 799, 765, 589, 694, 870, 870, 870, 252, 404, 404, 404, 514, 177, 177, 918, 434, 118, 295, 313, 240, 491, 491, 491, 491, 138, 138, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, 89, 206, 773, 550, 535, 775, 776, 777, 912, 709, 913, 856, 857, 700, 858, 859, 862, 863, 864, 855, 865, 935, 866, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 322, 592, 285, 319, 232, 44, 691, 691, 691, 691, 691, 691, 691, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 582, 530, 530, 530, 594, 860, 658, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 500, -21, -21, 492, 702, 420, 355, 216, 549, 151, 26, 26, 331, 331, 331, 331, 331, 46, 46, 5, 5, 5, 5, 153, 188, 188, 188, 188, 121, 121, 121, 121, 314, 314, 394, 394, 362, 300, 298, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 67, 656, 656, 659, 659, 522, 554, 554, 554, 554, 679, -59, -59, 381, 462, 462, 462, 528, 717, 854, 382, 382, 382, 382, 382, 382, 561, 561, 561, -3, -3, -3, 692, 115, 137, 115, 137, 678, 732, 450, 732, 338, 677, -15, 510, 810, 468, 707, 850, 711, 853, 572, 735, 267, 529, 654, 674, 463, 529, 529, 529, 529, 654, 610, 640, 608, 463, 529, 463, 718, 323, 496, 89, 570, 507, 675, 778, 293, 670, 780, 290, 373, 332, 566, 278, 435, 733, 781, 914, 917, 385, 715, 675, 675, 675, 352, 511, 278, -8, 605, 605, 605, 605, 156, 605, 605, 605, 605, 251, 276, 375, 402, 779, 657, 657, 690, 872, 869, 869, 657, 689, 657, 690, 874, 874, 874, 874, 657, 657, 657, 657, 869, 869, 869, 688, 869, 239, 703, 704, 704, 874, 742, 743, 657, 657, 712, 869, 869, 869, 712, 695, 874, 701, 741, 277, 869, 874, 672, 689, 672, 657, 701, 672, 689, 689, 672, 22, 666, 668, 873, 875, 887, 790, 662, 685, 879, 880, 876, 878, 871, 699, 744, 745, 497, 669, 671, 673, 680, 719, 682, 713, 674, 667, 667, 667, 655, 720, 655, 667, 667, 667, 667, 667, 667, 667, 667, 916, 646, 731, 714, 653, 749, 553, 573, 791, 664, 811, 900, 893, 867, 919, 881, 898, 655, 920, 739, 247, 643, 882, 783, 786, 655, 883, 655, 792, 655, 902, 812, 686, 813, 814, 667, 910, 921, 923, 924, 925, 927, 928, 929, 930, 684, 931, 750, 696, 894, 299, 877, 718, 729, 705, 788, 751, 820, 328, 932, 823, 655, 655, 794, 785, 655, 795, 756, 740, 890, 757, 895, 933, 664, 708, 896, 655, 706, 825, 934, 328, 681, 683, 888, 661, 761, 886, 911, 885, 796, 649, 663, 829, 830, 831, 693, 763, 891, 892, 889, 764, 803, 665, 805, 697, 832, 807, 884, 768, 833, 834, 899, 676, 730, 710, 698, 687, 809, 835, 897, 769, 770, 771, 848, 772, 849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 138, 138, 138, -2, -2, -2, -2, 0, 0, -2, 0, 0, 0, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 0, 0, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 599, -21, -21, -21, -21, 599, -21, -21, -21, -21, -21, -21, -21, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, -21, 599, 599, 599, -21, 382, -21, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 599, 0, 0, 599, -21, 599, -21, 599, -21, -21, 599, 599, 599, 599, 599, 599, 599, -21, -21, -21, -21, -21, -21, 0, 561, 561, 561, 561, -21, -21, -21, -21, 382, 382, 382, 382, 382, 382, 259, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 561, 561, -3, -3, 382, 382, 382, 382, 382, 259, 382, 382, 463, 689, 689, 689, 137, 137, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 463, 0, 463, 0, 382, 463, 689, 463, 657, 137, 689, 689, 463, 869, 616, 616, 616, 616, 328, 278, 0, 0, 689, 689, 0, 0, 0, 0, 0, 689, 0, 0, 0, 0, 0, 0, 869, 0, 0, 0, 0, 0, 667, 247, 0, 705, 335, 0, 0, 0, 0, 0, 0, 705, 335, 347, 347, 0, 684, 667, 667, 667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328); + protected $actionDefault = array(3, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 544, 544, 499, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 299, 299, 299, 32767, 32767, 32767, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 32767, 32767, 32767, 32767, 32767, 32767, 383, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 389, 549, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 364, 365, 367, 368, 298, 552, 533, 247, 390, 548, 297, 249, 327, 503, 32767, 32767, 32767, 329, 122, 258, 203, 502, 125, 296, 234, 382, 384, 328, 303, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 302, 458, 361, 360, 359, 460, 32767, 459, 496, 496, 499, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 325, 487, 486, 326, 456, 330, 457, 333, 461, 464, 331, 332, 349, 350, 347, 348, 351, 462, 463, 480, 481, 478, 479, 301, 352, 353, 354, 355, 482, 483, 484, 485, 32767, 32767, 543, 543, 32767, 32767, 282, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 340, 341, 471, 472, 32767, 238, 238, 238, 238, 283, 238, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 335, 336, 334, 466, 467, 465, 432, 32767, 32767, 32767, 434, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 504, 32767, 32767, 32767, 32767, 32767, 517, 421, 171, 32767, 413, 32767, 171, 171, 171, 171, 32767, 222, 224, 167, 32767, 171, 32767, 490, 32767, 32767, 32767, 32767, 522, 345, 32767, 32767, 116, 32767, 32767, 32767, 559, 32767, 517, 32767, 116, 32767, 32767, 32767, 32767, 358, 337, 338, 339, 32767, 32767, 521, 515, 474, 475, 476, 477, 32767, 468, 469, 470, 473, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 429, 435, 435, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 520, 519, 32767, 414, 498, 188, 186, 186, 32767, 208, 208, 32767, 32767, 190, 491, 510, 32767, 190, 173, 32767, 400, 175, 498, 32767, 32767, 240, 32767, 240, 32767, 400, 240, 32767, 32767, 240, 32767, 415, 439, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 379, 380, 493, 506, 32767, 507, 32767, 413, 343, 344, 346, 322, 32767, 324, 369, 370, 371, 372, 373, 374, 375, 377, 32767, 419, 32767, 422, 32767, 32767, 32767, 257, 32767, 557, 32767, 32767, 306, 557, 32767, 32767, 32767, 551, 32767, 32767, 300, 32767, 32767, 32767, 32767, 253, 32767, 169, 32767, 541, 32767, 558, 32767, 515, 32767, 342, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 516, 32767, 32767, 32767, 32767, 229, 32767, 452, 32767, 116, 32767, 32767, 32767, 189, 32767, 32767, 304, 248, 32767, 32767, 550, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 114, 32767, 170, 32767, 32767, 32767, 191, 32767, 32767, 515, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 295, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 515, 32767, 32767, 233, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 415, 32767, 276, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 127, 127, 3, 127, 127, 260, 3, 260, 127, 260, 260, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 216, 219, 208, 208, 164, 127, 127, 268); + protected $goto = array(166, 140, 140, 140, 166, 187, 168, 144, 147, 141, 142, 143, 149, 163, 163, 163, 163, 144, 144, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 138, 159, 160, 161, 162, 184, 139, 185, 494, 495, 377, 496, 500, 501, 502, 503, 504, 505, 506, 507, 970, 164, 145, 146, 148, 171, 176, 186, 203, 253, 256, 258, 260, 263, 264, 265, 266, 267, 268, 269, 277, 278, 279, 280, 303, 304, 328, 329, 330, 394, 395, 396, 543, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 150, 151, 152, 167, 153, 169, 154, 204, 170, 155, 156, 157, 205, 158, 136, 621, 561, 757, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1113, 629, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 758, 520, 531, 509, 656, 556, 1183, 750, 509, 592, 786, 1183, 888, 612, 613, 884, 617, 618, 624, 626, 631, 633, 817, 855, 855, 855, 855, 850, 856, 174, 891, 891, 1205, 1205, 177, 178, 179, 401, 402, 403, 404, 173, 202, 206, 208, 257, 259, 261, 262, 270, 271, 272, 273, 274, 275, 281, 282, 283, 284, 305, 306, 331, 332, 333, 406, 407, 408, 409, 175, 180, 254, 255, 181, 182, 183, 498, 498, 498, 498, 498, 498, 861, 498, 498, 498, 498, 498, 498, 498, 498, 498, 498, 510, 586, 538, 601, 602, 510, 545, 546, 547, 548, 549, 550, 551, 552, 554, 587, 1209, 560, 350, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 400, 607, 537, 537, 569, 533, 909, 535, 535, 497, 499, 525, 541, 570, 573, 584, 591, 298, 296, 296, 296, 298, 289, 299, 611, 378, 511, 614, 595, 947, 375, 511, 437, 437, 437, 437, 437, 437, 1163, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 1077, 948, 338, 1175, 321, 1077, 898, 898, 898, 898, 606, 898, 898, 1217, 1217, 1202, 753, 576, 605, 756, 1077, 1077, 1077, 1077, 1077, 1077, 1069, 384, 384, 384, 391, 1217, 877, 859, 857, 859, 655, 466, 512, 886, 881, 753, 384, 753, 384, 968, 384, 895, 385, 588, 353, 414, 384, 1231, 1019, 542, 1197, 1197, 1197, 568, 1094, 386, 386, 386, 904, 915, 515, 1029, 19, 15, 372, 389, 915, 940, 448, 450, 632, 340, 1216, 1216, 1114, 615, 938, 840, 555, 775, 386, 913, 1070, 1073, 1074, 399, 1069, 1182, 660, 23, 1216, 773, 1182, 544, 603, 1066, 1219, 1071, 1174, 1071, 519, 1199, 1199, 1199, 1089, 1088, 1072, 343, 523, 534, 519, 519, 772, 351, 352, 13, 579, 583, 627, 1061, 388, 782, 562, 771, 515, 783, 1181, 3, 4, 918, 956, 865, 451, 574, 1160, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 529, 0, 0, 0, 0, 514, 0, 529, 0, 0, 0, 0, 610, 513, 516, 439, 440, 1067, 619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 780, 1224, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 301); + protected $gotoCheck = array(43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 57, 69, 15, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 128, 9, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 16, 102, 32, 69, 32, 32, 120, 6, 69, 32, 29, 120, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 50, 69, 69, 69, 69, 69, 69, 27, 77, 77, 77, 77, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 119, 119, 119, 119, 119, 119, 33, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 67, 110, 67, 67, 119, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 142, 57, 72, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 51, 51, 51, 51, 51, 51, 84, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 5, 5, 5, 5, 5, 5, 5, 63, 46, 124, 63, 129, 98, 63, 124, 57, 57, 57, 57, 57, 57, 133, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 98, 127, 82, 127, 57, 57, 57, 57, 57, 49, 57, 57, 144, 144, 140, 11, 40, 40, 14, 57, 57, 57, 57, 57, 57, 82, 13, 13, 13, 48, 144, 14, 14, 14, 14, 14, 57, 14, 14, 14, 11, 13, 11, 13, 102, 13, 79, 11, 70, 70, 70, 13, 13, 103, 2, 9, 9, 9, 2, 34, 125, 125, 125, 81, 13, 13, 34, 34, 34, 34, 17, 13, 8, 8, 8, 8, 18, 143, 143, 8, 8, 8, 9, 34, 25, 125, 85, 82, 82, 82, 125, 82, 121, 74, 34, 143, 24, 121, 47, 34, 116, 143, 82, 82, 82, 47, 121, 121, 121, 126, 126, 82, 58, 58, 58, 47, 47, 23, 72, 72, 58, 62, 62, 62, 114, 12, 23, 12, 23, 13, 26, 121, 30, 30, 86, 100, 71, 65, 66, 132, 109, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, 9, -1, -1, -1, -1, 9, -1, 9, -1, -1, -1, -1, 13, 9, 9, 9, 9, 13, 13, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, 9, -1, -1, -1, -1, -1, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 5); + protected $gotoBase = array(0, 0, -172, 0, 0, 353, 201, 0, 477, 149, 0, 110, 195, 117, 426, 112, 203, 140, 171, 0, 0, 0, 0, 168, 164, 157, 119, 27, 0, 205, -118, 0, -428, 266, 51, 0, 0, 0, 0, 0, 388, 0, 0, -24, 0, 0, 345, 484, 146, 133, 209, 75, 0, 0, 0, 0, 0, 107, 161, 0, 0, 0, 222, -77, 0, 106, 97, -343, 0, -94, 135, 123, -129, 0, 129, 0, 0, -50, 0, 143, 0, 159, 64, 0, 338, 132, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 0, 121, 0, 165, 156, 0, 0, 0, 0, 0, 87, 273, 259, 0, 0, 114, 0, 150, 0, 0, -5, -91, 200, 0, 0, 84, 154, 202, 77, -48, 178, 0, 0, 93, 187, 0, 0, 0, 0, 0, 0, 136, 0, 286, 167, 102, 0, 0); + protected $gotoDefault = array(-32768, 468, 664, 2, 665, 835, 740, 748, 598, 482, 630, 582, 380, 1193, 792, 793, 794, 381, 368, 483, 379, 410, 405, 781, 774, 776, 784, 172, 411, 787, 1, 789, 518, 825, 1020, 365, 797, 366, 590, 799, 527, 801, 802, 137, 382, 383, 528, 484, 390, 577, 816, 276, 387, 818, 367, 819, 828, 371, 465, 455, 460, 530, 557, 609, 432, 447, 571, 565, 536, 1086, 566, 864, 349, 872, 661, 880, 883, 485, 558, 894, 452, 902, 1099, 397, 908, 914, 919, 291, 922, 417, 412, 585, 927, 928, 5, 932, 622, 623, 8, 312, 955, 599, 969, 420, 1039, 1041, 486, 487, 522, 459, 508, 526, 488, 1062, 441, 413, 1065, 433, 489, 490, 434, 435, 1083, 355, 1168, 354, 449, 320, 1155, 580, 1118, 456, 1208, 1164, 348, 491, 492, 376, 1187, 392, 1203, 438, 1210, 1218, 344, 540, 567); + protected $ruleToNonTerminal = array(0, 1, 3, 3, 2, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 10, 11, 11, 12, 12, 13, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 18, 18, 19, 19, 21, 21, 17, 17, 22, 22, 23, 23, 24, 24, 25, 25, 20, 20, 26, 28, 28, 29, 30, 30, 32, 31, 31, 31, 31, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 14, 14, 54, 54, 56, 55, 55, 48, 48, 58, 58, 59, 59, 60, 60, 61, 61, 15, 16, 16, 16, 64, 64, 64, 65, 65, 68, 68, 66, 66, 70, 70, 41, 41, 50, 50, 53, 53, 53, 52, 52, 71, 42, 42, 42, 42, 72, 72, 73, 73, 74, 74, 39, 39, 35, 35, 75, 37, 37, 76, 36, 36, 38, 38, 49, 49, 49, 62, 62, 78, 78, 79, 79, 81, 81, 81, 80, 80, 63, 63, 82, 82, 82, 83, 83, 84, 84, 84, 44, 44, 85, 85, 85, 45, 45, 86, 86, 87, 87, 67, 88, 88, 88, 88, 93, 93, 94, 94, 95, 95, 95, 95, 95, 96, 97, 97, 92, 92, 89, 89, 91, 91, 99, 99, 98, 98, 98, 98, 98, 98, 90, 90, 101, 100, 100, 46, 46, 40, 40, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 34, 34, 47, 47, 106, 106, 107, 107, 107, 107, 113, 102, 102, 109, 109, 115, 115, 116, 117, 118, 118, 118, 118, 118, 118, 118, 69, 69, 57, 57, 57, 57, 103, 103, 122, 122, 119, 119, 123, 123, 123, 123, 104, 104, 104, 108, 108, 108, 114, 114, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 27, 27, 27, 27, 27, 27, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 112, 112, 105, 105, 105, 105, 129, 129, 132, 132, 131, 131, 133, 133, 51, 51, 51, 51, 135, 135, 134, 134, 134, 134, 134, 136, 136, 121, 121, 124, 124, 120, 120, 138, 137, 137, 137, 137, 125, 125, 125, 125, 111, 111, 126, 126, 126, 126, 77, 139, 139, 140, 140, 140, 110, 110, 141, 141, 142, 142, 142, 142, 142, 127, 127, 127, 127, 144, 145, 143, 143, 143, 143, 143, 143, 143, 146, 146, 146); + protected $ruleToLength = array(1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 4, 3, 4, 2, 3, 1, 1, 7, 6, 3, 1, 3, 1, 3, 1, 1, 3, 1, 3, 1, 2, 3, 1, 3, 3, 1, 3, 2, 0, 1, 1, 1, 1, 1, 3, 5, 8, 3, 5, 9, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 1, 2, 2, 5, 7, 9, 5, 6, 3, 3, 2, 2, 1, 1, 1, 0, 2, 8, 0, 4, 1, 3, 0, 1, 0, 1, 0, 1, 1, 1, 10, 7, 6, 5, 1, 2, 2, 0, 2, 0, 2, 0, 2, 1, 3, 1, 4, 1, 4, 1, 1, 4, 1, 3, 3, 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, 1, 4, 0, 2, 3, 0, 2, 4, 0, 2, 0, 3, 1, 2, 1, 1, 0, 1, 3, 4, 6, 1, 1, 1, 0, 1, 0, 2, 2, 3, 3, 1, 3, 1, 2, 2, 3, 1, 1, 2, 4, 3, 1, 1, 3, 2, 0, 1, 3, 3, 9, 3, 1, 3, 0, 2, 4, 5, 4, 4, 4, 3, 1, 1, 1, 3, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 3, 1, 0, 1, 1, 3, 3, 4, 4, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 5, 4, 3, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 3, 2, 1, 2, 10, 11, 3, 3, 2, 4, 4, 3, 4, 4, 4, 4, 7, 3, 2, 0, 4, 1, 3, 2, 1, 2, 2, 4, 6, 2, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 4, 4, 0, 2, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 3, 1, 4, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, 4, 3, 1, 3, 1, 1, 3, 3, 0, 2, 0, 1, 3, 1, 3, 1, 1, 1, 1, 1, 6, 4, 3, 4, 2, 4, 4, 1, 3, 1, 2, 1, 1, 4, 1, 1, 3, 6, 4, 4, 4, 4, 1, 4, 0, 1, 1, 3, 1, 1, 4, 3, 1, 1, 1, 0, 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, 2, 1, 2, 1, 1, 1, 4, 3, 3, 3, 6, 3, 1, 1, 1); + protected function initReduceCallbacks() { - if (self::$cacheVersion !== null) { - return self::$cacheVersion; - } - $buffer = []; - foreach ((new FileIteratorFacade())->getFilesAsArray(__DIR__, '.php') as $file) { - $buffer[] = $file; - $buffer[] = file_get_contents($file); - } - self::$cacheVersion = md5(implode("\x00", $buffer)); - return self::$cacheVersion; + $this->reduceCallbacks = [0 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 1 => function ($stackPos) { + $this->semValue = $this->handleNamespaces($this->semStack[$stackPos - (1 - 1)]); + }, 2 => function ($stackPos) { + if (is_array($this->semStack[$stackPos - (2 - 2)])) { + $this->semValue = array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + } else { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 3 => function ($stackPos) { + $this->semValue = array(); + }, 4 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 5 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 6 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 7 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 8 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 9 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 10 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 11 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 12 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 13 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 14 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 15 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 16 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 17 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 18 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 19 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 20 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 21 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 22 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 23 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 24 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 25 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 26 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 27 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 28 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 29 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 30 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 31 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 32 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 33 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 34 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 35 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 36 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 37 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 38 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 39 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 40 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 41 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 42 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 43 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 44 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 45 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 46 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 47 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 48 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 49 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 50 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 51 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 52 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 53 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 54 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 55 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 56 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 57 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 58 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 59 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 60 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 61 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 62 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 63 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 64 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 65 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 66 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 67 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 68 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 69 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 70 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 71 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 72 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 73 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 74 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 75 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 76 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 77 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 78 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 79 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 80 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 81 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 82 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 83 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 84 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 85 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 86 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 87 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 88 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 89 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 90 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 91 => function ($stackPos) { + $this->semValue = new Name(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 92 => function ($stackPos) { + $this->semValue = new Expr\Variable(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 93 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 94 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 95 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 96 => function ($stackPos) { + $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 97 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (3 - 2)], null, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON); + $this->checkNamespace($this->semValue); + }, 98 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos - (5 - 2)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); + $this->checkNamespace($this->semValue); + }, 99 => function ($stackPos) { + $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED); + $this->checkNamespace($this->semValue); + }, 100 => function ($stackPos) { + $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 101 => function ($stackPos) { + $this->semValue = new Stmt\Use_($this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 102 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 103 => function ($stackPos) { + $this->semValue = new Stmt\Const_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 104 => function ($stackPos) { + $this->semValue = Stmt\Use_::TYPE_FUNCTION; + }, 105 => function ($stackPos) { + $this->semValue = Stmt\Use_::TYPE_CONSTANT; + }, 106 => function ($stackPos) { + $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 6)], $this->semStack[$stackPos - (7 - 2)], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 107 => function ($stackPos) { + $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 108 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 109 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 110 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 111 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 112 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 113 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 114 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); + }, 115 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); + }, 116 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (1 - 1)); + }, 117 => function ($stackPos) { + $this->semValue = new Stmt\UseUse($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->checkUseUse($this->semValue, $stackPos - (3 - 3)); + }, 118 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + $this->semValue->type = Stmt\Use_::TYPE_NORMAL; + }, 119 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue->type = $this->semStack[$stackPos - (2 - 1)]; + }, 120 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 121 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 122 => function ($stackPos) { + $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 123 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 124 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 125 => function ($stackPos) { + $this->semValue = new Node\Const_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 126 => function ($stackPos) { + if (is_array($this->semStack[$stackPos - (2 - 2)])) { + $this->semValue = array_merge($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + } else { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 127 => function ($stackPos) { + $this->semValue = array(); + }, 128 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 129 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 130 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 131 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 132 => function ($stackPos) { + throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 133 => function ($stackPos) { + if ($this->semStack[$stackPos - (3 - 2)]) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)]; + $stmts = $this->semValue; + if (!empty($attrs['comments'])) { + $stmts[0]->setAttribute('comments', array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); + } + } else { + $startAttributes = $this->startAttributeStack[$stackPos - (3 - 1)]; + if (isset($startAttributes['comments'])) { + $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); + } else { + $this->semValue = null; + } + if (null === $this->semValue) { + $this->semValue = array(); + } + } + }, 134 => function ($stackPos) { + $this->semValue = new Stmt\If_($this->semStack[$stackPos - (5 - 2)], ['stmts' => is_array($this->semStack[$stackPos - (5 - 3)]) ? $this->semStack[$stackPos - (5 - 3)] : array($this->semStack[$stackPos - (5 - 3)]), 'elseifs' => $this->semStack[$stackPos - (5 - 4)], 'else' => $this->semStack[$stackPos - (5 - 5)]], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 135 => function ($stackPos) { + $this->semValue = new Stmt\If_($this->semStack[$stackPos - (8 - 2)], ['stmts' => $this->semStack[$stackPos - (8 - 4)], 'elseifs' => $this->semStack[$stackPos - (8 - 5)], 'else' => $this->semStack[$stackPos - (8 - 6)]], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 136 => function ($stackPos) { + $this->semValue = new Stmt\While_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 137 => function ($stackPos) { + $this->semValue = new Stmt\Do_($this->semStack[$stackPos - (5 - 4)], is_array($this->semStack[$stackPos - (5 - 2)]) ? $this->semStack[$stackPos - (5 - 2)] : array($this->semStack[$stackPos - (5 - 2)]), $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 138 => function ($stackPos) { + $this->semValue = new Stmt\For_(['init' => $this->semStack[$stackPos - (9 - 3)], 'cond' => $this->semStack[$stackPos - (9 - 5)], 'loop' => $this->semStack[$stackPos - (9 - 7)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 139 => function ($stackPos) { + $this->semValue = new Stmt\Switch_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 140 => function ($stackPos) { + $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 141 => function ($stackPos) { + $this->semValue = new Stmt\Break_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 142 => function ($stackPos) { + $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 143 => function ($stackPos) { + $this->semValue = new Stmt\Continue_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 144 => function ($stackPos) { + $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 145 => function ($stackPos) { + $this->semValue = new Stmt\Return_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 146 => function ($stackPos) { + $this->semValue = new Stmt\Global_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 147 => function ($stackPos) { + $this->semValue = new Stmt\Static_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 148 => function ($stackPos) { + $this->semValue = new Stmt\Echo_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 149 => function ($stackPos) { + $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 150 => function ($stackPos) { + $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 151 => function ($stackPos) { + $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 152 => function ($stackPos) { + $this->semValue = new Stmt\Unset_($this->semStack[$stackPos - (5 - 3)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 153 => function ($stackPos) { + $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (7 - 3)], $this->semStack[$stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$stackPos - (7 - 7)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + }, 154 => function ($stackPos) { + $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos - (9 - 3)], $this->semStack[$stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$stackPos - (9 - 5)], 'byRef' => $this->semStack[$stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + }, 155 => function ($stackPos) { + $this->semValue = new Stmt\Declare_($this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 156 => function ($stackPos) { + $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos - (6 - 3)], $this->semStack[$stackPos - (6 - 5)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + $this->checkTryCatch($this->semValue); + }, 157 => function ($stackPos) { + $this->semValue = new Stmt\Throw_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 158 => function ($stackPos) { + $this->semValue = new Stmt\Goto_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 159 => function ($stackPos) { + $this->semValue = new Stmt\Label($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 160 => function ($stackPos) { + $this->semValue = new Stmt\Expression($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 161 => function ($stackPos) { + $this->semValue = array(); + /* means: no statement */ + }, 162 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 163 => function ($stackPos) { + $startAttributes = $this->startAttributeStack[$stackPos - (1 - 1)]; + if (isset($startAttributes['comments'])) { + $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); + } else { + $this->semValue = null; + } + if ($this->semValue === null) { + $this->semValue = array(); + } + /* means: no statement */ + }, 164 => function ($stackPos) { + $this->semValue = array(); + }, 165 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 166 => function ($stackPos) { + $this->semValue = new Stmt\Catch_(array($this->semStack[$stackPos - (8 - 3)]), $this->semStack[$stackPos - (8 - 4)], $this->semStack[$stackPos - (8 - 7)], $this->startAttributeStack[$stackPos - (8 - 1)] + $this->endAttributes); + }, 167 => function ($stackPos) { + $this->semValue = null; + }, 168 => function ($stackPos) { + $this->semValue = new Stmt\Finally_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 169 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 170 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 171 => function ($stackPos) { + $this->semValue = \false; + }, 172 => function ($stackPos) { + $this->semValue = \true; + }, 173 => function ($stackPos) { + $this->semValue = \false; + }, 174 => function ($stackPos) { + $this->semValue = \true; + }, 175 => function ($stackPos) { + $this->semValue = \false; + }, 176 => function ($stackPos) { + $this->semValue = \true; + }, 177 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 178 => function ($stackPos) { + $this->semValue = new Node\Identifier($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 179 => function ($stackPos) { + $this->semValue = new Stmt\Function_($this->semStack[$stackPos - (10 - 3)], ['byRef' => $this->semStack[$stackPos - (10 - 2)], 'params' => $this->semStack[$stackPos - (10 - 5)], 'returnType' => $this->semStack[$stackPos - (10 - 7)], 'stmts' => $this->semStack[$stackPos - (10 - 9)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + }, 180 => function ($stackPos) { + $this->semValue = new Stmt\Class_($this->semStack[$stackPos - (7 - 2)], ['type' => $this->semStack[$stackPos - (7 - 1)], 'extends' => $this->semStack[$stackPos - (7 - 3)], 'implements' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes); + $this->checkClass($this->semValue, $stackPos - (7 - 2)); + }, 181 => function ($stackPos) { + $this->semValue = new Stmt\Interface_($this->semStack[$stackPos - (6 - 2)], ['extends' => $this->semStack[$stackPos - (6 - 3)], 'stmts' => $this->semStack[$stackPos - (6 - 5)]], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + $this->checkInterface($this->semValue, $stackPos - (6 - 2)); + }, 182 => function ($stackPos) { + $this->semValue = new Stmt\Trait_($this->semStack[$stackPos - (5 - 2)], ['stmts' => $this->semStack[$stackPos - (5 - 4)]], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 183 => function ($stackPos) { + $this->semValue = 0; + }, 184 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; + }, 185 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_FINAL; + }, 186 => function ($stackPos) { + $this->semValue = null; + }, 187 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 188 => function ($stackPos) { + $this->semValue = array(); + }, 189 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 190 => function ($stackPos) { + $this->semValue = array(); + }, 191 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 192 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 193 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 194 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 195 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 196 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 197 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 198 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 199 => function ($stackPos) { + $this->semValue = null; + }, 200 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 201 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 202 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 203 => function ($stackPos) { + $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 204 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 205 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 3)]; + }, 206 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 207 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (5 - 3)]; + }, 208 => function ($stackPos) { + $this->semValue = array(); + }, 209 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 210 => function ($stackPos) { + $this->semValue = new Stmt\Case_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 211 => function ($stackPos) { + $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 212 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 213 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 214 => function ($stackPos) { + $this->semValue = is_array($this->semStack[$stackPos - (1 - 1)]) ? $this->semStack[$stackPos - (1 - 1)] : array($this->semStack[$stackPos - (1 - 1)]); + }, 215 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 2)]; + }, 216 => function ($stackPos) { + $this->semValue = array(); + }, 217 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 218 => function ($stackPos) { + $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (3 - 2)], is_array($this->semStack[$stackPos - (3 - 3)]) ? $this->semStack[$stackPos - (3 - 3)] : array($this->semStack[$stackPos - (3 - 3)]), $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 219 => function ($stackPos) { + $this->semValue = array(); + }, 220 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 221 => function ($stackPos) { + $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 222 => function ($stackPos) { + $this->semValue = null; + }, 223 => function ($stackPos) { + $this->semValue = new Stmt\Else_(is_array($this->semStack[$stackPos - (2 - 2)]) ? $this->semStack[$stackPos - (2 - 2)] : array($this->semStack[$stackPos - (2 - 2)]), $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 224 => function ($stackPos) { + $this->semValue = null; + }, 225 => function ($stackPos) { + $this->semValue = new Stmt\Else_($this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 226 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); + }, 227 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (2 - 2)], \true); + }, 228 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)], \false); + }, 229 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 230 => function ($stackPos) { + $this->semValue = array(); + }, 231 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 232 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 233 => function ($stackPos) { + $this->semValue = new Node\Param($this->semStack[$stackPos - (4 - 4)], null, $this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 2)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + $this->checkParam($this->semValue); + }, 234 => function ($stackPos) { + $this->semValue = new Node\Param($this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 6)], $this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 3)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + $this->checkParam($this->semValue); + }, 235 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 236 => function ($stackPos) { + $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 237 => function ($stackPos) { + $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 238 => function ($stackPos) { + $this->semValue = null; + }, 239 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 240 => function ($stackPos) { + $this->semValue = null; + }, 241 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 2)]; + }, 242 => function ($stackPos) { + $this->semValue = array(); + }, 243 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 244 => function ($stackPos) { + $this->semValue = array(new Node\Arg($this->semStack[$stackPos - (3 - 2)], \false, \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes)); + }, 245 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 246 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 247 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (1 - 1)], \false, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 248 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \true, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 249 => function ($stackPos) { + $this->semValue = new Node\Arg($this->semStack[$stackPos - (2 - 2)], \false, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 250 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 251 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 252 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 253 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 254 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 255 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 256 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 257 => function ($stackPos) { + $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 258 => function ($stackPos) { + $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 259 => function ($stackPos) { + if ($this->semStack[$stackPos - (2 - 2)] !== null) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } else { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + } + }, 260 => function ($stackPos) { + $this->semValue = array(); + }, 261 => function ($stackPos) { + $startAttributes = $this->lookaheadStartAttributes; + if (isset($startAttributes['comments'])) { + $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); + } else { + $nop = null; + } + if ($nop !== null) { + $this->semStack[$stackPos - (1 - 1)][] = $nop; + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 262 => function ($stackPos) { + $this->semValue = new Stmt\Property($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + $this->checkProperty($this->semValue, $stackPos - (3 - 1)); + }, 263 => function ($stackPos) { + $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos - (3 - 2)], 0, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 264 => function ($stackPos) { + $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos - (9 - 4)], ['type' => $this->semStack[$stackPos - (9 - 1)], 'byRef' => $this->semStack[$stackPos - (9 - 3)], 'params' => $this->semStack[$stackPos - (9 - 6)], 'returnType' => $this->semStack[$stackPos - (9 - 8)], 'stmts' => $this->semStack[$stackPos - (9 - 9)]], $this->startAttributeStack[$stackPos - (9 - 1)] + $this->endAttributes); + $this->checkClassMethod($this->semValue, $stackPos - (9 - 1)); + }, 265 => function ($stackPos) { + $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 266 => function ($stackPos) { + $this->semValue = array(); + }, 267 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 268 => function ($stackPos) { + $this->semValue = array(); + }, 269 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 270 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 271 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (5 - 1)][0], $this->semStack[$stackPos - (5 - 1)][1], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 4)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 272 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], $this->semStack[$stackPos - (4 - 3)], null, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 273 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 274 => function ($stackPos) { + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos - (4 - 1)][0], $this->semStack[$stackPos - (4 - 1)][1], null, $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 275 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)]); + }, 276 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 277 => function ($stackPos) { + $this->semValue = array(null, $this->semStack[$stackPos - (1 - 1)]); + }, 278 => function ($stackPos) { + $this->semValue = null; + }, 279 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 280 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 281 => function ($stackPos) { + $this->semValue = 0; + }, 282 => function ($stackPos) { + $this->semValue = 0; + }, 283 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 284 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 285 => function ($stackPos) { + $this->checkModifier($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $stackPos - (2 - 2)); + $this->semValue = $this->semStack[$stackPos - (2 - 1)] | $this->semStack[$stackPos - (2 - 2)]; + }, 286 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PUBLIC; + }, 287 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PROTECTED; + }, 288 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_PRIVATE; + }, 289 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_STATIC; + }, 290 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT; + }, 291 => function ($stackPos) { + $this->semValue = Stmt\Class_::MODIFIER_FINAL; + }, 292 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 293 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 294 => function ($stackPos) { + $this->semValue = new Node\VarLikeIdentifier(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 295 => function ($stackPos) { + $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (1 - 1)], null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 296 => function ($stackPos) { + $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 297 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 298 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 299 => function ($stackPos) { + $this->semValue = array(); + }, 300 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 301 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 302 => function ($stackPos) { + $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 303 => function ($stackPos) { + $this->semValue = new Expr\Assign($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 304 => function ($stackPos) { + $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 305 => function ($stackPos) { + $this->semValue = new Expr\AssignRef($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 306 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 307 => function ($stackPos) { + $this->semValue = new Expr\Clone_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 308 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 309 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 310 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 311 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 312 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 313 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 314 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 315 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 316 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 317 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 318 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 319 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 320 => function ($stackPos) { + $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 321 => function ($stackPos) { + $this->semValue = new Expr\PostInc($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 322 => function ($stackPos) { + $this->semValue = new Expr\PreInc($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 323 => function ($stackPos) { + $this->semValue = new Expr\PostDec($this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 324 => function ($stackPos) { + $this->semValue = new Expr\PreDec($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 325 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 326 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 327 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 328 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 329 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 330 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 331 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 332 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 333 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 334 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 335 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 336 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 337 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 338 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 339 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 340 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 341 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 342 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 343 => function ($stackPos) { + $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 344 => function ($stackPos) { + $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 345 => function ($stackPos) { + $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 346 => function ($stackPos) { + $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 347 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 348 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 349 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 350 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 351 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 352 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 353 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 354 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 355 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 356 => function ($stackPos) { + $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 357 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 358 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 359 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 360 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 361 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 362 => function ($stackPos) { + $this->semValue = new Expr\Isset_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 363 => function ($stackPos) { + $this->semValue = new Expr\Empty_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 364 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 365 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 366 => function ($stackPos) { + $this->semValue = new Expr\Eval_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 367 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 368 => function ($stackPos) { + $this->semValue = new Expr\Include_($this->semStack[$stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 369 => function ($stackPos) { + $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 370 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; + $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos - (2 - 1)]); + $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos - (2 - 2)], $attrs); + }, 371 => function ($stackPos) { + $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 372 => function ($stackPos) { + $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 373 => function ($stackPos) { + $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 374 => function ($stackPos) { + $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 375 => function ($stackPos) { + $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 376 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes; + $attrs['kind'] = strtolower($this->semStack[$stackPos - (2 - 1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE; + $this->semValue = new Expr\Exit_($this->semStack[$stackPos - (2 - 2)], $attrs); + }, 377 => function ($stackPos) { + $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 378 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 379 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 380 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 381 => function ($stackPos) { + $this->semValue = new Expr\ShellExec($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 382 => function ($stackPos) { + $this->semValue = new Expr\Print_($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 383 => function ($stackPos) { + $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 384 => function ($stackPos) { + $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 385 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \false, 'byRef' => $this->semStack[$stackPos - (10 - 2)], 'params' => $this->semStack[$stackPos - (10 - 4)], 'uses' => $this->semStack[$stackPos - (10 - 6)], 'returnType' => $this->semStack[$stackPos - (10 - 7)], 'stmts' => $this->semStack[$stackPos - (10 - 9)]], $this->startAttributeStack[$stackPos - (10 - 1)] + $this->endAttributes); + }, 386 => function ($stackPos) { + $this->semValue = new Expr\Closure(['static' => \true, 'byRef' => $this->semStack[$stackPos - (11 - 3)], 'params' => $this->semStack[$stackPos - (11 - 5)], 'uses' => $this->semStack[$stackPos - (11 - 7)], 'returnType' => $this->semStack[$stackPos - (11 - 8)], 'stmts' => $this->semStack[$stackPos - (11 - 10)]], $this->startAttributeStack[$stackPos - (11 - 1)] + $this->endAttributes); + }, 387 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 388 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 389 => function ($stackPos) { + $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (2 - 2)], null, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 390 => function ($stackPos) { + $this->semValue = new Expr\Yield_($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 2)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 391 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes; + $attrs['kind'] = Expr\Array_::KIND_LONG; + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $attrs); + }, 392 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; + $attrs['kind'] = Expr\Array_::KIND_SHORT; + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $attrs); + }, 393 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 394 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch(Scalar\String_::fromString($this->semStack[$stackPos - (4 - 1)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 395 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 396 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 397 => function ($stackPos) { + $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$stackPos - (7 - 3)], 'implements' => $this->semStack[$stackPos - (7 - 4)], 'stmts' => $this->semStack[$stackPos - (7 - 6)]], $this->startAttributeStack[$stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$stackPos - (7 - 2)]); + $this->checkClass($this->semValue[0], -1); + }, 398 => function ($stackPos) { + $this->semValue = new Expr\New_($this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 399 => function ($stackPos) { + list($class, $ctorArgs) = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 400 => function ($stackPos) { + $this->semValue = array(); + }, 401 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (4 - 3)]; + }, 402 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 403 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 404 => function ($stackPos) { + $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos - (2 - 2)], $this->semStack[$stackPos - (2 - 1)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 405 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 406 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 407 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 408 => function ($stackPos) { + $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 409 => function ($stackPos) { + $this->semValue = new Expr\StaticCall($this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 4)], $this->semStack[$stackPos - (6 - 6)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 410 => function ($stackPos) { + $this->semValue = $this->fixupPhp5StaticPropCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 411 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 412 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 413 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 414 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 415 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 416 => function ($stackPos) { + $this->semValue = new Name($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 417 => function ($stackPos) { + $this->semValue = new Name\FullyQualified(substr($this->semStack[$stackPos - (1 - 1)], 1), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 418 => function ($stackPos) { + $this->semValue = new Name\Relative(substr($this->semStack[$stackPos - (1 - 1)], 10), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 419 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 420 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 421 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 422 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 423 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 424 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 425 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 426 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 427 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 428 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 429 => function ($stackPos) { + $this->semValue = null; + }, 430 => function ($stackPos) { + $this->semValue = null; + }, 431 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 432 => function ($stackPos) { + $this->semValue = array(); + }, 433 => function ($stackPos) { + $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos - (1 - 1)], '`', \false), $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes)); + }, 434 => function ($stackPos) { + foreach ($this->semStack[$stackPos - (1 - 1)] as $s) { + if ($s instanceof Node\Scalar\EncapsedStringPart) { + $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', \false); + } + } + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 435 => function ($stackPos) { + $this->semValue = array(); + }, 436 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 437 => function ($stackPos) { + $this->semValue = $this->parseLNumber($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes, \true); + }, 438 => function ($stackPos) { + $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 439 => function ($stackPos) { + $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes, \false); + }, 440 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 441 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 442 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 443 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 444 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 445 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 446 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 447 => function ($stackPos) { + $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 448 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \false); + }, 449 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (2 - 1)], '', $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (2 - 2)] + $this->endAttributeStack[$stackPos - (2 - 2)], \false); + }, 450 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 451 => function ($stackPos) { + $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 452 => function ($stackPos) { + $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 453 => function ($stackPos) { + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 454 => function ($stackPos) { + $this->semValue = new Expr\Array_($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 455 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 456 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 457 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 458 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 459 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 460 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 461 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 462 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 463 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 464 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 465 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 466 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 467 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 468 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 469 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 470 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 471 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 472 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 473 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 474 => function ($stackPos) { + $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 475 => function ($stackPos) { + $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 476 => function ($stackPos) { + $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 477 => function ($stackPos) { + $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 478 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 479 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 480 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 481 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 482 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 483 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 484 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 485 => function ($stackPos) { + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 486 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (5 - 1)], $this->semStack[$stackPos - (5 - 3)], $this->semStack[$stackPos - (5 - 5)], $this->startAttributeStack[$stackPos - (5 - 1)] + $this->endAttributes); + }, 487 => function ($stackPos) { + $this->semValue = new Expr\Ternary($this->semStack[$stackPos - (4 - 1)], null, $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 488 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 489 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 490 => function ($stackPos) { + $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 491 => function ($stackPos) { + $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 492 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 493 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 494 => function ($stackPos) { + $attrs = $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes; + $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED; + foreach ($this->semStack[$stackPos - (3 - 2)] as $s) { + if ($s instanceof Node\Scalar\EncapsedStringPart) { + $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', \true); + } + } + $this->semValue = new Scalar\Encapsed($this->semStack[$stackPos - (3 - 2)], $attrs); + }, 495 => function ($stackPos) { + $this->semValue = $this->parseDocString($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 2)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes, $this->startAttributeStack[$stackPos - (3 - 3)] + $this->endAttributeStack[$stackPos - (3 - 3)], \true); + }, 496 => function ($stackPos) { + $this->semValue = array(); + }, 497 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 498 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 499 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos]; + }, 500 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 501 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 502 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 503 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 504 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 505 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 506 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 507 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 508 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 509 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 510 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 511 => function ($stackPos) { + $this->semValue = new Expr\MethodCall($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 512 => function ($stackPos) { + $this->semValue = new Expr\FuncCall($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 513 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 514 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 515 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 516 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 517 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 518 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (2 - 2)], $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 519 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 520 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 521 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 4)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 522 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 523 => function ($stackPos) { + $var = substr($this->semStack[$stackPos - (1 - 1)], 1); + $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes) : $var; + }, 524 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 525 => function ($stackPos) { + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos - (6 - 1)], $this->semStack[$stackPos - (6 - 5)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 526 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 527 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 528 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 529 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 530 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 531 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 532 => function ($stackPos) { + $this->semValue = null; + }, 533 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 534 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 535 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 536 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 537 => function ($stackPos) { + $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + $this->errorState = 2; + }, 538 => function ($stackPos) { + $this->semValue = new Expr\List_($this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 539 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 540 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 541 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 542 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 543 => function ($stackPos) { + $this->semValue = null; + }, 544 => function ($stackPos) { + $this->semValue = array(); + }, 545 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 546 => function ($stackPos) { + $this->semStack[$stackPos - (3 - 1)][] = $this->semStack[$stackPos - (3 - 3)]; + $this->semValue = $this->semStack[$stackPos - (3 - 1)]; + }, 547 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 548 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (3 - 3)], $this->semStack[$stackPos - (3 - 1)], \false, $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 549 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (1 - 1)], null, \false, $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 550 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (4 - 4)], $this->semStack[$stackPos - (4 - 1)], \true, $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 551 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \true, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes); + }, 552 => function ($stackPos) { + $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos - (2 - 2)], null, \false, $this->startAttributeStack[$stackPos - (2 - 1)] + $this->endAttributes, \true); + }, 553 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 554 => function ($stackPos) { + $this->semStack[$stackPos - (2 - 1)][] = $this->semStack[$stackPos - (2 - 2)]; + $this->semValue = $this->semStack[$stackPos - (2 - 1)]; + }, 555 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (1 - 1)]); + }, 556 => function ($stackPos) { + $this->semValue = array($this->semStack[$stackPos - (2 - 1)], $this->semStack[$stackPos - (2 - 2)]); + }, 557 => function ($stackPos) { + $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 558 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 559 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }, 560 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (4 - 1)], $this->semStack[$stackPos - (4 - 3)], $this->startAttributeStack[$stackPos - (4 - 1)] + $this->endAttributes); + }, 561 => function ($stackPos) { + $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos - (3 - 1)], $this->semStack[$stackPos - (3 - 3)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 562 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 563 => function ($stackPos) { + $this->semValue = new Expr\Variable($this->semStack[$stackPos - (3 - 2)], $this->startAttributeStack[$stackPos - (3 - 1)] + $this->endAttributes); + }, 564 => function ($stackPos) { + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos - (6 - 2)], $this->semStack[$stackPos - (6 - 4)], $this->startAttributeStack[$stackPos - (6 - 1)] + $this->endAttributes); + }, 565 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (3 - 2)]; + }, 566 => function ($stackPos) { + $this->semValue = new Scalar\String_($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 567 => function ($stackPos) { + $this->semValue = $this->parseNumString($this->semStack[$stackPos - (1 - 1)], $this->startAttributeStack[$stackPos - (1 - 1)] + $this->endAttributes); + }, 568 => function ($stackPos) { + $this->semValue = $this->semStack[$stackPos - (1 - 1)]; + }]; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; +namespace PHPUnitPHAR\PhpParser; -use function implode; -use function rtrim; -use function trim; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\ComplexType; -use PHPUnit\PhpParser\Node\Identifier; -use PHPUnit\PhpParser\Node\IntersectionType; -use PHPUnit\PhpParser\Node\Name; -use PHPUnit\PhpParser\Node\NullableType; -use PHPUnit\PhpParser\Node\Stmt\Class_; -use PHPUnit\PhpParser\Node\Stmt\ClassMethod; -use PHPUnit\PhpParser\Node\Stmt\Enum_; -use PHPUnit\PhpParser\Node\Stmt\Function_; -use PHPUnit\PhpParser\Node\Stmt\Interface_; -use PHPUnit\PhpParser\Node\Stmt\Trait_; -use PHPUnit\PhpParser\Node\UnionType; -use PHPUnit\PhpParser\NodeTraverser; -use PHPUnit\PhpParser\NodeVisitorAbstract; -use PHPUnit\SebastianBergmann\Complexity\CyclomaticComplexityCalculatingVisitor; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class CodeUnitFindingVisitor extends NodeVisitorAbstract +abstract class NodeAbstract implements Node, \JsonSerializable { + protected $attributes; /** - * @psalm-var array}> - */ - private $classes = []; - /** - * @psalm-var array}> - */ - private $traits = []; - /** - * @psalm-var array - */ - private $functions = []; - public function enterNode(Node $node) : void - { - if ($node instanceof Class_) { - if ($node->isAnonymous()) { - return; - } - $this->processClass($node); - } - if ($node instanceof Trait_) { - $this->processTrait($node); - } - if (!$node instanceof ClassMethod && !$node instanceof Function_) { - return; - } - if ($node instanceof ClassMethod) { - $parentNode = $node->getAttribute('parent'); - if ($parentNode instanceof Class_ && $parentNode->isAnonymous()) { - return; - } - $this->processMethod($node); - return; - } - $this->processFunction($node); - } - /** - * @psalm-return array}> - */ - public function classes() : array - { - return $this->classes; - } - /** - * @psalm-return array}> + * Creates a Node. + * + * @param array $attributes Array of attributes */ - public function traits() : array + public function __construct(array $attributes = []) { - return $this->traits; + $this->attributes = $attributes; } /** - * @psalm-return array + * Gets line the node started in (alias of getStartLine). + * + * @return int Start line (or -1 if not available) */ - public function functions() : array + public function getLine(): int { - return $this->functions; + return $this->attributes['startLine'] ?? -1; } /** - * @psalm-param ClassMethod|Function_ $node + * Gets line the node started in. + * + * Requires the 'startLine' attribute to be enabled in the lexer (enabled by default). + * + * @return int Start line (or -1 if not available) */ - private function cyclomaticComplexity(Node $node) : int + public function getStartLine(): int { - \assert($node instanceof ClassMethod || $node instanceof Function_); - $nodes = $node->getStmts(); - if ($nodes === null) { - return 0; - } - $traverser = new NodeTraverser(); - $cyclomaticComplexityCalculatingVisitor = new CyclomaticComplexityCalculatingVisitor(); - $traverser->addVisitor($cyclomaticComplexityCalculatingVisitor); - /* @noinspection UnusedFunctionResultInspection */ - $traverser->traverse($nodes); - return $cyclomaticComplexityCalculatingVisitor->cyclomaticComplexity(); + return $this->attributes['startLine'] ?? -1; } /** - * @psalm-param ClassMethod|Function_ $node + * Gets the line the node ended in. + * + * Requires the 'endLine' attribute to be enabled in the lexer (enabled by default). + * + * @return int End line (or -1 if not available) */ - private function signature(Node $node) : string + public function getEndLine(): int { - \assert($node instanceof ClassMethod || $node instanceof Function_); - $signature = ($node->returnsByRef() ? '&' : '') . $node->name->toString() . '('; - $parameters = []; - foreach ($node->getParams() as $parameter) { - \assert(isset($parameter->var->name)); - $parameterAsString = ''; - if ($parameter->type !== null) { - $parameterAsString = $this->type($parameter->type) . ' '; - } - $parameterAsString .= '$' . $parameter->var->name; - /* @todo Handle default values */ - $parameters[] = $parameterAsString; - } - $signature .= implode(', ', $parameters) . ')'; - $returnType = $node->getReturnType(); - if ($returnType !== null) { - $signature .= ': ' . $this->type($returnType); - } - return $signature; + return $this->attributes['endLine'] ?? -1; } /** - * @psalm-param Identifier|Name|ComplexType $type - */ - private function type(Node $type) : string - { - \assert($type instanceof Identifier || $type instanceof Name || $type instanceof ComplexType); - if ($type instanceof NullableType) { - return '?' . $type->type; - } - if ($type instanceof UnionType || $type instanceof IntersectionType) { - return $this->unionOrIntersectionAsString($type); - } - return $type->toString(); - } - private function visibility(ClassMethod $node) : string - { - if ($node->isPrivate()) { - return 'private'; - } - if ($node->isProtected()) { - return 'protected'; - } - return 'public'; - } - private function processClass(Class_ $node) : void - { - $name = $node->name->toString(); - $namespacedName = $node->namespacedName->toString(); - $this->classes[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'methods' => []]; - } - private function processTrait(Trait_ $node) : void - { - $name = $node->name->toString(); - $namespacedName = $node->namespacedName->toString(); - $this->traits[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'methods' => []]; - } - private function processMethod(ClassMethod $node) : void - { - $parentNode = $node->getAttribute('parent'); - if ($parentNode instanceof Interface_) { - return; - } - \assert($parentNode instanceof Class_ || $parentNode instanceof Trait_ || $parentNode instanceof Enum_); - \assert(isset($parentNode->name)); - \assert(isset($parentNode->namespacedName)); - \assert($parentNode->namespacedName instanceof Name); - $parentName = $parentNode->name->toString(); - $parentNamespacedName = $parentNode->namespacedName->toString(); - if ($parentNode instanceof Class_) { - $storage =& $this->classes; - } else { - $storage =& $this->traits; - } - if (!isset($storage[$parentNamespacedName])) { - $storage[$parentNamespacedName] = ['name' => $parentName, 'namespacedName' => $parentNamespacedName, 'namespace' => $this->namespace($parentNamespacedName, $parentName), 'startLine' => $parentNode->getStartLine(), 'endLine' => $parentNode->getEndLine(), 'methods' => []]; - } - $storage[$parentNamespacedName]['methods'][$node->name->toString()] = ['methodName' => $node->name->toString(), 'signature' => $this->signature($node), 'visibility' => $this->visibility($node), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'ccn' => $this->cyclomaticComplexity($node)]; - } - private function processFunction(Function_ $node) : void + * Gets the token offset of the first token that is part of this node. + * + * The offset is an index into the array returned by Lexer::getTokens(). + * + * Requires the 'startTokenPos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int Token start position (or -1 if not available) + */ + public function getStartTokenPos(): int { - \assert(isset($node->name)); - \assert(isset($node->namespacedName)); - \assert($node->namespacedName instanceof Name); - $name = $node->name->toString(); - $namespacedName = $node->namespacedName->toString(); - $this->functions[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'signature' => $this->signature($node), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'ccn' => $this->cyclomaticComplexity($node)]; + return $this->attributes['startTokenPos'] ?? -1; } - private function namespace(string $namespacedName, string $name) : string + /** + * Gets the token offset of the last token that is part of this node. + * + * The offset is an index into the array returned by Lexer::getTokens(). + * + * Requires the 'endTokenPos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int Token end position (or -1 if not available) + */ + public function getEndTokenPos(): int { - return trim(rtrim($namespacedName, $name), '\\'); + return $this->attributes['endTokenPos'] ?? -1; } /** - * @psalm-param UnionType|IntersectionType $type + * Gets the file offset of the first character that is part of this node. + * + * Requires the 'startFilePos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int File start position (or -1 if not available) */ - private function unionOrIntersectionAsString(ComplexType $type) : string + public function getStartFilePos(): int { - if ($type instanceof UnionType) { - $separator = '|'; - } else { - $separator = '&'; - } - $types = []; - foreach ($type->types as $_type) { - if ($_type instanceof Name) { - $types[] = $_type->toCodeString(); - } else { - $types[] = $_type->toString(); - } - } - return implode($separator, $types); + return $this->attributes['startFilePos'] ?? -1; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; - -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Expr\Array_; -use PHPUnit\PhpParser\Node\Expr\ArrayDimFetch; -use PHPUnit\PhpParser\Node\Expr\ArrayItem; -use PHPUnit\PhpParser\Node\Expr\Assign; -use PHPUnit\PhpParser\Node\Expr\BinaryOp; -use PHPUnit\PhpParser\Node\Expr\CallLike; -use PHPUnit\PhpParser\Node\Expr\Cast; -use PHPUnit\PhpParser\Node\Expr\Closure; -use PHPUnit\PhpParser\Node\Expr\Match_; -use PHPUnit\PhpParser\Node\Expr\MethodCall; -use PHPUnit\PhpParser\Node\Expr\NullsafePropertyFetch; -use PHPUnit\PhpParser\Node\Expr\PropertyFetch; -use PHPUnit\PhpParser\Node\Expr\StaticPropertyFetch; -use PHPUnit\PhpParser\Node\Expr\Ternary; -use PHPUnit\PhpParser\Node\MatchArm; -use PHPUnit\PhpParser\Node\Scalar\Encapsed; -use PHPUnit\PhpParser\Node\Stmt\Break_; -use PHPUnit\PhpParser\Node\Stmt\Case_; -use PHPUnit\PhpParser\Node\Stmt\Catch_; -use PHPUnit\PhpParser\Node\Stmt\Class_; -use PHPUnit\PhpParser\Node\Stmt\ClassMethod; -use PHPUnit\PhpParser\Node\Stmt\Continue_; -use PHPUnit\PhpParser\Node\Stmt\Do_; -use PHPUnit\PhpParser\Node\Stmt\Echo_; -use PHPUnit\PhpParser\Node\Stmt\Else_; -use PHPUnit\PhpParser\Node\Stmt\ElseIf_; -use PHPUnit\PhpParser\Node\Stmt\Expression; -use PHPUnit\PhpParser\Node\Stmt\Finally_; -use PHPUnit\PhpParser\Node\Stmt\For_; -use PHPUnit\PhpParser\Node\Stmt\Foreach_; -use PHPUnit\PhpParser\Node\Stmt\Goto_; -use PHPUnit\PhpParser\Node\Stmt\If_; -use PHPUnit\PhpParser\Node\Stmt\Property; -use PHPUnit\PhpParser\Node\Stmt\Return_; -use PHPUnit\PhpParser\Node\Stmt\Switch_; -use PHPUnit\PhpParser\Node\Stmt\Throw_; -use PHPUnit\PhpParser\Node\Stmt\TryCatch; -use PHPUnit\PhpParser\Node\Stmt\Unset_; -use PHPUnit\PhpParser\Node\Stmt\While_; -use PHPUnit\PhpParser\NodeVisitorAbstract; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class ExecutableLinesFindingVisitor extends NodeVisitorAbstract -{ /** - * @psalm-var array + * Gets the file offset of the last character that is part of this node. + * + * Requires the 'endFilePos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int File end position (or -1 if not available) */ - private $executableLines = []; + public function getEndFilePos(): int + { + return $this->attributes['endFilePos'] ?? -1; + } /** - * @psalm-var array + * Gets all comments directly preceding this node. + * + * The comments are also available through the "comments" attribute. + * + * @return Comment[] */ - private $propertyLines = []; + public function getComments(): array + { + return $this->attributes['comments'] ?? []; + } /** - * @psalm-var array + * Gets the doc comment of the node. + * + * @return null|Comment\Doc Doc comment object or null */ - private $returns = []; - public function enterNode(Node $node) : void + public function getDocComment() { - $this->savePropertyLines($node); - if (!$this->isExecutable($node)) { - return; - } - foreach ($this->getLines($node) as $line) { - if (isset($this->propertyLines[$line])) { - return; + $comments = $this->getComments(); + for ($i = count($comments) - 1; $i >= 0; $i--) { + $comment = $comments[$i]; + if ($comment instanceof Comment\Doc) { + return $comment; } - $this->executableLines[$line] = $line; } + return null; } /** - * @psalm-return array + * Sets the doc comment of the node. + * + * This will either replace an existing doc comment or add it to the comments array. + * + * @param Comment\Doc $docComment Doc comment to set */ - public function executableLines() : array + public function setDocComment(Comment\Doc $docComment) { - $this->computeReturns(); - \sort($this->executableLines); - return $this->executableLines; + $comments = $this->getComments(); + for ($i = count($comments) - 1; $i >= 0; $i--) { + if ($comments[$i] instanceof Comment\Doc) { + // Replace existing doc comment. + $comments[$i] = $docComment; + $this->setAttribute('comments', $comments); + return; + } + } + // Append new doc comment. + $comments[] = $docComment; + $this->setAttribute('comments', $comments); } - private function savePropertyLines(Node $node) : void + public function setAttribute(string $key, $value) { - if (!$node instanceof Property && !$node instanceof Node\Stmt\ClassConst) { - return; - } - foreach (\range($node->getStartLine(), $node->getEndLine()) as $index) { - $this->propertyLines[$index] = $index; - } + $this->attributes[$key] = $value; } - private function computeReturns() : void + public function hasAttribute(string $key): bool { - foreach ($this->returns as $return) { - foreach (\range($return->getStartLine(), $return->getEndLine()) as $loc) { - if (isset($this->executableLines[$loc])) { - continue 2; - } - } - $line = $return->getEndLine(); - if ($return->expr !== null) { - $line = $return->expr->getStartLine(); - } - $this->executableLines[$line] = $line; - } + return array_key_exists($key, $this->attributes); } - /** - * @return int[] - */ - private function getLines(Node $node) : array + public function getAttribute(string $key, $default = null) { - if ($node instanceof BinaryOp) { - if (($node->left instanceof Node\Scalar || $node->left instanceof Node\Expr\ConstFetch) && ($node->right instanceof Node\Scalar || $node->right instanceof Node\Expr\ConstFetch)) { - return [$node->right->getStartLine()]; - } - return []; - } - if ($node instanceof Cast || $node instanceof PropertyFetch || $node instanceof NullsafePropertyFetch || $node instanceof StaticPropertyFetch) { - return [$node->getEndLine()]; - } - if ($node instanceof ArrayDimFetch) { - if (null === $node->dim) { - return []; - } - return [$node->dim->getStartLine()]; - } - if ($node instanceof Array_) { - $startLine = $node->getStartLine(); - if (isset($this->executableLines[$startLine])) { - return []; - } - if ([] === $node->items) { - return [$node->getEndLine()]; - } - if ($node->items[0] instanceof ArrayItem) { - return [$node->items[0]->getStartLine()]; - } - } - if ($node instanceof ClassMethod) { - if ($node->name->name !== '__construct') { - return []; - } - $existsAPromotedProperty = \false; - foreach ($node->getParams() as $param) { - if (0 !== ($param->flags & Class_::VISIBILITY_MODIFIER_MASK)) { - $existsAPromotedProperty = \true; - break; - } - } - if ($existsAPromotedProperty) { - // Only the line with `function` keyword should be listed here - // but `nikic/php-parser` doesn't provide a way to fetch it - return \range($node->getStartLine(), $node->name->getEndLine()); - } - return []; - } - if ($node instanceof MethodCall) { - return [$node->name->getStartLine()]; - } - if ($node instanceof Ternary) { - $lines = [$node->cond->getStartLine()]; - if (null !== $node->if) { - $lines[] = $node->if->getStartLine(); - } - $lines[] = $node->else->getStartLine(); - return $lines; - } - if ($node instanceof Match_) { - return [$node->cond->getStartLine()]; - } - if ($node instanceof MatchArm) { - return [$node->body->getStartLine()]; - } - if ($node instanceof Expression && ($node->expr instanceof Cast || $node->expr instanceof Match_ || $node->expr instanceof MethodCall)) { - return []; - } - if ($node instanceof Return_) { - $this->returns[] = $node; - return []; + if (array_key_exists($key, $this->attributes)) { + return $this->attributes[$key]; } - return [$node->getStartLine()]; + return $default; } - private function isExecutable(Node $node) : bool + public function getAttributes(): array { - return $node instanceof Assign || $node instanceof ArrayDimFetch || $node instanceof Array_ || $node instanceof BinaryOp || $node instanceof Break_ || $node instanceof CallLike || $node instanceof Case_ || $node instanceof Cast || $node instanceof Catch_ || $node instanceof ClassMethod || $node instanceof Closure || $node instanceof Continue_ || $node instanceof Do_ || $node instanceof Echo_ || $node instanceof ElseIf_ || $node instanceof Else_ || $node instanceof Encapsed || $node instanceof Expression || $node instanceof Finally_ || $node instanceof For_ || $node instanceof Foreach_ || $node instanceof Goto_ || $node instanceof If_ || $node instanceof Match_ || $node instanceof MatchArm || $node instanceof MethodCall || $node instanceof NullsafePropertyFetch || $node instanceof PropertyFetch || $node instanceof Return_ || $node instanceof StaticPropertyFetch || $node instanceof Switch_ || $node instanceof Ternary || $node instanceof Throw_ || $node instanceof TryCatch || $node instanceof Unset_ || $node instanceof While_; + return $this->attributes; + } + public function setAttributes(array $attributes) + { + $this->attributes = $attributes; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; - -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -interface FileAnalyser -{ - public function classesIn(string $filename) : array; - public function traitsIn(string $filename) : array; - public function functionsIn(string $filename) : array; /** - * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + * @return array */ - public function linesOfCodeFor(string $filename) : array; - public function executableLinesIn(string $filename) : array; - public function ignoredLinesFor(string $filename) : array; + public function jsonSerialize(): array + { + return ['nodeType' => $this->getType()] + get_object_vars($this); + } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; +namespace PHPUnitPHAR\PhpParser; -use function array_merge; -use function assert; -use function range; -use function strpos; -use PHPUnit\PhpParser\Node; -use PHPUnit\PhpParser\Node\Attribute; -use PHPUnit\PhpParser\Node\Stmt\Class_; -use PHPUnit\PhpParser\Node\Stmt\ClassMethod; -use PHPUnit\PhpParser\Node\Stmt\Function_; -use PHPUnit\PhpParser\Node\Stmt\Interface_; -use PHPUnit\PhpParser\Node\Stmt\Trait_; -use PHPUnit\PhpParser\NodeVisitorAbstract; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class IgnoredLinesFindingVisitor extends NodeVisitorAbstract +interface Node { /** - * @psalm-var list + * Gets the type of the node. + * + * @return string Type of the node */ - private $ignoredLines = []; + public function getType(): string; /** - * @var bool + * Gets the names of the sub nodes. + * + * @return array Names of sub nodes */ - private $useAnnotationsForIgnoringCode; + public function getSubNodeNames(): array; /** - * @var bool + * Gets line the node started in (alias of getStartLine). + * + * @return int Start line (or -1 if not available) */ - private $ignoreDeprecated; - public function __construct(bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecated) - { - $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode; - $this->ignoreDeprecated = $ignoreDeprecated; - } - public function enterNode(Node $node) : void - { - if (!$node instanceof Class_ && !$node instanceof Trait_ && !$node instanceof Interface_ && !$node instanceof ClassMethod && !$node instanceof Function_ && !$node instanceof Attribute) { - return; - } - if ($node instanceof Class_ && $node->isAnonymous()) { - return; - } - if ($node instanceof Class_ || $node instanceof Trait_ || $node instanceof Interface_ || $node instanceof Attribute) { - $this->ignoredLines[] = $node->getStartLine(); - assert($node->name !== null); - // Workaround for https://github.com/nikic/PHP-Parser/issues/886 - $this->ignoredLines[] = $node->name->getStartLine(); - } - if (!$this->useAnnotationsForIgnoringCode) { - return; - } - if ($node instanceof Interface_) { - return; - } - $this->processDocComment($node); - } + public function getLine(): int; /** - * @psalm-return list + * Gets line the node started in. + * + * Requires the 'startLine' attribute to be enabled in the lexer (enabled by default). + * + * @return int Start line (or -1 if not available) */ - public function ignoredLines() : array - { - return $this->ignoredLines; - } - private function processDocComment(Node $node) : void - { - $docComment = $node->getDocComment(); - if ($docComment === null) { - return; - } - if (strpos($docComment->getText(), '@codeCoverageIgnore') !== \false) { - $this->ignoredLines = array_merge($this->ignoredLines, range($node->getStartLine(), $node->getEndLine())); - } - if ($this->ignoreDeprecated && strpos($docComment->getText(), '@deprecated') !== \false) { - $this->ignoredLines = array_merge($this->ignoredLines, range($node->getStartLine(), $node->getEndLine())); - } - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\StaticAnalysis; - -use function array_unique; -use function assert; -use function file_get_contents; -use function is_array; -use function max; -use function sprintf; -use function substr_count; -use function token_get_all; -use function trim; -use PHPUnit\PhpParser\Error; -use PHPUnit\PhpParser\Lexer; -use PHPUnit\PhpParser\NodeTraverser; -use PHPUnit\PhpParser\NodeVisitor\NameResolver; -use PHPUnit\PhpParser\NodeVisitor\ParentConnectingVisitor; -use PHPUnit\PhpParser\ParserFactory; -use PHPUnit\SebastianBergmann\CodeCoverage\ParserException; -use PHPUnit\SebastianBergmann\LinesOfCode\LineCountingVisitor; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class ParsingFileAnalyser implements FileAnalyser -{ + public function getStartLine(): int; /** - * @var array + * Gets the line the node ended in. + * + * Requires the 'endLine' attribute to be enabled in the lexer (enabled by default). + * + * @return int End line (or -1 if not available) */ - private $classes = []; + public function getEndLine(): int; /** - * @var array + * Gets the token offset of the first token that is part of this node. + * + * The offset is an index into the array returned by Lexer::getTokens(). + * + * Requires the 'startTokenPos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int Token start position (or -1 if not available) */ - private $traits = []; + public function getStartTokenPos(): int; /** - * @var array + * Gets the token offset of the last token that is part of this node. + * + * The offset is an index into the array returned by Lexer::getTokens(). + * + * Requires the 'endTokenPos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int Token end position (or -1 if not available) */ - private $functions = []; + public function getEndTokenPos(): int; /** - * @var array + * Gets the file offset of the first character that is part of this node. + * + * Requires the 'startFilePos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int File start position (or -1 if not available) */ - private $linesOfCode = []; + public function getStartFilePos(): int; /** - * @var array + * Gets the file offset of the last character that is part of this node. + * + * Requires the 'endFilePos' attribute to be enabled in the lexer (DISABLED by default). + * + * @return int File end position (or -1 if not available) */ - private $ignoredLines = []; + public function getEndFilePos(): int; /** - * @var array + * Gets all comments directly preceding this node. + * + * The comments are also available through the "comments" attribute. + * + * @return Comment[] */ - private $executableLines = []; + public function getComments(): array; /** - * @var bool + * Gets the doc comment of the node. + * + * @return null|Comment\Doc Doc comment object or null */ - private $useAnnotationsForIgnoringCode; + public function getDocComment(); /** - * @var bool + * Sets the doc comment of the node. + * + * This will either replace an existing doc comment or add it to the comments array. + * + * @param Comment\Doc $docComment Doc comment to set */ - private $ignoreDeprecatedCode; - public function __construct(bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode) - { - $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode; - $this->ignoreDeprecatedCode = $ignoreDeprecatedCode; - } - public function classesIn(string $filename) : array - { - $this->analyse($filename); - return $this->classes[$filename]; - } - public function traitsIn(string $filename) : array - { - $this->analyse($filename); - return $this->traits[$filename]; - } - public function functionsIn(string $filename) : array - { - $this->analyse($filename); - return $this->functions[$filename]; - } + public function setDocComment(Comment\Doc $docComment); /** - * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + * Sets an attribute on a node. + * + * @param string $key + * @param mixed $value */ - public function linesOfCodeFor(string $filename) : array - { - $this->analyse($filename); - return $this->linesOfCode[$filename]; - } - public function executableLinesIn(string $filename) : array - { - $this->analyse($filename); - return $this->executableLines[$filename]; - } - public function ignoredLinesFor(string $filename) : array - { - $this->analyse($filename); - return $this->ignoredLines[$filename]; - } + public function setAttribute(string $key, $value); /** - * @throws ParserException + * Returns whether an attribute exists. + * + * @param string $key + * + * @return bool */ - private function analyse(string $filename) : void - { - if (isset($this->classes[$filename])) { - return; - } - $source = file_get_contents($filename); - $linesOfCode = max(substr_count($source, "\n") + 1, substr_count($source, "\r") + 1); - if ($linesOfCode === 0 && !empty($source)) { - $linesOfCode = 1; - } - $parser = (new ParserFactory())->create(ParserFactory::PREFER_PHP7, new Lexer()); - try { - $nodes = $parser->parse($source); - assert($nodes !== null); - $traverser = new NodeTraverser(); - $codeUnitFindingVisitor = new CodeUnitFindingVisitor(); - $lineCountingVisitor = new LineCountingVisitor($linesOfCode); - $ignoredLinesFindingVisitor = new IgnoredLinesFindingVisitor($this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode); - $executableLinesFindingVisitor = new ExecutableLinesFindingVisitor(); - $traverser->addVisitor(new NameResolver()); - $traverser->addVisitor(new ParentConnectingVisitor()); - $traverser->addVisitor($codeUnitFindingVisitor); - $traverser->addVisitor($lineCountingVisitor); - $traverser->addVisitor($ignoredLinesFindingVisitor); - $traverser->addVisitor($executableLinesFindingVisitor); - /* @noinspection UnusedFunctionResultInspection */ - $traverser->traverse($nodes); - // @codeCoverageIgnoreStart - } catch (Error $error) { - throw new ParserException(sprintf('Cannot parse %s: %s', $filename, $error->getMessage()), (int) $error->getCode(), $error); - } - // @codeCoverageIgnoreEnd - $this->classes[$filename] = $codeUnitFindingVisitor->classes(); - $this->traits[$filename] = $codeUnitFindingVisitor->traits(); - $this->functions[$filename] = $codeUnitFindingVisitor->functions(); - $this->executableLines[$filename] = $executableLinesFindingVisitor->executableLines(); - $this->ignoredLines[$filename] = []; - $this->findLinesIgnoredByLineBasedAnnotations($filename, $source, $this->useAnnotationsForIgnoringCode); - $this->ignoredLines[$filename] = array_unique(\array_merge($this->ignoredLines[$filename], $ignoredLinesFindingVisitor->ignoredLines())); - \sort($this->ignoredLines[$filename]); - $result = $lineCountingVisitor->result(); - $this->linesOfCode[$filename] = ['linesOfCode' => $result->linesOfCode(), 'commentLinesOfCode' => $result->commentLinesOfCode(), 'nonCommentLinesOfCode' => $result->nonCommentLinesOfCode()]; - } - private function findLinesIgnoredByLineBasedAnnotations(string $filename, string $source, bool $useAnnotationsForIgnoringCode) : void - { - $ignore = \false; - $stop = \false; - foreach (token_get_all($source) as $token) { - if (!is_array($token)) { - continue; - } - switch ($token[0]) { - case \T_COMMENT: - case \T_DOC_COMMENT: - if (!$useAnnotationsForIgnoringCode) { - break; - } - $comment = trim($token[1]); - if ($comment === '// @codeCoverageIgnore' || $comment === '//@codeCoverageIgnore') { - $ignore = \true; - $stop = \true; - } elseif ($comment === '// @codeCoverageIgnoreStart' || $comment === '//@codeCoverageIgnoreStart') { - $ignore = \true; - } elseif ($comment === '// @codeCoverageIgnoreEnd' || $comment === '//@codeCoverageIgnoreEnd') { - $stop = \true; - } - break; - } - if ($ignore) { - $this->ignoredLines[$filename][] = $token[2]; - if ($stop) { - $ignore = \false; - $stop = \false; - } - } - } - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Util; - -use function is_dir; -use function mkdir; -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Filesystem -{ + public function hasAttribute(string $key): bool; /** - * @throws DirectoryCouldNotBeCreatedException + * Returns the value of an attribute. + * + * @param string $key + * @param mixed $default + * + * @return mixed */ - public static function createDirectory(string $directory) : void - { - $success = !(!is_dir($directory) && !@mkdir($directory, 0777, \true) && !is_dir($directory)); - if (!$success) { - throw new DirectoryCouldNotBeCreatedException(sprintf('Directory "%s" could not be created', $directory)); - } - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\CodeCoverage\Util; - -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage - */ -final class Percentage -{ + public function getAttribute(string $key, $default = null); /** - * @var float + * Returns all the attributes of this node. + * + * @return array */ - private $fraction; + public function getAttributes(): array; /** - * @var float - */ - private $total; - public static function fromFractionAndTotal(float $fraction, float $total) : self - { - return new self($fraction, $total); - } - private function __construct(float $fraction, float $total) - { - $this->fraction = $fraction; - $this->total = $total; - } - public function asFloat() : float - { - if ($this->total > 0) { - return $this->fraction / $this->total * 100; - } - return 100.0; - } - public function asString() : string - { - if ($this->total > 0) { - return sprintf('%01.2F%%', $this->asFloat()); - } - return ''; - } - public function asFixedWidthString() : string - { - if ($this->total > 0) { - return sprintf('%6.2F%%', $this->asFloat()); - } - return ''; - } + * Replaces all the attributes of this node. + * + * @param array $attributes + */ + public function setAttributes(array $attributes); } +namespace PHPUnitPHAR\PhpParser\ErrorHandler; + +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\ErrorHandler; +/** + * Error handler that handles all errors by throwing them. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * This is the default strategy used by all components. */ -namespace PHPUnit\SebastianBergmann\CodeCoverage; - -use function dirname; -use PHPUnit\SebastianBergmann\Version as VersionId; -final class Version +class Throwing implements ErrorHandler { - /** - * @var string - */ - private static $version; - public static function id() : string + public function handleError(Error $error) { - if (self::$version === null) { - self::$version = (new VersionId('9.2.18', dirname(__DIR__)))->getVersion(); - } - return self::$version; + throw $error; } } +namespace PHPUnitPHAR\PhpParser\ErrorHandler; + +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\ErrorHandler; +/** + * Error handler that collects all errors into an array. * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. + * This allows graceful handling of errors. */ -namespace PHPUnit\SebastianBergmann\FileIterator; - -use const DIRECTORY_SEPARATOR; -use function array_unique; -use function count; -use function dirname; -use function explode; -use function is_file; -use function is_string; -use function realpath; -use function sort; -class Facade +class Collecting implements ErrorHandler { + /** @var Error[] Collected errors */ + private $errors = []; + public function handleError(Error $error) + { + $this->errors[] = $error; + } /** - * @param array|string $paths - * @param array|string $suffixes - * @param array|string $prefixes + * Get collected errors. + * + * @return Error[] */ - public function getFilesAsArray($paths, $suffixes = '', $prefixes = '', array $exclude = [], bool $commonPath = \false) : array + public function getErrors(): array { - if (is_string($paths)) { - $paths = [$paths]; - } - $iterator = (new Factory())->getFileIterator($paths, $suffixes, $prefixes, $exclude); - $files = []; - foreach ($iterator as $file) { - $file = $file->getRealPath(); - if ($file) { - $files[] = $file; - } - } - foreach ($paths as $path) { - if (is_file($path)) { - $files[] = realpath($path); - } - } - $files = array_unique($files); - sort($files); - if ($commonPath) { - return ['commonPath' => $this->getCommonPath($files), 'files' => $files]; - } - return $files; + return $this->errors; } - protected function getCommonPath(array $files) : string + /** + * Check whether there are any errors. + * + * @return bool + */ + public function hasErrors(): bool { - $count = count($files); - if ($count === 0) { - return ''; - } - if ($count === 1) { - return dirname($files[0]) . DIRECTORY_SEPARATOR; - } - $_files = []; - foreach ($files as $file) { - $_files[] = $_fileParts = explode(DIRECTORY_SEPARATOR, $file); - if (empty($_fileParts[0])) { - $_fileParts[0] = DIRECTORY_SEPARATOR; - } - } - $common = ''; - $done = \false; - $j = 0; - $count--; - while (!$done) { - for ($i = 0; $i < $count; $i++) { - if ($_files[$i][$j] != $_files[$i + 1][$j]) { - $done = \true; - break; - } - } - if (!$done) { - $common .= $_files[0][$j]; - if ($j > 0) { - $common .= DIRECTORY_SEPARATOR; - } - } - $j++; - } - return DIRECTORY_SEPARATOR . $common; + return !empty($this->errors); + } + /** + * Reset/clear collected errors. + */ + public function clearErrors() + { + $this->errors = []; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\FileIterator; +namespace PHPUnitPHAR\PhpParser; -use const GLOB_ONLYDIR; -use function array_filter; -use function array_map; -use function array_merge; -use function glob; -use function is_dir; -use function is_string; -use function realpath; -use AppendIterator; -use RecursiveDirectoryIterator; -use RecursiveIteratorIterator; -class Factory +class JsonDecoder { - /** - * @param array|string $paths - * @param array|string $suffixes - * @param array|string $prefixes - */ - public function getFileIterator($paths, $suffixes = '', $prefixes = '', array $exclude = []) : AppendIterator + /** @var \ReflectionClass[] Node type to reflection class map */ + private $reflectionClassCache; + public function decode(string $json) { - if (is_string($paths)) { - $paths = [$paths]; - } - $paths = $this->getPathsAfterResolvingWildcards($paths); - $exclude = $this->getPathsAfterResolvingWildcards($exclude); - if (is_string($prefixes)) { - if ($prefixes !== '') { - $prefixes = [$prefixes]; - } else { - $prefixes = []; - } - } - if (is_string($suffixes)) { - if ($suffixes !== '') { - $suffixes = [$suffixes]; - } else { - $suffixes = []; - } - } - $iterator = new AppendIterator(); - foreach ($paths as $path) { - if (is_dir($path)) { - $iterator->append(new Iterator($path, new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::FOLLOW_SYMLINKS | RecursiveDirectoryIterator::SKIP_DOTS)), $suffixes, $prefixes, $exclude)); - } + $value = json_decode($json, \true); + if (json_last_error()) { + throw new \RuntimeException('JSON decoding error: ' . json_last_error_msg()); } - return $iterator; + return $this->decodeRecursive($value); } - protected function getPathsAfterResolvingWildcards(array $paths) : array + private function decodeRecursive($value) { - $_paths = [[]]; - foreach ($paths as $path) { - if ($locals = glob($path, GLOB_ONLYDIR)) { - $_paths[] = array_map('\\realpath', $locals); - } else { - $_paths[] = [realpath($path)]; + if (\is_array($value)) { + if (isset($value['nodeType'])) { + if ($value['nodeType'] === 'Comment' || $value['nodeType'] === 'Comment_Doc') { + return $this->decodeComment($value); + } + return $this->decodeNode($value); } + return $this->decodeArray($value); } - return array_filter(array_merge(...$_paths)); - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\FileIterator; - -use function array_filter; -use function array_map; -use function preg_match; -use function realpath; -use function str_replace; -use function strlen; -use function strpos; -use function substr; -use FilterIterator; -class Iterator extends FilterIterator -{ - public const PREFIX = 0; - public const SUFFIX = 1; - /** - * @var string - */ - private $basePath; - /** - * @var array - */ - private $suffixes = []; - /** - * @var array - */ - private $prefixes = []; - /** - * @var array - */ - private $exclude = []; - public function __construct(string $basePath, \Iterator $iterator, array $suffixes = [], array $prefixes = [], array $exclude = []) - { - $this->basePath = realpath($basePath); - $this->prefixes = $prefixes; - $this->suffixes = $suffixes; - $this->exclude = array_filter(array_map('realpath', $exclude)); - parent::__construct($iterator); + return $value; } - public function accept() : bool + private function decodeArray(array $array): array { - $current = $this->getInnerIterator()->current(); - $filename = $current->getFilename(); - $realPath = $current->getRealPath(); - if ($realPath === \false) { - return \false; + $decodedArray = []; + foreach ($array as $key => $value) { + $decodedArray[$key] = $this->decodeRecursive($value); } - return $this->acceptPath($realPath) && $this->acceptPrefix($filename) && $this->acceptSuffix($filename); + return $decodedArray; } - private function acceptPath(string $path) : bool + private function decodeNode(array $value): Node { - // Filter files in hidden directories by checking path that is relative to the base path. - if (preg_match('=/\\.[^/]*/=', str_replace($this->basePath, '', $path))) { - return \false; + $nodeType = $value['nodeType']; + if (!\is_string($nodeType)) { + throw new \RuntimeException('Node type must be a string'); } - foreach ($this->exclude as $exclude) { - if (strpos($path, $exclude) === 0) { - return \false; + $reflectionClass = $this->reflectionClassFromNodeType($nodeType); + /** @var Node $node */ + $node = $reflectionClass->newInstanceWithoutConstructor(); + if (isset($value['attributes'])) { + if (!\is_array($value['attributes'])) { + throw new \RuntimeException('Attributes must be an array'); } + $node->setAttributes($this->decodeArray($value['attributes'])); } - return \true; + foreach ($value as $name => $subNode) { + if ($name === 'nodeType' || $name === 'attributes') { + continue; + } + $node->{$name} = $this->decodeRecursive($subNode); + } + return $node; } - private function acceptPrefix(string $filename) : bool + private function decodeComment(array $value): Comment { - return $this->acceptSubString($filename, $this->prefixes, self::PREFIX); + $className = $value['nodeType'] === 'Comment' ? Comment::class : Comment\Doc::class; + if (!isset($value['text'])) { + throw new \RuntimeException('Comment must have text'); + } + return new $className($value['text'], $value['line'] ?? -1, $value['filePos'] ?? -1, $value['tokenPos'] ?? -1, $value['endLine'] ?? -1, $value['endFilePos'] ?? -1, $value['endTokenPos'] ?? -1); } - private function acceptSuffix(string $filename) : bool + private function reflectionClassFromNodeType(string $nodeType): \ReflectionClass { - return $this->acceptSubString($filename, $this->suffixes, self::SUFFIX); + if (!isset($this->reflectionClassCache[$nodeType])) { + $className = $this->classNameFromNodeType($nodeType); + $this->reflectionClassCache[$nodeType] = new \ReflectionClass($className); + } + return $this->reflectionClassCache[$nodeType]; } - private function acceptSubString(string $filename, array $subStrings, int $type) : bool + private function classNameFromNodeType(string $nodeType): string { - if (empty($subStrings)) { - return \true; + $className = 'PhpParser\Node\\' . strtr($nodeType, '_', '\\'); + if (class_exists($className)) { + return $className; } - $matched = \false; - foreach ($subStrings as $string) { - if ($type === self::PREFIX && strpos($filename, $string) === 0 || $type === self::SUFFIX && substr($filename, -1 * strlen($string)) === $string) { - $matched = \true; - break; - } + $className .= '_'; + if (class_exists($className)) { + return $className; } - return $matched; + throw new \RuntimeException("Unknown node type \"{$nodeType}\""); } } -php-file-iterator - -Copyright (c) 2009-2021, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Invoker; +namespace PHPUnitPHAR\PhpParser; -use const SIGALRM; -use function call_user_func_array; -use function function_exists; -use function pcntl_alarm; -use function pcntl_async_signals; -use function pcntl_signal; -use function sprintf; -use Throwable; -final class Invoker +class Error extends \RuntimeException { + protected $rawMessage; + protected $attributes; /** - * @var int + * Creates an Exception signifying a parse error. + * + * @param string $message Error message + * @param array|int $attributes Attributes of node/token where error occurred + * (or start line of error -- deprecated) */ - private $timeout; + public function __construct(string $message, $attributes = []) + { + $this->rawMessage = $message; + if (is_array($attributes)) { + $this->attributes = $attributes; + } else { + $this->attributes = ['startLine' => $attributes]; + } + $this->updateMessage(); + } /** - * @throws Throwable + * Gets the error message + * + * @return string Error message */ - public function invoke(callable $callable, array $arguments, int $timeout) + public function getRawMessage(): string { - if (!$this->canInvokeWithTimeout()) { - throw new ProcessControlExtensionNotLoadedException('The pcntl (process control) extension for PHP is required'); - } - pcntl_signal(SIGALRM, function () : void { - throw new TimeoutException(sprintf('Execution aborted after %d second%s', $this->timeout, $this->timeout === 1 ? '' : 's')); - }, \true); - $this->timeout = $timeout; - pcntl_async_signals(\true); - pcntl_alarm($timeout); - try { - return call_user_func_array($callable, $arguments); - } finally { - pcntl_alarm(0); - } + return $this->rawMessage; } - public function canInvokeWithTimeout() : bool + /** + * Gets the line the error starts in. + * + * @return int Error start line + */ + public function getStartLine(): int { - return function_exists('pcntl_signal') && function_exists('pcntl_async_signals') && function_exists('pcntl_alarm'); + return $this->attributes['startLine'] ?? -1; + } + /** + * Gets the line the error ends in. + * + * @return int Error end line + */ + public function getEndLine(): int + { + return $this->attributes['endLine'] ?? -1; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Invoker; - -use Throwable; -interface Exception extends Throwable -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Invoker; - -use RuntimeException; -final class ProcessControlExtensionNotLoadedException extends RuntimeException implements Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Invoker; - -use RuntimeException; -final class TimeoutException extends RuntimeException implements Exception -{ -} -phpunit/php-text-template - -Copyright (c) 2009-2020, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Template; - -use function array_merge; -use function file_exists; -use function file_get_contents; -use function file_put_contents; -use function sprintf; -use function str_replace; -final class Template -{ /** - * @var string + * Gets the attributes of the node/token the error occurred at. + * + * @return array */ - private $template = ''; + public function getAttributes(): array + { + return $this->attributes; + } /** - * @var string + * Sets the attributes of the node/token the error occurred at. + * + * @param array $attributes */ - private $openDelimiter; + public function setAttributes(array $attributes) + { + $this->attributes = $attributes; + $this->updateMessage(); + } /** - * @var string + * Sets the line of the PHP file the error occurred in. + * + * @param string $message Error message */ - private $closeDelimiter; + public function setRawMessage(string $message) + { + $this->rawMessage = $message; + $this->updateMessage(); + } /** - * @var array + * Sets the line the error starts in. + * + * @param int $line Error start line */ - private $values = []; + public function setStartLine(int $line) + { + $this->attributes['startLine'] = $line; + $this->updateMessage(); + } /** - * @throws InvalidArgumentException + * Returns whether the error has start and end column information. + * + * For column information enable the startFilePos and endFilePos in the lexer options. + * + * @return bool */ - public function __construct(string $file = '', string $openDelimiter = '{', string $closeDelimiter = '}') + public function hasColumnInfo(): bool { - $this->setFile($file); - $this->openDelimiter = $openDelimiter; - $this->closeDelimiter = $closeDelimiter; + return isset($this->attributes['startFilePos'], $this->attributes['endFilePos']); } /** - * @throws InvalidArgumentException + * Gets the start column (1-based) into the line where the error started. + * + * @param string $code Source code of the file + * @return int */ - public function setFile(string $file) : void + public function getStartColumn(string $code): int { - $distFile = $file . '.dist'; - if (file_exists($file)) { - $this->template = file_get_contents($file); - } elseif (file_exists($distFile)) { - $this->template = file_get_contents($distFile); - } else { - throw new InvalidArgumentException(sprintf('Failed to load template "%s"', $file)); + if (!$this->hasColumnInfo()) { + throw new \RuntimeException('Error does not have column information'); } + return $this->toColumn($code, $this->attributes['startFilePos']); } - public function setVar(array $values, bool $merge = \true) : void + /** + * Gets the end column (1-based) into the line where the error ended. + * + * @param string $code Source code of the file + * @return int + */ + public function getEndColumn(string $code): int { - if (!$merge || empty($this->values)) { - $this->values = $values; - } else { - $this->values = array_merge($this->values, $values); + if (!$this->hasColumnInfo()) { + throw new \RuntimeException('Error does not have column information'); } + return $this->toColumn($code, $this->attributes['endFilePos']); } - public function render() : string + /** + * Formats message including line and column information. + * + * @param string $code Source code associated with the error, for calculation of the columns + * + * @return string Formatted message + */ + public function getMessageWithColumnInfo(string $code): string { - $keys = []; - foreach ($this->values as $key => $value) { - $keys[] = $this->openDelimiter . $key . $this->closeDelimiter; + return sprintf('%s from %d:%d to %d:%d', $this->getRawMessage(), $this->getStartLine(), $this->getStartColumn($code), $this->getEndLine(), $this->getEndColumn($code)); + } + /** + * Converts a file offset into a column. + * + * @param string $code Source code that $pos indexes into + * @param int $pos 0-based position in $code + * + * @return int 1-based column (relative to start of line) + */ + private function toColumn(string $code, int $pos): int + { + if ($pos > strlen($code)) { + throw new \RuntimeException('Invalid position information'); } - return str_replace($keys, $this->values, $this->template); + $lineStartPos = strrpos($code, "\n", $pos - strlen($code)); + if (\false === $lineStartPos) { + $lineStartPos = -1; + } + return $pos - $lineStartPos; } /** - * @codeCoverageIgnore + * Updates the exception message after a change to rawMessage or rawLine. */ - public function renderTo(string $target) : void + protected function updateMessage() { - if (!file_put_contents($target, $this->render())) { - throw new RuntimeException(sprintf('Writing rendered result to "%s" failed', $target)); + $this->message = $this->rawMessage; + if (-1 === $this->getStartLine()) { + $this->message .= ' on unknown line'; + } else { + $this->message .= ' on line ' . $this->getStartLine(); } } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Template; - -use Throwable; -interface Exception extends Throwable -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Template; - -final class InvalidArgumentException extends \InvalidArgumentException implements Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Template; - -use InvalidArgumentException; -final class RuntimeException extends InvalidArgumentException implements Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; +namespace PHPUnitPHAR\PhpParser; -use function floor; -use function sprintf; -/** - * @psalm-immutable - */ -final class Duration +class Comment implements \JsonSerializable { + protected $text; + protected $startLine; + protected $startFilePos; + protected $startTokenPos; + protected $endLine; + protected $endFilePos; + protected $endTokenPos; /** - * @var float - */ - private $nanoseconds; - /** - * @var int - */ - private $hours; - /** - * @var int - */ - private $minutes; - /** - * @var int - */ - private $seconds; - /** - * @var int + * Constructs a comment node. + * + * @param string $text Comment text (including comment delimiters like /*) + * @param int $startLine Line number the comment started on + * @param int $startFilePos File offset the comment started on + * @param int $startTokenPos Token offset the comment started on */ - private $milliseconds; - public static function fromMicroseconds(float $microseconds) : self + public function __construct(string $text, int $startLine = -1, int $startFilePos = -1, int $startTokenPos = -1, int $endLine = -1, int $endFilePos = -1, int $endTokenPos = -1) { - return new self($microseconds * 1000); + $this->text = $text; + $this->startLine = $startLine; + $this->startFilePos = $startFilePos; + $this->startTokenPos = $startTokenPos; + $this->endLine = $endLine; + $this->endFilePos = $endFilePos; + $this->endTokenPos = $endTokenPos; } - public static function fromNanoseconds(float $nanoseconds) : self + /** + * Gets the comment text. + * + * @return string The comment text (including comment delimiters like /*) + */ + public function getText(): string { - return new self($nanoseconds); + return $this->text; } - private function __construct(float $nanoseconds) + /** + * Gets the line number the comment started on. + * + * @return int Line number (or -1 if not available) + */ + public function getStartLine(): int { - $this->nanoseconds = $nanoseconds; - $timeInMilliseconds = $nanoseconds / 1000000; - $hours = floor($timeInMilliseconds / 60 / 60 / 1000); - $hoursInMilliseconds = $hours * 60 * 60 * 1000; - $minutes = floor($timeInMilliseconds / 60 / 1000) % 60; - $minutesInMilliseconds = $minutes * 60 * 1000; - $seconds = floor(($timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds) / 1000); - $secondsInMilliseconds = $seconds * 1000; - $milliseconds = $timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds - $secondsInMilliseconds; - $this->hours = (int) $hours; - $this->minutes = $minutes; - $this->seconds = (int) $seconds; - $this->milliseconds = (int) $milliseconds; + return $this->startLine; } - public function asNanoseconds() : float + /** + * Gets the file offset the comment started on. + * + * @return int File offset (or -1 if not available) + */ + public function getStartFilePos(): int { - return $this->nanoseconds; + return $this->startFilePos; } - public function asMicroseconds() : float + /** + * Gets the token offset the comment started on. + * + * @return int Token offset (or -1 if not available) + */ + public function getStartTokenPos(): int { - return $this->nanoseconds / 1000; + return $this->startTokenPos; } - public function asMilliseconds() : float + /** + * Gets the line number the comment ends on. + * + * @return int Line number (or -1 if not available) + */ + public function getEndLine(): int { - return $this->nanoseconds / 1000000; + return $this->endLine; } - public function asSeconds() : float + /** + * Gets the file offset the comment ends on. + * + * @return int File offset (or -1 if not available) + */ + public function getEndFilePos(): int { - return $this->nanoseconds / 1000000000; + return $this->endFilePos; } - public function asString() : string + /** + * Gets the token offset the comment ends on. + * + * @return int Token offset (or -1 if not available) + */ + public function getEndTokenPos(): int { - $result = ''; - if ($this->hours > 0) { - $result = sprintf('%02d', $this->hours) . ':'; - } - $result .= sprintf('%02d', $this->minutes) . ':'; - $result .= sprintf('%02d', $this->seconds); - if ($this->milliseconds > 0) { - $result .= '.' . sprintf('%03d', $this->milliseconds); - } - return $result; + return $this->endTokenPos; } -} -phpunit/php-timer - -Copyright (c) 2010-2020, Sebastian Bergmann . -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Sebastian Bergmann nor the names of his - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; - -use function is_float; -use function memory_get_peak_usage; -use function microtime; -use function sprintf; -final class ResourceUsageFormatter -{ /** - * @psalm-var array + * Gets the line number the comment started on. + * + * @deprecated Use getStartLine() instead + * + * @return int Line number */ - private const SIZES = ['GB' => 1073741824, 'MB' => 1048576, 'KB' => 1024]; - public function resourceUsage(Duration $duration) : string + public function getLine(): int { - return sprintf('Time: %s, Memory: %s', $duration->asString(), $this->bytesToString(memory_get_peak_usage(\true))); + return $this->startLine; } /** - * @throws TimeSinceStartOfRequestNotAvailableException + * Gets the file offset the comment started on. + * + * @deprecated Use getStartFilePos() instead + * + * @return int File offset */ - public function resourceUsageSinceStartOfRequest() : string + public function getFilePos(): int { - if (!isset($_SERVER['REQUEST_TIME_FLOAT'])) { - throw new TimeSinceStartOfRequestNotAvailableException('Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not available'); - } - if (!is_float($_SERVER['REQUEST_TIME_FLOAT'])) { - throw new TimeSinceStartOfRequestNotAvailableException('Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not of type float'); - } - return $this->resourceUsage(Duration::fromMicroseconds(1000000 * (microtime(\true) - $_SERVER['REQUEST_TIME_FLOAT']))); + return $this->startFilePos; } - private function bytesToString(int $bytes) : string + /** + * Gets the token offset the comment started on. + * + * @deprecated Use getStartTokenPos() instead + * + * @return int Token offset + */ + public function getTokenPos(): int { - foreach (self::SIZES as $unit => $value) { - if ($bytes >= $value) { - return sprintf('%.2f %s', $bytes >= 1024 ? $bytes / $value : $bytes, $unit); - } - } - // @codeCoverageIgnoreStart - return $bytes . ' byte' . ($bytes !== 1 ? 's' : ''); - // @codeCoverageIgnoreEnd + return $this->startTokenPos; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; - -use function array_pop; -use function hrtime; -final class Timer -{ /** - * @psalm-var list + * Gets the comment text. + * + * @return string The comment text (including comment delimiters like /*) */ - private $startTimes = []; - public function start() : void + public function __toString(): string { - $this->startTimes[] = (float) hrtime(\true); + return $this->text; } /** - * @throws NoActiveTimerException + * Gets the reformatted comment text. + * + * "Reformatted" here means that we try to clean up the whitespace at the + * starts of the lines. This is necessary because we receive the comments + * without trailing whitespace on the first line, but with trailing whitespace + * on all subsequent lines. + * + * @return mixed|string */ - public function stop() : Duration + public function getReformattedText() { - if (empty($this->startTimes)) { - throw new NoActiveTimerException('Timer::start() has to be called before Timer::stop()'); - } - return Duration::fromNanoseconds((float) hrtime(\true) - array_pop($this->startTimes)); - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; - -use Throwable; -interface Exception extends Throwable -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; - -use LogicException; -final class NoActiveTimerException extends LogicException implements Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\SebastianBergmann\Timer; - -use RuntimeException; -final class TimeSinceStartOfRequestNotAvailableException extends RuntimeException implements Exception -{ -} -text); + $newlinePos = strpos($text, "\n"); + if (\false === $newlinePos) { + // Single line comments don't need further processing + return $text; + } elseif (preg_match('((*BSR_ANYCRLF)(*ANYCRLF)^.*(?:\R\s+\*.*)+$)', $text)) { + // Multi line comment of the type + // + // /* + // * Some text. + // * Some more text. + // */ + // + // is handled by replacing the whitespace sequences before the * by a single space + return preg_replace('(^\s+\*)m', ' *', $this->text); + } elseif (preg_match('(^/\*\*?\s*[\r\n])', $text) && preg_match('(\n(\s*)\*/$)', $text, $matches)) { + // Multi line comment of the type + // + // /* + // Some text. + // Some more text. + // */ + // + // is handled by removing the whitespace sequence on the line before the closing + // */ on all lines. So if the last line is " */", then " " is removed at the + // start of all lines. + return preg_replace('(^' . preg_quote($matches[1]) . ')m', '', $text); + } elseif (preg_match('(^/\*\*?\s*(?!\s))', $text, $matches)) { + // Multi line comment of the type + // + // /* Some text. + // Some more text. + // Indented text. + // Even more text. */ + // + // is handled by removing the difference between the shortest whitespace prefix on all + // lines and the length of the "/* " opening sequence. + $prefixLen = $this->getShortestWhitespacePrefixLen(substr($text, $newlinePos + 1)); + $removeLen = $prefixLen - strlen($matches[0]); + return preg_replace('(^\s{' . $removeLen . '})m', '', $text); + } + // No idea how to format this comment, so simply return as is + return $text; + } /** - * Returns the Fqsen of the element. + * Get length of shortest whitespace prefix (at the start of a line). + * + * If there is a line with no prefix whitespace, 0 is a valid return value. + * + * @param string $str String to check + * @return int Length in characters. Tabs count as single characters. */ - public function getFqsen() : Fqsen; + private function getShortestWhitespacePrefixLen(string $str): int + { + $lines = explode("\n", $str); + $shortestPrefixLen = \INF; + foreach ($lines as $line) { + preg_match('(^\s*)', $line, $matches); + $prefixLen = strlen($matches[0]); + if ($prefixLen < $shortestPrefixLen) { + $shortestPrefixLen = $prefixLen; + } + } + return $shortestPrefixLen; + } /** - * Returns the name of the element. + * @return array + * @psalm-return array{nodeType:string, text:mixed, line:mixed, filePos:mixed} */ - public function getName() : string; + public function jsonSerialize(): array + { + // Technically not a node, but we make it look like one anyway + $type = $this instanceof Comment\Doc ? 'Comment_Doc' : 'Comment'; + return [ + 'nodeType' => $type, + 'text' => $this->text, + // TODO: Rename these to include "start". + 'line' => $this->startLine, + 'filePos' => $this->startFilePos, + 'tokenPos' => $this->startTokenPos, + 'endLine' => $this->endLine, + 'endFilePos' => $this->endFilePos, + 'endTokenPos' => $this->endTokenPos, + ]; + } } defineCompatibilityTokens(); + $this->tokenMap = $this->createTokenMap(); + $this->identifierTokens = $this->createIdentifierTokenMap(); + // map of tokens to drop while lexing (the map is only used for isset lookup, + // that's why the value is simply set to 1; the value is never actually used.) + $this->dropTokens = array_fill_keys([\T_WHITESPACE, \T_OPEN_TAG, \T_COMMENT, \T_DOC_COMMENT, \T_BAD_CHARACTER], 1); + $defaultAttributes = ['comments', 'startLine', 'endLine']; + $usedAttributes = array_fill_keys($options['usedAttributes'] ?? $defaultAttributes, \true); + // Create individual boolean properties to make these checks faster. + $this->attributeStartLineUsed = isset($usedAttributes['startLine']); + $this->attributeEndLineUsed = isset($usedAttributes['endLine']); + $this->attributeStartTokenPosUsed = isset($usedAttributes['startTokenPos']); + $this->attributeEndTokenPosUsed = isset($usedAttributes['endTokenPos']); + $this->attributeStartFilePosUsed = isset($usedAttributes['startFilePos']); + $this->attributeEndFilePosUsed = isset($usedAttributes['endFilePos']); + $this->attributeCommentsUsed = isset($usedAttributes['comments']); + } /** - * Returns an relative path to the file. + * Initializes the lexer for lexing the provided source code. + * + * This function does not throw if lexing errors occur. Instead, errors may be retrieved using + * the getErrors() method. + * + * @param string $code The source code to lex + * @param ErrorHandler|null $errorHandler Error handler to use for lexing errors. Defaults to + * ErrorHandler\Throwing */ - public function path() : string; -} -code = $code; + // keep the code around for __halt_compiler() handling + $this->pos = -1; + $this->line = 1; + $this->filePos = 0; + // If inline HTML occurs without preceding code, treat it as if it had a leading newline. + // This ensures proper composability, because having a newline is the "safe" assumption. + $this->prevCloseTagHasNewline = \true; + $scream = ini_set('xdebug.scream', '0'); + $this->tokens = @token_get_all($code); + $this->postprocessTokens($errorHandler); + if (\false !== $scream) { + ini_set('xdebug.scream', $scream); + } + } + private function handleInvalidCharacterRange($start, $end, $line, ErrorHandler $errorHandler) + { + $tokens = []; + for ($i = $start; $i < $end; $i++) { + $chr = $this->code[$i]; + if ($chr === "\x00") { + // PHP cuts error message after null byte, so need special case + $errorMsg = 'Unexpected null byte'; + } else { + $errorMsg = sprintf('Unexpected character "%s" (ASCII %d)', $chr, ord($chr)); + } + $tokens[] = [\T_BAD_CHARACTER, $chr, $line]; + $errorHandler->handleError(new Error($errorMsg, ['startLine' => $line, 'endLine' => $line, 'startFilePos' => $i, 'endFilePos' => $i])); + } + return $tokens; + } /** - * Initializes the object. + * Check whether comment token is unterminated. * - * @throws InvalidArgumentException when $fqsen is not matching the format. + * @return bool */ - public function __construct(string $fqsen) + private function isUnterminatedComment($token): bool { - $matches = []; - $result = preg_match( - //phpcs:ignore Generic.Files.LineLength.TooLong - '/^\\\\([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff\\\\]*)?(?:[:]{2}\\$?([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*))?(?:\\(\\))?$/', - $fqsen, - $matches - ); - if ($result === 0) { - throw new InvalidArgumentException(sprintf('"%s" is not a valid Fqsen.', $fqsen)); + return ($token[0] === \T_COMMENT || $token[0] === \T_DOC_COMMENT) && substr($token[1], 0, 2) === '/*' && substr($token[1], -2) !== '*/'; + } + protected function postprocessTokens(ErrorHandler $errorHandler) + { + // PHP's error handling for token_get_all() is rather bad, so if we want detailed + // error information we need to compute it ourselves. Invalid character errors are + // detected by finding "gaps" in the token array. Unterminated comments are detected + // by checking if a trailing comment has a "*/" at the end. + // + // Additionally, we perform a number of canonicalizations here: + // * Use the PHP 8.0 comment format, which does not include trailing whitespace anymore. + // * Use PHP 8.0 T_NAME_* tokens. + // * Use PHP 8.1 T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG and + // T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG tokens used to disambiguate intersection types. + $filePos = 0; + $line = 1; + $numTokens = \count($this->tokens); + for ($i = 0; $i < $numTokens; $i++) { + $token = $this->tokens[$i]; + // Since PHP 7.4 invalid characters are represented by a T_BAD_CHARACTER token. + // In this case we only need to emit an error. + if ($token[0] === \T_BAD_CHARACTER) { + $this->handleInvalidCharacterRange($filePos, $filePos + 1, $line, $errorHandler); + } + if ($token[0] === \T_COMMENT && substr($token[1], 0, 2) !== '/*' && preg_match('/(\r\n|\n|\r)$/D', $token[1], $matches)) { + $trailingNewline = $matches[0]; + $token[1] = substr($token[1], 0, -strlen($trailingNewline)); + $this->tokens[$i] = $token; + if (isset($this->tokens[$i + 1]) && $this->tokens[$i + 1][0] === \T_WHITESPACE) { + // Move trailing newline into following T_WHITESPACE token, if it already exists. + $this->tokens[$i + 1][1] = $trailingNewline . $this->tokens[$i + 1][1]; + $this->tokens[$i + 1][2]--; + } else { + // Otherwise, we need to create a new T_WHITESPACE token. + array_splice($this->tokens, $i + 1, 0, [[\T_WHITESPACE, $trailingNewline, $line]]); + $numTokens++; + } + } + // Emulate PHP 8 T_NAME_* tokens, by combining sequences of T_NS_SEPARATOR and T_STRING + // into a single token. + if (\is_array($token) && ($token[0] === \T_NS_SEPARATOR || isset($this->identifierTokens[$token[0]]))) { + $lastWasSeparator = $token[0] === \T_NS_SEPARATOR; + $text = $token[1]; + for ($j = $i + 1; isset($this->tokens[$j]); $j++) { + if ($lastWasSeparator) { + if (!isset($this->identifierTokens[$this->tokens[$j][0]])) { + break; + } + $lastWasSeparator = \false; + } else { + if ($this->tokens[$j][0] !== \T_NS_SEPARATOR) { + break; + } + $lastWasSeparator = \true; + } + $text .= $this->tokens[$j][1]; + } + if ($lastWasSeparator) { + // Trailing separator is not part of the name. + $j--; + $text = substr($text, 0, -1); + } + if ($j > $i + 1) { + if ($token[0] === \T_NS_SEPARATOR) { + $type = \T_NAME_FULLY_QUALIFIED; + } else if ($token[0] === \T_NAMESPACE) { + $type = \T_NAME_RELATIVE; + } else { + $type = \T_NAME_QUALIFIED; + } + $token = [$type, $text, $line]; + array_splice($this->tokens, $i, $j - $i, [$token]); + $numTokens -= $j - $i - 1; + } + } + if ($token === '&') { + $next = $i + 1; + while (isset($this->tokens[$next]) && $this->tokens[$next][0] === \T_WHITESPACE) { + $next++; + } + $followedByVarOrVarArg = isset($this->tokens[$next]) && ($this->tokens[$next][0] === \T_VARIABLE || $this->tokens[$next][0] === \T_ELLIPSIS); + $this->tokens[$i] = $token = [$followedByVarOrVarArg ? \T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG : \T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG, '&', $line]; + } + $tokenValue = \is_string($token) ? $token : $token[1]; + $tokenLen = \strlen($tokenValue); + if (substr($this->code, $filePos, $tokenLen) !== $tokenValue) { + // Something is missing, must be an invalid character + $nextFilePos = strpos($this->code, $tokenValue, $filePos); + $badCharTokens = $this->handleInvalidCharacterRange($filePos, $nextFilePos, $line, $errorHandler); + $filePos = (int) $nextFilePos; + array_splice($this->tokens, $i, 0, $badCharTokens); + $numTokens += \count($badCharTokens); + $i += \count($badCharTokens); + } + $filePos += $tokenLen; + $line += substr_count($tokenValue, "\n"); } - $this->fqsen = $fqsen; - if (isset($matches[2])) { - $this->name = $matches[2]; - } else { - $matches = explode('\\', $fqsen); - $name = end($matches); - assert(is_string($name)); - $this->name = trim($name, '()'); + if ($filePos !== \strlen($this->code)) { + if (substr($this->code, $filePos, 2) === '/*') { + // Unlike PHP, HHVM will drop unterminated comments entirely + $comment = substr($this->code, $filePos); + $errorHandler->handleError(new Error('Unterminated comment', ['startLine' => $line, 'endLine' => $line + substr_count($comment, "\n"), 'startFilePos' => $filePos, 'endFilePos' => $filePos + \strlen($comment)])); + // Emulate the PHP behavior + $isDocComment = isset($comment[3]) && $comment[3] === '*'; + $this->tokens[] = [$isDocComment ? \T_DOC_COMMENT : \T_COMMENT, $comment, $line]; + } else { + // Invalid characters at the end of the input + $badCharTokens = $this->handleInvalidCharacterRange($filePos, \strlen($this->code), $line, $errorHandler); + $this->tokens = array_merge($this->tokens, $badCharTokens); + } + return; + } + if (count($this->tokens) > 0) { + // Check for unterminated comment + $lastToken = $this->tokens[count($this->tokens) - 1]; + if ($this->isUnterminatedComment($lastToken)) { + $errorHandler->handleError(new Error('Unterminated comment', ['startLine' => $line - substr_count($lastToken[1], "\n"), 'endLine' => $line, 'startFilePos' => $filePos - \strlen($lastToken[1]), 'endFilePos' => $filePos])); + } } } /** - * converts this class to string. + * Fetches the next token. + * + * The available attributes are determined by the 'usedAttributes' option, which can + * be specified in the constructor. The following attributes are supported: + * + * * 'comments' => Array of PhpParser\Comment or PhpParser\Comment\Doc instances, + * representing all comments that occurred between the previous + * non-discarded token and the current one. + * * 'startLine' => Line in which the node starts. + * * 'endLine' => Line in which the node ends. + * * 'startTokenPos' => Offset into the token array of the first token in the node. + * * 'endTokenPos' => Offset into the token array of the last token in the node. + * * 'startFilePos' => Offset into the code string of the first character that is part of the node. + * * 'endFilePos' => Offset into the code string of the last character that is part of the node. + * + * @param mixed $value Variable to store token content in + * @param mixed $startAttributes Variable to store start attributes in + * @param mixed $endAttributes Variable to store end attributes in + * + * @return int Token id */ - public function __toString() : string + public function getNextToken(&$value = null, &$startAttributes = null, &$endAttributes = null): int { - return $this->fqsen; + $startAttributes = []; + $endAttributes = []; + while (1) { + if (isset($this->tokens[++$this->pos])) { + $token = $this->tokens[$this->pos]; + } else { + // EOF token with ID 0 + $token = "\x00"; + } + if ($this->attributeStartLineUsed) { + $startAttributes['startLine'] = $this->line; + } + if ($this->attributeStartTokenPosUsed) { + $startAttributes['startTokenPos'] = $this->pos; + } + if ($this->attributeStartFilePosUsed) { + $startAttributes['startFilePos'] = $this->filePos; + } + if (\is_string($token)) { + $value = $token; + if (isset($token[1])) { + // bug in token_get_all + $this->filePos += 2; + $id = ord('"'); + } else { + $this->filePos += 1; + $id = ord($token); + } + } elseif (!isset($this->dropTokens[$token[0]])) { + $value = $token[1]; + $id = $this->tokenMap[$token[0]]; + if (\T_CLOSE_TAG === $token[0]) { + $this->prevCloseTagHasNewline = \false !== strpos($token[1], "\n") || \false !== strpos($token[1], "\r"); + } elseif (\T_INLINE_HTML === $token[0]) { + $startAttributes['hasLeadingNewline'] = $this->prevCloseTagHasNewline; + } + $this->line += substr_count($value, "\n"); + $this->filePos += \strlen($value); + } else { + $origLine = $this->line; + $origFilePos = $this->filePos; + $this->line += substr_count($token[1], "\n"); + $this->filePos += \strlen($token[1]); + if (\T_COMMENT === $token[0] || \T_DOC_COMMENT === $token[0]) { + if ($this->attributeCommentsUsed) { + $comment = \T_DOC_COMMENT === $token[0] ? new Comment\Doc($token[1], $origLine, $origFilePos, $this->pos, $this->line, $this->filePos - 1, $this->pos) : new Comment($token[1], $origLine, $origFilePos, $this->pos, $this->line, $this->filePos - 1, $this->pos); + $startAttributes['comments'][] = $comment; + } + } + continue; + } + if ($this->attributeEndLineUsed) { + $endAttributes['endLine'] = $this->line; + } + if ($this->attributeEndTokenPosUsed) { + $endAttributes['endTokenPos'] = $this->pos; + } + if ($this->attributeEndFilePosUsed) { + $endAttributes['endFilePos'] = $this->filePos - 1; + } + return $id; + } + throw new \RuntimeException('Reached end of lexer loop'); } /** - * Returns the name of the element without path. + * Returns the token array for current code. + * + * The token array is in the same format as provided by the + * token_get_all() function and does not discard tokens (i.e. + * whitespace and comments are included). The token position + * attributes are against this token array. + * + * @return array Array of tokens in token_get_all() format */ - public function getName() : string + public function getTokens(): array { - return $this->name; + return $this->tokens; } -} -The MIT License (MIT) - -Copyright (c) 2015 phpDocumentor - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -lineNumber = $lineNumber; - $this->columnNumber = $columnNumber; + // text after T_HALT_COMPILER, still including (); + $textAfter = substr($this->code, $this->filePos); + // ensure that it is followed by (); + // this simplifies the situation, by not allowing any comments + // in between of the tokens. + if (!preg_match('~^\s*\(\s*\)\s*(?:;|\?>\r?\n?)~', $textAfter, $matches)) { + throw new Error('__HALT_COMPILER must be followed by "();"'); + } + // prevent the lexer from returning any further tokens + $this->pos = count($this->tokens); + // return with (); removed + return substr($textAfter, strlen($matches[0])); + } + private function defineCompatibilityTokens() + { + static $compatTokensDefined = \false; + if ($compatTokensDefined) { + return; + } + $compatTokens = [ + // PHP 7.4 + 'T_BAD_CHARACTER', + 'T_FN', + 'T_COALESCE_EQUAL', + // PHP 8.0 + 'T_NAME_QUALIFIED', + 'T_NAME_FULLY_QUALIFIED', + 'T_NAME_RELATIVE', + 'T_MATCH', + 'T_NULLSAFE_OBJECT_OPERATOR', + 'T_ATTRIBUTE', + // PHP 8.1 + 'T_ENUM', + 'T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG', + 'T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG', + 'T_READONLY', + ]; + // PHP-Parser might be used together with another library that also emulates some or all + // of these tokens. Perform a sanity-check that all already defined tokens have been + // assigned a unique ID. + $usedTokenIds = []; + foreach ($compatTokens as $token) { + if (\defined($token)) { + $tokenId = \constant($token); + $clashingToken = $usedTokenIds[$tokenId] ?? null; + if ($clashingToken !== null) { + throw new \Error(sprintf('Token %s has same ID as token %s, ' . 'you may be using a library with broken token emulation', $token, $clashingToken)); + } + $usedTokenIds[$tokenId] = $token; + } + } + // Now define any tokens that have not yet been emulated. Try to assign IDs from -1 + // downwards, but skip any IDs that may already be in use. + $newTokenId = -1; + foreach ($compatTokens as $token) { + if (!\defined($token)) { + while (isset($usedTokenIds[$newTokenId])) { + $newTokenId--; + } + \define($token, $newTokenId); + $newTokenId--; + } + } + $compatTokensDefined = \true; } /** - * Returns the line number that is covered by this location. + * Creates the token map. + * + * The token map maps the PHP internal token identifiers + * to the identifiers used by the Parser. Additionally it + * maps T_OPEN_TAG_WITH_ECHO to T_ECHO and T_CLOSE_TAG to ';'. + * + * @return array The token map */ - public function getLineNumber() : int + protected function createTokenMap(): array { - return $this->lineNumber; + $tokenMap = []; + // 256 is the minimum possible token number, as everything below + // it is an ASCII value + for ($i = 256; $i < 1000; ++$i) { + if (\T_DOUBLE_COLON === $i) { + // T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM + $tokenMap[$i] = Tokens::T_PAAMAYIM_NEKUDOTAYIM; + } elseif (\T_OPEN_TAG_WITH_ECHO === $i) { + // T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO + $tokenMap[$i] = Tokens::T_ECHO; + } elseif (\T_CLOSE_TAG === $i) { + // T_CLOSE_TAG is equivalent to ';' + $tokenMap[$i] = ord(';'); + } elseif ('UNKNOWN' !== $name = token_name($i)) { + if ('T_HASHBANG' === $name) { + // HHVM uses a special token for #! hashbang lines + $tokenMap[$i] = Tokens::T_INLINE_HTML; + } elseif (defined($name = Tokens::class . '::' . $name)) { + // Other tokens can be mapped directly + $tokenMap[$i] = constant($name); + } + } + } + // HHVM uses a special token for numbers that overflow to double + if (defined('T_ONUMBER')) { + $tokenMap[\T_ONUMBER] = Tokens::T_DNUMBER; + } + // HHVM also has a separate token for the __COMPILER_HALT_OFFSET__ constant + if (defined('T_COMPILER_HALT_OFFSET')) { + $tokenMap[\T_COMPILER_HALT_OFFSET] = Tokens::T_STRING; + } + // Assign tokens for which we define compatibility constants, as token_name() does not know them. + $tokenMap[\T_FN] = Tokens::T_FN; + $tokenMap[\T_COALESCE_EQUAL] = Tokens::T_COALESCE_EQUAL; + $tokenMap[\T_NAME_QUALIFIED] = Tokens::T_NAME_QUALIFIED; + $tokenMap[\T_NAME_FULLY_QUALIFIED] = Tokens::T_NAME_FULLY_QUALIFIED; + $tokenMap[\T_NAME_RELATIVE] = Tokens::T_NAME_RELATIVE; + $tokenMap[\T_MATCH] = Tokens::T_MATCH; + $tokenMap[\T_NULLSAFE_OBJECT_OPERATOR] = Tokens::T_NULLSAFE_OBJECT_OPERATOR; + $tokenMap[\T_ATTRIBUTE] = Tokens::T_ATTRIBUTE; + $tokenMap[\T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG] = Tokens::T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG; + $tokenMap[\T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG] = Tokens::T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG; + $tokenMap[\T_ENUM] = Tokens::T_ENUM; + $tokenMap[\T_READONLY] = Tokens::T_READONLY; + return $tokenMap; } - /** - * Returns the column number (character position on a line) for this location object. - */ - public function getColumnNumber() : int + private function createIdentifierTokenMap(): array { - return $this->columnNumber; + // Based on semi_reserved production. + return array_fill_keys([\T_STRING, \T_STATIC, \T_ABSTRACT, \T_FINAL, \T_PRIVATE, \T_PROTECTED, \T_PUBLIC, \T_READONLY, \T_INCLUDE, \T_INCLUDE_ONCE, \T_EVAL, \T_REQUIRE, \T_REQUIRE_ONCE, \T_LOGICAL_OR, \T_LOGICAL_XOR, \T_LOGICAL_AND, \T_INSTANCEOF, \T_NEW, \T_CLONE, \T_EXIT, \T_IF, \T_ELSEIF, \T_ELSE, \T_ENDIF, \T_ECHO, \T_DO, \T_WHILE, \T_ENDWHILE, \T_FOR, \T_ENDFOR, \T_FOREACH, \T_ENDFOREACH, \T_DECLARE, \T_ENDDECLARE, \T_AS, \T_TRY, \T_CATCH, \T_FINALLY, \T_THROW, \T_USE, \T_INSTEADOF, \T_GLOBAL, \T_VAR, \T_UNSET, \T_ISSET, \T_EMPTY, \T_CONTINUE, \T_GOTO, \T_FUNCTION, \T_CONST, \T_RETURN, \T_PRINT, \T_YIELD, \T_LIST, \T_SWITCH, \T_ENDSWITCH, \T_CASE, \T_DEFAULT, \T_BREAK, \T_ARRAY, \T_CALLABLE, \T_EXTENDS, \T_IMPLEMENTS, \T_NAMESPACE, \T_TRAIT, \T_INTERFACE, \T_CLASS, \T_CLASS_C, \T_TRAIT_C, \T_FUNC_C, \T_METHOD_C, \T_LINE, \T_FILE, \T_DIR, \T_NS_C, \T_HALT_COMPILER, \T_FN, \T_MATCH], \true); } } summary = $summary; - $this->description = $description ?: new DocBlock\Description(''); - foreach ($tags as $tag) { - $this->addTag($tag); - } - $this->context = $context; - $this->location = $location; - $this->isTemplateEnd = $isTemplateEnd; - $this->isTemplateStart = $isTemplateStart; + parent::__construct($attributes); + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->expr = $expr; + $this->attrGroups = $attrGroups; } - public function getSummary() : string + public function getSubNodeNames(): array { - return $this->summary; + return ['attrGroups', 'name', 'expr']; } - public function getDescription() : DocBlock\Description + public function getType(): string { - return $this->description; + return 'Stmt_EnumCase'; } +} +context; + $this->attributes = $attributes; + $this->expr = $expr; } - /** - * Returns the current location. - */ - public function getLocation() : ?Location + public function getSubNodeNames(): array { - return $this->location; + return ['expr']; } - /** - * Returns whether this DocBlock is the start of a Template section. - * - * A Docblock may serve as template for a series of subsequent DocBlocks. This is indicated by a special marker - * (`#@+`) that is appended directly after the opening `/**` of a DocBlock. - * - * An example of such an opening is: - * - * ``` - * /**#@+ - * * My DocBlock - * * / - * ``` - * - * The description and tags (not the summary!) are copied onto all subsequent DocBlocks and also applied to all - * elements that follow until another DocBlock is found that contains the closing marker (`#@-`). - * - * @see self::isTemplateEnd() for the check whether a closing marker was provided. - */ - public function isTemplateStart() : bool + public function getType(): string { - return $this->isTemplateStart; + return 'Stmt_Expression'; } +} +isTemplateEnd; + $this->attributes = $attributes; + $this->type = $type; + $this->name = $name; + $this->alias = \is_string($alias) ? new Identifier($alias) : $alias; } - /** - * Returns the tags for this DocBlock. - * - * @return Tag[] - */ - public function getTags() : array + public function getSubNodeNames(): array { - return $this->tags; + return ['type', 'name', 'alias']; } /** - * Returns an array of tags matching the given name. If no tags are found - * an empty array is returned. - * - * @param string $name String to search by. + * Get alias. If not explicitly given this is the last component of the used name. * - * @return Tag[] + * @return Identifier */ - public function getTagsByName(string $name) : array + public function getAlias(): Identifier { - $result = []; - foreach ($this->getTags() as $tag) { - if ($tag->getName() !== $name) { - continue; - } - $result[] = $tag; + if (null !== $this->alias) { + return $this->alias; } - return $result; + return new Identifier($this->name->getLast()); } - /** - * Returns an array of tags with type matching the given name. If no tags are found - * an empty array is returned. - * - * @param string $name String to search by. - * - * @return TagWithType[] - */ - public function getTagsWithTypeByName(string $name) : array + public function getType(): string { - $result = []; - foreach ($this->getTagsByName($name) as $tag) { - if (!$tag instanceof TagWithType) { - continue; - } - $result[] = $tag; - } - return $result; + return 'Stmt_UseUse'; } +} +getTags() as $tag) { - if ($tag->getName() === $name) { - return \true; - } - } - return \false; + $this->attributes = $attributes; + $this->vars = $vars; } - /** - * Remove a tag from this DocBlock. - * - * @param Tag $tagToRemove The tag to remove. - */ - public function removeTag(Tag $tagToRemove) : void + public function getSubNodeNames(): array { - foreach ($this->tags as $key => $tag) { - if ($tag === $tagToRemove) { - unset($this->tags[$key]); - break; - } - } + return ['vars']; } - /** - * Adds a tag to this DocBlock. - * - * @param Tag $tag The tag to add. - */ - private function addTag(Tag $tag) : void + public function getType(): string { - $this->tags[] = $tag; + return 'Stmt_Global'; } } create('This is a {@see Description}', $context); - * - * The description factory will interpret the given body and create a body template and list of tags from them, and pass - * that onto the constructor if this class. - * - * > The $context variable is a class of type {@see \phpDocumentor\Reflection\Types\Context} and contains the namespace - * > and the namespace aliases that apply to this DocBlock. These are used by the Factory to resolve and expand partial - * > type names and FQSENs. - * - * If you do not want to use the DescriptionFactory you can pass a body template and tag listing like this: - * - * $description = new Description( - * 'This is a %1$s', - * [ new See(new Fqsen('\phpDocumentor\Reflection\DocBlock\Description')) ] - * ); - * - * It is generally recommended to use the Factory as that will also apply escaping rules, while the Description object - * is mainly responsible for rendering. - * - * @see DescriptionFactory to create a new Description. - * @see Description\Formatter for the formatting of the body and tags. - */ -class Description +use PHPUnitPHAR\PhpParser\Node; +class Namespace_ extends Node\Stmt { - /** @var string */ - private $bodyTemplate; - /** @var Tag[] */ - private $tags; + /* For use in the "kind" attribute */ + const KIND_SEMICOLON = 1; + const KIND_BRACED = 2; + /** @var null|Node\Name Name */ + public $name; + /** @var Node\Stmt[] Statements */ + public $stmts; /** - * Initializes a Description with its body (template) and a listing of the tags used in the body template. + * Constructs a namespace node. * - * @param Tag[] $tags + * @param null|Node\Name $name Name + * @param null|Node\Stmt[] $stmts Statements + * @param array $attributes Additional attributes */ - public function __construct(string $bodyTemplate, array $tags = []) + public function __construct(?Node\Name $name = null, $stmts = [], array $attributes = []) { - $this->bodyTemplate = $bodyTemplate; - $this->tags = $tags; + $this->attributes = $attributes; + $this->name = $name; + $this->stmts = $stmts; } - /** - * Returns the body template. - */ - public function getBodyTemplate() : string + public function getSubNodeNames(): array { - return $this->bodyTemplate; + return ['name', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Namespace'; } +} +tags; + $this->attributes = $attributes; + $this->traits = $traits; + $this->adaptations = $adaptations; } - /** - * Renders this description as a string where the provided formatter will format the tags in the expected string - * format. - */ - public function render(?Formatter $formatter = null) : string + public function getSubNodeNames(): array { - if ($formatter === null) { - $formatter = new PassthroughFormatter(); - } - $tags = []; - foreach ($this->tags as $tag) { - $tags[] = '{' . $formatter->format($tag) . '}'; - } - return vsprintf($this->bodyTemplate, $tags); + return ['traits', 'adaptations']; } - /** - * Returns a plain string representation of this description. - */ - public function __toString() : string + public function getType(): string { - return $this->render(); + return 'Stmt_TraitUse'; } } tagFactory = $tagFactory; + $this->attributes = $attributes; + $this->trait = $trait; + $this->method = \is_string($method) ? new Node\Identifier($method) : $method; + $this->insteadof = $insteadof; } - /** - * Returns the parsed text of this description. - */ - public function create(string $contents, ?TypeContext $context = null) : Description + public function getSubNodeNames(): array { - $tokens = $this->lex($contents); - $count = count($tokens); - $tagCount = 0; - $tags = []; - for ($i = 1; $i < $count; $i += 2) { - $tags[] = $this->tagFactory->create($tokens[$i], $context); - $tokens[$i] = '%' . ++$tagCount . '$s'; - } - //In order to allow "literal" inline tags, the otherwise invalid - //sequence "{@}" is changed to "@", and "{}" is changed to "}". - //"%" is escaped to "%%" because of vsprintf. - //See unit tests for examples. - for ($i = 0; $i < $count; $i += 2) { - $tokens[$i] = str_replace(['{@}', '{}', '%'], ['@', '}', '%%'], $tokens[$i]); - } - return new Description(implode('', $tokens), $tags); + return ['trait', 'method', 'insteadof']; } - /** - * Strips the contents from superfluous whitespace and splits the description into a series of tokens. - * - * @return string[] A series of tokens of which the description text is composed. - */ - private function lex(string $contents) : array + public function getType(): string { - $contents = $this->removeSuperfluousStartingWhitespace($contents); - // performance optimalization; if there is no inline tag, don't bother splitting it up. - if (strpos($contents, '{@') === \false) { - return [$contents]; - } - return Utils::pregSplit('/\\{ - # "{@}" is not a valid inline tag. This ensures that we do not treat it as one, but treat it literally. - (?!@\\}) - # We want to capture the whole tag line, but without the inline tag delimiters. - (\\@ - # Match everything up to the next delimiter. - [^{}]* - # Nested inline tag content should not be captured, or it will appear in the result separately. - (?: - # Match nested inline tags. - (?: - # Because we did not catch the tag delimiters earlier, we must be explicit with them here. - # Notice that this also matches "{}", as a way to later introduce it as an escape sequence. - \\{(?1)?\\} - | - # Make sure we match hanging "{". - \\{ - ) - # Match content after the nested inline tag. - [^{}]* - )* # If there are more inline tags, match them as well. We use "*" since there may not be any - # nested inline tags. - ) - \\}/Sux', $contents, 0, PREG_SPLIT_DELIM_CAPTURE); + return 'Stmt_TraitUseAdaptation_Precedence'; } +} + 0) { - for ($i = 1, $iMax = count($lines); $i < $iMax; ++$i) { - $lines[$i] = substr($lines[$i], $startingSpaceCount); - } - } - return implode("\n", $lines); + $this->attributes = $attributes; + $this->trait = $trait; + $this->method = \is_string($method) ? new Node\Identifier($method) : $method; + $this->newModifier = $newModifier; + $this->newName = \is_string($newName) ? new Node\Identifier($newName) : $newName; + } + public function getSubNodeNames(): array + { + return ['trait', 'method', 'newModifier', 'newName']; + } + public function getType(): string + { + return 'Stmt_TraitUseAdaptation_Alias'; } } getFilePath(); - $file = $this->getExampleFileContents($filename); - if (!$file) { - return sprintf('** File not found : %s **', $filename); - } - return implode('', array_slice($file, $example->getStartingLine() - 1, $example->getLineCount())); + $this->attributes = $attributes; + $this->types = $types; + $this->var = $var; + $this->stmts = $stmts; + } + public function getSubNodeNames(): array + { + return ['types', 'var', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Catch'; } +} + 0 : Flags + * 'extends' => null : Name of extended class + * 'implements' => array(): Names of implemented interfaces + * 'stmts' => array(): Statements + * 'attrGroups' => array(): PHP attribute groups + * @param array $attributes Additional attributes */ - public function setSourceDirectory(string $directory = '') : void + public function __construct($name, array $subNodes = [], array $attributes = []) { - $this->sourceDirectory = $directory; + $this->attributes = $attributes; + $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->extends = $subNodes['extends'] ?? null; + $this->implements = $subNodes['implements'] ?? []; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'flags', 'name', 'extends', 'implements', 'stmts']; } /** - * Returns the project's root directory where an 'examples' folder can be expected. + * Whether the class is explicitly abstract. + * + * @return bool */ - public function getSourceDirectory() : string + public function isAbstract(): bool { - return $this->sourceDirectory; + return (bool) ($this->flags & self::MODIFIER_ABSTRACT); } /** - * Registers a series of directories that may contain examples. + * Whether the class is final. * - * @param string[] $directories + * @return bool */ - public function setExampleDirectories(array $directories) : void + public function isFinal(): bool { - $this->exampleDirectories = $directories; + return (bool) ($this->flags & self::MODIFIER_FINAL); + } + public function isReadonly(): bool + { + return (bool) ($this->flags & self::MODIFIER_READONLY); } /** - * Returns a series of directories that may contain examples. + * Whether the class is anonymous. * - * @return string[] + * @return bool */ - public function getExampleDirectories() : array + public function isAnonymous(): bool { - return $this->exampleDirectories; + return null === $this->name; } /** - * Attempts to find the requested example file and returns its contents or null if no file was found. - * - * This method will try several methods in search of the given example file, the first one it encounters is - * returned: - * - * 1. Iterates through all examples folders for the given filename - * 2. Checks the source folder for the given filename - * 3. Checks the 'examples' folder in the current working directory for examples - * 4. Checks the path relative to the current working directory for the given filename - * - * @return string[] all lines of the example file + * @internal */ - private function getExampleFileContents(string $filename) : ?array + public static function verifyClassModifier($a, $b) { - $normalizedPath = null; - foreach ($this->exampleDirectories as $directory) { - $exampleFileFromConfig = $this->constructExamplePath($directory, $filename); - if (is_readable($exampleFileFromConfig)) { - $normalizedPath = $exampleFileFromConfig; - break; - } + if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { + throw new Error('Multiple abstract modifiers are not allowed'); } - if (!$normalizedPath) { - if (is_readable($this->getExamplePathFromSource($filename))) { - $normalizedPath = $this->getExamplePathFromSource($filename); - } elseif (is_readable($this->getExamplePathFromExampleDirectory($filename))) { - $normalizedPath = $this->getExamplePathFromExampleDirectory($filename); - } elseif (is_readable($filename)) { - $normalizedPath = $filename; - } + if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { + throw new Error('Multiple final modifiers are not allowed'); + } + if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { + throw new Error('Multiple readonly modifiers are not allowed'); + } + if ($a & 48 && $b & 48) { + throw new Error('Cannot use the final modifier on an abstract class'); } - $lines = $normalizedPath && is_readable($normalizedPath) ? file($normalizedPath) : \false; - return $lines !== \false ? $lines : null; } /** - * Get example filepath based on the example directory inside your project. + * @internal */ - private function getExamplePathFromExampleDirectory(string $file) : string + public static function verifyModifier($a, $b) { - return getcwd() . DIRECTORY_SEPARATOR . 'examples' . DIRECTORY_SEPARATOR . $file; + if ($a & self::VISIBILITY_MODIFIER_MASK && $b & self::VISIBILITY_MODIFIER_MASK) { + throw new Error('Multiple access type modifiers are not allowed'); + } + if ($a & self::MODIFIER_ABSTRACT && $b & self::MODIFIER_ABSTRACT) { + throw new Error('Multiple abstract modifiers are not allowed'); + } + if ($a & self::MODIFIER_STATIC && $b & self::MODIFIER_STATIC) { + throw new Error('Multiple static modifiers are not allowed'); + } + if ($a & self::MODIFIER_FINAL && $b & self::MODIFIER_FINAL) { + throw new Error('Multiple final modifiers are not allowed'); + } + if ($a & self::MODIFIER_READONLY && $b & self::MODIFIER_READONLY) { + throw new Error('Multiple readonly modifiers are not allowed'); + } + if ($a & 48 && $b & 48) { + throw new Error('Cannot use the final modifier on an abstract class member'); + } } - /** - * Returns a path to the example file in the given directory.. - */ - private function constructExamplePath(string $directory, string $file) : string + public function getType(): string { - return rtrim($directory, '\\/') . DIRECTORY_SEPARATOR . $file; + return 'Stmt_Class'; } +} +attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string { - return sprintf('%s%s%s', trim($this->getSourceDirectory(), '\\/'), DIRECTORY_SEPARATOR, trim($file, '"')); + return 'Stmt_Throw'; } } indent = $indent; - $this->indentString = $indentString; - $this->isFirstLineIndented = $indentFirstLine; - $this->lineLength = $lineLength; - $this->tagFormatter = $tagFormatter ?: new PassthroughFormatter(); - $this->lineEnding = $lineEnding; + $this->attributes = $attributes; + $this->name = \is_string($name) ? new Node\VarLikeIdentifier($name) : $name; + $this->default = $default; + } + public function getSubNodeNames(): array + { + return ['name', 'default']; + } + public function getType(): string + { + return 'Stmt_PropertyProperty'; } +} +indentString, $this->indent); - $firstIndent = $this->isFirstLineIndented ? $indent : ''; - // 3 === strlen(' * ') - $wrapLength = $this->lineLength ? $this->lineLength - strlen($indent) - 3 : null; - $text = $this->removeTrailingSpaces($indent, $this->addAsterisksForEachLine($indent, $this->getSummaryAndDescriptionTextBlock($docblock, $wrapLength))); - $comment = $firstIndent . "/**\n"; - if ($text) { - $comment .= $indent . ' * ' . $text . "\n"; - $comment .= $indent . " *\n"; - } - $comment = $this->addTagBlock($docblock, $wrapLength, $indent, $comment); - return str_replace("\n", $this->lineEnding, $comment . $indent . ' */'); + $this->attributes = $attributes; + $this->name = \is_string($name) ? new Identifier($name) : $name; } - private function removeTrailingSpaces(string $indent, string $text) : string + public function getSubNodeNames(): array { - return str_replace(sprintf("\n%s * \n", $indent), sprintf("\n%s *\n", $indent), $text); + return ['name']; } - private function addAsterisksForEachLine(string $indent, string $text) : string + public function getType(): string { - return str_replace("\n", sprintf("\n%s * ", $indent), $text); + return 'Stmt_Label'; } - private function getSummaryAndDescriptionTextBlock(DocBlock $docblock, ?int $wrapLength) : string +} +getSummary() . ((string) $docblock->getDescription() ? "\n\n" . $docblock->getDescription() : ''); - if ($wrapLength !== null) { - $text = wordwrap($text, $wrapLength); - return $text; - } - return $text; + $this->attributes = $attributes; + $this->var = $var; + $this->default = $default; } - private function addTagBlock(DocBlock $docblock, ?int $wrapLength, string $indent, string $comment) : string + public function getSubNodeNames(): array { - foreach ($docblock->getTags() as $tag) { - $tagText = $this->tagFormatter->format($tag); - if ($wrapLength !== null) { - $tagText = wordwrap($tagText, $wrapLength); - } - $tagText = str_replace("\n", sprintf("\n%s * ", $indent), $tagText); - $comment .= sprintf("%s * %s\n", $indent, $tagText); - } - return $comment; + return ['var', 'default']; + } + public function getType(): string + { + return 'Stmt_StaticVar'; } } Important: each parameter in addition to the body variable for the `create` method must default to null, otherwise - * > it violates the constraint with the interface; it is recommended to use the {@see Assert::notNull()} method to - * > verify that a dependency is actually passed. - * - * This Factory also features a Service Locator component that is used to pass the right dependencies to the - * `create` method of a tag; each dependency should be registered as a service or as a parameter. - * - * When you want to use a Tag of your own with custom handling you need to call the `registerTagHandler` method, pass - * the name of the tag and a Fully Qualified Class Name pointing to a class that implements the Tag interface. - */ -final class StandardTagFactory implements TagFactory +use PHPUnitPHAR\PhpParser\Node; +class Case_ extends Node\Stmt { - /** PCRE regular expression matching a tag name. */ - public const REGEX_TAGNAME = '[\\w\\-\\_\\\\:]+'; - /** - * @var array> An array with a tag as a key, and an - * FQCN to a class that handles it as an array value. - */ - private $tagHandlerMappings = [ - 'author' => Author::class, - 'covers' => Covers::class, - 'deprecated' => Deprecated::class, - // 'example' => '\phpDocumentor\Reflection\DocBlock\Tags\Example', - 'link' => LinkTag::class, - 'method' => Method::class, - 'param' => Param::class, - 'property-read' => PropertyRead::class, - 'property' => Property::class, - 'property-write' => PropertyWrite::class, - 'return' => Return_::class, - 'see' => SeeTag::class, - 'since' => Since::class, - 'source' => Source::class, - 'throw' => Throws::class, - 'throws' => Throws::class, - 'uses' => Uses::class, - 'var' => Var_::class, - 'version' => Version::class, - ]; - /** - * @var array> An array with a anotation s a key, and an - * FQCN to a class that handles it as an array value. - */ - private $annotationMappings = []; - /** - * @var ReflectionParameter[][] a lazy-loading cache containing parameters - * for each tagHandler that has been used. - */ - private $tagHandlerParameterCache = []; - /** @var FqsenResolver */ - private $fqsenResolver; - /** - * @var mixed[] an array representing a simple Service Locator where we can store parameters and - * services that can be inserted into the Factory Methods of Tag Handlers. - */ - private $serviceLocator = []; + /** @var null|Node\Expr Condition (null for default) */ + public $cond; + /** @var Node\Stmt[] Statements */ + public $stmts; /** - * Initialize this tag factory with the means to resolve an FQSEN and optionally a list of tag handlers. - * - * If no tag handlers are provided than the default list in the {@see self::$tagHandlerMappings} property - * is used. + * Constructs a case node. * - * @see self::registerTagHandler() to add a new tag handler to the existing default list. + * @param null|Node\Expr $cond Condition (null for default) + * @param Node\Stmt[] $stmts Statements + * @param array $attributes Additional attributes + */ + public function __construct($cond, array $stmts = [], array $attributes = []) + { + $this->attributes = $attributes; + $this->cond = $cond; + $this->stmts = $stmts; + } + public function getSubNodeNames(): array + { + return ['cond', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Case'; + } +} +> $tagHandlers + * @param null|Node\Expr $num Number of loops to continue + * @param array $attributes Additional attributes */ - public function __construct(FqsenResolver $fqsenResolver, ?array $tagHandlers = null) + public function __construct(?Node\Expr $num = null, array $attributes = []) { - $this->fqsenResolver = $fqsenResolver; - if ($tagHandlers !== null) { - $this->tagHandlerMappings = $tagHandlers; - } - $this->addService($fqsenResolver, FqsenResolver::class); + $this->attributes = $attributes; + $this->num = $num; } - public function create(string $tagLine, ?TypeContext $context = null) : Tag + public function getSubNodeNames(): array { - if (!$context) { - $context = new TypeContext(''); - } - [$tagName, $tagBody] = $this->extractTagParts($tagLine); - return $this->createTag(trim($tagBody), $tagName, $context); + return ['num']; + } + public function getType(): string + { + return 'Stmt_Continue'; } +} + \true, '__destruct' => \true, '__call' => \true, '__callstatic' => \true, '__get' => \true, '__set' => \true, '__isset' => \true, '__unset' => \true, '__sleep' => \true, '__wakeup' => \true, '__tostring' => \true, '__set_state' => \true, '__clone' => \true, '__invoke' => \true, '__debuginfo' => \true, '__serialize' => \true, '__unserialize' => \true]; /** - * @param mixed $value + * Constructs a class method node. + * + * @param string|Node\Identifier $name Name + * @param array $subNodes Array of the following optional subnodes: + * 'flags => MODIFIER_PUBLIC: Flags + * 'byRef' => false : Whether to return by reference + * 'params' => array() : Parameters + * 'returnType' => null : Return type + * 'stmts' => array() : Statements + * 'attrGroups' => array() : PHP attribute groups + * @param array $attributes Additional attributes */ - public function addParameter(string $name, $value) : void + public function __construct($name, array $subNodes = [], array $attributes = []) { - $this->serviceLocator[$name] = $value; + $this->attributes = $attributes; + $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; + $this->byRef = $subNodes['byRef'] ?? \false; + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->params = $subNodes['params'] ?? []; + $returnType = $subNodes['returnType'] ?? null; + $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; + $this->stmts = array_key_exists('stmts', $subNodes) ? $subNodes['stmts'] : []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; } - public function addService(object $service, ?string $alias = null) : void + public function getSubNodeNames(): array { - $this->serviceLocator[$alias ?: get_class($service)] = $service; + return ['attrGroups', 'flags', 'byRef', 'name', 'params', 'returnType', 'stmts']; } - public function registerTagHandler(string $tagName, string $handler) : void + public function returnsByRef(): bool { - Assert::stringNotEmpty($tagName); - Assert::classExists($handler); - Assert::implementsInterface($handler, Tag::class); - if (strpos($tagName, '\\') && $tagName[0] !== '\\') { - throw new InvalidArgumentException('A namespaced tag must have a leading backslash as it must be fully qualified'); - } - $this->tagHandlerMappings[$tagName] = $handler; + return $this->byRef; + } + public function getParams(): array + { + return $this->params; + } + public function getReturnType() + { + return $this->returnType; + } + public function getStmts() + { + return $this->stmts; + } + public function getAttrGroups(): array + { + return $this->attrGroups; } /** - * Extracts all components for a tag. + * Whether the method is explicitly or implicitly public. * - * @return string[] + * @return bool */ - private function extractTagParts(string $tagLine) : array + public function isPublic(): bool { - $matches = []; - if (!preg_match('/^@(' . self::REGEX_TAGNAME . ')((?:[\\s\\(\\{])\\s*([^\\s].*)|$)/us', $tagLine, $matches)) { - throw new InvalidArgumentException('The tag "' . $tagLine . '" does not seem to be wellformed, please check it for errors'); - } - if (count($matches) < 3) { - $matches[] = ''; - } - return array_slice($matches, 1); + return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; } /** - * Creates a new tag object with the given name and body or returns null if the tag name was recognized but the - * body was invalid. + * Whether the method is protected. + * + * @return bool */ - private function createTag(string $body, string $name, TypeContext $context) : Tag + public function isProtected(): bool { - $handlerClassName = $this->findHandlerClassName($name, $context); - $arguments = $this->getArgumentsForParametersFromWiring($this->fetchParametersForHandlerFactoryMethod($handlerClassName), $this->getServiceLocatorWithDynamicParameters($context, $name, $body)); - try { - $callable = [$handlerClassName, 'create']; - Assert::isCallable($callable); - /** @phpstan-var callable(string): ?Tag $callable */ - $tag = call_user_func_array($callable, $arguments); - return $tag ?? InvalidTag::create($body, $name); - } catch (InvalidArgumentException $e) { - return InvalidTag::create($body, $name)->withError($e); - } + return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); } /** - * Determines the Fully Qualified Class Name of the Factory or Tag (containing a Factory Method `create`). + * Whether the method is private. * - * @return class-string + * @return bool */ - private function findHandlerClassName(string $tagName, TypeContext $context) : string + public function isPrivate(): bool { - $handlerClassName = Generic::class; - if (isset($this->tagHandlerMappings[$tagName])) { - $handlerClassName = $this->tagHandlerMappings[$tagName]; - } elseif ($this->isAnnotation($tagName)) { - // TODO: Annotation support is planned for a later stage and as such is disabled for now - $tagName = (string) $this->fqsenResolver->resolve($tagName, $context); - if (isset($this->annotationMappings[$tagName])) { - $handlerClassName = $this->annotationMappings[$tagName]; - } - } - return $handlerClassName; + return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); } /** - * Retrieves the arguments that need to be passed to the Factory Method with the given Parameters. - * - * @param ReflectionParameter[] $parameters - * @param mixed[] $locator + * Whether the method is abstract. * - * @return mixed[] A series of values that can be passed to the Factory Method of the tag whose parameters - * is provided with this method. + * @return bool */ - private function getArgumentsForParametersFromWiring(array $parameters, array $locator) : array + public function isAbstract(): bool { - $arguments = []; - foreach ($parameters as $parameter) { - $type = $parameter->getType(); - $typeHint = null; - if ($type instanceof ReflectionNamedType) { - $typeHint = $type->getName(); - if ($typeHint === 'self') { - $declaringClass = $parameter->getDeclaringClass(); - if ($declaringClass !== null) { - $typeHint = $declaringClass->getName(); - } - } - } - if (isset($locator[$typeHint])) { - $arguments[] = $locator[$typeHint]; - continue; - } - $parameterName = $parameter->getName(); - if (isset($locator[$parameterName])) { - $arguments[] = $locator[$parameterName]; - continue; - } - $arguments[] = null; - } - return $arguments; + return (bool) ($this->flags & Class_::MODIFIER_ABSTRACT); } /** - * Retrieves a series of ReflectionParameter objects for the static 'create' method of the given - * tag handler class name. - * - * @param class-string $handlerClassName + * Whether the method is final. * - * @return ReflectionParameter[] + * @return bool */ - private function fetchParametersForHandlerFactoryMethod(string $handlerClassName) : array + public function isFinal(): bool { - if (!isset($this->tagHandlerParameterCache[$handlerClassName])) { - $methodReflection = new ReflectionMethod($handlerClassName, 'create'); - $this->tagHandlerParameterCache[$handlerClassName] = $methodReflection->getParameters(); - } - return $this->tagHandlerParameterCache[$handlerClassName]; + return (bool) ($this->flags & Class_::MODIFIER_FINAL); } /** - * Returns a copy of this class' Service Locator with added dynamic parameters, - * such as the tag's name, body and Context. - * - * @param TypeContext $context The Context (namespace and aliasses) that may be - * passed and is used to resolve FQSENs. - * @param string $tagName The name of the tag that may be - * passed onto the factory method of the Tag class. - * @param string $tagBody The body of the tag that may be - * passed onto the factory method of the Tag class. + * Whether the method is static. * - * @return mixed[] + * @return bool */ - private function getServiceLocatorWithDynamicParameters(TypeContext $context, string $tagName, string $tagBody) : array + public function isStatic(): bool { - return array_merge($this->serviceLocator, ['name' => $tagName, 'body' => $tagBody, TypeContext::class => $context]); + return (bool) ($this->flags & Class_::MODIFIER_STATIC); } /** - * Returns whether the given tag belongs to an annotation. + * Whether the method is magic. * - * @todo this method should be populated once we implement Annotation notation support. + * @return bool */ - private function isAnnotation(string $tagContent) : bool + public function isMagic(): bool { - // 1. Contains a namespace separator - // 2. Contains parenthesis - // 3. Is present in a list of known annotations (make the algorithm smart by first checking is the last part - // of the annotation class name matches the found tag name - return \false; + return isset(self::$magicNames[$this->name->toLowerString()]); + } + public function getType(): string + { + return 'Stmt_ClassMethod'; } } attributes = $attributes; + $this->vars = $vars; + } + public function getSubNodeNames(): array + { + return ['vars']; + } + public function getType(): string + { + return 'Stmt_Unset'; + } } attributes = $attributes; + $this->stmts = $stmts; + } + public function getSubNodeNames(): array + { + return ['stmts']; + } + public function getType(): string + { + return 'Stmt_Finally'; + } +} + array(): Name of extended interfaces + * 'stmts' => array(): Statements + * 'attrGroups' => array(): PHP attribute groups + * @param array $attributes Additional attributes */ - public function create(string $tagLine, ?TypeContext $context = null) : Tag; + public function __construct($name, array $subNodes = [], array $attributes = []) + { + $this->attributes = $attributes; + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->extends = $subNodes['extends'] ?? []; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'name', 'extends', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Interface'; + } +} +attributes = $attributes; + $this->stmts = $stmts; + } + public function getSubNodeNames(): array + { + return ['stmts']; + } + public function getType(): string + { + return 'Stmt_Else'; + } +} +attributes = $attributes; + $this->cond = $cond; + $this->stmts = $stmts; + } + public function getSubNodeNames(): array + { + return ['cond', 'stmts']; + } + public function getType(): string + { + return 'Stmt_While'; + } +} + $handler FQCN of handler. + * @param string $remaining Remaining text after halt compiler statement. + * @param array $attributes Additional attributes + */ + public function __construct(string $remaining, array $attributes = []) + { + $this->attributes = $attributes; + $this->remaining = $remaining; + } + public function getSubNodeNames(): array + { + return ['remaining']; + } + public function getType(): string + { + return 'Stmt_HaltCompiler'; + } +} +value pair node. * - * @throws InvalidArgumentException If the tag name is not a string. - * @throws InvalidArgumentException If the tag name is namespaced (contains backslashes) but - * does not start with a backslash. - * @throws InvalidArgumentException If the handler is not a string. - * @throws InvalidArgumentException If the handler is not an existing class. - * @throws InvalidArgumentException If the handler does not implement the {@see Tag} interface. + * @param string|Node\Identifier $key Key + * @param Node\Expr $value Value + * @param array $attributes Additional attributes */ - public function registerTagHandler(string $tagName, string $handler) : void; + public function __construct($key, Node\Expr $value, array $attributes = []) + { + $this->attributes = $attributes; + $this->key = \is_string($key) ? new Node\Identifier($key) : $key; + $this->value = $value; + } + public function getSubNodeNames(): array + { + return ['key', 'value']; + } + public function getType(): string + { + return 'Stmt_DeclareDeclare'; + } } authorName = $authorName; - $this->authorEmail = $authorEmail; + $this->attributes = $attributes; + $this->name = \is_string($name) ? new Identifier($name) : $name; + } + public function getSubNodeNames(): array + { + return ['name']; } + public function getType(): string + { + return 'Stmt_Goto'; + } +} +authorName; + $this->attributes = $attributes; + $this->vars = $vars; + } + public function getSubNodeNames(): array + { + return ['vars']; } + public function getType(): string + { + return 'Stmt_Static'; + } +} +authorEmail; + $this->attributes = $attributes; + $this->expr = $expr; } - /** - * Returns this tag in string form. - */ - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->authorEmail) { - $authorEmail = '<' . $this->authorEmail . '>'; - } else { - $authorEmail = ''; - } - $authorName = $this->authorName; - return $authorName . ($authorEmail !== '' ? ($authorName !== '' ? ' ' : '') . $authorEmail : ''); + return ['expr']; } - /** - * Attempts to create a new Author object based on the tag body. - */ - public static function create(string $body) : ?self + public function getType(): string { - $splitTagContent = preg_match('/^([^\\<]*)(?:\\<([^\\>]*)\\>)?$/u', $body, $matches); - if (!$splitTagContent) { - return null; - } - $authorName = trim($matches[1]); - $email = isset($matches[2]) ? trim($matches[2]) : ''; - return new static($authorName, $email); + return 'Stmt_Return'; } } name; + $this->attributes = $attributes; + $this->stmts = $stmts; + $this->catches = $catches; + $this->finally = $finally; } - public function getDescription() : ?Description + public function getSubNodeNames(): array { - return $this->description; + return ['stmts', 'catches', 'finally']; } - public function render(?Formatter $formatter = null) : string + public function getType(): string { - if ($formatter === null) { - $formatter = new Formatter\PassthroughFormatter(); - } - return $formatter->format($this); + return 'Stmt_TryCatch'; } } refers = $refers; - $this->description = $description; + $this->attributes = $attributes; + $this->exprs = $exprs; } - public static function create(string $body, ?DescriptionFactory $descriptionFactory = null, ?FqsenResolver $resolver = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::stringNotEmpty($body); - Assert::notNull($descriptionFactory); - Assert::notNull($resolver); - $parts = Utils::pregSplit('/\\s+/Su', $body, 2); - return new static(self::resolveFqsen($parts[0], $resolver, $context), $descriptionFactory->create($parts[1] ?? '', $context)); + return ['exprs']; } - private static function resolveFqsen(string $parts, ?FqsenResolver $fqsenResolver, ?TypeContext $context) : Fqsen + public function getType(): string { - Assert::notNull($fqsenResolver); - $fqsenParts = explode('::', $parts); - $resolved = $fqsenResolver->resolve($fqsenParts[0], $context); - if (!array_key_exists(1, $fqsenParts)) { - return $resolved; - } - return new Fqsen($resolved . '::' . $fqsenParts[1]); + return 'Stmt_Echo'; } +} +refers; + $this->attributes = $attributes; + $this->declares = $declares; + $this->stmts = $stmts; } - /** - * Returns a string representation of this tag. - */ - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $refers = (string) $this->refers; - return $refers . ($description !== '' ? ($refers !== '' ? ' ' : '') . $description : ''); + return ['declares', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Declare'; } } version = $version; - $this->description = $description; + $this->attributes = $attributes; + $this->flags = $flags; + $this->props = $props; + $this->type = \is_string($type) ? new Identifier($type) : $type; + $this->attrGroups = $attrGroups; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'flags', 'type', 'props']; } /** - * @return static + * Whether the property is explicitly or implicitly public. + * + * @return bool */ - public static function create(?string $body, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function isPublic(): bool { - if (empty($body)) { - return new static(); - } - $matches = []; - if (!preg_match('/^(' . self::REGEX_VECTOR . ')\\s*(.+)?$/sux', $body, $matches)) { - return new static(null, $descriptionFactory !== null ? $descriptionFactory->create($body, $context) : null); - } - Assert::notNull($descriptionFactory); - return new static($matches[1], $descriptionFactory->create($matches[2] ?? '', $context)); + return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; } /** - * Gets the version section of the tag. + * Whether the property is protected. + * + * @return bool */ - public function getVersion() : ?string + public function isProtected(): bool { - return $this->version; + return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); } /** - * Returns a string representation for this tag. + * Whether the property is private. + * + * @return bool */ - public function __toString() : string + public function isPrivate(): bool { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $version = (string) $this->version; - return $version . ($description !== '' ? ($version !== '' ? ' ' : '') . $description : ''); + return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); + } + /** + * Whether the property is static. + * + * @return bool + */ + public function isStatic(): bool + { + return (bool) ($this->flags & Class_::MODIFIER_STATIC); + } + /** + * Whether the property is readonly. + * + * @return bool + */ + public function isReadonly(): bool + { + return (bool) ($this->flags & Class_::MODIFIER_READONLY); + } + public function getType(): string + { + return 'Stmt_Property'; } } filePath = $filePath; - $this->startingLine = $startingLine; - $this->lineCount = $lineCount; - if ($content !== null) { - $this->content = trim($content); - } - $this->isURI = $isURI; - } - public function getContent() : string + public function __construct(?Node\Expr $num = null, array $attributes = []) { - if ($this->content === null || $this->content === '') { - $filePath = $this->filePath; - if ($this->isURI) { - $filePath = $this->isUriRelative($this->filePath) ? str_replace('%2F', '/', rawurlencode($this->filePath)) : $this->filePath; - } - return trim($filePath); - } - return $this->content; + $this->attributes = $attributes; + $this->num = $num; } - public function getDescription() : ?string + public function getSubNodeNames(): array { - return $this->content; + return ['num']; } - public static function create(string $body) : ?Tag + public function getType(): string { - // File component: File path in quotes or File URI / Source information - if (!preg_match('/^\\s*(?:(\\"[^\\"]+\\")|(\\S+))(?:\\s+(.*))?$/sux', $body, $matches)) { - return null; - } - $filePath = null; - $fileUri = null; - if ($matches[1] !== '') { - $filePath = $matches[1]; - } else { - $fileUri = $matches[2]; - } - $startingLine = 1; - $lineCount = 0; - $description = null; - if (array_key_exists(3, $matches)) { - $description = $matches[3]; - // Starting line / Number of lines / Description - if (preg_match('/^([1-9]\\d*)(?:\\s+((?1))\\s*)?(.*)$/sux', $matches[3], $contentMatches)) { - $startingLine = (int) $contentMatches[1]; - if (isset($contentMatches[2])) { - $lineCount = (int) $contentMatches[2]; - } - if (array_key_exists(3, $contentMatches)) { - $description = $contentMatches[3]; - } - } - } - return new static($filePath ?? $fileUri ?? '', $fileUri !== null, $startingLine, $lineCount, $description); + return 'Stmt_Break'; } +} +filePath, '"'); - } - /** - * Returns a string representation for this tag. + * @param Node\Expr $cond Condition + * @param array $subNodes Array of the following optional subnodes: + * 'stmts' => array(): Statements + * 'elseifs' => array(): Elseif clauses + * 'else' => null : Else clause + * @param array $attributes Additional attributes */ - public function __toString() : string + public function __construct(Node\Expr $cond, array $subNodes = [], array $attributes = []) { - $filePath = $this->filePath; - $isDefaultLine = $this->startingLine === 1 && $this->lineCount === 0; - $startingLine = !$isDefaultLine ? (string) $this->startingLine : ''; - $lineCount = !$isDefaultLine ? (string) $this->lineCount : ''; - $content = (string) $this->content; - return $filePath . ($startingLine !== '' ? ($filePath !== '' ? ' ' : '') . $startingLine : '') . ($lineCount !== '' ? ($filePath !== '' || $startingLine !== '' ? ' ' : '') . $lineCount : '') . ($content !== '' ? ($filePath !== '' || $startingLine !== '' || $lineCount !== '' ? ' ' : '') . $content : ''); + $this->attributes = $attributes; + $this->cond = $cond; + $this->stmts = $subNodes['stmts'] ?? []; + $this->elseifs = $subNodes['elseifs'] ?? []; + $this->else = $subNodes['else'] ?? null; } - /** - * Returns true if the provided URI is relative or contains a complete scheme (and thus is absolute). - */ - private function isUriRelative(string $uri) : bool + public function getSubNodeNames(): array { - return strpos($uri, ':') === \false; + return ['cond', 'stmts', 'elseifs', 'else']; } - public function getStartingLine() : int + public function getType(): string { - return $this->startingLine; + return 'Stmt_If'; } - public function getLineCount() : int +} +lineCount; + $this->attributes = $attributes; + $this->consts = $consts; } - public function getName() : string + public function getSubNodeNames(): array { - return 'example'; + return ['consts']; } - public function render(?Formatter $formatter = null) : string + public function getType(): string { - if ($formatter === null) { - $formatter = new Formatter\PassthroughFormatter(); - } - return $formatter->format($this); + return 'Stmt_Const'; } } false : Whether to return by reference + * 'params' => array(): Parameters + * 'returnType' => null : Return type + * 'stmts' => array(): Statements + * 'attrGroups' => array(): PHP attribute groups + * @param array $attributes Additional attributes */ - public static function create(string $body); + public function __construct($name, array $subNodes = [], array $attributes = []) + { + $this->attributes = $attributes; + $this->byRef = $subNodes['byRef'] ?? \false; + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->params = $subNodes['params'] ?? []; + $returnType = $subNodes['returnType'] ?? null; + $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'byRef', 'name', 'params', 'returnType', 'stmts']; + } + public function returnsByRef(): bool + { + return $this->byRef; + } + public function getParams(): array + { + return $this->params; + } + public function getReturnType() + { + return $this->returnType; + } + public function getAttrGroups(): array + { + return $this->attrGroups; + } + /** @return Node\Stmt[] */ + public function getStmts(): array + { + return $this->stmts; + } + public function getType(): string + { + return 'Stmt_Function'; + } } attributes = $attributes; + $this->cond = $cond; + $this->cases = $cases; + } + public function getSubNodeNames(): array + { + return ['cond', 'cases']; + } + public function getType(): string + { + return 'Stmt_Switch'; + } } null : Variable to assign key to + * 'byRef' => false : Whether to assign value by reference + * 'stmts' => array(): Statements + * @param array $attributes Additional attributes */ - public function __construct(array $tags) + public function __construct(Node\Expr $expr, Node\Expr $valueVar, array $subNodes = [], array $attributes = []) { - foreach ($tags as $tag) { - $this->maxLen = max($this->maxLen, strlen($tag->getName())); - } + $this->attributes = $attributes; + $this->expr = $expr; + $this->keyVar = $subNodes['keyVar'] ?? null; + $this->byRef = $subNodes['byRef'] ?? \false; + $this->valueVar = $valueVar; + $this->stmts = $subNodes['stmts'] ?? []; } - /** - * Formats the given tag to return a simple plain text version. - */ - public function format(Tag $tag) : string + public function getSubNodeNames(): array { - return '@' . $tag->getName() . str_repeat(' ', $this->maxLen - strlen($tag->getName()) + 1) . $tag; + return ['expr', 'keyVar', 'byRef', 'valueVar', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Foreach'; } } array(): Init expressions + * 'cond' => array(): Loop conditions + * 'loop' => array(): Loop expressions + * 'stmts' => array(): Statements + * @param array $attributes Additional attributes */ - public function format(Tag $tag) : string + public function __construct(array $subNodes = [], array $attributes = []) { - return trim('@' . $tag->getName() . ' ' . $tag); + $this->attributes = $attributes; + $this->init = $subNodes['init'] ?? []; + $this->cond = $subNodes['cond'] ?? []; + $this->loop = $subNodes['loop'] ?? []; + $this->stmts = $subNodes['stmts'] ?? []; + } + public function getSubNodeNames(): array + { + return ['init', 'cond', 'loop', 'stmts']; + } + public function getType(): string + { + return 'Stmt_For'; } } validateTagName($name); - $this->name = $name; - $this->description = $description; - } - /** - * Creates a new tag that represents any unknown tag type. + * Constructs a do while node. * - * @return static + * @param Node\Expr $cond Condition + * @param Node\Stmt[] $stmts Statements + * @param array $attributes Additional attributes */ - public static function create(string $body, string $name = '', ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) { - Assert::stringNotEmpty($name); - Assert::notNull($descriptionFactory); - $description = $body !== '' ? $descriptionFactory->create($body, $context) : null; - return new static($name, $description); + $this->attributes = $attributes; + $this->cond = $cond; + $this->stmts = $stmts; } - /** - * Returns the tag as a serialized string - */ - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - return $description; + return ['stmts', 'cond']; } - /** - * Validates if the tag name matches the expected format, otherwise throws an exception. - */ - private function validateTagName(string $name) : void + public function getType(): string { - if (!preg_match('/^' . StandardTagFactory::REGEX_TAGNAME . '$/u', $name)) { - throw new InvalidArgumentException('The tag name "' . $name . '" is not wellformed. Tags may only consist of letters, underscores, ' . 'hyphens and backslashes.'); - } + return 'Stmt_Do'; } } name = $name; - $this->body = $body; - } - public function getException() : ?Throwable - { - return $this->throwable; - } - public function getName() : string - { - return $this->name; - } - public static function create(string $body, string $name = '') : self - { - return new self($name, $body); - } - public function withError(Throwable $exception) : self - { - $this->flattenExceptionBacktrace($exception); - $tag = new self($this->name, $this->body); - $tag->throwable = $exception; - return $tag; - } - /** - * Removes all complex types from backtrace - * - * Not all objects are serializable. So we need to remove them from the - * stored exception to be sure that we do not break existing library usage. - */ - private function flattenExceptionBacktrace(Throwable $exception) : void - { - $traceProperty = (new ReflectionClass(Exception::class))->getProperty('trace'); - $traceProperty->setAccessible(\true); - do { - $trace = $exception->getTrace(); - if (isset($trace[0]['args'])) { - $trace = array_map(function (array $call) : array { - $call['args'] = array_map([$this, 'flattenArguments'], $call['args'] ?? []); - return $call; - }, $trace); - } - $traceProperty->setValue($exception, $trace); - $exception = $exception->getPrevious(); - } while ($exception !== null); - $traceProperty->setAccessible(\false); - } + /** @var int Type of group use */ + public $type; + /** @var Name Prefix for uses */ + public $prefix; + /** @var UseUse[] Uses */ + public $uses; /** - * @param mixed $value - * - * @return mixed + * Constructs a group use node. * - * @throws ReflectionException + * @param Name $prefix Prefix for uses + * @param UseUse[] $uses Uses + * @param int $type Type of group use + * @param array $attributes Additional attributes */ - private function flattenArguments($value) + public function __construct(Name $prefix, array $uses, int $type = Use_::TYPE_NORMAL, array $attributes = []) { - if ($value instanceof Closure) { - $closureReflection = new ReflectionFunction($value); - $value = sprintf('(Closure at %s:%s)', $closureReflection->getFileName(), $closureReflection->getStartLine()); - } elseif (is_object($value)) { - $value = sprintf('object(%s)', get_class($value)); - } elseif (is_resource($value)) { - $value = sprintf('resource(%s)', get_resource_type($value)); - } elseif (is_array($value)) { - $value = array_map([$this, 'flattenArguments'], $value); - } - return $value; + $this->attributes = $attributes; + $this->type = $type; + $this->prefix = $prefix; + $this->uses = $uses; } - public function render(?Formatter $formatter = null) : string + public function getSubNodeNames(): array { - if ($formatter === null) { - $formatter = new Formatter\PassthroughFormatter(); - } - return $formatter->format($this); + return ['type', 'prefix', 'uses']; } - public function __toString() : string + public function getType(): string { - return $this->body; + return 'Stmt_GroupUse'; } } link = $link; - $this->description = $description; - } - public static function create(string $body, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getTraitUses(): array { - Assert::notNull($descriptionFactory); - $parts = Utils::pregSplit('/\\s+/Su', $body, 2); - $description = isset($parts[1]) ? $descriptionFactory->create($parts[1], $context) : null; - return new static($parts[0], $description); + $traitUses = []; + foreach ($this->stmts as $stmt) { + if ($stmt instanceof TraitUse) { + $traitUses[] = $stmt; + } + } + return $traitUses; } /** - * Gets the link + * @return ClassConst[] */ - public function getLink() : string + public function getConstants(): array { - return $this->link; + $constants = []; + foreach ($this->stmts as $stmt) { + if ($stmt instanceof ClassConst) { + $constants[] = $stmt; + } + } + return $constants; } /** - * Returns a string representation for this tag. + * @return Property[] */ - public function __toString() : string + public function getProperties(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; + $properties = []; + foreach ($this->stmts as $stmt) { + if ($stmt instanceof Property) { + $properties[] = $stmt; + } } - $link = $this->link; - return $link . ($description !== '' ? ($link !== '' ? ' ' : '') . $description : ''); + return $properties; } -} - - * @var array> - */ - private $arguments; - /** @var bool */ - private $isStatic; - /** @var Type */ - private $returnType; /** - * @param array> $arguments - * @phpstan-param array $arguments + * Gets property with the given name defined directly in this class/interface/trait. + * + * @param string $name Name of the property + * + * @return Property|null Property node or null if the property does not exist */ - public function __construct(string $methodName, array $arguments = [], ?Type $returnType = null, bool $static = \false, ?Description $description = null) - { - Assert::stringNotEmpty($methodName); - if ($returnType === null) { - $returnType = new Void_(); - } - $this->methodName = $methodName; - $this->arguments = $this->filterArguments($arguments); - $this->returnType = $returnType; - $this->isStatic = $static; - $this->description = $description; - } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : ?self + public function getProperty(string $name) { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - // 1. none or more whitespace - // 2. optionally the keyword "static" followed by whitespace - // 3. optionally a word with underscores followed by whitespace : as - // type for the return value - // 4. then optionally a word with underscores followed by () and - // whitespace : as method name as used by phpDocumentor - // 5. then a word with underscores, followed by ( and any character - // until a ) and whitespace : as method name with signature - // 6. any remaining text : as description - if (!preg_match('/^ - # Static keyword - # Declares a static method ONLY if type is also present - (?: - (static) - \\s+ - )? - # Return type - (?: - ( - (?:[\\w\\|_\\\\]*\\$this[\\w\\|_\\\\]*) - | - (?: - (?:[\\w\\|_\\\\]+) - # array notation - (?:\\[\\])* - )*+ - ) - \\s+ - )? - # Method name - ([\\w_]+) - # Arguments - (?: - \\(([^\\)]*)\\) - )? - \\s* - # Description - (.*) - $/sux', $body, $matches)) { - return null; - } - [, $static, $returnType, $methodName, $argumentLines, $description] = $matches; - $static = $static === 'static'; - if ($returnType === '') { - $returnType = 'void'; - } - $returnType = $typeResolver->resolve($returnType, $context); - $description = $descriptionFactory->create($description, $context); - /** @phpstan-var array $arguments */ - $arguments = []; - if ($argumentLines !== '') { - $argumentsExploded = explode(',', $argumentLines); - foreach ($argumentsExploded as $argument) { - $argument = explode(' ', self::stripRestArg(trim($argument)), 2); - if (strpos($argument[0], '$') === 0) { - $argumentName = substr($argument[0], 1); - $argumentType = new Mixed_(); - } else { - $argumentType = $typeResolver->resolve($argument[0], $context); - $argumentName = ''; - if (isset($argument[1])) { - $argument[1] = self::stripRestArg($argument[1]); - $argumentName = substr($argument[1], 1); + foreach ($this->stmts as $stmt) { + if ($stmt instanceof Property) { + foreach ($stmt->props as $prop) { + if ($prop instanceof PropertyProperty && $name === $prop->name->toString()) { + return $stmt; } } - $arguments[] = ['name' => $argumentName, 'type' => $argumentType]; } } - return new static($methodName, $arguments, $returnType, $static, $description); + return null; } /** - * Retrieves the method name. + * Gets all methods defined directly in this class/interface/trait + * + * @return ClassMethod[] */ - public function getMethodName() : string + public function getMethods(): array { - return $this->methodName; + $methods = []; + foreach ($this->stmts as $stmt) { + if ($stmt instanceof ClassMethod) { + $methods[] = $stmt; + } + } + return $methods; } /** - * @return array> - * @phpstan-return array + * Gets method with the given name defined directly in this class/interface/trait. + * + * @param string $name Name of the method (compared case-insensitively) + * + * @return ClassMethod|null Method node or null if the method does not exist */ - public function getArguments() : array + public function getMethod(string $name) { - return $this->arguments; + $lowerName = strtolower($name); + foreach ($this->stmts as $stmt) { + if ($stmt instanceof ClassMethod && $lowerName === $stmt->name->toLowerString()) { + return $stmt; + } + } + return null; } +} +isStatic; + $this->attributes = $attributes; + $this->type = $type; + $this->uses = $uses; } - public function getReturnType() : Type + public function getSubNodeNames(): array { - return $this->returnType; + return ['type', 'uses']; } - public function __toString() : string + public function getType(): string { - $arguments = []; - foreach ($this->arguments as $argument) { - $arguments[] = $argument['type'] . ' $' . $argument['name']; - } - $argumentStr = '(' . implode(', ', $arguments) . ')'; - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $static = $this->isStatic ? 'static' : ''; - $returnType = (string) $this->returnType; - $methodName = $this->methodName; - return $static . ($returnType !== '' ? ($static !== '' ? ' ' : '') . $returnType : '') . ($methodName !== '' ? ($static !== '' || $returnType !== '' ? ' ' : '') . $methodName : '') . $argumentStr . ($description !== '' ? ' ' . $description : ''); + return 'Stmt_Use'; } +} + $arguments + * Constructs an inline HTML node. * - * @return mixed[][] - * @phpstan-return array + * @param string $value String + * @param array $attributes Additional attributes */ - private function filterArguments(array $arguments = []) : array + public function __construct(string $value, array $attributes = []) { - $result = []; - foreach ($arguments as $argument) { - if (is_string($argument)) { - $argument = ['name' => $argument]; - } - if (!isset($argument['type'])) { - $argument['type'] = new Mixed_(); - } - $keys = array_keys($argument); - sort($keys); - if ($keys !== ['name', 'type']) { - throw new InvalidArgumentException('Arguments can only have the "name" and "type" fields, found: ' . var_export($keys, \true)); - } - $result[] = $argument; - } - return $result; + $this->attributes = $attributes; + $this->value = $value; } - private static function stripRestArg(string $argument) : string + public function getSubNodeNames(): array { - if (strpos($argument, '...') === 0) { - $argument = trim(substr($argument, 3)); - } - return $argument; + return ['value']; + } + public function getType(): string + { + return 'Stmt_InlineHTML'; } } name = 'param'; - $this->variableName = $variableName; - $this->type = $type; - $this->isVariadic = $isVariadic; - $this->description = $description; - $this->isReference = $isReference; + $this->attributes = $attributes; + $this->flags = $flags; + $this->consts = $consts; + $this->attrGroups = $attrGroups; + $this->type = \is_string($type) ? new Node\Identifier($type) : $type; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$firstPart, $body] = self::extractTypeFromBody($body); - $type = null; - $parts = Utils::pregSplit('/(\\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE); - $variableName = ''; - $isVariadic = \false; - $isReference = \false; - // if the first item that is encountered is not a variable; it is a type - if ($firstPart && !self::strStartsWithVariable($firstPart)) { - $type = $typeResolver->resolve($firstPart, $context); - } else { - // first part is not a type; we should prepend it to the parts array for further processing - array_unshift($parts, $firstPart); - } - // if the next item starts with a $ or ...$ or &$ or &...$ it must be the variable name - if (isset($parts[0]) && self::strStartsWithVariable($parts[0])) { - $variableName = array_shift($parts); - if ($type) { - array_shift($parts); - } - Assert::notNull($variableName); - if (strpos($variableName, '$') === 0) { - $variableName = substr($variableName, 1); - } elseif (strpos($variableName, '&$') === 0) { - $isReference = \true; - $variableName = substr($variableName, 2); - } elseif (strpos($variableName, '...$') === 0) { - $isVariadic = \true; - $variableName = substr($variableName, 4); - } elseif (strpos($variableName, '&...$') === 0) { - $isVariadic = \true; - $isReference = \true; - $variableName = substr($variableName, 5); - } - } - $description = $descriptionFactory->create(implode('', $parts), $context); - return new static($variableName, $type, $isVariadic, $description, $isReference); + return ['attrGroups', 'flags', 'type', 'consts']; } /** - * Returns the variable's name. + * Whether constant is explicitly or implicitly public. + * + * @return bool */ - public function getVariableName() : ?string + public function isPublic(): bool { - return $this->variableName; + return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0; } /** - * Returns whether this tag is variadic. + * Whether constant is protected. + * + * @return bool */ - public function isVariadic() : bool + public function isProtected(): bool { - return $this->isVariadic; + return (bool) ($this->flags & Class_::MODIFIER_PROTECTED); } /** - * Returns whether this tag is passed by reference. + * Whether constant is private. + * + * @return bool */ - public function isReference() : bool + public function isPrivate(): bool { - return $this->isReference; + return (bool) ($this->flags & Class_::MODIFIER_PRIVATE); } /** - * Returns a string representation for this tag. + * Whether constant is final. + * + * @return bool */ - public function __toString() : string + public function isFinal(): bool { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $variableName = ''; - if ($this->variableName) { - $variableName .= ($this->isReference ? '&' : '') . ($this->isVariadic ? '...' : ''); - $variableName .= '$' . $this->variableName; - } - $type = (string) $this->type; - return $type . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '') . ($description !== '' ? ($type !== '' || $variableName !== '' ? ' ' : '') . $description : ''); + return (bool) ($this->flags & Class_::MODIFIER_FINAL); } - private static function strStartsWithVariable(string $str) : bool + public function getType(): string { - return strpos($str, '$') === 0 || strpos($str, '...$') === 0 || strpos($str, '&$') === 0 || strpos($str, '&...$') === 0; + return 'Stmt_ClassConst'; } } name = 'property'; - $this->variableName = $variableName; - $this->type = $type; - $this->description = $description; - } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self - { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$firstPart, $body] = self::extractTypeFromBody($body); - $type = null; - $parts = Utils::pregSplit('/(\\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE); - $variableName = ''; - // if the first item that is encountered is not a variable; it is a type - if ($firstPart && $firstPart[0] !== '$') { - $type = $typeResolver->resolve($firstPart, $context); - } else { - // first part is not a type; we should prepend it to the parts array for further processing - array_unshift($parts, $firstPart); - } - // if the next item starts with a $ it must be the variable name - if (isset($parts[0]) && strpos($parts[0], '$') === 0) { - $variableName = array_shift($parts); - if ($type) { - array_shift($parts); - } - Assert::notNull($variableName); - $variableName = substr($variableName, 1); - } - $description = $descriptionFactory->create(implode('', $parts), $context); - return new static($variableName, $type, $description); - } + /** @var Node\Expr Condition */ + public $cond; + /** @var Node\Stmt[] Statements */ + public $stmts; /** - * Returns the variable's name. + * Constructs an elseif node. + * + * @param Node\Expr $cond Condition + * @param Node\Stmt[] $stmts Statements + * @param array $attributes Additional attributes */ - public function getVariableName() : ?string + public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) { - return $this->variableName; + $this->attributes = $attributes; + $this->cond = $cond; + $this->stmts = $stmts; } - /** - * Returns a string representation for this tag. - */ - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - if ($this->variableName) { - $variableName = '$' . $this->variableName; - } else { - $variableName = ''; - } - $type = (string) $this->type; - return $type . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '') . ($description !== '' ? ($type !== '' || $variableName !== '' ? ' ' : '') . $description : ''); + return ['cond', 'stmts']; + } + public function getType(): string + { + return 'Stmt_ElseIf'; } } name = 'property-read'; - $this->variableName = $variableName; - $this->type = $type; - $this->description = $description; + return []; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getType(): string { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$firstPart, $body] = self::extractTypeFromBody($body); - $type = null; - $parts = Utils::pregSplit('/(\\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE); - $variableName = ''; - // if the first item that is encountered is not a variable; it is a type - if ($firstPart && $firstPart[0] !== '$') { - $type = $typeResolver->resolve($firstPart, $context); - } else { - // first part is not a type; we should prepend it to the parts array for further processing - array_unshift($parts, $firstPart); - } - // if the next item starts with a $ it must be the variable name - if (isset($parts[0]) && strpos($parts[0], '$') === 0) { - $variableName = array_shift($parts); - if ($type) { - array_shift($parts); - } - Assert::notNull($variableName); - $variableName = substr($variableName, 1); - } - $description = $descriptionFactory->create(implode('', $parts), $context); - return new static($variableName, $type, $description); + return 'Stmt_Nop'; } +} + array(): Statements + * 'attrGroups' => array(): PHP attribute groups + * @param array $attributes Additional attributes */ - public function getVariableName() : ?string + public function __construct($name, array $subNodes = [], array $attributes = []) { - return $this->variableName; + $this->attributes = $attributes; + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'name', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Trait'; } +} + null : Scalar type + * 'implements' => array() : Names of implemented interfaces + * 'stmts' => array() : Statements + * 'attrGroups' => array() : PHP attribute groups + * @param array $attributes Additional attributes */ - public function __toString() : string + public function __construct($name, array $subNodes = [], array $attributes = []) { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - if ($this->variableName) { - $variableName = '$' . $this->variableName; - } else { - $variableName = ''; - } - $type = (string) $this->type; - return $type . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '') . ($description !== '' ? ($type !== '' || $variableName !== '' ? ' ' : '') . $description : ''); + $this->name = \is_string($name) ? new Node\Identifier($name) : $name; + $this->scalarType = $subNodes['scalarType'] ?? null; + $this->implements = $subNodes['implements'] ?? []; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; + parent::__construct($attributes); + } + public function getSubNodeNames(): array + { + return ['attrGroups', 'name', 'scalarType', 'implements', 'stmts']; + } + public function getType(): string + { + return 'Stmt_Enum'; } } name = 'property-write'; - $this->variableName = $variableName; - $this->type = $type; - $this->description = $description; + $this->conds = $conds; + $this->body = $body; + $this->attributes = $attributes; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$firstPart, $body] = self::extractTypeFromBody($body); - $type = null; - $parts = Utils::pregSplit('/(\\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE); - $variableName = ''; - // if the first item that is encountered is not a variable; it is a type - if ($firstPart && $firstPart[0] !== '$') { - $type = $typeResolver->resolve($firstPart, $context); - } else { - // first part is not a type; we should prepend it to the parts array for further processing - array_unshift($parts, $firstPart); - } - // if the next item starts with a $ it must be the variable name - if (isset($parts[0]) && strpos($parts[0], '$') === 0) { - $variableName = array_shift($parts); - if ($type) { - array_shift($parts); - } - Assert::notNull($variableName); - $variableName = substr($variableName, 1); - } - $description = $descriptionFactory->create(implode('', $parts), $context); - return new static($variableName, $type, $description); + return ['conds', 'body']; + } + public function getType(): string + { + return 'MatchArm'; } +} +variableName; + $this->attributes = $attributes; + $this->type = \is_string($type) ? new Identifier($type) : $type; } - /** - * Returns a string representation for this tag. - */ - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - if ($this->variableName) { - $variableName = '$' . $this->variableName; - } else { - $variableName = ''; - } - $type = (string) $this->type; - return $type . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '') . ($description !== '' ? ($type !== '' || $variableName !== '' ? ' ' : '') . $description : ''); + return ['type']; + } + public function getType(): string + { + return 'NullableType'; } } \true, 'parent' => \true, 'static' => \true]; + /** + * Constructs an identifier node. + * + * @param string $name Identifier as string + * @param array $attributes Additional attributes + */ + public function __construct(string $name, array $attributes = []) { - $this->fqsen = $fqsen; + $this->attributes = $attributes; + $this->name = $name; + } + public function getSubNodeNames(): array + { + return ['name']; } /** - * @return string string representation of the referenced fqsen + * Get identifier as string. + * + * @return string Identifier as string. */ - public function __toString() : string + public function toString(): string { - return (string) $this->fqsen; + return $this->name; + } + /** + * Get lowercased identifier as string. + * + * @return string Lowercased identifier as string + */ + public function toLowerString(): string + { + return strtolower($this->name); + } + /** + * Checks whether the identifier is a special class name (self, parent or static). + * + * @return bool Whether identifier is a special class name + */ + public function isSpecialClassName(): bool + { + return isset(self::$specialClassNames[strtolower($this->name)]); + } + /** + * Get identifier as string. + * + * @return string Identifier as string + */ + public function __toString(): string + { + return $this->name; + } + public function getType(): string + { + return 'Identifier'; } } uri = $uri; + $this->attributes = $attributes; + $this->type = \is_string($type) ? new Identifier($type) : $type; + $this->byRef = $byRef; + $this->variadic = $variadic; + $this->var = $var; + $this->default = $default; + $this->flags = $flags; + $this->attrGroups = $attrGroups; } - public function __toString() : string + public function getSubNodeNames(): array { - return $this->uri; + return ['attrGroups', 'flags', 'type', 'byRef', 'variadic', 'var', 'default']; + } + public function getType(): string + { + return 'Param'; } } name = 'return'; - $this->type = $type; - $this->description = $description; + $this->attributes = $attributes; + $this->name = $name; + $this->args = $args; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$type, $description] = self::extractTypeFromBody($body); - $type = $typeResolver->resolve($type, $context); - $description = $descriptionFactory->create($description, $context); - return new static($type, $description); + return ['name', 'args']; } - public function __toString() : string + public function getType(): string { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $type = $this->type ? '' . $this->type : 'mixed'; - return $type . ($description !== '' ? ' ' . $description : ''); + return 'Attribute'; } } refers = $refers; - $this->description = $description; - } - public static function create(string $body, ?FqsenResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function __construct(Expr $left, Expr $right, array $attributes = []) { - Assert::notNull($descriptionFactory); - $parts = Utils::pregSplit('/\\s+/Su', $body, 2); - $description = isset($parts[1]) ? $descriptionFactory->create($parts[1], $context) : null; - // https://tools.ietf.org/html/rfc2396#section-3 - if (preg_match('#\\w://\\w#', $parts[0])) { - return new static(new Url($parts[0]), $description); - } - return new static(new FqsenRef(self::resolveFqsen($parts[0], $typeResolver, $context)), $description); + $this->attributes = $attributes; + $this->left = $left; + $this->right = $right; } - private static function resolveFqsen(string $parts, ?FqsenResolver $fqsenResolver, ?TypeContext $context) : Fqsen + public function getSubNodeNames(): array { - Assert::notNull($fqsenResolver); - $fqsenParts = explode('::', $parts); - $resolved = $fqsenResolver->resolve($fqsenParts[0], $context); - if (!array_key_exists(1, $fqsenParts)) { - return $resolved; - } - return new Fqsen($resolved . '::' . $fqsenParts[1]); + return ['left', 'right']; } /** - * Returns the ref of this tag. + * Get the operator sigil for this binary operation. + * + * In the case there are multiple possible sigils for an operator, this method does not + * necessarily return the one used in the parsed code. + * + * @return string */ - public function getReference() : Reference - { - return $this->refers; - } + abstract public function getOperatorSigil(): string; +} +description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $refers = (string) $this->refers; - return $refers . ($description !== '' ? ($refers !== '' ? ' ' : '') . $description : ''); + $this->attributes = $attributes; + $this->items = $items; + } + public function getSubNodeNames(): array + { + return ['items']; + } + public function getType(): string + { + return 'Expr_List'; } } version = $version; - $this->description = $description; + $this->attributes = $attributes; + $this->parts = $parts; } - public static function create(?string $body, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : ?self + public function getSubNodeNames(): array { - if (empty($body)) { - return new static(); - } - $matches = []; - if (!preg_match('/^(' . self::REGEX_VECTOR . ')\\s*(.+)?$/sux', $body, $matches)) { - return null; - } - Assert::notNull($descriptionFactory); - return new static($matches[1], $descriptionFactory->create($matches[2] ?? '', $context)); + return ['parts']; } - /** - * Gets the version section of the tag. - */ - public function getVersion() : ?string + public function getType(): string { - return $this->version; + return 'Expr_ShellExec'; } +} +description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $version = (string) $this->version; - return $version . ($description !== '' ? ($version !== '' ? ' ' : '') . $description : ''); + $this->attributes = $attributes; + $this->name = $name; + } + public function getSubNodeNames(): array + { + return ['name']; + } + public function getType(): string + { + return 'Expr_ConstFetch'; } } startingLine = (int) $startingLine; - $this->lineCount = $lineCount !== null ? (int) $lineCount : null; - $this->description = $description; + $this->attributes = $attributes; + $this->expr = $expr; } - public static function create(string $body, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::stringNotEmpty($body); - Assert::notNull($descriptionFactory); - $startingLine = 1; - $lineCount = null; - $description = null; - // Starting line / Number of lines / Description - if (preg_match('/^([1-9]\\d*)\\s*(?:((?1))\\s+)?(.*)$/sux', $body, $matches)) { - $startingLine = (int) $matches[1]; - if (isset($matches[2]) && $matches[2] !== '') { - $lineCount = (int) $matches[2]; - } - $description = $matches[3]; - } - return new static($startingLine, $lineCount, $descriptionFactory->create($description ?? '', $context)); + return ['expr']; } +} +startingLine; + $this->attributes = $attributes; + $this->expr = $expr; + $this->type = $type; + } + public function getSubNodeNames(): array + { + return ['expr', 'type']; } + public function getType(): string + { + return 'Expr_Include'; + } +} +lineCount; + $this->attributes = $attributes; + $this->class = $class; + $this->name = \is_string($name) ? new VarLikeIdentifier($name) : $name; } - public function __toString() : string + public function getSubNodeNames(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $startingLine = (string) $this->startingLine; - $lineCount = $this->lineCount !== null ? ' ' . $this->lineCount : ''; - return $startingLine . $lineCount . ($description !== '' ? ' ' . $description : ''); + return ['class', 'name']; + } + public function getType(): string + { + return 'Expr_StaticPropertyFetch'; } } type; + $this->attributes = $attributes; + $this->name = $name; } - /** - * @return string[] - */ - protected static function extractTypeFromBody(string $body) : array + public function getSubNodeNames(): array { - $type = ''; - $nestingLevel = 0; - for ($i = 0, $iMax = strlen($body); $i < $iMax; $i++) { - $character = $body[$i]; - if ($nestingLevel === 0 && trim($character) === '') { - break; - } - $type .= $character; - if (in_array($character, ['<', '(', '[', '{'])) { - $nestingLevel++; - continue; - } - if (in_array($character, ['>', ')', ']', '}'])) { - $nestingLevel--; - continue; - } - } - $description = trim(substr($body, strlen($type))); - return [$type, $description]; + return ['name']; + } + public function getType(): string + { + return 'Expr_Variable'; } } name = 'throws'; - $this->type = $type; - $this->description = $description; + $this->attributes = $attributes; + $this->expr = $expr; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$type, $description] = self::extractTypeFromBody($body); - $type = $typeResolver->resolve($type, $context); - $description = $descriptionFactory->create($description, $context); - return new static($type, $description); + return ['expr']; } - public function __toString() : string + public function getType(): string { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $type = (string) $this->type; - return $type . ($description !== '' ? ($type !== '' ? ' ' : '') . $description : ''); + return 'Expr_Print'; } } refers = $refers; - $this->description = $description; - } - public static function create(string $body, ?FqsenResolver $resolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self - { - Assert::notNull($resolver); - Assert::notNull($descriptionFactory); - $parts = Utils::pregSplit('/\\s+/Su', $body, 2); - return new static(self::resolveFqsen($parts[0], $resolver, $context), $descriptionFactory->create($parts[1] ?? '', $context)); - } - private static function resolveFqsen(string $parts, ?FqsenResolver $fqsenResolver, ?TypeContext $context) : Fqsen + public function __construct(Expr $var, array $attributes = []) { - Assert::notNull($fqsenResolver); - $fqsenParts = explode('::', $parts); - $resolved = $fqsenResolver->resolve($fqsenParts[0], $context); - if (!array_key_exists(1, $fqsenParts)) { - return $resolved; - } - return new Fqsen($resolved . '::' . $fqsenParts[1]); + $this->attributes = $attributes; + $this->var = $var; } - /** - * Returns the structural element this tag refers to. - */ - public function getReference() : Fqsen + public function getSubNodeNames(): array { - return $this->refers; + return ['var']; } - /** - * Returns a string representation of this tag. - */ - public function __toString() : string + public function getType(): string { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $refers = (string) $this->refers; - return $refers . ($description !== '' ? ($refers !== '' ? ' ' : '') . $description : ''); + return 'Expr_PreInc'; } } Arguments */ + public $args; + /** + * Constructs a static method call node. + * + * @param Node\Name|Expr $class Class name + * @param string|Identifier|Expr $name Method name + * @param array $args Arguments + * @param array $attributes Additional attributes + */ + public function __construct($class, $name, array $args = [], array $attributes = []) { - Assert::string($variableName); - $this->name = 'var'; - $this->variableName = $variableName; - $this->type = $type; - $this->description = $description; + $this->attributes = $attributes; + $this->class = $class; + $this->name = \is_string($name) ? new Identifier($name) : $name; + $this->args = $args; } - public static function create(string $body, ?TypeResolver $typeResolver = null, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : self + public function getSubNodeNames(): array { - Assert::stringNotEmpty($body); - Assert::notNull($typeResolver); - Assert::notNull($descriptionFactory); - [$firstPart, $body] = self::extractTypeFromBody($body); - $parts = Utils::pregSplit('/(\\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE); - $type = null; - $variableName = ''; - // if the first item that is encountered is not a variable; it is a type - if ($firstPart && $firstPart[0] !== '$') { - $type = $typeResolver->resolve($firstPart, $context); - } else { - // first part is not a type; we should prepend it to the parts array for further processing - array_unshift($parts, $firstPart); - } - // if the next item starts with a $ it must be the variable name - if (isset($parts[0]) && strpos($parts[0], '$') === 0) { - $variableName = array_shift($parts); - if ($type) { - array_shift($parts); - } - Assert::notNull($variableName); - $variableName = substr($variableName, 1); - } - $description = $descriptionFactory->create(implode('', $parts), $context); - return new static($variableName, $type, $description); + return ['class', 'name', 'args']; } - /** - * Returns the variable's name. - */ - public function getVariableName() : ?string + public function getType(): string { - return $this->variableName; + return 'Expr_StaticCall'; } - /** - * Returns a string representation for this tag. - */ - public function __toString() : string + public function getRawArgs(): array { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - if ($this->variableName) { - $variableName = '$' . $this->variableName; - } else { - $variableName = ''; - } - $type = (string) $this->type; - return $type . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '') . ($description !== '' ? ($type !== '' || $variableName !== '' ? ' ' : '') . $description : ''); + return $this->args; } } version = $version; - $this->description = $description; - } - public static function create(?string $body, ?DescriptionFactory $descriptionFactory = null, ?TypeContext $context = null) : ?self + public function __construct(Expr $expr, array $attributes = []) { - if (empty($body)) { - return new static(); - } - $matches = []; - if (!preg_match('/^(' . self::REGEX_VECTOR . ')\\s*(.+)?$/sux', $body, $matches)) { - return null; - } - $description = null; - if ($descriptionFactory !== null) { - $description = $descriptionFactory->create($matches[2] ?? '', $context); - } - return new static($matches[1], $description); + $this->attributes = $attributes; + $this->expr = $expr; } - /** - * Gets the version section of the tag. - */ - public function getVersion() : ?string + public function getSubNodeNames(): array { - return $this->version; + return ['expr']; } - /** - * Returns a string representation for this tag. - */ - public function __toString() : string + public function getType(): string { - if ($this->description) { - $description = $this->description->render(); - } else { - $description = ''; - } - $version = (string) $this->version; - return $version . ($description !== '' ? ($version !== '' ? ' ' : '') . $description : ''); + return 'Expr_YieldFrom'; } } descriptionFactory = $descriptionFactory; - $this->tagFactory = $tagFactory; - } + /** @var bool Whether the closure is static */ + public $static; + /** @var bool Whether to return by reference */ + public $byRef; + /** @var Node\Param[] Parameters */ + public $params; + /** @var ClosureUse[] use()s */ + public $uses; + /** @var null|Node\Identifier|Node\Name|Node\ComplexType Return type */ + public $returnType; + /** @var Node\Stmt[] Statements */ + public $stmts; + /** @var Node\AttributeGroup[] PHP attribute groups */ + public $attrGroups; /** - * Factory method for easy instantiation. + * Constructs a lambda function node. * - * @param array> $additionalTags + * @param array $subNodes Array of the following optional subnodes: + * 'static' => false : Whether the closure is static + * 'byRef' => false : Whether to return by reference + * 'params' => array(): Parameters + * 'uses' => array(): use()s + * 'returnType' => null : Return type + * 'stmts' => array(): Statements + * 'attrGroups' => array(): PHP attributes groups + * @param array $attributes Additional attributes */ - public static function createInstance(array $additionalTags = []) : self + public function __construct(array $subNodes = [], array $attributes = []) { - $fqsenResolver = new FqsenResolver(); - $tagFactory = new StandardTagFactory($fqsenResolver); - $descriptionFactory = new DescriptionFactory($tagFactory); - $tagFactory->addService($descriptionFactory); - $tagFactory->addService(new TypeResolver($fqsenResolver)); - $docBlockFactory = new self($descriptionFactory, $tagFactory); - foreach ($additionalTags as $tagName => $tagHandler) { - $docBlockFactory->registerTagHandler($tagName, $tagHandler); - } - return $docBlockFactory; + $this->attributes = $attributes; + $this->static = $subNodes['static'] ?? \false; + $this->byRef = $subNodes['byRef'] ?? \false; + $this->params = $subNodes['params'] ?? []; + $this->uses = $subNodes['uses'] ?? []; + $returnType = $subNodes['returnType'] ?? null; + $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; + $this->stmts = $subNodes['stmts'] ?? []; + $this->attrGroups = $subNodes['attrGroups'] ?? []; } - /** - * @param object|string $docblock A string containing the DocBlock to parse or an object supporting the - * getDocComment method (such as a ReflectionClass object). - */ - public function create($docblock, ?Types\Context $context = null, ?Location $location = null) : DocBlock + public function getSubNodeNames(): array { - if (is_object($docblock)) { - if (!method_exists($docblock, 'getDocComment')) { - $exceptionMessage = 'Invalid object passed; the given object must support the getDocComment method'; - throw new InvalidArgumentException($exceptionMessage); - } - $docblock = $docblock->getDocComment(); - Assert::string($docblock); - } - Assert::stringNotEmpty($docblock); - if ($context === null) { - $context = new Types\Context(''); - } - $parts = $this->splitDocBlock($this->stripDocComment($docblock)); - [$templateMarker, $summary, $description, $tags] = $parts; - return new DocBlock($summary, $description ? $this->descriptionFactory->create($description, $context) : null, $this->parseTagBlock($tags, $context), $context, $location, $templateMarker === '#@+', $templateMarker === '#@-'); + return ['attrGroups', 'static', 'byRef', 'params', 'uses', 'returnType', 'stmts']; } - /** - * @param class-string $handler - */ - public function registerTagHandler(string $tagName, string $handler) : void + public function returnsByRef(): bool { - $this->tagFactory->registerTagHandler($tagName, $handler); + return $this->byRef; } - /** - * Strips the asterisks from the DocBlock comment. - * - * @param string $comment String containing the comment text. - */ - private function stripDocComment(string $comment) : string + public function getParams(): array { - $comment = preg_replace('#[ \\t]*(?:\\/\\*\\*|\\*\\/|\\*)?[ \\t]?(.*)?#u', '$1', $comment); - Assert::string($comment); - $comment = trim($comment); - // reg ex above is not able to remove */ from a single line docblock - if (substr($comment, -2) === '*/') { - $comment = trim(substr($comment, 0, -2)); - } - return str_replace(["\r\n", "\r"], "\n", $comment); + return $this->params; } - // phpcs:disable - /** - * Splits the DocBlock into a template marker, summary, description and block of tags. - * - * @param string $comment Comment to split into the sub-parts. - * - * @return string[] containing the template marker (if any), summary, description and a string containing the tags. - * - * @author Mike van Riel for extending the regex with template marker support. - * - * @author Richard van Velzen (@_richardJ) Special thanks to Richard for the regex responsible for the split. - */ - private function splitDocBlock(string $comment) : array + public function getReturnType() { - // phpcs:enable - // Performance improvement cheat: if the first character is an @ then only tags are in this DocBlock. This - // method does not split tags so we return this verbatim as the fourth result (tags). This saves us the - // performance impact of running a regular expression - if (strpos($comment, '@') === 0) { - return ['', '', '', $comment]; - } - // clears all extra horizontal whitespace from the line endings to prevent parsing issues - $comment = preg_replace('/\\h*$/Sum', '', $comment); - Assert::string($comment); - /* - * Splits the docblock into a template marker, summary, description and tags section. - * - * - The template marker is empty, #@+ or #@- if the DocBlock starts with either of those (a newline may - * occur after it and will be stripped). - * - The short description is started from the first character until a dot is encountered followed by a - * newline OR two consecutive newlines (horizontal whitespace is taken into account to consider spacing - * errors). This is optional. - * - The long description, any character until a new line is encountered followed by an @ and word - * characters (a tag). This is optional. - * - Tags; the remaining characters - * - * Big thanks to RichardJ for contributing this Regular Expression - */ - preg_match('/ - \\A - # 1. Extract the template marker - (?:(\\#\\@\\+|\\#\\@\\-)\\n?)? - - # 2. Extract the summary - (?: - (?! @\\pL ) # The summary may not start with an @ - ( - [^\\n.]+ - (?: - (?! \\. \\n | \\n{2} ) # End summary upon a dot followed by newline or two newlines - [\\n.]* (?! [ \\t]* @\\pL ) # End summary when an @ is found as first character on a new line - [^\\n.]+ # Include anything else - )* - \\.? - )? - ) - - # 3. Extract the description - (?: - \\s* # Some form of whitespace _must_ precede a description because a summary must be there - (?! @\\pL ) # The description may not start with an @ - ( - [^\\n]+ - (?: \\n+ - (?! [ \\t]* @\\pL ) # End description when an @ is found as first character on a new line - [^\\n]+ # Include anything else - )* - ) - )? - - # 4. Extract the tags (anything that follows) - (\\s+ [\\s\\S]*)? # everything that follows - /ux', $comment, $matches); - array_shift($matches); - while (count($matches) < 4) { - $matches[] = ''; - } - return $matches; - } - /** - * Creates the tag objects. - * - * @param string $tags Tag block to parse. - * @param Types\Context $context Context of the parsed Tag - * - * @return DocBlock\Tag[] - */ - private function parseTagBlock(string $tags, Types\Context $context) : array + return $this->returnType; + } + /** @return Node\Stmt[] */ + public function getStmts(): array { - $tags = $this->filterTagBlock($tags); - if ($tags === null) { - return []; - } - $result = []; - $lines = $this->splitTagBlockIntoTagLines($tags); - foreach ($lines as $key => $tagLine) { - $result[$key] = $this->tagFactory->create(trim($tagLine), $context); - } - return $result; + return $this->stmts; } - /** - * @return string[] - */ - private function splitTagBlockIntoTagLines(string $tags) : array + public function getAttrGroups(): array { - $result = []; - foreach (explode("\n", $tags) as $tagLine) { - if ($tagLine !== '' && strpos($tagLine, '@') === 0) { - $result[] = $tagLine; - } else { - $result[count($result) - 1] .= "\n" . $tagLine; - } - } - return $result; + return $this->attrGroups; } - private function filterTagBlock(string $tags) : ?string + public function getType(): string { - $tags = trim($tags); - if (!$tags) { - return null; - } - if ($tags[0] !== '@') { - // @codeCoverageIgnoreStart - // Can't simulate this; this only happens if there is an error with the parsing of the DocBlock that - // we didn't foresee. - throw new LogicException('A tag block started with text instead of an at-sign(@): ' . $tags); - // @codeCoverageIgnoreEnd - } - return $tags; + return 'Expr_Closure'; } } > $additionalTags - */ - public static function createInstance(array $additionalTags = []) : DocBlockFactory; - /** - * @param string|object $docblock - */ - public function create($docblock, ?Types\Context $context = null, ?Location $location = null) : DocBlock; + public function getType(): string + { + return 'Expr_Cast_Int'; + } } isFqsen($fqsen)) { - return new Fqsen($fqsen); - } - return $this->resolvePartialStructuralElementName($fqsen, $context); + return 'Expr_Cast_Bool'; } - /** - * Tests whether the given type is a Fully Qualified Structural Element Name. - */ - private function isFqsen(string $type) : bool +} +getNamespaceAliases(); - // if the first segment is not an alias; prepend namespace name and return - if (!isset($namespaceAliases[$typeParts[0]])) { - $namespace = $context->getNamespace(); - if ($namespace !== '') { - $namespace .= self::OPERATOR_NAMESPACE; - } - return new Fqsen(self::OPERATOR_NAMESPACE . $namespace . $type); - } - $typeParts[0] = $namespaceAliases[$typeParts[0]]; - return new Fqsen(self::OPERATOR_NAMESPACE . implode(self::OPERATOR_NAMESPACE, $typeParts)); + $this->attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_Throw'; } } -The MIT License (MIT) - -Copyright (c) 2010 Mike van Riel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. attributes = $attributes; + $this->var = $var; + } + public function getSubNodeNames(): array + { + return ['var']; + } + public function getType(): string + { + return 'Expr_PostDec'; + } } attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_UnaryMinus'; } } attributes = $attributes; + $this->class = $class; + $this->name = \is_string($name) ? new Identifier($name) : $name; } - public function __toString() : string + public function getSubNodeNames(): array { - return 'false'; + return ['class', 'name']; + } + public function getType(): string + { + return 'Expr_ClassConstFetch'; } } -class_alias('PHPUnit\\phpDocumentor\\Reflection\\PseudoTypes\\False_', 'PHPUnit\\phpDocumentor\\Reflection\\Types\\False_', \false); attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; } + public function getType(): string + { + return 'Expr_BitwiseNot'; + } +} +attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_ErrorSuppress'; } } false : Whether the closure is static + * 'byRef' => false : Whether to return by reference + * 'params' => array() : Parameters + * 'returnType' => null : Return type + * 'expr' => Expr : Expression body + * 'attrGroups' => array() : PHP attribute groups + * @param array $attributes Additional attributes + */ + public function __construct(array $subNodes = [], array $attributes = []) { - $this->minValue = $minValue; - $this->maxValue = $maxValue; + $this->attributes = $attributes; + $this->static = $subNodes['static'] ?? \false; + $this->byRef = $subNodes['byRef'] ?? \false; + $this->params = $subNodes['params'] ?? []; + $returnType = $subNodes['returnType'] ?? null; + $this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType; + $this->expr = $subNodes['expr']; + $this->attrGroups = $subNodes['attrGroups'] ?? []; } - public function underlyingType() : Type + public function getSubNodeNames(): array { - return new Integer(); + return ['attrGroups', 'static', 'byRef', 'params', 'returnType', 'expr']; + } + public function returnsByRef(): bool + { + return $this->byRef; + } + public function getParams(): array + { + return $this->params; } - public function getMinValue() : string + public function getReturnType() + { + return $this->returnType; + } + public function getAttrGroups(): array + { + return $this->attrGroups; + } + /** + * @return Node\Stmt\Return_[] + */ + public function getStmts(): array + { + return [new Node\Stmt\Return_($this->expr)]; + } + public function getType(): string + { + return 'Expr_ArrowFunction'; + } +} +minValue; + $this->attributes = $attributes; + $this->expr = $expr; } - public function getMaxValue() : string + public function getSubNodeNames(): array { - return $this->maxValue; + return ['expr']; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - return 'int<' . $this->minValue . ', ' . $this->maxValue . '>'; + return 'Expr_Eval'; } } attributes = $attributes; + $this->var = $var; + $this->name = \is_string($name) ? new Identifier($name) : $name; } - public function __construct(?Type $valueType = null) + public function getSubNodeNames(): array { - parent::__construct($valueType, new Integer()); + return ['var', 'name']; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - if ($this->valueType instanceof Mixed_) { - return 'list'; - } - return 'list<' . $this->valueType . '>'; + return 'Expr_NullsafePropertyFetch'; } } attributes = $attributes; + $this->var = $var; + $this->dim = $dim; + } + public function getSubNodeNames(): array + { + return ['var', 'dim']; + } + public function getType(): string + { + return 'Expr_ArrayDimFetch'; } } + */ + abstract public function getRawArgs(): array; + /** + * Returns whether this call expression is actually a first class callable. + */ + public function isFirstClassCallable(): bool { - return new String_(); + foreach ($this->getRawArgs() as $arg) { + if ($arg instanceof VariadicPlaceholder) { + return \true; + } + } + return \false; } /** - * Returns a rendered output of the Type as it would be used in a DocBlock. + * Assert that this is not a first-class callable and return only ordinary Args. + * + * @return Arg[] */ - public function __toString() : string + public function getArgs(): array { - return 'lowercase-string'; + assert(!$this->isFirstClassCallable()); + return $this->getRawArgs(); } } Arguments */ + public $args; /** - * Returns a rendered output of the Type as it would be used in a DocBlock. + * Constructs a function call node. + * + * @param Expr $var Variable holding object + * @param string|Identifier|Expr $name Method name + * @param array $args Arguments + * @param array $attributes Additional attributes */ - public function __toString() : string + public function __construct(Expr $var, $name, array $args = [], array $attributes = []) { - return 'negative-int'; + $this->attributes = $attributes; + $this->var = $var; + $this->name = \is_string($name) ? new Identifier($name) : $name; + $this->args = $args; + } + public function getSubNodeNames(): array + { + return ['var', 'name', 'args']; + } + public function getType(): string + { + return 'Expr_MethodCall'; + } + public function getRawArgs(): array + { + return $this->args; } } attributes = $attributes; + $this->var = $var; + $this->name = \is_string($name) ? new Identifier($name) : $name; + } + public function getSubNodeNames(): array + { + return ['var', 'name']; + } + public function getType(): string + { + return 'Expr_PropertyFetch'; } } List of recognized keywords and unto which Value Object they map - * @psalm-var array> - */ - private $keywords = ['string' => Types\String_::class, 'class-string' => Types\ClassString::class, 'interface-string' => Types\InterfaceString::class, 'html-escaped-string' => PseudoTypes\HtmlEscapedString::class, 'lowercase-string' => PseudoTypes\LowercaseString::class, 'non-empty-lowercase-string' => PseudoTypes\NonEmptyLowercaseString::class, 'non-empty-string' => PseudoTypes\NonEmptyString::class, 'numeric-string' => PseudoTypes\NumericString::class, 'numeric' => PseudoTypes\Numeric_::class, 'trait-string' => PseudoTypes\TraitString::class, 'int' => Types\Integer::class, 'integer' => Types\Integer::class, 'positive-int' => PseudoTypes\PositiveInteger::class, 'negative-int' => PseudoTypes\NegativeInteger::class, 'bool' => Types\Boolean::class, 'boolean' => Types\Boolean::class, 'real' => Types\Float_::class, 'float' => Types\Float_::class, 'double' => Types\Float_::class, 'object' => Types\Object_::class, 'mixed' => Types\Mixed_::class, 'array' => Types\Array_::class, 'array-key' => Types\ArrayKey::class, 'resource' => Types\Resource_::class, 'void' => Types\Void_::class, 'null' => Types\Null_::class, 'scalar' => Types\Scalar::class, 'callback' => Types\Callable_::class, 'callable' => Types\Callable_::class, 'callable-string' => PseudoTypes\CallableString::class, 'false' => PseudoTypes\False_::class, 'true' => PseudoTypes\True_::class, 'literal-string' => PseudoTypes\LiteralString::class, 'self' => Types\Self_::class, '$this' => Types\This::class, 'static' => Types\Static_::class, 'parent' => Types\Parent_::class, 'iterable' => Types\Iterable_::class, 'never' => Types\Never_::class, 'list' => PseudoTypes\List_::class]; - /** - * @var FqsenResolver - * @psalm-readonly - */ - private $fqsenResolver; - /** - * Initializes this TypeResolver with the means to create and resolve Fqsen objects. - */ - public function __construct(?FqsenResolver $fqsenResolver = null) - { - $this->fqsenResolver = $fqsenResolver ?: new FqsenResolver(); - } - /** - * Analyzes the given type and returns the FQCN variant. - * - * When a type is provided this method checks whether it is not a keyword or - * Fully Qualified Class Name. If so it will use the given namespace and - * aliases to expand the type to a FQCN representation. - * - * This method only works as expected if the namespace and aliases are set; - * no dynamic reflection is being performed here. - * - * @uses Context::getNamespaceAliases() to check whether the first part of the relative type name should not be - * replaced with another namespace. - * @uses Context::getNamespace() to determine with what to prefix the type name. - * - * @param string $type The relative or absolute type. - */ - public function resolve(string $type, ?Context $context = null) : Type - { - $type = trim($type); - if (!$type) { - throw new InvalidArgumentException('Attempted to resolve "' . $type . '" but it appears to be empty'); - } - if ($context === null) { - $context = new Context(''); - } - // split the type string into tokens `|`, `?`, `<`, `>`, `,`, `(`, `)`, `[]`, '<', '>' and type names - $tokens = preg_split('/(\\||\\?|<|>|&|, ?|\\(|\\)|\\[\\]+)/', $type, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); - if ($tokens === \false) { - throw new InvalidArgumentException('Unable to split the type string "' . $type . '" into tokens'); - } - /** @var ArrayIterator $tokenIterator */ - $tokenIterator = new ArrayIterator($tokens); - return $this->parseTypes($tokenIterator, $context, self::PARSER_IN_COMPOUND); - } - /** - * Analyse each tokens and creates types - * - * @param ArrayIterator $tokens the iterator on tokens - * @param int $parserContext on of self::PARSER_* constants, indicating - * the context where we are in the parsing - */ - private function parseTypes(ArrayIterator $tokens, Context $context, int $parserContext) : Type + public function getType(): string { - $types = []; - $token = ''; - $compoundToken = '|'; - while ($tokens->valid()) { - $token = $tokens->current(); - if ($token === null) { - throw new RuntimeException('Unexpected nullable character'); - } - if ($token === '|' || $token === '&') { - if (count($types) === 0) { - throw new RuntimeException('A type is missing before a type separator'); - } - if (!in_array($parserContext, [self::PARSER_IN_COMPOUND, self::PARSER_IN_ARRAY_EXPRESSION, self::PARSER_IN_COLLECTION_EXPRESSION], \true)) { - throw new RuntimeException('Unexpected type separator'); - } - $compoundToken = $token; - $tokens->next(); - } elseif ($token === '?') { - if (!in_array($parserContext, [self::PARSER_IN_COMPOUND, self::PARSER_IN_ARRAY_EXPRESSION, self::PARSER_IN_COLLECTION_EXPRESSION], \true)) { - throw new RuntimeException('Unexpected nullable character'); - } - $tokens->next(); - $type = $this->parseTypes($tokens, $context, self::PARSER_IN_NULLABLE); - $types[] = new Nullable($type); - } elseif ($token === '(') { - $tokens->next(); - $type = $this->parseTypes($tokens, $context, self::PARSER_IN_ARRAY_EXPRESSION); - $token = $tokens->current(); - if ($token === null) { - // Someone did not properly close their array expression .. - break; - } - $tokens->next(); - $resolvedType = new Expression($type); - $types[] = $resolvedType; - } elseif ($parserContext === self::PARSER_IN_ARRAY_EXPRESSION && isset($token[0]) && $token[0] === ')') { - break; - } elseif ($token === '<') { - if (count($types) === 0) { - throw new RuntimeException('Unexpected collection operator "<", class name is missing'); - } - $classType = array_pop($types); - if ($classType !== null) { - if ((string) $classType === 'class-string') { - $types[] = $this->resolveClassString($tokens, $context); - } elseif ((string) $classType === 'int') { - $types[] = $this->resolveIntRange($tokens); - } elseif ((string) $classType === 'interface-string') { - $types[] = $this->resolveInterfaceString($tokens, $context); - } else { - $types[] = $this->resolveCollection($tokens, $classType, $context); - } - } - $tokens->next(); - } elseif ($parserContext === self::PARSER_IN_COLLECTION_EXPRESSION && ($token === '>' || trim($token) === ',')) { - break; - } elseif ($token === self::OPERATOR_ARRAY) { - end($types); - $last = key($types); - if ($last === null) { - throw new InvalidArgumentException('Unexpected array operator'); - } - $lastItem = $types[$last]; - if ($lastItem instanceof Expression) { - $lastItem = $lastItem->getValueType(); - } - $types[$last] = new Array_($lastItem); - $tokens->next(); - } else { - $type = $this->resolveSingleType($token, $context); - $tokens->next(); - if ($parserContext === self::PARSER_IN_NULLABLE) { - return $type; - } - $types[] = $type; - } - } - if ($token === '|' || $token === '&') { - throw new RuntimeException('A type is missing after a type separator'); - } - if (count($types) === 0) { - if ($parserContext === self::PARSER_IN_NULLABLE) { - throw new RuntimeException('A type is missing after a nullable character'); - } - if ($parserContext === self::PARSER_IN_ARRAY_EXPRESSION) { - throw new RuntimeException('A type is missing in an array expression'); - } - if ($parserContext === self::PARSER_IN_COLLECTION_EXPRESSION) { - throw new RuntimeException('A type is missing in a collection expression'); - } - } elseif (count($types) === 1) { - return current($types); - } - if ($compoundToken === '|') { - return new Compound(array_values($types)); - } - return new Intersection(array_values($types)); + return 'Expr_AssignOp_Mul'; } - /** - * resolve the given type into a type object - * - * @param string $type the type string, representing a single type - * - * @return Type|Array_|Object_ - * - * @psalm-mutation-free - */ - private function resolveSingleType(string $type, Context $context) : object +} +isKeyword($type): - return $this->resolveKeyword($type); - case $this->isFqsen($type): - return $this->resolveTypedObject($type); - case $this->isPartialStructuralElementName($type): - return $this->resolveTypedObject($type, $context); - // @codeCoverageIgnoreStart - default: - // I haven't got the foggiest how the logic would come here but added this as a defense. - throw new RuntimeException('Unable to resolve type "' . $type . '", there is no known method to resolve it'); - } - // @codeCoverageIgnoreEnd + return 'Expr_AssignOp_Concat'; } - /** - * Adds a keyword to the list of Keywords and associates it with a specific Value Object. - * - * @psalm-param class-string $typeClassName - */ - public function addKeyword(string $keyword, string $typeClassName) : void +} +keywords[$keyword] = $typeClassName; + return 'Expr_AssignOp_ShiftLeft'; } - /** - * Detects whether the given type represents a PHPDoc keyword. - * - * @param string $type A relative or absolute type as defined in the phpDocumentor documentation. - * - * @psalm-mutation-free - */ - private function isKeyword(string $type) : bool +} +keywords); + return 'Expr_AssignOp_BitwiseXor'; } - /** - * Detects whether the given type represents a relative structural element name. - * - * @param string $type A relative or absolute type as defined in the phpDocumentor documentation. - * - * @psalm-mutation-free - */ - private function isPartialStructuralElementName(string $type) : bool +} +isKeyword($type); + return 'Expr_AssignOp_Coalesce'; } - /** - * Tests whether the given type is a Fully Qualified Structural Element Name. - * - * @psalm-mutation-free - */ - private function isFqsen(string $type) : bool +} +keywords[strtolower($type)]; - return new $className(); + return '+'; } - /** - * Resolves the given FQSEN string into an FQSEN object. - * - * @psalm-mutation-free - */ - private function resolveTypedObject(string $type, ?Context $context = null) : Object_ + public function getType(): string { - return new Object_($this->fqsenResolver->resolve($type, $context)); + return 'Expr_BinaryOp_Plus'; } - /** - * Resolves class string - * - * @param ArrayIterator $tokens - */ - private function resolveClassString(ArrayIterator $tokens, Context $context) : Type +} +next(); - $classType = $this->parseTypes($tokens, $context, self::PARSER_IN_COLLECTION_EXPRESSION); - if (!$classType instanceof Object_ || $classType->getFqsen() === null) { - throw new RuntimeException($classType . ' is not a class string'); - } - $token = $tokens->current(); - if ($token !== '>') { - if (empty($token)) { - throw new RuntimeException('class-string: ">" is missing'); - } - throw new RuntimeException('Unexpected character "' . $token . '", ">" is missing'); - } - return new ClassString($classType->getFqsen()); + return '>'; } - /** - * Resolves integer ranges - * - * @param ArrayIterator $tokens - */ - private function resolveIntRange(ArrayIterator $tokens) : Type + public function getType(): string { - $tokens->next(); - $token = ''; - $minValue = null; - $maxValue = null; - $commaFound = \false; - $tokenCounter = 0; - while ($tokens->valid()) { - $tokenCounter++; - $token = $tokens->current(); - if ($token === null) { - throw new RuntimeException('Unexpected nullable character'); - } - $token = trim($token); - if ($token === '>') { - break; - } - if ($token === ',') { - $commaFound = \true; - } - if ($commaFound === \false && $minValue === null) { - if (is_numeric($token) || $token === 'max' || $token === 'min') { - $minValue = $token; - } - } - if ($commaFound === \true && $maxValue === null) { - if (is_numeric($token) || $token === 'max' || $token === 'min') { - $maxValue = $token; - } - } - $tokens->next(); - } - if ($token !== '>') { - if (empty($token)) { - throw new RuntimeException('interface-string: ">" is missing'); - } - throw new RuntimeException('Unexpected character "' . $token . '", ">" is missing'); - } - if ($minValue === null || $maxValue === null || $tokenCounter > 4) { - throw new RuntimeException('int has not the correct format'); - } - return new IntegerRange($minValue, $maxValue); + return 'Expr_BinaryOp_Greater'; } - /** - * Resolves class string - * - * @param ArrayIterator $tokens - */ - private function resolveInterfaceString(ArrayIterator $tokens, Context $context) : Type +} +next(); - $classType = $this->parseTypes($tokens, $context, self::PARSER_IN_COLLECTION_EXPRESSION); - if (!$classType instanceof Object_ || $classType->getFqsen() === null) { - throw new RuntimeException($classType . ' is not a interface string'); - } - $token = $tokens->current(); - if ($token !== '>') { - if (empty($token)) { - throw new RuntimeException('interface-string: ">" is missing'); - } - throw new RuntimeException('Unexpected character "' . $token . '", ">" is missing'); - } - return new InterfaceString($classType->getFqsen()); + return 'or'; } - /** - * Resolves the collection values and keys - * - * @param ArrayIterator $tokens - * - * @return Array_|Iterable_|Collection - */ - private function resolveCollection(ArrayIterator $tokens, Type $classType, Context $context) : Type + public function getType(): string { - $isArray = (string) $classType === 'array'; - $isIterable = (string) $classType === 'iterable'; - $isList = (string) $classType === 'list'; - // allow only "array", "iterable" or class name before "<" - if (!$isArray && !$isIterable && !$isList && (!$classType instanceof Object_ || $classType->getFqsen() === null)) { - throw new RuntimeException($classType . ' is not a collection'); - } - $tokens->next(); - $valueType = $this->parseTypes($tokens, $context, self::PARSER_IN_COLLECTION_EXPRESSION); - $keyType = null; - $token = $tokens->current(); - if ($token !== null && trim($token) === ',' && !$isList) { - // if we have a comma, then we just parsed the key type, not the value type - $keyType = $valueType; - if ($isArray) { - // check the key type for an "array" collection. We allow only - // strings or integers. - if (!$keyType instanceof ArrayKey && !$keyType instanceof String_ && !$keyType instanceof Integer && !$keyType instanceof Compound) { - throw new RuntimeException('An array can have only integers or strings as keys'); - } - if ($keyType instanceof Compound) { - foreach ($keyType->getIterator() as $item) { - if (!$item instanceof ArrayKey && !$item instanceof String_ && !$item instanceof Integer) { - throw new RuntimeException('An array can have only integers or strings as keys'); - } - } - } - } - $tokens->next(); - // now let's parse the value type - $valueType = $this->parseTypes($tokens, $context, self::PARSER_IN_COLLECTION_EXPRESSION); - } - $token = $tokens->current(); - if ($token !== '>') { - if (empty($token)) { - throw new RuntimeException('Collection: ">" is missing'); - } - throw new RuntimeException('Unexpected character "' . $token . '", ">" is missing'); - } - if ($isArray) { - return new Array_($valueType, $keyType); - } - if ($isIterable) { - return new Iterable_($valueType, $keyType); - } - if ($isList) { - return new List_($valueType); - } - if ($classType instanceof Object_) { - return $this->makeCollectionFromObject($classType, $valueType, $keyType); - } - throw new RuntimeException('Invalid $classType provided'); + return 'Expr_BinaryOp_LogicalOr'; } - /** - * @psalm-pure - */ - private function makeCollectionFromObject(Object_ $object, Type $valueType, ?Type $keyType = null) : Collection +} +'; + } + public function getType(): string { - return new Collection($object->getFqsen(), $valueType, $keyType); + return 'Expr_BinaryOp_Spaceship'; } } valueType = $valueType; - $this->defaultKeyType = new Compound([new String_(), new Integer()]); - $this->keyType = $keyType; + return '<'; } - /** - * Returns the type for the keys of this array. - */ - public function getKeyType() : Type + public function getType(): string { - return $this->keyType ?? $this->defaultKeyType; + return 'Expr_BinaryOp_Smaller'; } - /** - * Returns the value for the keys of this array. - */ - public function getValueType() : Type +} +valueType; + return '>>'; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - if ($this->keyType) { - return 'array<' . $this->keyType . ',' . $this->valueType . '>'; - } - if ($this->valueType instanceof Mixed_) { - return 'array'; - } - if ($this->valueType instanceof Compound) { - return '(' . $this->valueType . ')[]'; - } - return $this->valueType . '[]'; + return 'Expr_BinaryOp_ShiftRight'; } } - */ -abstract class AggregatedType implements Type, IteratorAggregate +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp; +class BooleanOr extends BinaryOp { - /** - * @psalm-allow-private-mutation - * @var array - */ - private $types = []; - /** @var string */ - private $token; - /** - * @param array $types - */ - public function __construct(array $types, string $token) + public function getOperatorSigil(): string { - foreach ($types as $type) { - $this->add($type); - } - $this->token = $token; + return '||'; } - /** - * Returns the type at the given index. - */ - public function get(int $index) : ?Type + public function getType(): string { - if (!$this->has($index)) { - return null; - } - return $this->types[$index]; + return 'Expr_BinaryOp_BooleanOr'; } - /** - * Tests if this compound type has a type with the given index. - */ - public function has(int $index) : bool +} +types); + return 'and'; } - /** - * Tests if this compound type contains the given type. - */ - public function contains(Type $type) : bool + public function getType(): string { - foreach ($this->types as $typePart) { - // if the type is duplicate; do not add it - if ((string) $typePart === (string) $type) { - return \true; - } - } - return \false; + return 'Expr_BinaryOp_LogicalAnd'; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string +} +token, $this->types); + return '=='; } - /** - * @return ArrayIterator - */ - public function getIterator() : ArrayIterator + public function getType(): string { - return new ArrayIterator($this->types); + return 'Expr_BinaryOp_Equal'; } - /** - * @psalm-suppress ImpureMethodCall - */ - private function add(Type $type) : void +} +getIterator() as $subType) { - $this->add($subType); - } - return; - } - // if the type is duplicate; do not add it - if ($this->contains($type)) { - return; - } - $this->types[] = $type; + return '!=='; + } + public function getType(): string + { + return 'Expr_BinaryOp_NotIdentical'; } } fqsen = $fqsen; + return '|'; } - public function underlyingType() : Type + public function getType(): string { - return new String_(); + return 'Expr_BinaryOp_BitwiseOr'; } - /** - * Returns the FQSEN associated with this object. - */ - public function getFqsen() : ?Fqsen +} +fqsen; + return '-'; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - if ($this->fqsen === null) { - return 'class-string'; - } - return 'class-string<' . (string) $this->fqsen . '>'; + return 'Expr_BinaryOp_Minus'; + } +} +` - * 2. `ACollectionObject` - * - * - ACollectionObject can be 'array' or an object that can act as an array - * - aValueType and aKeyType can be any type expression - * - * @psalm-immutable - */ -final class Collection extends AbstractList +use PHPUnitPHAR\PhpParser\Node\Expr\BinaryOp; +class GreaterOrEqual extends BinaryOp { - /** @var Fqsen|null */ - private $fqsen; - /** - * Initializes this representation of an array with the given Type or Fqsen. - */ - public function __construct(?Fqsen $fqsen, Type $valueType, ?Type $keyType = null) - { - parent::__construct($valueType, $keyType); - $this->fqsen = $fqsen; - } - /** - * Returns the FQSEN associated with this object. - */ - public function getFqsen() : ?Fqsen + public function getOperatorSigil(): string { - return $this->fqsen; + return '>='; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - $objectType = (string) ($this->fqsen ?? 'object'); - if ($this->keyType === null) { - return $objectType . '<' . $this->valueType . '>'; - } - return $objectType . '<' . $this->keyType . ',' . $this->valueType . '>'; + return 'Expr_BinaryOp_GreaterOrEqual'; } } $types - */ - public function __construct(array $types) + public function getOperatorSigil(): string { - parent::__construct($types, '|'); + return '**'; + } + public function getType(): string + { + return 'Expr_BinaryOp_Pow'; } } Fully Qualified Namespace. - * @psalm-var array - */ - private $namespaceAliases; - /** - * Initializes the new context and normalizes all passed namespaces to be in Qualified Namespace Name (QNN) - * format (without a preceding `\`). - * - * @param string $namespace The namespace where this DocBlock resides in. - * @param string[] $namespaceAliases List of namespace aliases => Fully Qualified Namespace. - * @psalm-param array $namespaceAliases - */ - public function __construct(string $namespace, array $namespaceAliases = []) - { - $this->namespace = $namespace !== 'global' && $namespace !== 'default' ? trim($namespace, '\\') : ''; - foreach ($namespaceAliases as $alias => $fqnn) { - if ($fqnn[0] === '\\') { - $fqnn = substr($fqnn, 1); - } - if ($fqnn[strlen($fqnn) - 1] === '\\') { - $fqnn = substr($fqnn, 0, -1); - } - $namespaceAliases[$alias] = $fqnn; - } - $this->namespaceAliases = $namespaceAliases; - } - /** - * Returns the Qualified Namespace Name (thus without `\` in front) where the associated element is in. - */ - public function getNamespace() : string + public function getOperatorSigil(): string { - return $this->namespace; + return '*'; } - /** - * Returns a list of Qualified Namespace Names (thus without `\` in front) that are imported, the keys represent - * the alias for the imported Namespace. - * - * @return string[] - * @psalm-return array - */ - public function getNamespaceAliases() : array + public function getType(): string { - return $this->namespaceAliases; + return 'Expr_BinaryOp_Mul'; } } $reflector */ - return $this->createFromReflectionClass($reflector); - } - if ($reflector instanceof ReflectionParameter) { - return $this->createFromReflectionParameter($reflector); - } - if ($reflector instanceof ReflectionMethod) { - return $this->createFromReflectionMethod($reflector); - } - if ($reflector instanceof ReflectionProperty) { - return $this->createFromReflectionProperty($reflector); - } - if ($reflector instanceof ReflectionClassConstant) { - return $this->createFromReflectionClassConstant($reflector); - } - throw new UnexpectedValueException('Unhandled \\Reflector instance given: ' . get_class($reflector)); + return '.'; } - private function createFromReflectionParameter(ReflectionParameter $parameter) : Context + public function getType(): string { - $class = $parameter->getDeclaringClass(); - if (!$class) { - throw new InvalidArgumentException('Unable to get class of ' . $parameter->getName()); - } - return $this->createFromReflectionClass($class); + return 'Expr_BinaryOp_Concat'; } - private function createFromReflectionMethod(ReflectionMethod $method) : Context +} +getDeclaringClass(); - return $this->createFromReflectionClass($class); + return '<<'; } - private function createFromReflectionProperty(ReflectionProperty $property) : Context + public function getType(): string { - $class = $property->getDeclaringClass(); - return $this->createFromReflectionClass($class); + return 'Expr_BinaryOp_ShiftLeft'; } - private function createFromReflectionClassConstant(ReflectionClassConstant $constant) : Context +} + $class */ - $class = $constant->getDeclaringClass(); - return $this->createFromReflectionClass($class); + return '^'; } - /** - * @phpstan-param ReflectionClass $class - */ - private function createFromReflectionClass(ReflectionClass $class) : Context + public function getType(): string { - $fileName = $class->getFileName(); - $namespace = $class->getNamespaceName(); - if (is_string($fileName) && file_exists($fileName)) { - $contents = file_get_contents($fileName); - if ($contents === \false) { - throw new RuntimeException('Unable to read file "' . $fileName . '"'); - } - return $this->createForNamespace($namespace, $contents); - } - return new Context($namespace, []); + return 'Expr_BinaryOp_BitwiseXor'; } - /** - * Build a Context for a namespace in the provided file contents. - * - * @see Context for more information on Contexts. - * - * @param string $namespace It does not matter if a `\` precedes the namespace name, - * this method first normalizes. - * @param string $fileContents The file's contents to retrieve the aliases from with the given namespace. - */ - public function createForNamespace(string $namespace, string $fileContents) : Context +} +valid()) { - $currentToken = $tokens->current(); - switch ($currentToken[0]) { - case T_NAMESPACE: - $currentNamespace = $this->parseNamespace($tokens); - break; - case T_CLASS: - // Fast-forward the iterator through the class so that any - // T_USE tokens found within are skipped - these are not - // valid namespace use statements so should be ignored. - $braceLevel = 0; - $firstBraceFound = \false; - while ($tokens->valid() && ($braceLevel > 0 || !$firstBraceFound)) { - $currentToken = $tokens->current(); - if ($currentToken === '{' || in_array($currentToken[0], [T_CURLY_OPEN, T_DOLLAR_OPEN_CURLY_BRACES], \true)) { - if (!$firstBraceFound) { - $firstBraceFound = \true; - } - ++$braceLevel; - } - if ($currentToken === '}') { - --$braceLevel; - } - $tokens->next(); - } - break; - case T_USE: - if ($currentNamespace === $namespace) { - $useStatements += $this->parseUseStatement($tokens); - } - break; - } - $tokens->next(); - } - return new Context($namespace, $useStatements); + return '??'; } - /** - * Deduce the name from tokens when we are at the T_NAMESPACE token. - * - * @param ArrayIterator $tokens - */ - private function parseNamespace(ArrayIterator $tokens) : string + public function getType(): string { - // skip to the first string or namespace separator - $this->skipToNextStringOrNamespaceSeparator($tokens); - $name = ''; - $acceptedTokens = [T_STRING, T_NS_SEPARATOR, T_NAME_QUALIFIED]; - while ($tokens->valid() && in_array($tokens->current()[0], $acceptedTokens, \true)) { - $name .= $tokens->current()[1]; - $tokens->next(); - } - return $name; + return 'Expr_BinaryOp_Coalesce'; } - /** - * Deduce the names of all imports when we are at the T_USE token. - * - * @param ArrayIterator $tokens - * - * @return string[] - * @psalm-return array - */ - private function parseUseStatement(ArrayIterator $tokens) : array +} +valid()) { - $this->skipToNextStringOrNamespaceSeparator($tokens); - $uses += $this->extractUseStatements($tokens); - $currentToken = $tokens->current(); - if ($currentToken[0] === self::T_LITERAL_END_OF_USE) { - return $uses; - } - } - return $uses; + return '!='; } - /** - * Fast-forwards the iterator as longs as we don't encounter a T_STRING or T_NS_SEPARATOR token. - * - * @param ArrayIterator $tokens - */ - private function skipToNextStringOrNamespaceSeparator(ArrayIterator $tokens) : void + public function getType(): string { - while ($tokens->valid()) { - $currentToken = $tokens->current(); - if (in_array($currentToken[0], [T_STRING, T_NS_SEPARATOR], \true)) { - break; - } - if ($currentToken[0] === T_NAME_QUALIFIED) { - break; - } - if (defined('T_NAME_FULLY_QUALIFIED') && $currentToken[0] === T_NAME_FULLY_QUALIFIED) { - break; - } - $tokens->next(); - } + return 'Expr_BinaryOp_NotEqual'; } - /** - * Deduce the namespace name and alias of an import when we are at the T_USE token or have not reached the end of - * a USE statement yet. This will return a key/value array of the alias => namespace. - * - * @param ArrayIterator $tokens - * - * @return string[] - * @psalm-return array - * - * @psalm-suppress TypeDoesNotContainType - */ - private function extractUseStatements(ArrayIterator $tokens) : array +} +valid()) { - $currentToken = $tokens->current(); - $tokenId = is_string($currentToken) ? $currentToken : $currentToken[0]; - $tokenValue = is_string($currentToken) ? null : $currentToken[1]; - switch ($state) { - case 'start': - switch ($tokenId) { - case T_STRING: - case T_NS_SEPARATOR: - $currentNs .= (string) $tokenValue; - $currentAlias = $tokenValue; - break; - case T_NAME_QUALIFIED: - case T_NAME_FULLY_QUALIFIED: - $currentNs .= (string) $tokenValue; - $currentAlias = substr((string) $tokenValue, (int) strrpos((string) $tokenValue, '\\') + 1); - break; - case T_CURLY_OPEN: - case '{': - $state = 'grouped'; - $groupedNs = $currentNs; - break; - case T_AS: - $state = 'start-alias'; - break; - case self::T_LITERAL_USE_SEPARATOR: - case self::T_LITERAL_END_OF_USE: - $state = 'end'; - break; - default: - break; - } - break; - case 'start-alias': - switch ($tokenId) { - case T_STRING: - $currentAlias = $tokenValue; - break; - case self::T_LITERAL_USE_SEPARATOR: - case self::T_LITERAL_END_OF_USE: - $state = 'end'; - break; - default: - break; - } - break; - case 'grouped': - switch ($tokenId) { - case T_STRING: - case T_NS_SEPARATOR: - $currentNs .= (string) $tokenValue; - $currentAlias = $tokenValue; - break; - case T_AS: - $state = 'grouped-alias'; - break; - case self::T_LITERAL_USE_SEPARATOR: - $state = 'grouped'; - $extractedUseStatements[(string) $currentAlias] = $currentNs; - $currentNs = $groupedNs; - $currentAlias = ''; - break; - case self::T_LITERAL_END_OF_USE: - $state = 'end'; - break; - default: - break; - } - break; - case 'grouped-alias': - switch ($tokenId) { - case T_STRING: - $currentAlias = $tokenValue; - break; - case self::T_LITERAL_USE_SEPARATOR: - $state = 'grouped'; - $extractedUseStatements[(string) $currentAlias] = $currentNs; - $currentNs = $groupedNs; - $currentAlias = ''; - break; - case self::T_LITERAL_END_OF_USE: - $state = 'end'; - break; - default: - break; - } - } - if ($state === 'end') { - break; - } - $tokens->next(); - } - if ($groupedNs !== $currentNs) { - $extractedUseStatements[(string) $currentAlias] = $currentNs; - } - return $extractedUseStatements; + return '&'; + } + public function getType(): string + { + return 'Expr_BinaryOp_BitwiseAnd'; } } valueType = $valueType; + $this->attributes = $attributes; + $this->var = $var; + $this->expr = $expr; } - /** - * Returns the value for the keys of this array. - */ - public function getValueType() : Type + public function getSubNodeNames(): array { - return $this->valueType; + return ['var', 'expr']; + } + public function getType(): string + { + return 'Expr_Assign'; } +} +valueType . ')'; + $this->attributes = $attributes; + $this->var = $var; + } + public function getSubNodeNames(): array + { + return ['var']; + } + public function getType(): string + { + return 'Expr_PostInc'; } } attributes = $attributes; + } + public function getSubNodeNames(): array + { + return []; + } + public function getType(): string + { + return 'Expr_Error'; } } attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_UnaryPlus'; } } fqsen = $fqsen; + $this->attributes = $attributes; + $this->cond = $cond; + $this->if = $if; + $this->else = $else; + } + public function getSubNodeNames(): array + { + return ['cond', 'if', 'else']; } + public function getType(): string + { + return 'Expr_Ternary'; + } +} +fqsen; + $this->attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; } + public function getType(): string + { + return 'Expr_Empty'; + } +} + Arguments */ + public $args; /** - * Returns a rendered output of the Type as it would be used in a DocBlock. + * Constructs a function call node. + * + * @param Node\Name|Expr|Node\Stmt\Class_ $class Class name (or class node for anonymous classes) + * @param array $args Arguments + * @param array $attributes Additional attributes */ - public function __toString() : string + public function __construct($class, array $args = [], array $attributes = []) { - if ($this->fqsen === null) { - return 'interface-string'; - } - return 'interface-string<' . (string) $this->fqsen . '>'; + $this->attributes = $attributes; + $this->class = $class; + $this->args = $args; + } + public function getSubNodeNames(): array + { + return ['class', 'args']; + } + public function getType(): string + { + return 'Expr_New'; + } + public function getRawArgs(): array + { + return $this->args; } } $types + * @param null|Expr $value Value expression + * @param null|Expr $key Key expression + * @param array $attributes Additional attributes */ - public function __construct(array $types) + public function __construct(?Expr $value = null, ?Expr $key = null, array $attributes = []) { - parent::__construct($types, '&'); + $this->attributes = $attributes; + $this->key = $key; + $this->value = $value; + } + public function getSubNodeNames(): array + { + return ['key', 'value']; + } + public function getType(): string + { + return 'Expr_Yield'; } } keyType) { - return 'iterable<' . $this->keyType . ',' . $this->valueType . '>'; - } - if ($this->valueType instanceof Mixed_) { - return 'iterable'; - } - return 'iterable<' . $this->valueType . '>'; + $this->attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_Exit'; } } attributes = $attributes; + $this->var = $var; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['var', 'expr']; } } Arguments */ + public $args; /** - * Returns a rendered output of the Type as it would be used in a DocBlock. + * Constructs a nullsafe method call node. + * + * @param Expr $var Variable holding object + * @param string|Identifier|Expr $name Method name + * @param array $args Arguments + * @param array $attributes Additional attributes */ - public function __toString() : string + public function __construct(Expr $var, $name, array $args = [], array $attributes = []) { - return 'never'; + $this->attributes = $attributes; + $this->var = $var; + $this->name = \is_string($name) ? new Identifier($name) : $name; + $this->args = $args; + } + public function getSubNodeNames(): array + { + return ['var', 'name', 'args']; + } + public function getType(): string + { + return 'Expr_NullsafeMethodCall'; + } + public function getRawArgs(): array + { + return $this->args; } } attributes = $attributes; + $this->expr = $expr; + $this->class = $class; + } + public function getSubNodeNames(): array + { + return ['expr', 'class']; + } + public function getType(): string + { + return 'Expr_Instanceof'; } } Arguments */ + public $args; /** - * Initialises this nullable type using the real type embedded + * Constructs a function call node. + * + * @param Node\Name|Expr $name Function name + * @param array $args Arguments + * @param array $attributes Additional attributes */ - public function __construct(Type $realType) + public function __construct($name, array $args = [], array $attributes = []) { - $this->realType = $realType; + $this->attributes = $attributes; + $this->name = $name; + $this->args = $args; + } + public function getSubNodeNames(): array + { + return ['name', 'args']; + } + public function getType(): string + { + return 'Expr_FuncCall'; + } + public function getRawArgs(): array + { + return $this->args; + } +} +attributes = $attributes; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['expr']; + } + public function getType(): string + { + return 'Expr_BooleanNot'; + } +} +attributes = $attributes; + $this->expr = $expr; } - /** - * Provide access to the actual type directly, if needed. - */ - public function getActualType() : Type + public function getSubNodeNames(): array { - return $this->realType; + return ['expr']; } - /** - * Returns a rendered output of the Type as it would be used in a DocBlock. - */ - public function __toString() : string + public function getType(): string { - return '?' . $this->realType->__toString(); + return 'Expr_Clone'; } } fqsen = $fqsen; + $this->attributes = $attributes; + $this->var = $var; } - /** - * Returns the FQSEN associated with this object. - */ - public function getFqsen() : ?Fqsen + public function getSubNodeNames(): array { - return $this->fqsen; + return ['var']; } - public function __toString() : string + public function getType(): string { - if ($this->fqsen) { - return (string) $this->fqsen; - } - return 'object'; + return 'Expr_PreDec'; } } attributes = $attributes; + $this->cond = $cond; + $this->arms = $arms; + } + public function getSubNodeNames(): array + { + return ['cond', 'arms']; + } + public function getType(): string + { + return 'Expr_Match'; } } attributes = $attributes; + $this->key = $key; + $this->value = $value; + $this->byRef = $byRef; + $this->unpack = $unpack; + } + public function getSubNodeNames(): array + { + return ['key', 'value', 'byRef', 'unpack']; + } + public function getType(): string + { + return 'Expr_ArrayItem'; } } attributes = $attributes; + $this->items = $items; + } + public function getSubNodeNames(): array + { + return ['items']; + } + public function getType(): string + { + return 'Expr_Array'; } } attributes = $attributes; + $this->var = $var; + $this->expr = $expr; + } + public function getSubNodeNames(): array + { + return ['var', 'expr']; + } + public function getType(): string + { + return 'Expr_AssignRef'; } } attributes = $attributes; + $this->vars = $vars; + } + public function getSubNodeNames(): array + { + return ['vars']; + } + public function getType(): string + { + return 'Expr_Isset'; } } attributes = $attributes; + $this->var = $var; + $this->byRef = $byRef; + } + public function getSubNodeNames(): array + { + return ['var', 'byRef']; + } + public function getType(): string + { + return 'Expr_ClosureUse'; } } attributes = $attributes; + $this->attrs = $attrs; + } + public function getSubNodeNames(): array + { + return ['attrs']; + } + public function getType(): string + { + return 'AttributeGroup'; } } -Copyright (c) 2013 Marcello Duarte - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: + - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node; -use Prophecy\Argument\Token; -/** - * Argument tokens shortcuts. - * - * @author Konstantin Kudryashov - */ -class Argument +class UnionType extends ComplexType { + /** @var (Identifier|Name|IntersectionType)[] Types */ + public $types; /** - * Checks that argument is exact value or object. - * - * @param mixed $value + * Constructs a union type. * - * @return Token\ExactValueToken + * @param (Identifier|Name|IntersectionType)[] $types Types + * @param array $attributes Additional attributes */ - public static function exact($value) + public function __construct(array $types, array $attributes = []) { - return new Token\ExactValueToken($value); + $this->attributes = $attributes; + $this->types = $types; } - /** - * Checks that argument is of specific type or instance of specific class. - * - * @param string $type Type name (`integer`, `string`) or full class name - * - * @return Token\TypeToken - */ - public static function type($type) + public function getSubNodeNames(): array { - return new Token\TypeToken($type); + return ['types']; } - /** - * Checks that argument object has specific state. - * - * @param string $methodName - * @param mixed $value - * - * @return Token\ObjectStateToken - */ - public static function which($methodName, $value) + public function getType(): string { - return new Token\ObjectStateToken($methodName, $value); + return 'UnionType'; } +} +attributes = $attributes; + $this->name = \is_string($name) ? new Identifier($name) : $name; + $this->value = $value; } - /** - * Matches any single value. - * - * @return Token\AnyValueToken - */ - public static function any() + public function getSubNodeNames(): array { - return new Token\AnyValueToken(); + return ['name', 'value']; } - /** - * Matches all values to the rest of the signature. - * - * @return Token\AnyValuesToken - */ - public static function cetera() + public function getType(): string { - return new Token\AnyValuesToken(); + return 'Const'; } +} +attributes = $attributes; } - /** - * Checks that argument array contains value - * - * @param mixed $value - * - * @return Token\ArrayEntryToken - */ - public static function containing($value) + public function getType(): string { - return new Token\ArrayEntryToken(self::any(), $value); + return 'VariadicPlaceholder'; } - /** - * Checks that argument array has key - * - * @param mixed $key exact value or token - * - * @return Token\ArrayEntryToken - */ - public static function withKey($key) + public function getSubNodeNames(): array { - return new Token\ArrayEntryToken($key, self::any()); + return []; } +} +toString(); } - /** - * Checks that argument is not in array. - * - * @param array $value - * - * @return Token\NotInArrayToken - */ - public static function notIn($value) + public function getType(): string { - return new Token\NotInArrayToken($value); + return 'Name_Relative'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Name; -/** - * Arguments wildcarding. - * - * @author Konstantin Kudryashov - */ -class ArgumentsWildcard +class FullyQualified extends \PHPUnitPHAR\PhpParser\Node\Name { /** - * @var Token\TokenInterface[] - */ - private $tokens = array(); - private $string; - /** - * Initializes wildcard. + * Checks whether the name is unqualified. (E.g. Name) * - * @param array $arguments Array of argument tokens or values + * @return bool Whether the name is unqualified */ - public function __construct(array $arguments) + public function isUnqualified(): bool { - foreach ($arguments as $argument) { - if (!$argument instanceof \Prophecy\Argument\Token\TokenInterface) { - $argument = new \Prophecy\Argument\Token\ExactValueToken($argument); - } - $this->tokens[] = $argument; - } + return \false; } /** - * Calculates wildcard match score for provided arguments. - * - * @param array $arguments + * Checks whether the name is qualified. (E.g. Name\Name) * - * @return false|int False OR integer score (higher - better) + * @return bool Whether the name is qualified */ - public function scoreArguments(array $arguments) + public function isQualified(): bool { - if (0 == \count($arguments) && 0 == \count($this->tokens)) { - return 1; - } - $arguments = \array_values($arguments); - $totalScore = 0; - foreach ($this->tokens as $i => $token) { - $argument = isset($arguments[$i]) ? $arguments[$i] : null; - if (1 >= ($score = $token->scoreArgument($argument))) { - return \false; - } - $totalScore += $score; - if (\true === $token->isLast()) { - return $totalScore; - } - } - if (\count($arguments) > \count($this->tokens)) { - return \false; - } - return $totalScore; + return \false; } /** - * Returns string representation for wildcard. + * Checks whether the name is fully qualified. (E.g. \Name) * - * @return string + * @return bool Whether the name is fully qualified */ - public function __toString() + public function isFullyQualified(): bool { - if (null === $this->string) { - $this->string = \implode(', ', \array_map(function ($token) { - return (string) $token; - }, $this->tokens)); - } - return $this->string; + return \true; } /** - * @return array + * Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name) + * + * @return bool Whether the name is relative */ - public function getTokens() + public function isRelative(): bool { - return $this->tokens; + return \false; + } + public function toCodeString(): string + { + return '\\' . $this->toString(); + } + public function getType(): string + { + return 'Name_FullyQualified'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node; /** - * Any single value token. + * Represents a name that is written in source code with a leading dollar, + * but is not a proper variable. The leading dollar is not stored as part of the name. * - * @author Konstantin Kudryashov + * Examples: Names in property declarations are formatted as variables. Names in static property + * lookups are also formatted as variables. */ -class AnyValueToken implements \Prophecy\Argument\Token\TokenInterface +class VarLikeIdentifier extends Identifier { - /** - * Always scores 3 for any argument. - * - * @param $argument - * - * @return int - */ - public function scoreArgument($argument) + public function getType(): string { - return 3; + return 'VarLikeIdentifier'; } +} +attributes = $attributes; + $this->types = $types; } - /** - * Returns string representation for token. - * - * @return string - */ - public function __toString() + public function getSubNodeNames(): array { - return '*'; + return ['types']; + } + public function getType(): string + { + return 'IntersectionType'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node; -/** - * Any values token. - * - * @author Konstantin Kudryashov - */ -class AnyValuesToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\NodeAbstract; +class Name extends NodeAbstract { /** - * Always scores 2 for any argument. - * - * @param $argument + * @var string[] Parts of the name + * @deprecated Use getParts() instead + */ + public $parts; + private static $specialClassNames = ['self' => \true, 'parent' => \true, 'static' => \true]; + /** + * Constructs a name node. * - * @return int + * @param string|string[]|self $name Name as string, part array or Name instance (copy ctor) + * @param array $attributes Additional attributes */ - public function scoreArgument($argument) + public function __construct($name, array $attributes = []) { - return 2; + $this->attributes = $attributes; + $this->parts = self::prepareName($name); + } + public function getSubNodeNames(): array + { + return ['parts']; } /** - * Returns true to stop wildcard from processing other tokens. + * Get parts of name (split by the namespace separator). * - * @return bool + * @return string[] Parts of name */ - public function isLast() + public function getParts(): array { - return \true; + return $this->parts; } /** - * Returns string representation for token. + * Gets the first part of the name, i.e. everything before the first namespace separator. * - * @return string + * @return string First part of the name */ - public function __toString() - { - return '* [, ...]'; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; - -/** - * Approximate value token - * - * @author Daniel Leech - */ -class ApproximateValueToken implements \Prophecy\Argument\Token\TokenInterface -{ - private $value; - private $precision; - public function __construct($value, $precision = 0) + public function getFirst(): string { - $this->value = $value; - $this->precision = $precision; + return $this->parts[0]; } /** - * {@inheritdoc} + * Gets the last part of the name, i.e. everything after the last namespace separator. + * + * @return string Last part of the name */ - public function scoreArgument($argument) + public function getLast(): string { - return \round((float) $argument, $this->precision) === \round($this->value, $this->precision) ? 10 : \false; + return $this->parts[count($this->parts) - 1]; } /** - * {@inheritdoc} + * Checks whether the name is unqualified. (E.g. Name) + * + * @return bool Whether the name is unqualified */ - public function isLast() + public function isUnqualified(): bool { - return \false; + return 1 === count($this->parts); } /** - * Returns string representation for token. + * Checks whether the name is qualified. (E.g. Name\Name) * - * @return string + * @return bool Whether the name is qualified */ - public function __toString() + public function isQualified(): bool { - return \sprintf('≅%s', \round($this->value, $this->precision)); + return 1 < count($this->parts); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; - -/** - * Array elements count token. - * - * @author Boris Mikhaylov - */ -class ArrayCountToken implements \Prophecy\Argument\Token\TokenInterface -{ - private $count; /** - * @param integer $value + * Checks whether the name is fully qualified. (E.g. \Name) + * + * @return bool Whether the name is fully qualified */ - public function __construct($value) + public function isFullyQualified(): bool { - $this->count = $value; + return \false; } /** - * Scores 6 when argument has preset number of elements. - * - * @param $argument + * Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name) * - * @return bool|int + * @return bool Whether the name is relative */ - public function scoreArgument($argument) + public function isRelative(): bool { - return $this->isCountable($argument) && $this->hasProperCount($argument) ? 6 : \false; + return \false; } /** - * Returns false. + * Returns a string representation of the name itself, without taking the name type into + * account (e.g., not including a leading backslash for fully qualified names). * - * @return boolean + * @return string String representation */ - public function isLast() + public function toString(): string { - return \false; + return implode('\\', $this->parts); } /** - * Returns string representation for token. + * Returns a string representation of the name as it would occur in code (e.g., including + * leading backslash for fully qualified names. * - * @return string + * @return string String representation */ - public function __toString() + public function toCodeString(): string { - return \sprintf('count(%s)', $this->count); + return $this->toString(); } /** - * Returns true if object is either array or instance of \Countable + * Returns lowercased string representation of the name, without taking the name type into + * account (e.g., no leading backslash for fully qualified names). * - * @param $argument - * @return bool + * @return string Lowercased string representation */ - private function isCountable($argument) + public function toLowerString(): string { - return \is_array($argument) || $argument instanceof \Countable; + return strtolower(implode('\\', $this->parts)); } /** - * Returns true if $argument has expected number of elements - * - * @param array|\Countable $argument + * Checks whether the identifier is a special class name (self, parent or static). * - * @return bool + * @return bool Whether identifier is a special class name */ - private function hasProperCount($argument) + public function isSpecialClassName(): bool { - return $this->count === \count($argument); + return count($this->parts) === 1 && isset(self::$specialClassNames[strtolower($this->parts[0])]); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; - -use Prophecy\Exception\InvalidArgumentException; -/** - * Array entry token. - * - * @author Boris Mikhaylov - */ -class ArrayEntryToken implements \Prophecy\Argument\Token\TokenInterface -{ - /** @var \Prophecy\Argument\Token\TokenInterface */ - private $key; - /** @var \Prophecy\Argument\Token\TokenInterface */ - private $value; /** - * @param mixed $key exact value or token - * @param mixed $value exact value or token + * Returns a string representation of the name by imploding the namespace parts with the + * namespace separator. + * + * @return string String representation */ - public function __construct($key, $value) + public function __toString(): string { - $this->key = $this->wrapIntoExactValueToken($key); - $this->value = $this->wrapIntoExactValueToken($value); + return implode('\\', $this->parts); } /** - * Scores half of combined scores from key and value tokens for same entry. Capped at 8. - * If argument implements \ArrayAccess without \Traversable, then key token is restricted to ExactValueToken. + * Gets a slice of a name (similar to array_slice). + * + * This method returns a new instance of the same type as the original and with the same + * attributes. * - * @param array|\ArrayAccess|\Traversable $argument + * If the slice is empty, null is returned. The null value will be correctly handled in + * concatenations using concat(). * - * @throws \Prophecy\Exception\InvalidArgumentException - * @return bool|int + * Offset and length have the same meaning as in array_slice(). + * + * @param int $offset Offset to start the slice at (may be negative) + * @param int|null $length Length of the slice (may be negative) + * + * @return static|null Sliced name */ - public function scoreArgument($argument) + public function slice(int $offset, ?int $length = null) { - if ($argument instanceof \Traversable) { - $argument = \iterator_to_array($argument); + $numParts = count($this->parts); + $realOffset = $offset < 0 ? $offset + $numParts : $offset; + if ($realOffset < 0 || $realOffset > $numParts) { + throw new \OutOfBoundsException(sprintf('Offset %d is out of bounds', $offset)); } - if ($argument instanceof \ArrayAccess) { - $argument = $this->convertArrayAccessToEntry($argument); + if (null === $length) { + $realLength = $numParts - $realOffset; + } else { + $realLength = $length < 0 ? $length + $numParts - $realOffset : $length; + if ($realLength < 0 || $realLength > $numParts - $realOffset) { + throw new \OutOfBoundsException(sprintf('Length %d is out of bounds', $length)); + } } - if (!\is_array($argument) || empty($argument)) { - return \false; + if ($realLength === 0) { + // Empty slice is represented as null + return null; } - $keyScores = \array_map(array($this->key, 'scoreArgument'), \array_keys($argument)); - $valueScores = \array_map(array($this->value, 'scoreArgument'), $argument); - $scoreEntry = function ($value, $key) { - return $value && $key ? \min(8, ($key + $value) / 2) : \false; - }; - return \max(\array_map($scoreEntry, $valueScores, $keyScores)); + return new static(array_slice($this->parts, $realOffset, $realLength), $this->attributes); } /** - * Returns false. + * Concatenate two names, yielding a new Name instance. * - * @return boolean + * The type of the generated instance depends on which class this method is called on, for + * example Name\FullyQualified::concat() will yield a Name\FullyQualified instance. + * + * If one of the arguments is null, a new instance of the other name will be returned. If both + * arguments are null, null will be returned. As such, writing + * Name::concat($namespace, $shortName) + * where $namespace is a Name node or null will work as expected. + * + * @param string|string[]|self|null $name1 The first name + * @param string|string[]|self|null $name2 The second name + * @param array $attributes Attributes to assign to concatenated name + * + * @return static|null Concatenated name */ - public function isLast() + public static function concat($name1, $name2, array $attributes = []) { - return \false; + if (null === $name1 && null === $name2) { + return null; + } elseif (null === $name1) { + return new static(self::prepareName($name2), $attributes); + } elseif (null === $name2) { + return new static(self::prepareName($name1), $attributes); + } else { + return new static(array_merge(self::prepareName($name1), self::prepareName($name2)), $attributes); + } } /** - * Returns string representation for token. + * Prepares a (string, array or Name node) name for use in name changing methods by converting + * it to an array. * - * @return string + * @param string|string[]|self $name Name to prepare + * + * @return string[] Prepared name */ - public function __toString() + private static function prepareName($name): array { - return \sprintf('[..., %s => %s, ...]', $this->key, $this->value); + if (\is_string($name)) { + if ('' === $name) { + throw new \InvalidArgumentException('Name cannot be empty'); + } + return explode('\\', $name); + } elseif (\is_array($name)) { + if (empty($name)) { + throw new \InvalidArgumentException('Name cannot be empty'); + } + return $name; + } elseif ($name instanceof self) { + return $name->parts; + } + throw new \InvalidArgumentException('Expected string, array of parts or Name instance'); } - /** - * Returns key - * - * @return TokenInterface - */ - public function getKey() + public function getType(): string { - return $this->key; + return 'Name'; } +} +value; + $this->attributes = $attributes; + $this->value = $value; + } + public function getSubNodeNames(): array + { + return ['value']; } /** - * Wraps non token $value into ExactValueToken - * - * @param $value - * @return TokenInterface + * @param mixed[] $attributes */ - private function wrapIntoExactValueToken($value) + public static function fromString(string $str, array $attributes = []): DNumber { - return $value instanceof \Prophecy\Argument\Token\TokenInterface ? $value : new \Prophecy\Argument\Token\ExactValueToken($value); + $attributes['rawValue'] = $str; + $float = self::parse($str); + return new DNumber($float, $attributes); } /** - * Converts instance of \ArrayAccess to key => value array entry + * @internal * - * @param \ArrayAccess $object + * Parses a DNUMBER token like PHP would. * - * @return array|null - * @throws \Prophecy\Exception\InvalidArgumentException + * @param string $str A string number + * + * @return float The parsed number */ - private function convertArrayAccessToEntry(\ArrayAccess $object) + public static function parse(string $str): float { - if (!$this->key instanceof \Prophecy\Argument\Token\ExactValueToken) { - throw new InvalidArgumentException(\sprintf('You can only use exact value tokens to match key of ArrayAccess object' . \PHP_EOL . 'But you used `%s`.', $this->key)); + $str = str_replace('_', '', $str); + // Check whether this is one of the special integer notations. + if ('0' === $str[0]) { + // hex + if ('x' === $str[1] || 'X' === $str[1]) { + return hexdec($str); + } + // bin + if ('b' === $str[1] || 'B' === $str[1]) { + return bindec($str); + } + // oct, but only if the string does not contain any of '.eE'. + if (\false === strpbrk($str, '.eE')) { + // substr($str, 0, strcspn($str, '89')) cuts the string at the first invalid digit + // (8 or 9) so that only the digits before that are used. + return octdec(substr($str, 0, strcspn($str, '89'))); + } } - $key = $this->key->getValue(); - return $object->offsetExists($key) ? array($key => $object[$key]) : array(); + // dec + return (float) $str; + } + public function getType(): string + { + return 'Scalar_DNumber'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar; -/** - * Array every entry token. - * - * @author Adrien Brault - */ -class ArrayEveryEntryToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node\Scalar; +class String_ extends Scalar { + /* For use in "kind" attribute */ + const KIND_SINGLE_QUOTED = 1; + const KIND_DOUBLE_QUOTED = 2; + const KIND_HEREDOC = 3; + const KIND_NOWDOC = 4; + /** @var string String value */ + public $value; + protected static $replacements = ['\\' => '\\', '$' => '$', 'n' => "\n", 'r' => "\r", 't' => "\t", 'f' => "\f", 'v' => "\v", 'e' => "\x1b"]; /** - * @var TokenInterface + * Constructs a string scalar node. + * + * @param string $value Value of the string + * @param array $attributes Additional attributes */ - private $value; + public function __construct(string $value, array $attributes = []) + { + $this->attributes = $attributes; + $this->value = $value; + } + public function getSubNodeNames(): array + { + return ['value']; + } /** - * @param mixed $value exact value or token + * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes */ - public function __construct($value) + public static function fromString(string $str, array $attributes = [], bool $parseUnicodeEscape = \true): self { - if (!$value instanceof \Prophecy\Argument\Token\TokenInterface) { - $value = new \Prophecy\Argument\Token\ExactValueToken($value); - } - $this->value = $value; + $attributes['kind'] = $str[0] === "'" || $str[1] === "'" && ($str[0] === 'b' || $str[0] === 'B') ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED; + $attributes['rawValue'] = $str; + $string = self::parse($str, $parseUnicodeEscape); + return new self($string, $attributes); } /** - * {@inheritdoc} + * @internal + * + * Parses a string token. + * + * @param string $str String token content + * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes + * + * @return string The parsed string */ - public function scoreArgument($argument) + public static function parse(string $str, bool $parseUnicodeEscape = \true): string { - if (!$argument instanceof \Traversable && !\is_array($argument)) { - return \false; - } - $scores = array(); - foreach ($argument as $key => $argumentEntry) { - $scores[] = $this->value->scoreArgument($argumentEntry); + $bLength = 0; + if ('b' === $str[0] || 'B' === $str[0]) { + $bLength = 1; } - if (empty($scores) || \in_array(\false, $scores, \true)) { - return \false; + if ('\'' === $str[$bLength]) { + return str_replace(['\\\\', '\\\''], ['\\', '\''], substr($str, $bLength + 1, -1)); + } else { + return self::parseEscapeSequences(substr($str, $bLength + 1, -1), '"', $parseUnicodeEscape); } - return \array_sum($scores) / \count($scores); } /** - * {@inheritdoc} + * @internal + * + * Parses escape sequences in strings (all string types apart from single quoted). + * + * @param string $str String without quotes + * @param null|string $quote Quote type + * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes + * + * @return string String with escape sequences parsed */ - public function isLast() + public static function parseEscapeSequences(string $str, $quote, bool $parseUnicodeEscape = \true): string { - return \false; + if (null !== $quote) { + $str = str_replace('\\' . $quote, $quote, $str); + } + $extra = ''; + if ($parseUnicodeEscape) { + $extra = '|u\{([0-9a-fA-F]+)\}'; + } + return preg_replace_callback('~\\\\([\\\\$nrtfve]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3}' . $extra . ')~', function ($matches) { + $str = $matches[1]; + if (isset(self::$replacements[$str])) { + return self::$replacements[$str]; + } elseif ('x' === $str[0] || 'X' === $str[0]) { + return chr(hexdec(substr($str, 1))); + } elseif ('u' === $str[0]) { + return self::codePointToUtf8(hexdec($matches[2])); + } else { + return chr(octdec($str)); + } + }, $str); } /** - * {@inheritdoc} + * Converts a Unicode code point to its UTF-8 encoded representation. + * + * @param int $num Code point + * + * @return string UTF-8 representation of code point */ - public function __toString() + private static function codePointToUtf8(int $num): string { - return \sprintf('[%s, ..., %s]', $this->value, $this->value); + if ($num <= 0x7f) { + return chr($num); + } + if ($num <= 0x7ff) { + return chr(($num >> 6) + 0xc0) . chr(($num & 0x3f) + 0x80); + } + if ($num <= 0xffff) { + return chr(($num >> 12) + 0xe0) . chr(($num >> 6 & 0x3f) + 0x80) . chr(($num & 0x3f) + 0x80); + } + if ($num <= 0x1fffff) { + return chr(($num >> 18) + 0xf0) . chr(($num >> 12 & 0x3f) + 0x80) . chr(($num >> 6 & 0x3f) + 0x80) . chr(($num & 0x3f) + 0x80); + } + throw new Error('Invalid UTF-8 codepoint escape sequence: Codepoint too large'); } - /** - * @return TokenInterface - */ - public function getValue() + public function getType(): string { - return $this->value; + return 'Scalar_String'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; -use Prophecy\Exception\InvalidArgumentException; -/** - * Callback-verified token. - * - * @author Konstantin Kudryashov - */ -class CallbackToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; +class Namespace_ extends MagicConst { - private $callback; - /** - * Initializes token. - * - * @param callable $callback - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function __construct($callback) + public function getName(): string { - if (!\is_callable($callback)) { - throw new InvalidArgumentException(\sprintf('Callable expected as an argument to CallbackToken, but got %s.', \gettype($callback))); - } - $this->callback = $callback; + return '__NAMESPACE__'; } - /** - * Scores 7 if callback returns true, false otherwise. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getType(): string { - return \call_user_func($this->callback, $argument) ? 7 : \false; + return 'Scalar_MagicConst_Namespace'; } - /** - * Returns false. - * - * @return bool - */ - public function isLast() +} + - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; -use PHPUnit\SebastianBergmann\Comparator\ComparisonFailure; -use Prophecy\Comparator\Factory as ComparatorFactory; -use Prophecy\Util\StringUtil; -/** - * Exact value token. - * - * @author Konstantin Kudryashov - */ -class ExactValueToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; +class Dir extends MagicConst { - private $value; - private $string; - private $util; - private $comparatorFactory; - /** - * Initializes token. - * - * @param mixed $value - * @param StringUtil $util - * @param ComparatorFactory $comparatorFactory - */ - public function __construct($value, StringUtil $util = null, ComparatorFactory $comparatorFactory = null) + public function getName(): string { - $this->value = $value; - $this->util = $util ?: new StringUtil(); - $this->comparatorFactory = $comparatorFactory ?: ComparatorFactory::getInstance(); + return '__DIR__'; } - /** - * Scores 10 if argument matches preset value. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getType(): string { - if (\is_object($argument) && \is_object($this->value)) { - $comparator = $this->comparatorFactory->getComparatorFor($argument, $this->value); - try { - $comparator->assertEquals($argument, $this->value); - return 10; - } catch (ComparisonFailure $failure) { - return \false; - } - } - // If either one is an object it should be castable to a string - if (\is_object($argument) xor \is_object($this->value)) { - if (\is_object($argument) && !\method_exists($argument, '__toString')) { - return \false; - } - if (\is_object($this->value) && !\method_exists($this->value, '__toString')) { - return \false; - } - } elseif (\is_numeric($argument) && \is_numeric($this->value)) { - // noop - } elseif (\gettype($argument) !== \gettype($this->value)) { - return \false; - } - return $argument == $this->value ? 10 : \false; + return 'Scalar_MagicConst_Dir'; } - /** - * Returns preset value against which token checks arguments. - * - * @return mixed - */ - public function getValue() +} +value; + return '__FILE__'; } - /** - * Returns false. - * - * @return bool - */ - public function isLast() + public function getType(): string { - return \false; + return 'Scalar_MagicConst_File'; } - /** - * Returns string representation for token. - * - * @return string - */ - public function __toString() +} +string) { - $this->string = \sprintf('exact(%s)', $this->util->stringify($this->value)); - } - return $this->string; + return '__METHOD__'; + } + public function getType(): string + { + return 'Scalar_MagicConst_Method'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; -use Prophecy\Util\StringUtil; -/** - * Identical value token. - * - * @author Florian Voutzinos - */ -class IdenticalValueToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; +class Function_ extends MagicConst { - private $value; - private $string; - private $util; - /** - * Initializes token. - * - * @param mixed $value - * @param StringUtil $util - */ - public function __construct($value, StringUtil $util = null) + public function getName(): string { - $this->value = $value; - $this->util = $util ?: new StringUtil(); + return '__FUNCTION__'; } - /** - * Scores 11 if argument matches preset value. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getType(): string { - return $argument === $this->value ? 11 : \false; + return 'Scalar_MagicConst_Function'; } - /** - * Returns false. - * - * @return bool - */ - public function isLast() +} +string) { - $this->string = \sprintf('identical(%s)', $this->util->stringify($this->value)); - } - return $this->string; + return 'Scalar_MagicConst_Line'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; -/** - * Check if values is in array - * - * @author Vinícius Alonso - */ -class InArrayToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Node\Scalar\MagicConst; +class Trait_ extends MagicConst { - private $token = array(); - private $strict; - /** - * @param array $arguments tokens - * @param bool $strict - */ - public function __construct(array $arguments, $strict = \true) + public function getName(): string { - $this->token = $arguments; - $this->strict = $strict; + return '__TRAIT__'; } - /** - * Return scores 8 score if argument is in array. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getType(): string { - if (\count($this->token) === 0) { - return \false; - } - if (\in_array($argument, $this->token, $this->strict)) { - return 8; - } - return \false; + return 'Scalar_MagicConst_Trait'; } +} +attributes = $attributes; + } + public function getSubNodeNames(): array + { + return []; } /** - * Returns string representation for token. + * Get name of magic constant. * - * @return string + * @return string Name of magic constant */ - public function __toString() - { - $arrayAsString = \implode(', ', $this->token); - return "[{$arrayAsString}]"; - } + abstract public function getName(): string; } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar; -/** - * Logical AND token. - * - * @author Boris Mikhaylov - */ -class LogicalAndToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\Node\Scalar; +class LNumber extends Scalar { - private $tokens = array(); + /* For use in "kind" attribute */ + const KIND_BIN = 2; + const KIND_OCT = 8; + const KIND_DEC = 10; + const KIND_HEX = 16; + /** @var int Number value */ + public $value; /** - * @param array $arguments exact values or tokens + * Constructs an integer number scalar node. + * + * @param int $value Value of the number + * @param array $attributes Additional attributes */ - public function __construct(array $arguments) + public function __construct(int $value, array $attributes = []) { - foreach ($arguments as $argument) { - if (!$argument instanceof \Prophecy\Argument\Token\TokenInterface) { - $argument = new \Prophecy\Argument\Token\ExactValueToken($argument); - } - $this->tokens[] = $argument; - } + $this->attributes = $attributes; + $this->value = $value; } - /** - * Scores maximum score from scores returned by tokens for this argument if all of them score. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getSubNodeNames(): array { - if (0 === \count($this->tokens)) { - return \false; - } - $maxScore = 0; - foreach ($this->tokens as $token) { - $score = $token->scoreArgument($argument); - if (\false === $score) { - return \false; - } - $maxScore = \max($score, $maxScore); - } - return $maxScore; + return ['value']; } /** - * Returns false. + * Constructs an LNumber node from a string number literal. * - * @return boolean + * @param string $str String number literal (decimal, octal, hex or binary) + * @param array $attributes Additional attributes + * @param bool $allowInvalidOctal Whether to allow invalid octal numbers (PHP 5) + * + * @return LNumber The constructed LNumber, including kind attribute */ - public function isLast() + public static function fromString(string $str, array $attributes = [], bool $allowInvalidOctal = \false): LNumber { - return \false; + $attributes['rawValue'] = $str; + $str = str_replace('_', '', $str); + if ('0' !== $str[0] || '0' === $str) { + $attributes['kind'] = LNumber::KIND_DEC; + return new LNumber((int) $str, $attributes); + } + if ('x' === $str[1] || 'X' === $str[1]) { + $attributes['kind'] = LNumber::KIND_HEX; + return new LNumber(hexdec($str), $attributes); + } + if ('b' === $str[1] || 'B' === $str[1]) { + $attributes['kind'] = LNumber::KIND_BIN; + return new LNumber(bindec($str), $attributes); + } + if (!$allowInvalidOctal && strpbrk($str, '89')) { + throw new Error('Invalid numeric literal', $attributes); + } + // Strip optional explicit octal prefix. + if ('o' === $str[1] || 'O' === $str[1]) { + $str = substr($str, 2); + } + // use intval instead of octdec to get proper cutting behavior with malformed numbers + $attributes['kind'] = LNumber::KIND_OCT; + return new LNumber(intval($str, 8), $attributes); } - /** - * Returns string representation for token. - * - * @return string - */ - public function __toString() + public function getType(): string { - return \sprintf('bool(%s)', \implode(' AND ', $this->tokens)); + return 'Scalar_LNumber'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Node\Scalar; -/** - * Logical NOT token. - * - * @author Boris Mikhaylov - */ -class LogicalNotToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\Node\Scalar; +class EncapsedStringPart extends Scalar { - /** @var \Prophecy\Argument\Token\TokenInterface */ - private $token; + /** @var string String value */ + public $value; /** - * @param mixed $value exact value or token + * Constructs a node representing a string part of an encapsed string. + * + * @param string $value String value + * @param array $attributes Additional attributes */ - public function __construct($value) + public function __construct(string $value, array $attributes = []) { - $this->token = $value instanceof \Prophecy\Argument\Token\TokenInterface ? $value : new \Prophecy\Argument\Token\ExactValueToken($value); + $this->attributes = $attributes; + $this->value = $value; } - /** - * Scores 4 when preset token does not match the argument. - * - * @param $argument - * - * @return bool|int - */ - public function scoreArgument($argument) + public function getSubNodeNames(): array { - return \false === $this->token->scoreArgument($argument) ? 4 : \false; + return ['value']; } - /** - * Returns true if preset token is last. - * - * @return bool|int - */ - public function isLast() + public function getType(): string { - return $this->token->isLast(); + return 'Scalar_EncapsedStringPart'; } +} +token; + $this->attributes = $attributes; + $this->parts = $parts; + } + public function getSubNodeNames(): array + { + return ['parts']; + } + public function getType(): string + { + return 'Scalar_Encapsed'; } +} +attributes = $attributes; + $this->name = $name; + $this->value = $value; + $this->byRef = $byRef; + $this->unpack = $unpack; + } + public function getSubNodeNames(): array + { + return ['name', 'value', 'byRef', 'unpack']; + } + public function getType(): string { - return \sprintf('not(%s)', $this->token); + return 'Arg'; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser; -/** - * Check if values is not in array - * - * @author Vinícius Alonso - */ -class NotInArrayToken implements \Prophecy\Argument\Token\TokenInterface +use PHPUnitPHAR\PhpParser\NodeVisitor\FindingVisitor; +use PHPUnitPHAR\PhpParser\NodeVisitor\FirstFindingVisitor; +class NodeFinder { - private $token = array(); - private $strict; /** - * @param array $arguments tokens - * @param bool $strict + * Find all nodes satisfying a filter callback. + * + * @param Node|Node[] $nodes Single node or array of nodes to search in + * @param callable $filter Filter callback: function(Node $node) : bool + * + * @return Node[] Found nodes satisfying the filter callback */ - public function __construct(array $arguments, $strict = \true) + public function find($nodes, callable $filter): array { - $this->token = $arguments; - $this->strict = $strict; + if (!is_array($nodes)) { + $nodes = [$nodes]; + } + $visitor = new FindingVisitor($filter); + $traverser = new NodeTraverser(); + $traverser->addVisitor($visitor); + $traverser->traverse($nodes); + return $visitor->getFoundNodes(); } /** - * Return scores 8 score if argument is in array. + * Find all nodes that are instances of a certain class. * - * @param $argument + * @param Node|Node[] $nodes Single node or array of nodes to search in + * @param string $class Class name * - * @return bool|int + * @return Node[] Found nodes (all instances of $class) */ - public function scoreArgument($argument) + public function findInstanceOf($nodes, string $class): array { - if (\count($this->token) === 0) { - return \false; - } - if (!\in_array($argument, $this->token, $this->strict)) { - return 8; - } - return \false; + return $this->find($nodes, function ($node) use ($class) { + return $node instanceof $class; + }); } /** - * Returns false. + * Find first node satisfying a filter callback. * - * @return boolean + * @param Node|Node[] $nodes Single node or array of nodes to search in + * @param callable $filter Filter callback: function(Node $node) : bool + * + * @return null|Node Found node (or null if none found) */ - public function isLast() + public function findFirst($nodes, callable $filter) { - return \false; + if (!is_array($nodes)) { + $nodes = [$nodes]; + } + $visitor = new FirstFindingVisitor($filter); + $traverser = new NodeTraverser(); + $traverser->addVisitor($visitor); + $traverser->traverse($nodes); + return $visitor->getFoundNode(); } /** - * Returns string representation for token. + * Find first node that is an instance of a certain class. * - * @return string + * @param Node|Node[] $nodes Single node or array of nodes to search in + * @param string $class Class name + * + * @return null|Node Found node, which is an instance of $class (or null if none found) */ - public function __toString() + public function findFirstInstanceOf($nodes, string $class) { - $arrayAsString = \implode(', ', $this->token); - return "[{$arrayAsString}]"; + return $this->findFirst($nodes, function ($node) use ($class) { + return $node instanceof $class; + }); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser; -use PHPUnit\SebastianBergmann\Comparator\ComparisonFailure; -use Prophecy\Comparator\Factory as ComparatorFactory; -use Prophecy\Util\StringUtil; -/** - * Object state-checker token. - * - * @author Konstantin Kudryashov - */ -class ObjectStateToken implements \Prophecy\Argument\Token\TokenInterface +class NodeTraverser implements NodeTraverserInterface { - private $name; - private $value; - private $util; - private $comparatorFactory; /** - * Initializes token. + * If NodeVisitor::enterNode() returns DONT_TRAVERSE_CHILDREN, child nodes + * of the current node will not be traversed for any visitors. * - * @param string $methodName - * @param mixed $value Expected return value - * @param null|StringUtil $util - * @param ComparatorFactory $comparatorFactory + * For subsequent visitors enterNode() will still be called on the current + * node and leaveNode() will also be invoked for the current node. */ - public function __construct($methodName, $value, StringUtil $util = null, ComparatorFactory $comparatorFactory = null) - { - $this->name = $methodName; - $this->value = $value; - $this->util = $util ?: new StringUtil(); - $this->comparatorFactory = $comparatorFactory ?: ComparatorFactory::getInstance(); - } + const DONT_TRAVERSE_CHILDREN = 1; /** - * Scores 8 if argument is an object, which method returns expected value. + * If NodeVisitor::enterNode() or NodeVisitor::leaveNode() returns + * STOP_TRAVERSAL, traversal is aborted. * - * @param mixed $argument + * The afterTraverse() method will still be invoked. + */ + const STOP_TRAVERSAL = 2; + /** + * If NodeVisitor::leaveNode() returns REMOVE_NODE for a node that occurs + * in an array, it will be removed from the array. * - * @return bool|int + * For subsequent visitors leaveNode() will still be invoked for the + * removed node. */ - public function scoreArgument($argument) - { - if (\is_object($argument) && \method_exists($argument, $this->name)) { - $actual = \call_user_func(array($argument, $this->name)); - $comparator = $this->comparatorFactory->getComparatorFor($this->value, $actual); - try { - $comparator->assertEquals($this->value, $actual); - return 8; - } catch (ComparisonFailure $failure) { - return \false; - } - } - if (\is_object($argument) && \property_exists($argument, $this->name)) { - return $argument->{$this->name} === $this->value ? 8 : \false; - } - return \false; - } + const REMOVE_NODE = 3; /** - * Returns false. + * If NodeVisitor::enterNode() returns DONT_TRAVERSE_CURRENT_AND_CHILDREN, child nodes + * of the current node will not be traversed for any visitors. * - * @return bool + * For subsequent visitors enterNode() will not be called as well. + * leaveNode() will be invoked for visitors that has enterNode() method invoked. */ - public function isLast() + const DONT_TRAVERSE_CURRENT_AND_CHILDREN = 4; + /** @var NodeVisitor[] Visitors */ + protected $visitors = []; + /** @var bool Whether traversal should be stopped */ + protected $stopTraversal; + public function __construct() { - return \false; + // for BC } /** - * Returns string representation for token. + * Adds a visitor. * - * @return string + * @param NodeVisitor $visitor Visitor to add */ - public function __toString() + public function addVisitor(NodeVisitor $visitor) { - return \sprintf('state(%s(), %s)', $this->name, $this->util->stringify($this->value)); + $this->visitors[] = $visitor; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; - -/** - * String contains token. - * - * @author Peter Mitchell - */ -class StringContainsToken implements \Prophecy\Argument\Token\TokenInterface -{ - private $value; /** - * Initializes token. + * Removes an added visitor. * - * @param string $value + * @param NodeVisitor $visitor */ - public function __construct($value) - { - $this->value = $value; - } - public function scoreArgument($argument) + public function removeVisitor(NodeVisitor $visitor) { - return \is_string($argument) && \strpos($argument, $this->value) !== \false ? 6 : \false; + foreach ($this->visitors as $index => $storedVisitor) { + if ($storedVisitor === $visitor) { + unset($this->visitors[$index]); + break; + } + } } /** - * Returns preset value against which token checks arguments. + * Traverses an array of nodes using the registered visitors. * - * @return mixed + * @param Node[] $nodes Array of nodes + * + * @return Node[] Traversed array of nodes */ - public function getValue() + public function traverse(array $nodes): array { - return $this->value; + $this->stopTraversal = \false; + foreach ($this->visitors as $visitor) { + if (null !== $return = $visitor->beforeTraverse($nodes)) { + $nodes = $return; + } + } + $nodes = $this->traverseArray($nodes); + foreach ($this->visitors as $visitor) { + if (null !== $return = $visitor->afterTraverse($nodes)) { + $nodes = $return; + } + } + return $nodes; } /** - * Returns false. + * Recursively traverse a node. * - * @return bool + * @param Node $node Node to traverse. + * + * @return Node Result of traversal (may be original node or new one) */ - public function isLast() + protected function traverseNode(Node $node): Node { - return \false; + foreach ($node->getSubNodeNames() as $name) { + $subNode =& $node->{$name}; + if (\is_array($subNode)) { + $subNode = $this->traverseArray($subNode); + if ($this->stopTraversal) { + break; + } + } elseif ($subNode instanceof Node) { + $traverseChildren = \true; + $breakVisitorIndex = null; + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->enterNode($subNode); + if (null !== $return) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($subNode, $return); + $subNode = $return; + } elseif (self::DONT_TRAVERSE_CHILDREN === $return) { + $traverseChildren = \false; + } elseif (self::DONT_TRAVERSE_CURRENT_AND_CHILDREN === $return) { + $traverseChildren = \false; + $breakVisitorIndex = $visitorIndex; + break; + } elseif (self::STOP_TRAVERSAL === $return) { + $this->stopTraversal = \true; + break 2; + } else { + throw new \LogicException('enterNode() returned invalid value of type ' . gettype($return)); + } + } + } + if ($traverseChildren) { + $subNode = $this->traverseNode($subNode); + if ($this->stopTraversal) { + break; + } + } + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->leaveNode($subNode); + if (null !== $return) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($subNode, $return); + $subNode = $return; + } elseif (self::STOP_TRAVERSAL === $return) { + $this->stopTraversal = \true; + break 2; + } elseif (\is_array($return)) { + throw new \LogicException('leaveNode() may only return an array ' . 'if the parent structure is an array'); + } else { + throw new \LogicException('leaveNode() returned invalid value of type ' . gettype($return)); + } + } + if ($breakVisitorIndex === $visitorIndex) { + break; + } + } + } + } + return $node; } /** - * Returns string representation for token. + * Recursively traverse array (usually of nodes). * - * @return string + * @param array $nodes Array to traverse + * + * @return array Result of traversal (may be original array or changed one) */ - public function __toString() + protected function traverseArray(array $nodes): array + { + $doNodes = []; + foreach ($nodes as $i => &$node) { + if ($node instanceof Node) { + $traverseChildren = \true; + $breakVisitorIndex = null; + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->enterNode($node); + if (null !== $return) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($node, $return); + $node = $return; + } elseif (self::DONT_TRAVERSE_CHILDREN === $return) { + $traverseChildren = \false; + } elseif (self::DONT_TRAVERSE_CURRENT_AND_CHILDREN === $return) { + $traverseChildren = \false; + $breakVisitorIndex = $visitorIndex; + break; + } elseif (self::STOP_TRAVERSAL === $return) { + $this->stopTraversal = \true; + break 2; + } else { + throw new \LogicException('enterNode() returned invalid value of type ' . gettype($return)); + } + } + } + if ($traverseChildren) { + $node = $this->traverseNode($node); + if ($this->stopTraversal) { + break; + } + } + foreach ($this->visitors as $visitorIndex => $visitor) { + $return = $visitor->leaveNode($node); + if (null !== $return) { + if ($return instanceof Node) { + $this->ensureReplacementReasonable($node, $return); + $node = $return; + } elseif (\is_array($return)) { + $doNodes[] = [$i, $return]; + break; + } elseif (self::REMOVE_NODE === $return) { + $doNodes[] = [$i, []]; + break; + } elseif (self::STOP_TRAVERSAL === $return) { + $this->stopTraversal = \true; + break 2; + } elseif (\false === $return) { + throw new \LogicException('bool(false) return from leaveNode() no longer supported. ' . 'Return NodeTraverser::REMOVE_NODE instead'); + } else { + throw new \LogicException('leaveNode() returned invalid value of type ' . gettype($return)); + } + } + if ($breakVisitorIndex === $visitorIndex) { + break; + } + } + } elseif (\is_array($node)) { + throw new \LogicException('Invalid node structure: Contains nested arrays'); + } + } + if (!empty($doNodes)) { + while (list($i, $replace) = array_pop($doNodes)) { + array_splice($nodes, $i, 1, $replace); + } + } + return $nodes; + } + private function ensureReplacementReasonable($old, $new) { - return \sprintf('contains("%s")', $this->value); + if ($old instanceof Node\Stmt && $new instanceof Node\Expr) { + throw new \LogicException("Trying to replace statement ({$old->getType()}) " . "with expression ({$new->getType()}). Are you missing a " . "Stmt_Expression wrapper?"); + } + if ($old instanceof Node\Expr && $new instanceof Node\Stmt) { + throw new \LogicException("Trying to replace expression ({$old->getType()}) " . "with statement ({$new->getType()})"); + } } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -/** - * Argument token interface. - * - * @author Konstantin Kudryashov - */ -interface TokenInterface +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Identifier; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class EnumCase implements PhpParser\Builder { + protected $name; + protected $value = null; + protected $attributes = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * Calculates token match score for provided argument. - * - * @param $argument + * Creates an enum case builder. * - * @return bool|int + * @param string|Identifier $name Name */ - public function scoreArgument($argument); + public function __construct($name) + { + $this->name = $name; + } /** - * Returns true if this token prevents check of other tokens (is last one). + * Sets the value. * - * @return bool|int - */ - public function isLast(); - /** - * Returns string representation for token. + * @param Node\Expr|string|int $value * - * @return string - */ - public function __toString(); -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Argument\Token; - -use Prophecy\Exception\InvalidArgumentException; -/** - * Value type token. - * - * @author Konstantin Kudryashov - */ -class TypeToken implements \Prophecy\Argument\Token\TokenInterface -{ - private $type; - /** - * @param string $type + * @return $this */ - public function __construct($type) + public function setValue($value) { - $checker = "is_{$type}"; - if (!\function_exists($checker) && !\interface_exists($type) && !\class_exists($type)) { - throw new InvalidArgumentException(\sprintf('Type or class name expected as an argument to TypeToken, but got %s.', $type)); - } - $this->type = $type; + $this->value = BuilderHelpers::normalizeValue($value); + return $this; } /** - * Scores 5 if argument has the same type this token was constructed with. + * Sets doc comment for the constant. * - * @param $argument + * @param PhpParser\Comment\Doc|string $docComment Doc comment to set * - * @return bool|int + * @return $this The builder instance (for fluid interface) */ - public function scoreArgument($argument) + public function setDocComment($docComment) { - $checker = "is_{$this->type}"; - if (\function_exists($checker)) { - return \call_user_func($checker, $argument) ? 5 : \false; - } - return $argument instanceof $this->type ? 5 : \false; + $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; + return $this; } /** - * Returns false. + * Adds an attribute group. * - * @return bool + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) */ - public function isLast() + public function addAttribute($attribute) { - return \false; + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * Returns string representation for token. + * Returns the built enum case node. * - * @return string + * @return Stmt\EnumCase The built constant node */ - public function __toString() + public function getNode(): PhpParser\Node { - return \sprintf('type(%s)', $this->type); + return new Stmt\EnumCase($this->name, $this->value, $this->attributeGroups, $this->attributes); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Call; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Exception; -use Prophecy\Argument\ArgumentsWildcard; -/** - * Call object. - * - * @author Konstantin Kudryashov - */ -class Call +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Namespace_ extends Declaration { - private $methodName; - private $arguments; - private $returnValue; - private $exception; - private $file; - private $line; - private $scores; - /** - * Initializes call. - * - * @param string $methodName - * @param array $arguments - * @param mixed $returnValue - * @param Exception $exception - * @param null|string $file - * @param null|int $line - */ - public function __construct($methodName, array $arguments, $returnValue, Exception $exception = null, $file, $line) - { - $this->methodName = $methodName; - $this->arguments = $arguments; - $this->returnValue = $returnValue; - $this->exception = $exception; - $this->scores = new \SplObjectStorage(); - if ($file) { - $this->file = $file; - $this->line = \intval($line); - } - } + private $name; + private $stmts = []; /** - * Returns called method name. + * Creates a namespace builder. * - * @return string + * @param Node\Name|string|null $name Name of the namespace */ - public function getMethodName() + public function __construct($name) { - return $this->methodName; + $this->name = null !== $name ? BuilderHelpers::normalizeName($name) : null; } /** - * Returns called method arguments. + * Adds a statement. * - * @return array - */ - public function getArguments() - { - return $this->arguments; - } - /** - * Returns called method return value. + * @param Node|PhpParser\Builder $stmt The statement to add * - * @return null|mixed + * @return $this The builder instance (for fluid interface) */ - public function getReturnValue() + public function addStmt($stmt) { - return $this->returnValue; + $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); + return $this; } /** - * Returns exception that call thrown. + * Returns the built node. * - * @return null|Exception + * @return Stmt\Namespace_ The built node */ - public function getException() + public function getNode(): Node { - return $this->exception; + return new Stmt\Namespace_($this->name, $this->stmts, $this->attributes); } +} +file; + foreach ($traits as $trait) { + $this->and($trait); + } } /** - * Returns callee line number. + * Adds used trait. * - * @return int - */ - public function getLine() - { - return $this->line; - } - /** - * Returns short notation for callee place. + * @param Node\Name|string $trait Trait name * - * @return string + * @return $this The builder instance (for fluid interface) */ - public function getCallPlace() + public function and($trait) { - if (null === $this->file) { - return 'unknown'; - } - return \sprintf('%s:%d', $this->file, $this->line); + $this->traits[] = BuilderHelpers::normalizeName($trait); + return $this; } /** - * Adds the wildcard match score for the provided wildcard. + * Adds trait adaptation. * - * @param ArgumentsWildcard $wildcard - * @param false|int $score + * @param Stmt\TraitUseAdaptation|Builder\TraitUseAdaptation $adaptation Trait adaptation * - * @return $this + * @return $this The builder instance (for fluid interface) */ - public function addScore(ArgumentsWildcard $wildcard, $score) + public function with($adaptation) { - $this->scores[$wildcard] = $score; + $adaptation = BuilderHelpers::normalizeNode($adaptation); + if (!$adaptation instanceof Stmt\TraitUseAdaptation) { + throw new \LogicException('Adaptation must have type TraitUseAdaptation'); + } + $this->adaptations[] = $adaptation; return $this; } /** - * Returns wildcard match score for the provided wildcard. The score is - * calculated if not already done. - * - * @param ArgumentsWildcard $wildcard + * Returns the built node. * - * @return false|int False OR integer score (higher - better) + * @return Node The built node */ - public function getScore(ArgumentsWildcard $wildcard) + public function getNode(): Node { - if (isset($this->scores[$wildcard])) { - return $this->scores[$wildcard]; - } - return $this->scores[$wildcard] = $wildcard->scoreArguments($this->getArguments()); + return new Stmt\TraitUse($this->traits, $this->adaptations); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Call; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Exception\Prophecy\MethodProphecyException; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Argument\ArgumentsWildcard; -use Prophecy\Util\StringUtil; -use Prophecy\Exception\Call\UnexpectedCallException; -use SplObjectStorage; -/** - * Calls receiver & manager. - * - * @author Konstantin Kudryashov - */ -class CallCenter +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Class_ extends Declaration { - private $util; - /** - * @var Call[] - */ - private $recordedCalls = array(); - /** - * @var SplObjectStorage - */ - private $unexpectedCalls; + protected $name; + protected $extends = null; + protected $implements = []; + protected $flags = 0; + protected $uses = []; + protected $constants = []; + protected $properties = []; + protected $methods = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * Initializes call center. + * Creates a class builder. * - * @param StringUtil $util + * @param string $name Name of the class */ - public function __construct(StringUtil $util = null) + public function __construct(string $name) { - $this->util = $util ?: new StringUtil(); - $this->unexpectedCalls = new SplObjectStorage(); + $this->name = $name; } /** - * Makes and records specific method call for object prophecy. - * - * @param ObjectProphecy $prophecy - * @param string $methodName - * @param array $arguments + * Extends a class. * - * @return mixed Returns null if no promise for prophecy found or promise return value. + * @param Name|string $class Name of class to extend * - * @throws \Prophecy\Exception\Call\UnexpectedCallException If no appropriate method prophecy found + * @return $this The builder instance (for fluid interface) */ - public function makeCall(ObjectProphecy $prophecy, $methodName, array $arguments) + public function extend($class) { - // For efficiency exclude 'args' from the generated backtrace - // Limit backtrace to last 3 calls as we don't use the rest - $backtrace = \debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS, 3); - $file = $line = null; - if (isset($backtrace[2]) && isset($backtrace[2]['file'])) { - $file = $backtrace[2]['file']; - $line = $backtrace[2]['line']; - } - // If no method prophecies defined, then it's a dummy, so we'll just return null - if ('__destruct' === \strtolower($methodName) || 0 == \count($prophecy->getMethodProphecies())) { - $this->recordedCalls[] = new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line); - return null; - } - // There are method prophecies, so it's a fake/stub. Searching prophecy for this call - $matches = $this->findMethodProphecies($prophecy, $methodName, $arguments); - // If fake/stub doesn't have method prophecy for this call - throw exception - if (!\count($matches)) { - $this->unexpectedCalls->attach(new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line), $prophecy); - $this->recordedCalls[] = new \Prophecy\Call\Call($methodName, $arguments, null, null, $file, $line); - return null; - } - // Sort matches by their score value - @\usort($matches, function ($match1, $match2) { - return $match2[0] - $match1[0]; - }); - $score = $matches[0][0]; - // If Highest rated method prophecy has a promise - execute it or return null instead - $methodProphecy = $matches[0][1]; - $returnValue = null; - $exception = null; - if ($promise = $methodProphecy->getPromise()) { - try { - $returnValue = $promise->execute($arguments, $prophecy, $methodProphecy); - } catch (\Exception $e) { - $exception = $e; - } - } - if ($methodProphecy->hasReturnVoid() && $returnValue !== null) { - throw new MethodProphecyException("The method \"{$methodName}\" has a void return type, but the promise returned a value", $methodProphecy); - } - $this->recordedCalls[] = $call = new \Prophecy\Call\Call($methodName, $arguments, $returnValue, $exception, $file, $line); - $call->addScore($methodProphecy->getArgumentsWildcard(), $score); - if (null !== $exception) { - throw $exception; - } - return $returnValue; + $this->extends = BuilderHelpers::normalizeName($class); + return $this; } /** - * Searches for calls by method name & arguments wildcard. + * Implements one or more interfaces. * - * @param string $methodName - * @param ArgumentsWildcard $wildcard + * @param Name|string ...$interfaces Names of interfaces to implement * - * @return Call[] + * @return $this The builder instance (for fluid interface) */ - public function findCalls($methodName, ArgumentsWildcard $wildcard) + public function implement(...$interfaces) { - $methodName = \strtolower($methodName); - return \array_values(\array_filter($this->recordedCalls, function (\Prophecy\Call\Call $call) use($methodName, $wildcard) { - return $methodName === \strtolower($call->getMethodName()) && 0 < $call->getScore($wildcard); - })); + foreach ($interfaces as $interface) { + $this->implements[] = BuilderHelpers::normalizeName($interface); + } + return $this; } /** - * @throws UnexpectedCallException + * Makes the class abstract. + * + * @return $this The builder instance (for fluid interface) */ - public function checkUnexpectedCalls() - { - /** @var Call $call */ - foreach ($this->unexpectedCalls as $call) { - $prophecy = $this->unexpectedCalls[$call]; - // If fake/stub doesn't have method prophecy for this call - throw exception - if (!\count($this->findMethodProphecies($prophecy, $call->getMethodName(), $call->getArguments()))) { - throw $this->createUnexpectedCallException($prophecy, $call->getMethodName(), $call->getArguments()); - } - } - } - private function createUnexpectedCallException(ObjectProphecy $prophecy, $methodName, array $arguments) - { - $classname = \get_class($prophecy->reveal()); - $indentationLength = 8; - // looks good - $argstring = \implode(",\n", $this->indentArguments(\array_map(array($this->util, 'stringify'), $arguments), $indentationLength)); - $expected = array(); - foreach (\array_merge(...\array_values($prophecy->getMethodProphecies())) as $methodProphecy) { - $expected[] = \sprintf(" - %s(\n" . "%s\n" . " )", $methodProphecy->getMethodName(), \implode(",\n", $this->indentArguments(\array_map('strval', $methodProphecy->getArgumentsWildcard()->getTokens()), $indentationLength))); - } - return new UnexpectedCallException(\sprintf("Unexpected method call on %s:\n" . " - %s(\n" . "%s\n" . " )\n" . "expected calls were:\n" . "%s", $classname, $methodName, $argstring, \implode("\n", $expected)), $prophecy, $methodName, $arguments); - } - private function indentArguments(array $arguments, $indentationLength) + public function makeAbstract() { - return \preg_replace_callback('/^/m', function () use($indentationLength) { - return \str_repeat(' ', $indentationLength); - }, $arguments); + $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_ABSTRACT); + return $this; } /** - * @param ObjectProphecy $prophecy - * @param string $methodName - * @param array $arguments + * Makes the class final. * - * @return array + * @return $this The builder instance (for fluid interface) */ - private function findMethodProphecies(ObjectProphecy $prophecy, $methodName, array $arguments) - { - $matches = array(); - foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { - if (0 < ($score = $methodProphecy->getArgumentsWildcard()->scoreArguments($arguments))) { - $matches[] = array($score, $methodProphecy); - } - } - return $matches; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Comparator; - -use PHPUnit\SebastianBergmann\Comparator\Comparator; -use PHPUnit\SebastianBergmann\Comparator\ComparisonFailure; -/** - * Closure comparator. - * - * @author Konstantin Kudryashov - */ -final class ClosureComparator extends Comparator -{ - public function accepts($expected, $actual) : bool - { - return \is_object($expected) && $expected instanceof \Closure && \is_object($actual) && $actual instanceof \Closure; - } - public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = array()) : void + public function makeFinal() { - if ($expected !== $actual) { - throw new ComparisonFailure( - $expected, - $actual, - // we don't need a diff - '', - '', - \false, - 'all closures are different if not identical' - ); - } + $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Comparator; - -use PHPUnit\SebastianBergmann\Comparator\Factory as BaseFactory; -/** - * Prophecy comparator factory. - * - * @author Konstantin Kudryashov - */ -final class Factory extends BaseFactory -{ - /** - * @var Factory - */ - private static $instance; - public function __construct() + public function makeReadonly() { - parent::__construct(); - $this->register(new \Prophecy\Comparator\ClosureComparator()); - $this->register(new \Prophecy\Comparator\ProphecyComparator()); + $this->flags = BuilderHelpers::addClassModifier($this->flags, Stmt\Class_::MODIFIER_READONLY); + return $this; } /** - * @return Factory + * Adds a statement. + * + * @param Stmt|PhpParser\Builder $stmt The statement to add + * + * @return $this The builder instance (for fluid interface) */ - public static function getInstance() + public function addStmt($stmt) { - if (self::$instance === null) { - self::$instance = new \Prophecy\Comparator\Factory(); - } - return self::$instance; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Comparator; - -use Prophecy\Prophecy\ProphecyInterface; -use PHPUnit\SebastianBergmann\Comparator\ObjectComparator; -/** - * @final - */ -class ProphecyComparator extends ObjectComparator -{ - public function accepts($expected, $actual) : bool + $stmt = BuilderHelpers::normalizeNode($stmt); + $targets = [Stmt\TraitUse::class => &$this->uses, Stmt\ClassConst::class => &$this->constants, Stmt\Property::class => &$this->properties, Stmt\ClassMethod::class => &$this->methods]; + $class = \get_class($stmt); + if (!isset($targets[$class])) { + throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType())); + } + $targets[$class][] = $stmt; + return $this; + } + /** + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) + */ + public function addAttribute($attribute) { - return \is_object($expected) && \is_object($actual) && $actual instanceof ProphecyInterface; + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } - public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = \false, $ignoreCase = \false, array &$processed = array()) : void + /** + * Returns the built class node. + * + * @return Stmt\Class_ The built class node + */ + public function getNode(): PhpParser\Node { - parent::assertEquals($expected, $actual->reveal(), $delta, $canonicalize, $ignoreCase, $processed); + return new Stmt\Class_($this->name, ['flags' => $this->flags, 'extends' => $this->extends, 'implements' => $this->implements, 'stmts' => array_merge($this->uses, $this->constants, $this->properties, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use ReflectionClass; -/** - * Cached class doubler. - * Prevents mirroring/creation of the same structure twice. - * - * @author Konstantin Kudryashov - */ -class CachedDoubler extends \Prophecy\Doubler\Doubler +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +class Param implements PhpParser\Builder { - private static $classes = array(); + protected $name; + protected $default = null; + /** @var Node\Identifier|Node\Name|Node\NullableType|null */ + protected $type = null; + protected $byRef = \false; + protected $variadic = \false; + protected $flags = 0; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * {@inheritdoc} + * Creates a parameter builder. + * + * @param string $name Name of the parameter */ - protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) + public function __construct(string $name) { - $classId = $this->generateClassId($class, $interfaces); - if (isset(self::$classes[$classId])) { - return self::$classes[$classId]; - } - return self::$classes[$classId] = parent::createDoubleClass($class, $interfaces); + $this->name = $name; } /** - * @param ReflectionClass $class - * @param ReflectionClass[] $interfaces + * Sets default value for the parameter. * - * @return string + * @param mixed $value Default value to use + * + * @return $this The builder instance (for fluid interface) */ - private function generateClassId(ReflectionClass $class = null, array $interfaces) + public function setDefault($value) { - $parts = array(); - if (null !== $class) { - $parts[] = $class->getName(); - } - foreach ($interfaces as $interface) { - $parts[] = $interface->getName(); - } - foreach ($this->getClassPatches() as $patch) { - $parts[] = \get_class($patch); + $this->default = BuilderHelpers::normalizeValue($value); + return $this; + } + /** + * Sets type for the parameter. + * + * @param string|Node\Name|Node\Identifier|Node\ComplexType $type Parameter type + * + * @return $this The builder instance (for fluid interface) + */ + public function setType($type) + { + $this->type = BuilderHelpers::normalizeType($type); + if ($this->type == 'void') { + throw new \LogicException('Parameter type cannot be void'); } - \sort($parts); - return \md5(\implode('', $parts)); + return $this; } - public function resetCache() + /** + * Sets type for the parameter. + * + * @param string|Node\Name|Node\Identifier|Node\ComplexType $type Parameter type + * + * @return $this The builder instance (for fluid interface) + * + * @deprecated Use setType() instead + */ + public function setTypeHint($type) { - self::$classes = array(); + return $this->setType($type); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ClassNode; -/** - * Class patch interface. - * Class patches extend doubles functionality or help - * Prophecy to avoid some internal PHP bugs. - * - * @author Konstantin Kudryashov - */ -interface ClassPatchInterface -{ /** - * Checks if patch supports specific class node. + * Make the parameter accept the value by reference. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) + */ + public function makeByRef() + { + $this->byRef = \true; + return $this; + } + /** + * Make the parameter variadic * - * @return bool + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node); + public function makeVariadic() + { + $this->variadic = \true; + return $this; + } /** - * Applies patch to the specific class node. + * Makes the (promoted) parameter public. * - * @param ClassNode $node - * @return void + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node); + public function makePublic() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Node\Stmt\Class_::MODIFIER_PUBLIC); + return $this; + } /** - * Returns patch priority, which determines when patch will be applied. + * Makes the (promoted) parameter protected. * - * @return int Priority number (higher - earlier) + * @return $this The builder instance (for fluid interface) */ - public function getPriority(); -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ClassNode; -use Prophecy\Doubler\Generator\Node\MethodNode; -/** - * Disable constructor. - * Makes all constructor arguments optional. - * - * @author Konstantin Kudryashov - */ -class DisableConstructorPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface -{ + public function makeProtected() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Node\Stmt\Class_::MODIFIER_PROTECTED); + return $this; + } /** - * Checks if class has `__construct` method. + * Makes the (promoted) parameter private. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) + */ + public function makePrivate() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Node\Stmt\Class_::MODIFIER_PRIVATE); + return $this; + } + /** + * Makes the (promoted) parameter readonly. * - * @return bool + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node) + public function makeReadonly() { - return \true; + $this->flags = BuilderHelpers::addModifier($this->flags, Node\Stmt\Class_::MODIFIER_READONLY); + return $this; } /** - * Makes all class constructor arguments optional. + * Adds an attribute group. * - * @param ClassNode $node + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function addAttribute($attribute) { - if (!$node->isExtendable('__construct')) { - return; - } - if (!$node->hasMethod('__construct')) { - $node->addMethod(new MethodNode('__construct', '')); - return; - } - $constructor = $node->getMethod('__construct'); - foreach ($constructor->getArguments() as $argument) { - $argument->setDefault(null); - } - $constructor->setCode(<<attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Returns the built parameter node. * - * @return int Priority number (higher - earlier) + * @return Node\Param The built parameter node */ - public function getPriority() + public function getNode(): Node { - return 100; + return new Node\Param(new Node\Expr\Variable($this->name), $this->default, $this->type, $this->byRef, $this->variadic, [], $this->flags, $this->attributeGroups); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Doubler\Generator\Node\ClassNode; -/** - * Exception patch for HHVM to remove the stubs from special methods - * - * @author Christophe Coevoet - */ -class HhvmExceptionPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface +use PHPUnitPHAR\PhpParser\Builder; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class TraitUseAdaptation implements Builder { + const TYPE_UNDEFINED = 0; + const TYPE_ALIAS = 1; + const TYPE_PRECEDENCE = 2; + /** @var int Type of building adaptation */ + protected $type; + protected $trait; + protected $method; + protected $modifier = null; + protected $alias = null; + protected $insteadof = []; /** - * Supports exceptions on HHVM. - * - * @param ClassNode $node + * Creates a trait use adaptation builder. * - * @return bool + * @param Node\Name|string|null $trait Name of adaptated trait + * @param Node\Identifier|string $method Name of adaptated method */ - public function supports(ClassNode $node) + public function __construct($trait, $method) { - if (!\defined('PHPUnit\\HHVM_VERSION')) { - return \false; - } - return 'Exception' === $node->getParentClass() || \is_subclass_of($node->getParentClass(), 'Exception'); + $this->type = self::TYPE_UNDEFINED; + $this->trait = is_null($trait) ? null : BuilderHelpers::normalizeName($trait); + $this->method = BuilderHelpers::normalizeIdentifier($method); } /** - * Removes special exception static methods from the doubled methods. + * Sets alias of method. * - * @param ClassNode $node + * @param Node\Identifier|string $alias Alias for adaptated method * - * @return void + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function as($alias) { - if ($node->hasMethod('setTraceOptions')) { - $node->getMethod('setTraceOptions')->useParentCode(); + if ($this->type === self::TYPE_UNDEFINED) { + $this->type = self::TYPE_ALIAS; } - if ($node->hasMethod('getTraceOptions')) { - $node->getMethod('getTraceOptions')->useParentCode(); + if ($this->type !== self::TYPE_ALIAS) { + throw new \LogicException('Cannot set alias for not alias adaptation buider'); } + $this->alias = $alias; + return $this; } /** - * {@inheritdoc} + * Sets adaptated method public. + * + * @return $this The builder instance (for fluid interface) */ - public function getPriority() + public function makePublic() { - return -50; + $this->setModifier(Stmt\Class_::MODIFIER_PUBLIC); + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ClassNode; -/** - * Remove method functionality from the double which will clash with php keywords. - * - * @author Milan Magudia - */ -class KeywordPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface -{ /** - * Support any class - * - * @param ClassNode $node + * Sets adaptated method protected. * - * @return boolean + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node) + public function makeProtected() { - return \true; + $this->setModifier(Stmt\Class_::MODIFIER_PROTECTED); + return $this; } /** - * Remove methods that clash with php keywords + * Sets adaptated method private. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function makePrivate() { - $methodNames = \array_keys($node->getMethods()); - $methodsToRemove = \array_intersect($methodNames, $this->getKeywords()); - foreach ($methodsToRemove as $methodName) { - $node->removeMethod($methodName); - } + $this->setModifier(Stmt\Class_::MODIFIER_PRIVATE); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Adds overwritten traits. * - * @return int Priority number (higher - earlier) + * @param Node\Name|string ...$traits Traits for overwrite + * + * @return $this The builder instance (for fluid interface) */ - public function getPriority() + public function insteadof(...$traits) { - return 49; + if ($this->type === self::TYPE_UNDEFINED) { + if (is_null($this->trait)) { + throw new \LogicException('Precedence adaptation must have trait'); + } + $this->type = self::TYPE_PRECEDENCE; + } + if ($this->type !== self::TYPE_PRECEDENCE) { + throw new \LogicException('Cannot add overwritten traits for not precedence adaptation buider'); + } + foreach ($traits as $trait) { + $this->insteadof[] = BuilderHelpers::normalizeName($trait); + } + return $this; + } + protected function setModifier(int $modifier) + { + if ($this->type === self::TYPE_UNDEFINED) { + $this->type = self::TYPE_ALIAS; + } + if ($this->type !== self::TYPE_ALIAS) { + throw new \LogicException('Cannot set access modifier for not alias adaptation buider'); + } + if (is_null($this->modifier)) { + $this->modifier = $modifier; + } else { + throw new \LogicException('Multiple access type modifiers are not allowed'); + } } /** - * Returns array of php keywords. + * Returns the built node. * - * @return array + * @return Node The built node */ - private function getKeywords() + public function getNode(): Node { - return ['__halt_compiler']; + switch ($this->type) { + case self::TYPE_ALIAS: + return new Stmt\TraitUseAdaptation\Alias($this->trait, $this->method, $this->modifier, $this->alias); + case self::TYPE_PRECEDENCE: + return new Stmt\TraitUseAdaptation\Precedence($this->trait, $this->method, $this->insteadof); + default: + throw new \LogicException('Type of adaptation is not defined'); + } } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Doubler\Generator\Node\ArgumentNode; -use Prophecy\Doubler\Generator\Node\ClassNode; -use Prophecy\Doubler\Generator\Node\MethodNode; -use Prophecy\PhpDocumentor\ClassAndInterfaceTagRetriever; -use Prophecy\PhpDocumentor\MethodTagRetrieverInterface; -/** - * Discover Magical API using "@method" PHPDoc format. - * - * @author Thomas Tourlourat - * @author Kévin Dunglas - * @author Théo FIDRY - */ -class MagicCallPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Method extends FunctionLike { - const MAGIC_METHODS_WITH_ARGUMENTS = ['__call', '__callStatic', '__get', '__isset', '__set', '__set_state', '__unserialize', '__unset']; - private $tagRetriever; - public function __construct(MethodTagRetrieverInterface $tagRetriever = null) + protected $name; + protected $flags = 0; + /** @var array|null */ + protected $stmts = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; + /** + * Creates a method builder. + * + * @param string $name Name of the method + */ + public function __construct(string $name) { - $this->tagRetriever = null === $tagRetriever ? new ClassAndInterfaceTagRetriever() : $tagRetriever; + $this->name = $name; } /** - * Support any class - * - * @param ClassNode $node + * Makes the method public. * - * @return boolean + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node) + public function makePublic() { - return \true; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); + return $this; } /** - * Discover Magical API + * Makes the method protected. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function makeProtected() { - $types = \array_filter($node->getInterfaces(), function ($interface) { - return 0 !== \strpos($interface, 'Prophecy\\'); - }); - $types[] = $node->getParentClass(); - foreach ($types as $type) { - $reflectionClass = new \ReflectionClass($type); - while ($reflectionClass) { - $tagList = $this->tagRetriever->getTagList($reflectionClass); - foreach ($tagList as $tag) { - $methodName = $tag->getMethodName(); - if (empty($methodName)) { - continue; - } - if (!$reflectionClass->hasMethod($methodName)) { - $methodNode = new MethodNode($methodName); - // only magic methods can have a contract that needs to be enforced - if (\in_array($methodName, self::MAGIC_METHODS_WITH_ARGUMENTS)) { - foreach ($tag->getArguments() as $argument) { - $argumentNode = new ArgumentNode($argument['name']); - $methodNode->addArgument($argumentNode); - } - } - $methodNode->setStatic($tag->isStatic()); - $node->addMethod($methodNode); - } - } - $reflectionClass = $reflectionClass->getParentClass(); - } - } + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Makes the method private. * - * @return integer Priority number (higher - earlier) + * @return $this The builder instance (for fluid interface) */ - public function getPriority() + public function makePrivate() { - return 50; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ArgumentTypeNode; -use Prophecy\Doubler\Generator\Node\ClassNode; -use Prophecy\Doubler\Generator\Node\MethodNode; -use Prophecy\Doubler\Generator\Node\ArgumentNode; -use Prophecy\Doubler\Generator\Node\ReturnTypeNode; -/** - * Add Prophecy functionality to the double. - * This is a core class patch for Prophecy. - * - * @author Konstantin Kudryashov - */ -class ProphecySubjectPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface -{ /** - * Always returns true. - * - * @param ClassNode $node + * Makes the method static. * - * @return bool + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node) + public function makeStatic() { - return \true; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC); + return $this; } /** - * Apply Prophecy functionality to class node. + * Makes the method abstract. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function makeAbstract() { - $node->addInterface('Prophecy\\Prophecy\\ProphecySubjectInterface'); - $node->addProperty('objectProphecyClosure', 'private'); - foreach ($node->getMethods() as $name => $method) { - if ('__construct' === \strtolower($name)) { - continue; - } - if (!$method->getReturnTypeNode()->hasReturnStatement()) { - $method->setCode('$this->getProphecy()->makeProphecyMethodCall(__FUNCTION__, func_get_args());'); - } else { - $method->setCode('return $this->getProphecy()->makeProphecyMethodCall(__FUNCTION__, func_get_args());'); - } - } - $prophecySetter = new MethodNode('setProphecy'); - $prophecyArgument = new ArgumentNode('prophecy'); - $prophecyArgument->setTypeNode(new ArgumentTypeNode('Prophecy\\Prophecy\\ProphecyInterface')); - $prophecySetter->addArgument($prophecyArgument); - $prophecySetter->setCode(<<objectProphecyClosure) { - \$this->objectProphecyClosure = static function () use (\$prophecy) { - return \$prophecy; - }; -} -PHP -); - $prophecyGetter = new MethodNode('getProphecy'); - $prophecyGetter->setCode('return \\call_user_func($this->objectProphecyClosure);'); - if ($node->hasMethod('__call')) { - $__call = $node->getMethod('__call'); - } else { - $__call = new MethodNode('__call'); - $__call->addArgument(new ArgumentNode('name')); - $__call->addArgument(new ArgumentNode('arguments')); - $node->addMethod($__call, \true); + if (!empty($this->stmts)) { + throw new \LogicException('Cannot make method with statements abstract'); } - $__call->setCode(<<addMethod($prophecySetter, \true); - $node->addMethod($prophecyGetter, \true); + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_ABSTRACT); + $this->stmts = null; + // abstract methods don't have statements + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Makes the method final. * - * @return int Priority number (higher - earlier) + * @return $this The builder instance (for fluid interface) */ - public function getPriority() + public function makeFinal() { - return 0; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ClassNode; -/** - * ReflectionClass::newInstance patch. - * Makes first argument of newInstance optional, since it works but signature is misleading - * - * @author Florian Klein - */ -class ReflectionClassNewInstancePatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface -{ /** - * Supports ReflectionClass + * Adds a statement. * - * @param ClassNode $node + * @param Node|PhpParser\Builder $stmt The statement to add * - * @return bool + * @return $this The builder instance (for fluid interface) */ - public function supports(ClassNode $node) + public function addStmt($stmt) { - return 'ReflectionClass' === $node->getParentClass(); + if (null === $this->stmts) { + throw new \LogicException('Cannot add statements to an abstract method'); + } + $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); + return $this; } /** - * Updates newInstance's first argument to make it optional + * Adds an attribute group. * - * @param ClassNode $node + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function addAttribute($attribute) { - foreach ($node->getMethod('newInstance')->getArguments() as $argument) { - $argument->setDefault(null); - } + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Returns the built method node. * - * @return int Priority number (higher = earlier) + * @return Stmt\ClassMethod The built method node */ - public function getPriority() + public function getNode(): Node { - return 50; + return new Stmt\ClassMethod($this->name, ['flags' => $this->flags, 'byRef' => $this->returnByRef, 'params' => $this->params, 'returnType' => $this->returnType, 'stmts' => $this->stmts, 'attrGroups' => $this->attributeGroups], $this->attributes); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Doubler\Generator\Node\ClassNode; -use Prophecy\Doubler\Generator\Node\MethodNode; -/** - * SplFileInfo patch. - * Makes SplFileInfo and derivative classes usable with Prophecy. - * - * @author Konstantin Kudryashov - */ -class SplFileInfoPatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Interface_ extends Declaration { + protected $name; + protected $extends = []; + protected $constants = []; + protected $methods = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * Supports everything that extends SplFileInfo. - * - * @param ClassNode $node + * Creates an interface builder. * - * @return bool + * @param string $name Name of the interface */ - public function supports(ClassNode $node) + public function __construct(string $name) { - if (null === $node->getParentClass()) { - return \false; - } - return 'SplFileInfo' === $node->getParentClass() || \is_subclass_of($node->getParentClass(), 'SplFileInfo'); + $this->name = $name; } /** - * Updated constructor code to call parent one with dummy file argument. + * Extends one or more interfaces. * - * @param ClassNode $node + * @param Name|string ...$interfaces Names of interfaces to extend + * + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function extend(...$interfaces) { - if ($node->hasMethod('__construct')) { - $constructor = $node->getMethod('__construct'); - } else { - $constructor = new MethodNode('__construct'); - $node->addMethod($constructor); - } - if ($this->nodeIsDirectoryIterator($node)) { - $constructor->setCode('return parent::__construct("' . __DIR__ . '");'); - return; - } - if ($this->nodeIsSplFileObject($node)) { - $filePath = \str_replace('\\', '\\\\', __FILE__); - $constructor->setCode('return parent::__construct("' . $filePath . '");'); - return; - } - if ($this->nodeIsSymfonySplFileInfo($node)) { - $filePath = \str_replace('\\', '\\\\', __FILE__); - $constructor->setCode('return parent::__construct("' . $filePath . '", "", "");'); - return; + foreach ($interfaces as $interface) { + $this->extends[] = BuilderHelpers::normalizeName($interface); } - $constructor->useParentCode(); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Adds a statement. * - * @return int Priority number (higher - earlier) - */ - public function getPriority() - { - return 50; - } - /** - * @param ClassNode $node - * @return boolean + * @param Stmt|PhpParser\Builder $stmt The statement to add + * + * @return $this The builder instance (for fluid interface) */ - private function nodeIsDirectoryIterator(ClassNode $node) + public function addStmt($stmt) { - $parent = $node->getParentClass(); - return 'DirectoryIterator' === $parent || \is_subclass_of($parent, 'DirectoryIterator'); + $stmt = BuilderHelpers::normalizeNode($stmt); + if ($stmt instanceof Stmt\ClassConst) { + $this->constants[] = $stmt; + } elseif ($stmt instanceof Stmt\ClassMethod) { + // we erase all statements in the body of an interface method + $stmt->stmts = null; + $this->methods[] = $stmt; + } else { + throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType())); + } + return $this; } /** - * @param ClassNode $node - * @return boolean + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) */ - private function nodeIsSplFileObject(ClassNode $node) + public function addAttribute($attribute) { - $parent = $node->getParentClass(); - return 'SplFileObject' === $parent || \is_subclass_of($parent, 'SplFileObject'); + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * @param ClassNode $node - * @return boolean + * Returns the built interface node. + * + * @return Stmt\Interface_ The built interface node */ - private function nodeIsSymfonySplFileInfo(ClassNode $node) + public function getNode(): PhpParser\Node { - $parent = $node->getParentClass(); - return 'Symfony\\Component\\Finder\\SplFileInfo' === $parent; + return new Stmt\Interface_($this->name, ['extends' => $this->extends, 'stmts' => array_merge($this->constants, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); } } implementsAThrowableInterface($node) && $this->doesNotExtendAThrowableClass($node); + $this->name = $name; } /** - * @param ClassNode $node - * @return bool + * Makes the property public. + * + * @return $this The builder instance (for fluid interface) */ - private function implementsAThrowableInterface(ClassNode $node) + public function makePublic() { - foreach ($node->getInterfaces() as $type) { - if (\is_a($type, 'Throwable', \true)) { - return \true; - } - } - return \false; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); + return $this; } /** - * @param ClassNode $node - * @return bool + * Makes the property protected. + * + * @return $this The builder instance (for fluid interface) */ - private function doesNotExtendAThrowableClass(ClassNode $node) + public function makeProtected() { - return !\is_a($node->getParentClass(), 'Throwable', \true); + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); + return $this; } /** - * Applies patch to the specific class node. + * Makes the property private. * - * @param ClassNode $node + * @return $this The builder instance (for fluid interface) + */ + public function makePrivate() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); + return $this; + } + /** + * Makes the property static. * - * @return void + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function makeStatic() { - $this->checkItCanBeDoubled($node); - $this->setParentClassToException($node); + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC); + return $this; } - private function checkItCanBeDoubled(ClassNode $node) + /** + * Makes the property readonly. + * + * @return $this The builder instance (for fluid interface) + */ + public function makeReadonly() { - $className = $node->getParentClass(); - if ($className !== 'stdClass') { - throw new ClassCreatorException(\sprintf('Cannot double concrete class %s as well as implement Traversable', $className), $node); - } + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_READONLY); + return $this; } - private function setParentClassToException(ClassNode $node) + /** + * Sets default value for the property. + * + * @param mixed $value Default value to use + * + * @return $this The builder instance (for fluid interface) + */ + public function setDefault($value) { - $node->setParentClass('Exception'); - $node->removeMethod('getMessage'); - $node->removeMethod('getCode'); - $node->removeMethod('getFile'); - $node->removeMethod('getLine'); - $node->removeMethod('getTrace'); - $node->removeMethod('getPrevious'); - $node->removeMethod('getNext'); - $node->removeMethod('getTraceAsString'); + $this->default = BuilderHelpers::normalizeValue($value); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Sets doc comment for the property. * - * @return int Priority number (higher - earlier) + * @param PhpParser\Comment\Doc|string $docComment Doc comment to set + * + * @return $this The builder instance (for fluid interface) */ - public function getPriority() + public function setDocComment($docComment) { - return 100; + $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\ClassPatch; - -use Prophecy\Doubler\Generator\Node\ClassNode; -use Prophecy\Doubler\Generator\Node\MethodNode; -use Prophecy\Doubler\Generator\Node\ReturnTypeNode; -/** - * Traversable interface patch. - * Forces classes that implement interfaces, that extend Traversable to also implement Iterator. - * - * @author Konstantin Kudryashov - */ -class TraversablePatch implements \Prophecy\Doubler\ClassPatch\ClassPatchInterface -{ /** - * Supports nodetree, that implement Traversable, but not Iterator or IteratorAggregate. + * Sets the property type for PHP 7.4+. * - * @param ClassNode $node + * @param string|Name|Identifier|ComplexType $type * - * @return bool + * @return $this */ - public function supports(ClassNode $node) + public function setType($type) { - if (\in_array('Iterator', $node->getInterfaces())) { - return \false; - } - if (\in_array('IteratorAggregate', $node->getInterfaces())) { - return \false; - } - foreach ($node->getInterfaces() as $interface) { - if ('Traversable' !== $interface && !\is_subclass_of($interface, 'Traversable')) { - continue; - } - if ('Iterator' === $interface || \is_subclass_of($interface, 'Iterator')) { - continue; - } - if ('IteratorAggregate' === $interface || \is_subclass_of($interface, 'IteratorAggregate')) { - continue; - } - return \true; - } - return \false; + $this->type = BuilderHelpers::normalizeType($type); + return $this; } /** - * Forces class to implement Iterator interface. + * Adds an attribute group. * - * @param ClassNode $node + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) */ - public function apply(ClassNode $node) + public function addAttribute($attribute) { - $node->addInterface('Iterator'); - $currentMethod = new MethodNode('current'); - \PHP_VERSION_ID >= 80100 && $currentMethod->setReturnTypeNode(new ReturnTypeNode('mixed')); - $node->addMethod($currentMethod); - $keyMethod = new MethodNode('key'); - \PHP_VERSION_ID >= 80100 && $keyMethod->setReturnTypeNode(new ReturnTypeNode('mixed')); - $node->addMethod($keyMethod); - $nextMethod = new MethodNode('next'); - \PHP_VERSION_ID >= 80100 && $nextMethod->setReturnTypeNode(new ReturnTypeNode('void')); - $node->addMethod($nextMethod); - $rewindMethod = new MethodNode('rewind'); - \PHP_VERSION_ID >= 80100 && $rewindMethod->setReturnTypeNode(new ReturnTypeNode('void')); - $node->addMethod($rewindMethod); - $validMethod = new MethodNode('valid'); - \PHP_VERSION_ID >= 80100 && $validMethod->setReturnTypeNode(new ReturnTypeNode('bool')); - $node->addMethod($validMethod); + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * Returns patch priority, which determines when patch will be applied. + * Returns the built class node. * - * @return int Priority number (higher - earlier) + * @return Stmt\Property The built property node */ - public function getPriority() + public function getNode(): PhpParser\Node { - return 100; + return new Stmt\Property($this->flags !== 0 ? $this->flags : Stmt\Class_::MODIFIER_PUBLIC, [new Stmt\PropertyProperty($this->name, $this->default)], $this->attributes, $this->type, $this->attributeGroups); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -/** - * Core double interface. - * All doubled classes will implement this one. - * - * @author Konstantin Kudryashov - */ -interface DoubleInterface +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +abstract class Declaration implements PhpParser\Builder { + protected $attributes = []; + abstract public function addStmt($stmt); + /** + * Adds multiple statements. + * + * @param array $stmts The statements to add + * + * @return $this The builder instance (for fluid interface) + */ + public function addStmts(array $stmts) + { + foreach ($stmts as $stmt) { + $this->addStmt($stmt); + } + return $this; + } + /** + * Sets doc comment for the declaration. + * + * @param PhpParser\Comment\Doc|string $docComment Doc comment to set + * + * @return $this The builder instance (for fluid interface) + */ + public function setDocComment($docComment) + { + $this->attributes['comments'] = [BuilderHelpers::normalizeDocComment($docComment)]; + return $this; + } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use PHPUnit\Doctrine\Instantiator\Instantiator; -use Prophecy\Doubler\ClassPatch\ClassPatchInterface; -use Prophecy\Doubler\Generator\ClassMirror; -use Prophecy\Doubler\Generator\ClassCreator; -use Prophecy\Exception\InvalidArgumentException; -use ReflectionClass; -/** - * Cached class doubler. - * Prevents mirroring/creation of the same structure twice. - * - * @author Konstantin Kudryashov - */ -class Doubler +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Function_ extends FunctionLike { - private $mirror; - private $creator; - private $namer; + protected $name; + protected $stmts = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * @var ClassPatchInterface[] + * Creates a function builder. + * + * @param string $name Name of the function */ - private $patches = array(); + public function __construct(string $name) + { + $this->name = $name; + } /** - * @var \Doctrine\Instantiator\Instantiator + * Adds a statement. + * + * @param Node|PhpParser\Builder $stmt The statement to add + * + * @return $this The builder instance (for fluid interface) */ - private $instantiator; + public function addStmt($stmt) + { + $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); + return $this; + } /** - * Initializes doubler. + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute * - * @param ClassMirror $mirror - * @param ClassCreator $creator - * @param NameGenerator $namer + * @return $this The builder instance (for fluid interface) */ - public function __construct(ClassMirror $mirror = null, ClassCreator $creator = null, \Prophecy\Doubler\NameGenerator $namer = null) + public function addAttribute($attribute) { - $this->mirror = $mirror ?: new ClassMirror(); - $this->creator = $creator ?: new ClassCreator(); - $this->namer = $namer ?: new \Prophecy\Doubler\NameGenerator(); + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } /** - * Returns list of registered class patches. + * Returns the built function node. * - * @return ClassPatchInterface[] + * @return Stmt\Function_ The built function node */ - public function getClassPatches() + public function getNode(): Node { - return $this->patches; + return new Stmt\Function_($this->name, ['byRef' => $this->returnByRef, 'params' => $this->params, 'returnType' => $this->returnType, 'stmts' => $this->stmts, 'attrGroups' => $this->attributeGroups], $this->attributes); } +} +patches[] = $patch; - @\usort($this->patches, function (ClassPatchInterface $patch1, ClassPatchInterface $patch2) { - return $patch2->getPriority() - $patch1->getPriority(); - }); + $this->name = BuilderHelpers::normalizeName($name); + $this->type = $type; } /** - * Creates double from specific class or/and list of interfaces. - * - * @param ReflectionClass $class - * @param ReflectionClass[] $interfaces Array of ReflectionClass instances - * @param array $args Constructor arguments + * Sets alias for used name. * - * @return DoubleInterface + * @param string $alias Alias to use (last component of full name by default) * - * @throws \Prophecy\Exception\InvalidArgumentException + * @return $this The builder instance (for fluid interface) */ - public function double(ReflectionClass $class = null, array $interfaces, array $args = null) + public function as(string $alias) { - foreach ($interfaces as $interface) { - if (!$interface instanceof ReflectionClass) { - throw new InvalidArgumentException(\sprintf("[ReflectionClass \$interface1 [, ReflectionClass \$interface2]] array expected as\n" . "a second argument to `Doubler::double(...)`, but got %s.", \is_object($interface) ? \get_class($interface) . ' class' : \gettype($interface))); - } - } - $classname = $this->createDoubleClass($class, $interfaces); - $reflection = new ReflectionClass($classname); - if (null !== $args) { - return $reflection->newInstanceArgs($args); - } - if (null === ($constructor = $reflection->getConstructor()) || $constructor->isPublic() && !$constructor->isFinal()) { - return $reflection->newInstance(); - } - if (!$this->instantiator) { - $this->instantiator = new Instantiator(); - } - return $this->instantiator->instantiate($classname); + $this->alias = $alias; + return $this; } /** - * Creates double class and returns its FQN. - * - * @param ReflectionClass $class - * @param ReflectionClass[] $interfaces + * Returns the built node. * - * @return string + * @return Stmt\Use_ The built node */ - protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) + public function getNode(): Node { - $name = $this->namer->name($class, $interfaces); - $node = $this->mirror->reflect($class, $interfaces); - foreach ($this->patches as $patch) { - if ($patch->supports($node)) { - $patch->apply($node); - } - } - $this->creator->create($name, $node); - return $name; + return new Stmt\Use_([new Stmt\UseUse($this->name, $this->alias)], $this->type); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Doubler\Generator\Node\ReturnTypeNode; -use Prophecy\Doubler\Generator\Node\TypeNodeAbstract; -/** - * Class code creator. - * Generates PHP code for specific class node tree. - * - * @author Konstantin Kudryashov - */ -class ClassCodeGenerator +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +abstract class FunctionLike extends Declaration { - public function __construct(\Prophecy\Doubler\Generator\TypeHintReference $typeHintReference = null) + protected $returnByRef = \false; + protected $params = []; + /** @var string|Node\Name|Node\NullableType|null */ + protected $returnType = null; + /** + * Make the function return by reference. + * + * @return $this The builder instance (for fluid interface) + */ + public function makeReturnByRef() { + $this->returnByRef = \true; + return $this; } /** - * Generates PHP code for class node. + * Adds a parameter. * - * @param string $classname - * @param Node\ClassNode $class + * @param Node\Param|Param $param The parameter to add * - * @return string + * @return $this The builder instance (for fluid interface) */ - public function generate($classname, \Prophecy\Doubler\Generator\Node\ClassNode $class) + public function addParam($param) { - $parts = \explode('\\', $classname); - $classname = \array_pop($parts); - $namespace = \implode('\\', $parts); - $code = \sprintf("class %s extends \\%s implements %s {\n", $classname, $class->getParentClass(), \implode(', ', \array_map(function ($interface) { - return '\\' . $interface; - }, $class->getInterfaces()))); - foreach ($class->getProperties() as $name => $visibility) { - $code .= \sprintf("%s \$%s;\n", $visibility, $name); - } - $code .= "\n"; - foreach ($class->getMethods() as $method) { - $code .= $this->generateMethod($method) . "\n"; + $param = BuilderHelpers::normalizeNode($param); + if (!$param instanceof Node\Param) { + throw new \LogicException(sprintf('Expected parameter node, got "%s"', $param->getType())); } - $code .= "\n}"; - return \sprintf("namespace %s {\n%s\n}", $namespace, $code); - } - private function generateMethod(\Prophecy\Doubler\Generator\Node\MethodNode $method) - { - $php = \sprintf("%s %s function %s%s(%s)%s {\n", $method->getVisibility(), $method->isStatic() ? 'static' : '', $method->returnsReference() ? '&' : '', $method->getName(), \implode(', ', $this->generateArguments($method->getArguments())), ($ret = $this->generateTypes($method->getReturnTypeNode())) ? ': ' . $ret : ''); - $php .= $method->getCode() . "\n"; - return $php . '}'; + $this->params[] = $param; + return $this; } - private function generateTypes(TypeNodeAbstract $typeNode) : string + /** + * Adds multiple parameters. + * + * @param array $params The parameters to add + * + * @return $this The builder instance (for fluid interface) + */ + public function addParams(array $params) { - if (!$typeNode->getTypes()) { - return ''; - } - // When we require PHP 8 we can stop generating ?foo nullables and remove this first block - if ($typeNode->canUseNullShorthand()) { - return \sprintf('?%s', $typeNode->getNonNullTypes()[0]); - } else { - return \join('|', $typeNode->getTypes()); + foreach ($params as $param) { + $this->addParam($param); } + return $this; } - private function generateArguments(array $arguments) + /** + * Sets the return type for PHP 7. + * + * @param string|Node\Name|Node\Identifier|Node\ComplexType $type + * + * @return $this The builder instance (for fluid interface) + */ + public function setReturnType($type) { - return \array_map(function (\Prophecy\Doubler\Generator\Node\ArgumentNode $argument) { - $php = $this->generateTypes($argument->getTypeNode()); - $php .= ' ' . ($argument->isPassedByReference() ? '&' : ''); - $php .= $argument->isVariadic() ? '...' : ''; - $php .= '$' . $argument->getName(); - if ($argument->isOptional() && !$argument->isVariadic()) { - $php .= ' = ' . \var_export($argument->getDefault(), \true); - } - return $php; - }, $arguments); + $this->returnType = BuilderHelpers::normalizeType($type); + return $this; } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -use Prophecy\Exception\Doubler\ClassCreatorException; -/** - * Class creator. - * Creates specific class in current environment. - * - * @author Konstantin Kudryashov - */ -class ClassCreator +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Const_; +use PHPUnitPHAR\PhpParser\Node\Identifier; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class ClassConst implements PhpParser\Builder { - private $generator; + protected $flags = 0; + protected $attributes = []; + protected $constants = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; + /** @var Identifier|Node\Name|Node\ComplexType */ + protected $type; /** - * Initializes creator. + * Creates a class constant builder * - * @param ClassCodeGenerator $generator + * @param string|Identifier $name Name + * @param Node\Expr|bool|null|int|float|string|array $value Value */ - public function __construct(\Prophecy\Doubler\Generator\ClassCodeGenerator $generator = null) + public function __construct($name, $value) { - $this->generator = $generator ?: new \Prophecy\Doubler\Generator\ClassCodeGenerator(); + $this->constants = [new Const_($name, BuilderHelpers::normalizeValue($value))]; } /** - * Creates class. + * Add another constant to const group * - * @param string $classname - * @param Node\ClassNode $class + * @param string|Identifier $name Name + * @param Node\Expr|bool|null|int|float|string|array $value Value * - * @return mixed + * @return $this The builder instance (for fluid interface) + */ + public function addConst($name, $value) + { + $this->constants[] = new Const_($name, BuilderHelpers::normalizeValue($value)); + return $this; + } + /** + * Makes the constant public. * - * @throws \Prophecy\Exception\Doubler\ClassCreatorException + * @return $this The builder instance (for fluid interface) */ - public function create($classname, \Prophecy\Doubler\Generator\Node\ClassNode $class) + public function makePublic() { - $code = $this->generator->generate($classname, $class); - $return = eval($code); - if (!\class_exists($classname, \false)) { - if (\count($class->getInterfaces())) { - throw new ClassCreatorException(\sprintf('Could not double `%s` and implement interfaces: [%s].', $class->getParentClass(), \implode(', ', $class->getInterfaces())), $class); - } - throw new ClassCreatorException(\sprintf('Could not double `%s`.', $class->getParentClass()), $class); - } - return $return; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); + return $this; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator; - -use Prophecy\Doubler\Generator\Node\ArgumentTypeNode; -use Prophecy\Doubler\Generator\Node\ReturnTypeNode; -use Prophecy\Exception\InvalidArgumentException; -use Prophecy\Exception\Doubler\ClassMirrorException; -use ReflectionClass; -use ReflectionIntersectionType; -use ReflectionMethod; -use ReflectionNamedType; -use ReflectionParameter; -use ReflectionType; -use ReflectionUnionType; -/** - * Class mirror. - * Core doubler class. Mirrors specific class and/or interfaces into class node tree. - * - * @author Konstantin Kudryashov - */ -class ClassMirror -{ - private static $reflectableMethods = array('__construct', '__destruct', '__sleep', '__wakeup', '__toString', '__call', '__invoke'); /** - * Reflects provided arguments into class node. + * Makes the constant protected. * - * @param ReflectionClass|null $class - * @param ReflectionClass[] $interfaces + * @return $this The builder instance (for fluid interface) + */ + public function makeProtected() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); + return $this; + } + /** + * Makes the constant private. * - * @return Node\ClassNode + * @return $this The builder instance (for fluid interface) + */ + public function makePrivate() + { + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); + return $this; + } + /** + * Makes the constant final. * + * @return $this The builder instance (for fluid interface) */ - public function reflect(?ReflectionClass $class, array $interfaces) + public function makeFinal() { - $node = new \Prophecy\Doubler\Generator\Node\ClassNode(); - if (null !== $class) { - if (\true === $class->isInterface()) { - throw new InvalidArgumentException(\sprintf("Could not reflect %s as a class, because it\n" . "is interface - use the second argument instead.", $class->getName())); - } - $this->reflectClassToNode($class, $node); - } - foreach ($interfaces as $interface) { - if (!$interface instanceof ReflectionClass) { - throw new InvalidArgumentException(\sprintf("[ReflectionClass \$interface1 [, ReflectionClass \$interface2]] array expected as\n" . "a second argument to `ClassMirror::reflect(...)`, but got %s.", \is_object($interface) ? \get_class($interface) . ' class' : \gettype($interface))); - } - if (\false === $interface->isInterface()) { - throw new InvalidArgumentException(\sprintf("Could not reflect %s as an interface, because it\n" . "is class - use the first argument instead.", $interface->getName())); - } - $this->reflectInterfaceToNode($interface, $node); - } - $node->addInterface('Prophecy\\Doubler\\Generator\\ReflectionInterface'); - return $node; + $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); + return $this; } - private function reflectClassToNode(ReflectionClass $class, \Prophecy\Doubler\Generator\Node\ClassNode $node) + /** + * Sets doc comment for the constant. + * + * @param PhpParser\Comment\Doc|string $docComment Doc comment to set + * + * @return $this The builder instance (for fluid interface) + */ + public function setDocComment($docComment) { - if (\true === $class->isFinal()) { - throw new ClassMirrorException(\sprintf('Could not reflect class %s as it is marked final.', $class->getName()), $class); - } - $node->setParentClass($class->getName()); - foreach ($class->getMethods(ReflectionMethod::IS_ABSTRACT) as $method) { - if (\false === $method->isProtected()) { - continue; - } - $this->reflectMethodToNode($method, $node); - } - foreach ($class->getMethods(ReflectionMethod::IS_PUBLIC) as $method) { - if (0 === \strpos($method->getName(), '_') && !\in_array($method->getName(), self::$reflectableMethods)) { - continue; - } - if (\true === $method->isFinal()) { - $node->addUnextendableMethod($method->getName()); - continue; - } - $this->reflectMethodToNode($method, $node); - } + $this->attributes = ['comments' => [BuilderHelpers::normalizeDocComment($docComment)]]; + return $this; } - private function reflectInterfaceToNode(ReflectionClass $interface, \Prophecy\Doubler\Generator\Node\ClassNode $node) + /** + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) + */ + public function addAttribute($attribute) { - $node->addInterface($interface->getName()); - foreach ($interface->getMethods() as $method) { - $this->reflectMethodToNode($method, $node); - } + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } - private function reflectMethodToNode(ReflectionMethod $method, \Prophecy\Doubler\Generator\Node\ClassNode $classNode) + /** + * Sets the constant type. + * + * @param string|Node\Name|Identifier|Node\ComplexType $type + * + * @return $this + */ + public function setType($type) { - $node = new \Prophecy\Doubler\Generator\Node\MethodNode($method->getName()); - if (\true === $method->isProtected()) { - $node->setVisibility('protected'); - } - if (\true === $method->isStatic()) { - $node->setStatic(); - } - if (\true === $method->returnsReference()) { - $node->setReturnsReference(); - } - if ($method->hasReturnType()) { - $returnTypes = $this->getTypeHints($method->getReturnType(), $method->getDeclaringClass(), $method->getReturnType()->allowsNull()); - $node->setReturnTypeNode(new ReturnTypeNode(...$returnTypes)); - } elseif (\method_exists($method, 'hasTentativeReturnType') && $method->hasTentativeReturnType()) { - $returnTypes = $this->getTypeHints($method->getTentativeReturnType(), $method->getDeclaringClass(), $method->getTentativeReturnType()->allowsNull()); - $node->setReturnTypeNode(new ReturnTypeNode(...$returnTypes)); - } - if (\is_array($params = $method->getParameters()) && \count($params)) { - foreach ($params as $param) { - $this->reflectArgumentToNode($param, $node); - } - } - $classNode->addMethod($node); + $this->type = BuilderHelpers::normalizeType($type); + return $this; } - private function reflectArgumentToNode(ReflectionParameter $parameter, \Prophecy\Doubler\Generator\Node\MethodNode $methodNode) + /** + * Returns the built class node. + * + * @return Stmt\ClassConst The built constant node + */ + public function getNode(): PhpParser\Node { - $name = $parameter->getName() == '...' ? '__dot_dot_dot__' : $parameter->getName(); - $node = new \Prophecy\Doubler\Generator\Node\ArgumentNode($name); - $typeHints = $this->getTypeHints($parameter->getType(), $parameter->getDeclaringClass(), $parameter->allowsNull()); - $node->setTypeNode(new ArgumentTypeNode(...$typeHints)); - if ($parameter->isVariadic()) { - $node->setAsVariadic(); - } - if ($this->hasDefaultValue($parameter)) { - $node->setDefault($this->getDefaultValue($parameter)); - } - if ($parameter->isPassedByReference()) { - $node->setAsPassedByReference(); - } - $methodNode->addArgument($node); + return new Stmt\ClassConst($this->constants, $this->flags, $this->attributes, $this->attributeGroups, $this->type); } - private function hasDefaultValue(ReflectionParameter $parameter) +} +isVariadic()) { - return \false; - } - if ($parameter->isDefaultValueAvailable()) { - return \true; - } - return $parameter->isOptional() || $parameter->allowsNull() && $parameter->getType() && \PHP_VERSION_ID < 80100; + $this->name = $name; } - private function getDefaultValue(ReflectionParameter $parameter) + /** + * Adds a statement. + * + * @param Stmt|PhpParser\Builder $stmt The statement to add + * + * @return $this The builder instance (for fluid interface) + */ + public function addStmt($stmt) { - if (!$parameter->isDefaultValueAvailable()) { - return null; + $stmt = BuilderHelpers::normalizeNode($stmt); + if ($stmt instanceof Stmt\Property) { + $this->properties[] = $stmt; + } elseif ($stmt instanceof Stmt\ClassMethod) { + $this->methods[] = $stmt; + } elseif ($stmt instanceof Stmt\TraitUse) { + $this->uses[] = $stmt; + } else { + throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType())); } - return $parameter->getDefaultValue(); + return $this; + } + /** + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) + */ + public function addAttribute($attribute) + { + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } - private function getTypeHints(?ReflectionType $type, ?ReflectionClass $class, bool $allowsNull) : array + /** + * Returns the built trait node. + * + * @return Stmt\Trait_ The built interface node + */ + public function getNode(): PhpParser\Node { - $types = []; - if ($type instanceof ReflectionNamedType) { - $types = [$type->getName()]; - } elseif ($type instanceof ReflectionUnionType) { - $types = $type->getTypes(); - } elseif ($type instanceof ReflectionIntersectionType) { - throw new ClassMirrorException('Doubling intersection types is not supported', $class); - } elseif (\is_object($type)) { - throw new ClassMirrorException('Unknown reflection type ' . \get_class($type), $class); - } - $types = \array_map(function (string $type) use($class) { - if ($type === 'self') { - return $class->getName(); - } - if ($type === 'parent') { - return $class->getParentClass()->getName(); - } - return $type; - }, $types); - if ($types && $types != ['mixed'] && $allowsNull) { - $types[] = 'null'; - } - return $types; + return new Stmt\Trait_($this->name, ['stmts' => array_merge($this->uses, $this->properties, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator\Node; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser\Builder; -/** - * Argument node. - * - * @author Konstantin Kudryashov - */ -class ArgumentNode +use PHPUnitPHAR\PhpParser; +use PHPUnitPHAR\PhpParser\BuilderHelpers; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Identifier; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\Stmt; +class Enum_ extends Declaration { - private $name; - private $default; - private $optional = \false; - private $byReference = \false; - private $isVariadic = \false; - /** @var ArgumentTypeNode */ - private $typeNode; + protected $name; + protected $scalarType = null; + protected $implements = []; + protected $uses = []; + protected $enumCases = []; + protected $constants = []; + protected $methods = []; + /** @var Node\AttributeGroup[] */ + protected $attributeGroups = []; /** - * @param string $name + * Creates an enum builder. + * + * @param string $name Name of the enum */ - public function __construct($name) + public function __construct(string $name) { $this->name = $name; - $this->typeNode = new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode(); } - public function getName() - { - return $this->name; - } - public function setTypeNode(\Prophecy\Doubler\Generator\Node\ArgumentTypeNode $typeNode) + /** + * Sets the scalar type. + * + * @param string|Identifier $type + * + * @return $this + */ + public function setScalarType($scalarType) { - $this->typeNode = $typeNode; + $this->scalarType = BuilderHelpers::normalizeType($scalarType); + return $this; } - public function getTypeNode() : \Prophecy\Doubler\Generator\Node\ArgumentTypeNode + /** + * Implements one or more interfaces. + * + * @param Name|string ...$interfaces Names of interfaces to implement + * + * @return $this The builder instance (for fluid interface) + */ + public function implement(...$interfaces) { - return $this->typeNode; + foreach ($interfaces as $interface) { + $this->implements[] = BuilderHelpers::normalizeName($interface); + } + return $this; } - public function hasDefault() + /** + * Adds a statement. + * + * @param Stmt|PhpParser\Builder $stmt The statement to add + * + * @return $this The builder instance (for fluid interface) + */ + public function addStmt($stmt) { - return $this->isOptional() && !$this->isVariadic(); + $stmt = BuilderHelpers::normalizeNode($stmt); + $targets = [Stmt\TraitUse::class => &$this->uses, Stmt\EnumCase::class => &$this->enumCases, Stmt\ClassConst::class => &$this->constants, Stmt\ClassMethod::class => &$this->methods]; + $class = \get_class($stmt); + if (!isset($targets[$class])) { + throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType())); + } + $targets[$class][] = $stmt; + return $this; } - public function getDefault() + /** + * Adds an attribute group. + * + * @param Node\Attribute|Node\AttributeGroup $attribute + * + * @return $this The builder instance (for fluid interface) + */ + public function addAttribute($attribute) { - return $this->default; + $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); + return $this; } - public function setDefault($default = null) + /** + * Returns the built class node. + * + * @return Stmt\Enum_ The built enum node + */ + public function getNode(): PhpParser\Node { - $this->optional = \true; - $this->default = $default; + return new Stmt\Enum_($this->name, ['scalarType' => $this->scalarType, 'implements' => $this->implements, 'stmts' => array_merge($this->uses, $this->enumCases, $this->constants, $this->methods), 'attrGroups' => $this->attributeGroups], $this->attributes); } - public function isOptional() +} + [0, 1], + Expr\BitwiseNot::class => [10, 1], + Expr\PreInc::class => [10, 1], + Expr\PreDec::class => [10, 1], + Expr\PostInc::class => [10, -1], + Expr\PostDec::class => [10, -1], + Expr\UnaryPlus::class => [10, 1], + Expr\UnaryMinus::class => [10, 1], + Cast\Int_::class => [10, 1], + Cast\Double::class => [10, 1], + Cast\String_::class => [10, 1], + Cast\Array_::class => [10, 1], + Cast\Object_::class => [10, 1], + Cast\Bool_::class => [10, 1], + Cast\Unset_::class => [10, 1], + Expr\ErrorSuppress::class => [10, 1], + Expr\Instanceof_::class => [20, 0], + Expr\BooleanNot::class => [30, 1], + BinaryOp\Mul::class => [40, -1], + BinaryOp\Div::class => [40, -1], + BinaryOp\Mod::class => [40, -1], + BinaryOp\Plus::class => [50, -1], + BinaryOp\Minus::class => [50, -1], + BinaryOp\Concat::class => [50, -1], + BinaryOp\ShiftLeft::class => [60, -1], + BinaryOp\ShiftRight::class => [60, -1], + BinaryOp\Smaller::class => [70, 0], + BinaryOp\SmallerOrEqual::class => [70, 0], + BinaryOp\Greater::class => [70, 0], + BinaryOp\GreaterOrEqual::class => [70, 0], + BinaryOp\Equal::class => [80, 0], + BinaryOp\NotEqual::class => [80, 0], + BinaryOp\Identical::class => [80, 0], + BinaryOp\NotIdentical::class => [80, 0], + BinaryOp\Spaceship::class => [80, 0], + BinaryOp\BitwiseAnd::class => [90, -1], + BinaryOp\BitwiseXor::class => [100, -1], + BinaryOp\BitwiseOr::class => [110, -1], + BinaryOp\BooleanAnd::class => [120, -1], + BinaryOp\BooleanOr::class => [130, -1], + BinaryOp\Coalesce::class => [140, 1], + Expr\Ternary::class => [150, 0], + // parser uses %left for assignments, but they really behave as %right + Expr\Assign::class => [160, 1], + Expr\AssignRef::class => [160, 1], + AssignOp\Plus::class => [160, 1], + AssignOp\Minus::class => [160, 1], + AssignOp\Mul::class => [160, 1], + AssignOp\Div::class => [160, 1], + AssignOp\Concat::class => [160, 1], + AssignOp\Mod::class => [160, 1], + AssignOp\BitwiseAnd::class => [160, 1], + AssignOp\BitwiseOr::class => [160, 1], + AssignOp\BitwiseXor::class => [160, 1], + AssignOp\ShiftLeft::class => [160, 1], + AssignOp\ShiftRight::class => [160, 1], + AssignOp\Pow::class => [160, 1], + AssignOp\Coalesce::class => [160, 1], + Expr\YieldFrom::class => [165, 1], + Expr\Print_::class => [168, 1], + BinaryOp\LogicalAnd::class => [170, -1], + BinaryOp\LogicalXor::class => [180, -1], + BinaryOp\LogicalOr::class => [190, -1], + Expr\Include_::class => [200, -1], + ]; + /** @var int Current indentation level. */ + protected $indentLevel; + /** @var string Newline including current indentation. */ + protected $nl; + /** @var string Token placed at end of doc string to ensure it is followed by a newline. */ + protected $docStringEndToken; + /** @var bool Whether semicolon namespaces can be used (i.e. no global namespace is used) */ + protected $canUseSemicolonNamespaces; + /** @var array Pretty printer options */ + protected $options; + /** @var TokenStream Original tokens for use in format-preserving pretty print */ + protected $origTokens; + /** @var Internal\Differ Differ for node lists */ + protected $nodeListDiffer; + /** @var bool[] Map determining whether a certain character is a label character */ + protected $labelCharMap; + /** + * @var int[][] Map from token classes and subnode names to FIXUP_* constants. This is used + * during format-preserving prints to place additional parens/braces if necessary. + */ + protected $fixupMap; + /** + * @var int[][] Map from "{$node->getType()}->{$subNode}" to ['left' => $l, 'right' => $r], + * where $l and $r specify the token type that needs to be stripped when removing + * this node. + */ + protected $removalMap; + /** + * @var mixed[] Map from "{$node->getType()}->{$subNode}" to [$find, $beforeToken, $extraLeft, $extraRight]. + * $find is an optional token after which the insertion occurs. $extraLeft/Right + * are optionally added before/after the main insertions. + */ + protected $insertionMap; + /** + * @var string[] Map From "{$node->getType()}->{$subNode}" to string that should be inserted + * between elements of this list subnode. + */ + protected $listInsertionMap; + protected $emptyListInsertionMap; + /** @var int[] Map from "{$node->getType()}->{$subNode}" to token before which the modifiers + * should be reprinted. */ + protected $modifierChangeMap; + /** + * Creates a pretty printer instance using the given options. + * + * Supported options: + * * bool $shortArraySyntax = false: Whether to use [] instead of array() as the default array + * syntax, if the node does not specify a format. + * + * @param array $options Dictionary of formatting options + */ + public function __construct(array $options = []) { - return $this->optional; + $this->docStringEndToken = '_DOC_STRING_END_' . mt_rand(); + $defaultOptions = ['shortArraySyntax' => \false]; + $this->options = $options + $defaultOptions; } - public function setAsPassedByReference($byReference = \true) + /** + * Reset pretty printing state. + */ + protected function resetState() { - $this->byReference = $byReference; + $this->indentLevel = 0; + $this->nl = "\n"; + $this->origTokens = null; } - public function isPassedByReference() + /** + * Set indentation level + * + * @param int $level Level in number of spaces + */ + protected function setIndentLevel(int $level) { - return $this->byReference; + $this->indentLevel = $level; + $this->nl = "\n" . \str_repeat(' ', $level); } - public function setAsVariadic($isVariadic = \true) + /** + * Increase indentation level. + */ + protected function indent() { - $this->isVariadic = $isVariadic; + $this->indentLevel += 4; + $this->nl .= ' '; } - public function isVariadic() + /** + * Decrease indentation level. + */ + protected function outdent() { - return $this->isVariadic; + assert($this->indentLevel >= 4); + $this->indentLevel -= 4; + $this->nl = "\n" . str_repeat(' ', $this->indentLevel); } /** - * @deprecated use getArgumentTypeNode instead - * @return string|null + * Pretty prints an array of statements. + * + * @param Node[] $stmts Array of statements + * + * @return string Pretty printed statements */ - public function getTypeHint() + public function prettyPrint(array $stmts): string { - $type = $this->typeNode->getNonNullTypes() ? $this->typeNode->getNonNullTypes()[0] : null; - return $type ? \ltrim($type, '\\') : null; + $this->resetState(); + $this->preprocessNodes($stmts); + return ltrim($this->handleMagicTokens($this->pStmts($stmts, \false))); } /** - * @deprecated use setArgumentTypeNode instead - * @param string|null $typeHint + * Pretty prints an expression. + * + * @param Expr $node Expression node + * + * @return string Pretty printed node */ - public function setTypeHint($typeHint = null) + public function prettyPrintExpr(Expr $node): string { - $this->typeNode = $typeHint === null ? new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode() : new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode($typeHint); + $this->resetState(); + return $this->handleMagicTokens($this->p($node)); } /** - * @deprecated use getArgumentTypeNode instead - * @return bool + * Pretty prints a file of statements (includes the opening typeNode->canUseNullShorthand(); + if (!$stmts) { + return "prettyPrint($stmts); + if ($stmts[0] instanceof Stmt\InlineHTML) { + $p = preg_replace('/^<\?php\s+\?>\n?/', '', $p); + } + if ($stmts[count($stmts) - 1] instanceof Stmt\InlineHTML) { + $p = preg_replace('/<\?php$/', '', rtrim($p)); + } + return $p; } /** - * @deprecated use getArgumentTypeNode instead - * @param bool $isNullable + * Preprocesses the top-level nodes to initialize pretty printer state. + * + * @param Node[] $nodes Array of nodes */ - public function setAsNullable($isNullable = \true) + protected function preprocessNodes(array $nodes) { - $nonNullTypes = $this->typeNode->getNonNullTypes(); - $this->typeNode = $isNullable ? new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode('null', ...$nonNullTypes) : new \Prophecy\Doubler\Generator\Node\ArgumentTypeNode(...$nonNullTypes); + /* We can use semicolon-namespaces unless there is a global namespace declaration */ + $this->canUseSemicolonNamespaces = \true; + foreach ($nodes as $node) { + if ($node instanceof Stmt\Namespace_ && null === $node->name) { + $this->canUseSemicolonNamespaces = \false; + break; + } + } } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator\Node; - -use Prophecy\Exception\Doubler\MethodNotExtendableException; -use Prophecy\Exception\InvalidArgumentException; -/** - * Class node. - * - * @author Konstantin Kudryashov - */ -class ClassNode -{ - private $parentClass = 'stdClass'; - private $interfaces = array(); - private $properties = array(); - private $unextendableMethods = array(); /** - * @var MethodNode[] + * Handles (and removes) no-indent and doc-string-end tokens. + * + * @param string $str + * @return string */ - private $methods = array(); - public function getParentClass() + protected function handleMagicTokens(string $str): string { - return $this->parentClass; + // Replace doc-string-end tokens with nothing or a newline + $str = str_replace($this->docStringEndToken . ";\n", ";\n", $str); + $str = str_replace($this->docStringEndToken, "\n", $str); + return $str; } /** - * @param string $class + * Pretty prints an array of nodes (statements) and indents them optionally. + * + * @param Node[] $nodes Array of nodes + * @param bool $indent Whether to indent the printed nodes + * + * @return string Pretty printed statements */ - public function setParentClass($class) + protected function pStmts(array $nodes, bool $indent = \true): string { - $this->parentClass = $class ?: 'stdClass'; + if ($indent) { + $this->indent(); + } + $result = ''; + foreach ($nodes as $node) { + $comments = $node->getComments(); + if ($comments) { + $result .= $this->nl . $this->pComments($comments); + if ($node instanceof Stmt\Nop) { + continue; + } + } + $result .= $this->nl . $this->p($node); + } + if ($indent) { + $this->outdent(); + } + return $result; } /** - * @return string[] + * Pretty-print an infix operation while taking precedence into account. + * + * @param string $class Node class of operator + * @param Node $leftNode Left-hand side node + * @param string $operatorString String representation of the operator + * @param Node $rightNode Right-hand side node + * + * @return string Pretty printed infix operation */ - public function getInterfaces() + protected function pInfixOp(string $class, Node $leftNode, string $operatorString, Node $rightNode): string { - return $this->interfaces; + list($precedence, $associativity) = $this->precedenceMap[$class]; + return $this->pPrec($leftNode, $precedence, $associativity, -1) . $operatorString . $this->pPrec($rightNode, $precedence, $associativity, 1); } /** - * @param string $interface + * Pretty-print a prefix operation while taking precedence into account. + * + * @param string $class Node class of operator + * @param string $operatorString String representation of the operator + * @param Node $node Node + * + * @return string Pretty printed prefix operation */ - public function addInterface($interface) + protected function pPrefixOp(string $class, string $operatorString, Node $node): string { - if ($this->hasInterface($interface)) { - return; - } - \array_unshift($this->interfaces, $interface); + list($precedence, $associativity) = $this->precedenceMap[$class]; + return $operatorString . $this->pPrec($node, $precedence, $associativity, 1); } /** - * @param string $interface + * Pretty-print a postfix operation while taking precedence into account. * - * @return bool + * @param string $class Node class of operator + * @param string $operatorString String representation of the operator + * @param Node $node Node + * + * @return string Pretty printed postfix operation */ - public function hasInterface($interface) + protected function pPostfixOp(string $class, Node $node, string $operatorString): string { - return \in_array($interface, $this->interfaces); + list($precedence, $associativity) = $this->precedenceMap[$class]; + return $this->pPrec($node, $precedence, $associativity, -1) . $operatorString; } - public function getProperties() + /** + * Prints an expression node with the least amount of parentheses necessary to preserve the meaning. + * + * @param Node $node Node to pretty print + * @param int $parentPrecedence Precedence of the parent operator + * @param int $parentAssociativity Associativity of parent operator + * (-1 is left, 0 is nonassoc, 1 is right) + * @param int $childPosition Position of the node relative to the operator + * (-1 is left, 1 is right) + * + * @return string The pretty printed node + */ + protected function pPrec(Node $node, int $parentPrecedence, int $parentAssociativity, int $childPosition): string { - return $this->properties; + $class = \get_class($node); + if (isset($this->precedenceMap[$class])) { + $childPrecedence = $this->precedenceMap[$class][0]; + if ($childPrecedence > $parentPrecedence || $parentPrecedence === $childPrecedence && $parentAssociativity !== $childPosition) { + return '(' . $this->p($node) . ')'; + } + } + return $this->p($node); } - public function addProperty($name, $visibility = 'public') + /** + * Pretty prints an array of nodes and implodes the printed values. + * + * @param Node[] $nodes Array of Nodes to be printed + * @param string $glue Character to implode with + * + * @return string Imploded pretty printed nodes + */ + protected function pImplode(array $nodes, string $glue = ''): string { - $visibility = \strtolower($visibility); - if (!\in_array($visibility, array('public', 'private', 'protected'))) { - throw new InvalidArgumentException(\sprintf('`%s` property visibility is not supported.', $visibility)); + $pNodes = []; + foreach ($nodes as $node) { + if (null === $node) { + $pNodes[] = ''; + } else { + $pNodes[] = $this->p($node); + } } - $this->properties[$name] = $visibility; + return implode($glue, $pNodes); } /** - * @return MethodNode[] + * Pretty prints an array of nodes and implodes the printed values with commas. + * + * @param Node[] $nodes Array of Nodes to be printed + * + * @return string Comma separated pretty printed nodes */ - public function getMethods() + protected function pCommaSeparated(array $nodes): string { - return $this->methods; + return $this->pImplode($nodes, ', '); } - public function addMethod(\Prophecy\Doubler\Generator\Node\MethodNode $method, $force = \false) + /** + * Pretty prints a comma-separated list of nodes in multiline style, including comments. + * + * The result includes a leading newline and one level of indentation (same as pStmts). + * + * @param Node[] $nodes Array of Nodes to be printed + * @param bool $trailingComma Whether to use a trailing comma + * + * @return string Comma separated pretty printed nodes in multiline style + */ + protected function pCommaSeparatedMultiline(array $nodes, bool $trailingComma): string { - if (!$this->isExtendable($method->getName())) { - $message = \sprintf('Method `%s` is not extendable, so can not be added.', $method->getName()); - throw new MethodNotExtendableException($message, $this->getParentClass(), $method->getName()); - } - if ($force || !isset($this->methods[$method->getName()])) { - $this->methods[$method->getName()] = $method; + $this->indent(); + $result = ''; + $lastIdx = count($nodes) - 1; + foreach ($nodes as $idx => $node) { + if ($node !== null) { + $comments = $node->getComments(); + if ($comments) { + $result .= $this->nl . $this->pComments($comments); + } + $result .= $this->nl . $this->p($node); + } else { + $result .= $this->nl; + } + if ($trailingComma || $idx !== $lastIdx) { + $result .= ','; + } } - } - public function removeMethod($name) - { - unset($this->methods[$name]); + $this->outdent(); + return $result; } /** - * @param string $name + * Prints reformatted text of the passed comments. * - * @return MethodNode|null + * @param Comment[] $comments List of comments + * + * @return string Reformatted text of comments */ - public function getMethod($name) + protected function pComments(array $comments): string { - return $this->hasMethod($name) ? $this->methods[$name] : null; + $formattedComments = []; + foreach ($comments as $comment) { + $formattedComments[] = str_replace("\n", $this->nl, $comment->getReformattedText()); + } + return implode($this->nl, $formattedComments); } /** - * @param string $name + * Perform a format-preserving pretty print of an AST. * - * @return bool + * The format preservation is best effort. For some changes to the AST the formatting will not + * be preserved (at least not locally). + * + * In order to use this method a number of prerequisites must be satisfied: + * * The startTokenPos and endTokenPos attributes in the lexer must be enabled. + * * The CloningVisitor must be run on the AST prior to modification. + * * The original tokens must be provided, using the getTokens() method on the lexer. + * + * @param Node[] $stmts Modified AST with links to original AST + * @param Node[] $origStmts Original AST with token offset information + * @param array $origTokens Tokens of the original code + * + * @return string */ - public function hasMethod($name) + public function printFormatPreserving(array $stmts, array $origStmts, array $origTokens): string { - return isset($this->methods[$name]); + $this->initializeNodeListDiffer(); + $this->initializeLabelCharMap(); + $this->initializeFixupMap(); + $this->initializeRemovalMap(); + $this->initializeInsertionMap(); + $this->initializeListInsertionMap(); + $this->initializeEmptyListInsertionMap(); + $this->initializeModifierChangeMap(); + $this->resetState(); + $this->origTokens = new TokenStream($origTokens); + $this->preprocessNodes($stmts); + $pos = 0; + $result = $this->pArray($stmts, $origStmts, $pos, 0, 'File', 'stmts', null); + if (null !== $result) { + $result .= $this->origTokens->getTokenCode($pos, count($origTokens), 0); + } else { + // Fallback + // TODO Add pStmts($stmts, \false); + } + return ltrim($this->handleMagicTokens($result)); } - /** - * @return string[] - */ - public function getUnextendableMethods() + protected function pFallback(Node $node) { - return $this->unextendableMethods; + return $this->{'p' . $node->getType()}($node); } /** - * @param string $unextendableMethod + * Pretty prints a node. + * + * This method also handles formatting preservation for nodes. + * + * @param Node $node Node to be pretty printed + * @param bool $parentFormatPreserved Whether parent node has preserved formatting + * + * @return string Pretty printed node */ - public function addUnextendableMethod($unextendableMethod) + protected function p(Node $node, $parentFormatPreserved = \false): string { - if (!$this->isExtendable($unextendableMethod)) { - return; + // No orig tokens means this is a normal pretty print without preservation of formatting + if (!$this->origTokens) { + return $this->{'p' . $node->getType()}($node); } - $this->unextendableMethods[] = $unextendableMethod; + /** @var Node $origNode */ + $origNode = $node->getAttribute('origNode'); + if (null === $origNode) { + return $this->pFallback($node); + } + $class = \get_class($node); + \assert($class === \get_class($origNode)); + $startPos = $origNode->getStartTokenPos(); + $endPos = $origNode->getEndTokenPos(); + \assert($startPos >= 0 && $endPos >= 0); + $fallbackNode = $node; + if ($node instanceof Expr\New_ && $node->class instanceof Stmt\Class_) { + // Normalize node structure of anonymous classes + $node = PrintableNewAnonClassNode::fromNewNode($node); + $origNode = PrintableNewAnonClassNode::fromNewNode($origNode); + } + // InlineHTML node does not contain closing and opening PHP tags. If the parent formatting + // is not preserved, then we need to use the fallback code to make sure the tags are + // printed. + if ($node instanceof Stmt\InlineHTML && !$parentFormatPreserved) { + return $this->pFallback($fallbackNode); + } + $indentAdjustment = $this->indentLevel - $this->origTokens->getIndentationBefore($startPos); + $type = $node->getType(); + $fixupInfo = $this->fixupMap[$class] ?? null; + $result = ''; + $pos = $startPos; + foreach ($node->getSubNodeNames() as $subNodeName) { + $subNode = $node->{$subNodeName}; + $origSubNode = $origNode->{$subNodeName}; + if (!$subNode instanceof Node && $subNode !== null || !$origSubNode instanceof Node && $origSubNode !== null) { + if ($subNode === $origSubNode) { + // Unchanged, can reuse old code + continue; + } + if (is_array($subNode) && is_array($origSubNode)) { + // Array subnode changed, we might be able to reconstruct it + $listResult = $this->pArray($subNode, $origSubNode, $pos, $indentAdjustment, $type, $subNodeName, $fixupInfo[$subNodeName] ?? null); + if (null === $listResult) { + return $this->pFallback($fallbackNode); + } + $result .= $listResult; + continue; + } + if (is_int($subNode) && is_int($origSubNode)) { + // Check if this is a modifier change + $key = $type . '->' . $subNodeName; + if (!isset($this->modifierChangeMap[$key])) { + return $this->pFallback($fallbackNode); + } + $findToken = $this->modifierChangeMap[$key]; + $result .= $this->pModifiers($subNode); + $pos = $this->origTokens->findRight($pos, $findToken); + continue; + } + // If a non-node, non-array subnode changed, we don't be able to do a partial + // reconstructions, as we don't have enough offset information. Pretty print the + // whole node instead. + return $this->pFallback($fallbackNode); + } + $extraLeft = ''; + $extraRight = ''; + if ($origSubNode !== null) { + $subStartPos = $origSubNode->getStartTokenPos(); + $subEndPos = $origSubNode->getEndTokenPos(); + \assert($subStartPos >= 0 && $subEndPos >= 0); + } else { + if ($subNode === null) { + // Both null, nothing to do + continue; + } + // A node has been inserted, check if we have insertion information for it + $key = $type . '->' . $subNodeName; + if (!isset($this->insertionMap[$key])) { + return $this->pFallback($fallbackNode); + } + list($findToken, $beforeToken, $extraLeft, $extraRight) = $this->insertionMap[$key]; + if (null !== $findToken) { + $subStartPos = $this->origTokens->findRight($pos, $findToken) + (int) !$beforeToken; + } else { + $subStartPos = $pos; + } + if (null === $extraLeft && null !== $extraRight) { + // If inserting on the right only, skipping whitespace looks better + $subStartPos = $this->origTokens->skipRightWhitespace($subStartPos); + } + $subEndPos = $subStartPos - 1; + } + if (null === $subNode) { + // A node has been removed, check if we have removal information for it + $key = $type . '->' . $subNodeName; + if (!isset($this->removalMap[$key])) { + return $this->pFallback($fallbackNode); + } + // Adjust positions to account for additional tokens that must be skipped + $removalInfo = $this->removalMap[$key]; + if (isset($removalInfo['left'])) { + $subStartPos = $this->origTokens->skipLeft($subStartPos - 1, $removalInfo['left']) + 1; + } + if (isset($removalInfo['right'])) { + $subEndPos = $this->origTokens->skipRight($subEndPos + 1, $removalInfo['right']) - 1; + } + } + $result .= $this->origTokens->getTokenCode($pos, $subStartPos, $indentAdjustment); + if (null !== $subNode) { + $result .= $extraLeft; + $origIndentLevel = $this->indentLevel; + $this->setIndentLevel($this->origTokens->getIndentationBefore($subStartPos) + $indentAdjustment); + // If it's the same node that was previously in this position, it certainly doesn't + // need fixup. It's important to check this here, because our fixup checks are more + // conservative than strictly necessary. + if (isset($fixupInfo[$subNodeName]) && $subNode->getAttribute('origNode') !== $origSubNode) { + $fixup = $fixupInfo[$subNodeName]; + $res = $this->pFixup($fixup, $subNode, $class, $subStartPos, $subEndPos); + } else { + $res = $this->p($subNode, \true); + } + $this->safeAppend($result, $res); + $this->setIndentLevel($origIndentLevel); + $result .= $extraRight; + } + $pos = $subEndPos + 1; + } + $result .= $this->origTokens->getTokenCode($pos, $endPos + 1, $indentAdjustment); + return $result; } /** - * @param string $method - * @return bool + * Perform a format-preserving pretty print of an array. + * + * @param array $nodes New nodes + * @param array $origNodes Original nodes + * @param int $pos Current token position (updated by reference) + * @param int $indentAdjustment Adjustment for indentation + * @param string $parentNodeType Type of the containing node. + * @param string $subNodeName Name of array subnode. + * @param null|int $fixup Fixup information for array item nodes + * + * @return null|string Result of pretty print or null if cannot preserve formatting */ - public function isExtendable($method) + protected function pArray(array $nodes, array $origNodes, int &$pos, int $indentAdjustment, string $parentNodeType, string $subNodeName, $fixup) { - return !\in_array($method, $this->unextendableMethods); + $diff = $this->nodeListDiffer->diffWithReplacements($origNodes, $nodes); + $mapKey = $parentNodeType . '->' . $subNodeName; + $insertStr = $this->listInsertionMap[$mapKey] ?? null; + $isStmtList = $subNodeName === 'stmts'; + $beforeFirstKeepOrReplace = \true; + $skipRemovedNode = \false; + $delayedAdd = []; + $lastElemIndentLevel = $this->indentLevel; + $insertNewline = \false; + if ($insertStr === "\n") { + $insertStr = ''; + $insertNewline = \true; + } + if ($isStmtList && \count($origNodes) === 1 && \count($nodes) !== 1) { + $startPos = $origNodes[0]->getStartTokenPos(); + $endPos = $origNodes[0]->getEndTokenPos(); + \assert($startPos >= 0 && $endPos >= 0); + if (!$this->origTokens->haveBraces($startPos, $endPos)) { + // This was a single statement without braces, but either additional statements + // have been added, or the single statement has been removed. This requires the + // addition of braces. For now fall back. + // TODO: Try to preserve formatting + return null; + } + } + $result = ''; + foreach ($diff as $i => $diffElem) { + $diffType = $diffElem->type; + /** @var Node|null $arrItem */ + $arrItem = $diffElem->new; + /** @var Node|null $origArrItem */ + $origArrItem = $diffElem->old; + if ($diffType === DiffElem::TYPE_KEEP || $diffType === DiffElem::TYPE_REPLACE) { + $beforeFirstKeepOrReplace = \false; + if ($origArrItem === null || $arrItem === null) { + // We can only handle the case where both are null + if ($origArrItem === $arrItem) { + continue; + } + return null; + } + if (!$arrItem instanceof Node || !$origArrItem instanceof Node) { + // We can only deal with nodes. This can occur for Names, which use string arrays. + return null; + } + $itemStartPos = $origArrItem->getStartTokenPos(); + $itemEndPos = $origArrItem->getEndTokenPos(); + \assert($itemStartPos >= 0 && $itemEndPos >= 0 && $itemStartPos >= $pos); + $origIndentLevel = $this->indentLevel; + $lastElemIndentLevel = $this->origTokens->getIndentationBefore($itemStartPos) + $indentAdjustment; + $this->setIndentLevel($lastElemIndentLevel); + $comments = $arrItem->getComments(); + $origComments = $origArrItem->getComments(); + $commentStartPos = $origComments ? $origComments[0]->getStartTokenPos() : $itemStartPos; + \assert($commentStartPos >= 0); + if ($commentStartPos < $pos) { + // Comments may be assigned to multiple nodes if they start at the same position. + // Make sure we don't try to print them multiple times. + $commentStartPos = $itemStartPos; + } + if ($skipRemovedNode) { + if ($isStmtList && ($this->origTokens->haveBracesInRange($pos, $itemStartPos) || $this->origTokens->haveTagInRange($pos, $itemStartPos))) { + // We'd remove the brace of a code block. + // TODO: Preserve formatting. + $this->setIndentLevel($origIndentLevel); + return null; + } + } else { + $result .= $this->origTokens->getTokenCode($pos, $commentStartPos, $indentAdjustment); + } + if (!empty($delayedAdd)) { + /** @var Node $delayedAddNode */ + foreach ($delayedAdd as $delayedAddNode) { + if ($insertNewline) { + $delayedAddComments = $delayedAddNode->getComments(); + if ($delayedAddComments) { + $result .= $this->pComments($delayedAddComments) . $this->nl; + } + } + $this->safeAppend($result, $this->p($delayedAddNode, \true)); + if ($insertNewline) { + $result .= $insertStr . $this->nl; + } else { + $result .= $insertStr; + } + } + $delayedAdd = []; + } + if ($comments !== $origComments) { + if ($comments) { + $result .= $this->pComments($comments) . $this->nl; + } + } else { + $result .= $this->origTokens->getTokenCode($commentStartPos, $itemStartPos, $indentAdjustment); + } + // If we had to remove anything, we have done so now. + $skipRemovedNode = \false; + } elseif ($diffType === DiffElem::TYPE_ADD) { + if (null === $insertStr) { + // We don't have insertion information for this list type + return null; + } + // We go multiline if the original code was multiline, + // or if it's an array item with a comment above it. + if ($insertStr === ', ' && ($this->isMultiline($origNodes) || $arrItem->getComments())) { + $insertStr = ','; + $insertNewline = \true; + } + if ($beforeFirstKeepOrReplace) { + // Will be inserted at the next "replace" or "keep" element + $delayedAdd[] = $arrItem; + continue; + } + $itemStartPos = $pos; + $itemEndPos = $pos - 1; + $origIndentLevel = $this->indentLevel; + $this->setIndentLevel($lastElemIndentLevel); + if ($insertNewline) { + $result .= $insertStr . $this->nl; + $comments = $arrItem->getComments(); + if ($comments) { + $result .= $this->pComments($comments) . $this->nl; + } + } else { + $result .= $insertStr; + } + } elseif ($diffType === DiffElem::TYPE_REMOVE) { + if (!$origArrItem instanceof Node) { + // We only support removal for nodes + return null; + } + $itemStartPos = $origArrItem->getStartTokenPos(); + $itemEndPos = $origArrItem->getEndTokenPos(); + \assert($itemStartPos >= 0 && $itemEndPos >= 0); + // Consider comments part of the node. + $origComments = $origArrItem->getComments(); + if ($origComments) { + $itemStartPos = $origComments[0]->getStartTokenPos(); + } + if ($i === 0) { + // If we're removing from the start, keep the tokens before the node and drop those after it, + // instead of the other way around. + $result .= $this->origTokens->getTokenCode($pos, $itemStartPos, $indentAdjustment); + $skipRemovedNode = \true; + } else if ($isStmtList && ($this->origTokens->haveBracesInRange($pos, $itemStartPos) || $this->origTokens->haveTagInRange($pos, $itemStartPos))) { + // We'd remove the brace of a code block. + // TODO: Preserve formatting. + return null; + } + $pos = $itemEndPos + 1; + continue; + } else { + throw new \Exception("Shouldn't happen"); + } + if (null !== $fixup && $arrItem->getAttribute('origNode') !== $origArrItem) { + $res = $this->pFixup($fixup, $arrItem, null, $itemStartPos, $itemEndPos); + } else { + $res = $this->p($arrItem, \true); + } + $this->safeAppend($result, $res); + $this->setIndentLevel($origIndentLevel); + $pos = $itemEndPos + 1; + } + if ($skipRemovedNode) { + // TODO: Support removing single node. + return null; + } + if (!empty($delayedAdd)) { + if (!isset($this->emptyListInsertionMap[$mapKey])) { + return null; + } + list($findToken, $extraLeft, $extraRight) = $this->emptyListInsertionMap[$mapKey]; + if (null !== $findToken) { + $insertPos = $this->origTokens->findRight($pos, $findToken) + 1; + $result .= $this->origTokens->getTokenCode($pos, $insertPos, $indentAdjustment); + $pos = $insertPos; + } + $first = \true; + $result .= $extraLeft; + foreach ($delayedAdd as $delayedAddNode) { + if (!$first) { + $result .= $insertStr; + if ($insertNewline) { + $result .= $this->nl; + } + } + $result .= $this->p($delayedAddNode, \true); + $first = \false; + } + $result .= $extraRight === "\n" ? $this->nl : $extraRight; + } + return $result; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator\Node; - -use Prophecy\Doubler\Generator\TypeHintReference; -use Prophecy\Exception\InvalidArgumentException; -/** - * Method node. - * - * @author Konstantin Kudryashov - */ -class MethodNode -{ - private $name; - private $code; - private $visibility = 'public'; - private $static = \false; - private $returnsReference = \false; - /** @var ReturnTypeNode */ - private $returnTypeNode; - /** - * @var ArgumentNode[] - */ - private $arguments = array(); /** - * @param string $name - * @param string $code + * Print node with fixups. + * + * Fixups here refer to the addition of extra parentheses, braces or other characters, that + * are required to preserve program semantics in a certain context (e.g. to maintain precedence + * or because only certain expressions are allowed in certain places). + * + * @param int $fixup Fixup type + * @param Node $subNode Subnode to print + * @param string|null $parentClass Class of parent node + * @param int $subStartPos Original start pos of subnode + * @param int $subEndPos Original end pos of subnode + * + * @return string Result of fixed-up print of subnode */ - public function __construct($name, $code = null, TypeHintReference $typeHintReference = null) - { - $this->name = $name; - $this->code = $code; - $this->returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode(); - } - public function getVisibility() + protected function pFixup(int $fixup, Node $subNode, $parentClass, int $subStartPos, int $subEndPos): string { - return $this->visibility; + switch ($fixup) { + case self::FIXUP_PREC_LEFT: + case self::FIXUP_PREC_RIGHT: + if (!$this->origTokens->haveParens($subStartPos, $subEndPos)) { + list($precedence, $associativity) = $this->precedenceMap[$parentClass]; + return $this->pPrec($subNode, $precedence, $associativity, $fixup === self::FIXUP_PREC_LEFT ? -1 : 1); + } + break; + case self::FIXUP_CALL_LHS: + if ($this->callLhsRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { + return '(' . $this->p($subNode) . ')'; + } + break; + case self::FIXUP_DEREF_LHS: + if ($this->dereferenceLhsRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { + return '(' . $this->p($subNode) . ')'; + } + break; + case self::FIXUP_STATIC_DEREF_LHS: + if ($this->staticDereferenceLhsRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { + return '(' . $this->p($subNode) . ')'; + } + break; + case self::FIXUP_NEW: + if ($this->newOperandRequiresParens($subNode) && !$this->origTokens->haveParens($subStartPos, $subEndPos)) { + return '(' . $this->p($subNode) . ')'; + } + break; + case self::FIXUP_BRACED_NAME: + case self::FIXUP_VAR_BRACED_NAME: + if ($subNode instanceof Expr && !$this->origTokens->haveBraces($subStartPos, $subEndPos)) { + return ($fixup === self::FIXUP_VAR_BRACED_NAME ? '$' : '') . '{' . $this->p($subNode) . '}'; + } + break; + case self::FIXUP_ENCAPSED: + if (!$subNode instanceof Scalar\EncapsedStringPart && !$this->origTokens->haveBraces($subStartPos, $subEndPos)) { + return '{' . $this->p($subNode) . '}'; + } + break; + default: + throw new \Exception('Cannot happen'); + } + // Nothing special to do + return $this->p($subNode); } /** - * @param string $visibility + * Appends to a string, ensuring whitespace between label characters. + * + * Example: "echo" and "$x" result in "echo$x", but "echo" and "x" result in "echo x". + * Without safeAppend the result would be "echox", which does not preserve semantics. + * + * @param string $str + * @param string $append */ - public function setVisibility($visibility) - { - $visibility = \strtolower($visibility); - if (!\in_array($visibility, array('public', 'private', 'protected'))) { - throw new InvalidArgumentException(\sprintf('`%s` method visibility is not supported.', $visibility)); - } - $this->visibility = $visibility; - } - public function isStatic() - { - return $this->static; - } - public function setStatic($static = \true) - { - $this->static = (bool) $static; - } - public function returnsReference() - { - return $this->returnsReference; - } - public function setReturnsReference() - { - $this->returnsReference = \true; - } - public function getName() - { - return $this->name; - } - public function addArgument(\Prophecy\Doubler\Generator\Node\ArgumentNode $argument) + protected function safeAppend(string &$str, string $append) { - $this->arguments[] = $argument; + if ($str === "") { + $str = $append; + return; + } + if ($append === "") { + return; + } + if (!$this->labelCharMap[$append[0]] || !$this->labelCharMap[$str[\strlen($str) - 1]]) { + $str .= $append; + } else { + $str .= " " . $append; + } } /** - * @return ArgumentNode[] + * Determines whether the LHS of a call must be wrapped in parenthesis. + * + * @param Node $node LHS of a call + * + * @return bool Whether parentheses are required */ - public function getArguments() + protected function callLhsRequiresParens(Node $node): bool { - return $this->arguments; + return !($node instanceof Node\Name || $node instanceof Expr\Variable || $node instanceof Expr\ArrayDimFetch || $node instanceof Expr\FuncCall || $node instanceof Expr\MethodCall || $node instanceof Expr\NullsafeMethodCall || $node instanceof Expr\StaticCall || $node instanceof Expr\Array_); } /** - * @deprecated use getReturnTypeNode instead - * @return bool + * Determines whether the LHS of an array/object operation must be wrapped in parentheses. + * + * @param Node $node LHS of dereferencing operation + * + * @return bool Whether parentheses are required */ - public function hasReturnType() - { - return (bool) $this->returnTypeNode->getNonNullTypes(); - } - public function setReturnTypeNode(\Prophecy\Doubler\Generator\Node\ReturnTypeNode $returnTypeNode) : void + protected function dereferenceLhsRequiresParens(Node $node): bool { - $this->returnTypeNode = $returnTypeNode; + // A constant can occur on the LHS of an array/object deref, but not a static deref. + return $this->staticDereferenceLhsRequiresParens($node) && !$node instanceof Expr\ConstFetch; } /** - * @deprecated use setReturnTypeNode instead - * @param string $type + * Determines whether the LHS of a static operation must be wrapped in parentheses. + * + * @param Node $node LHS of dereferencing operation + * + * @return bool Whether parentheses are required */ - public function setReturnType($type = null) + protected function staticDereferenceLhsRequiresParens(Node $node): bool { - $this->returnTypeNode = $type === '' || $type === null ? new \Prophecy\Doubler\Generator\Node\ReturnTypeNode() : new \Prophecy\Doubler\Generator\Node\ReturnTypeNode($type); + return !($node instanceof Expr\Variable || $node instanceof Node\Name || $node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch || $node instanceof Expr\NullsafePropertyFetch || $node instanceof Expr\StaticPropertyFetch || $node instanceof Expr\FuncCall || $node instanceof Expr\MethodCall || $node instanceof Expr\NullsafeMethodCall || $node instanceof Expr\StaticCall || $node instanceof Expr\Array_ || $node instanceof Scalar\String_ || $node instanceof Expr\ClassConstFetch); } /** - * @deprecated use setReturnTypeNode instead - * @param bool $bool + * Determines whether an expression used in "new" or "instanceof" requires parentheses. + * + * @param Node $node New or instanceof operand + * + * @return bool Whether parentheses are required */ - public function setNullableReturnType($bool = \true) + protected function newOperandRequiresParens(Node $node): bool { - if ($bool) { - $this->returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode('null', ...$this->returnTypeNode->getTypes()); - } else { - $this->returnTypeNode = new \Prophecy\Doubler\Generator\Node\ReturnTypeNode(...$this->returnTypeNode->getNonNullTypes()); + if ($node instanceof Node\Name || $node instanceof Expr\Variable) { + return \false; } + if ($node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch || $node instanceof Expr\NullsafePropertyFetch) { + return $this->newOperandRequiresParens($node->var); + } + if ($node instanceof Expr\StaticPropertyFetch) { + return $this->newOperandRequiresParens($node->class); + } + return \true; } /** - * @deprecated use getReturnTypeNode instead - * @return string|null + * Print modifiers, including trailing whitespace. + * + * @param int $modifiers Modifier mask to print + * + * @return string Printed modifiers */ - public function getReturnType() - { - if ($types = $this->returnTypeNode->getNonNullTypes()) { - return $types[0]; - } - return null; - } - public function getReturnTypeNode() : \Prophecy\Doubler\Generator\Node\ReturnTypeNode + protected function pModifiers(int $modifiers) { - return $this->returnTypeNode; + return ($modifiers & Stmt\Class_::MODIFIER_PUBLIC ? 'public ' : '') . ($modifiers & Stmt\Class_::MODIFIER_PROTECTED ? 'protected ' : '') . ($modifiers & Stmt\Class_::MODIFIER_PRIVATE ? 'private ' : '') . ($modifiers & Stmt\Class_::MODIFIER_STATIC ? 'static ' : '') . ($modifiers & Stmt\Class_::MODIFIER_ABSTRACT ? 'abstract ' : '') . ($modifiers & Stmt\Class_::MODIFIER_FINAL ? 'final ' : '') . ($modifiers & Stmt\Class_::MODIFIER_READONLY ? 'readonly ' : ''); } /** - * @deprecated use getReturnTypeNode instead - * @return bool + * Determine whether a list of nodes uses multiline formatting. + * + * @param (Node|null)[] $nodes Node list + * + * @return bool Whether multiline formatting is used */ - public function hasNullableReturnType() + protected function isMultiline(array $nodes): bool { - return $this->returnTypeNode->canUseNullShorthand(); + if (\count($nodes) < 2) { + return \false; + } + $pos = -1; + foreach ($nodes as $node) { + if (null === $node) { + continue; + } + $endPos = $node->getEndTokenPos() + 1; + if ($pos >= 0) { + $text = $this->origTokens->getTokenCode($pos, $endPos, 0); + if (\false === strpos($text, "\n")) { + // We require that a newline is present between *every* item. If the formatting + // is inconsistent, with only some items having newlines, we don't consider it + // as multiline + return \false; + } + } + $pos = $endPos; + } + return \true; } /** - * @param string $code + * Lazily initializes label char map. + * + * The label char map determines whether a certain character may occur in a label. */ - public function setCode($code) - { - $this->code = $code; - } - public function getCode() + protected function initializeLabelCharMap() { - if ($this->returnsReference) { - return "throw new \\Prophecy\\Exception\\Doubler\\ReturnByReferenceException('Returning by reference not supported', get_class(\$this), '{$this->name}');"; + if ($this->labelCharMap) { + return; } - return (string) $this->code; - } - public function useParentCode() - { - $this->code = \sprintf('return parent::%s(%s);', $this->getName(), \implode(', ', \array_map(array($this, 'generateArgument'), $this->arguments))); - } - private function generateArgument(\Prophecy\Doubler\Generator\Node\ArgumentNode $arg) - { - $argument = '$' . $arg->getName(); - if ($arg->isVariadic()) { - $argument = '...' . $argument; + $this->labelCharMap = []; + for ($i = 0; $i < 256; $i++) { + // Since PHP 7.1 The lower range is 0x80. However, we also want to support code for + // older versions. + $chr = chr($i); + $this->labelCharMap[$chr] = $i >= 0x7f || ctype_alnum($chr); } - return $argument; } -} -nodeListDiffer) { + return; } + $this->nodeListDiffer = new Internal\Differ(function ($a, $b) { + if ($a instanceof Node && $b instanceof Node) { + return $a === $b->getAttribute('origNode'); + } + // Can happen for array destructuring + return $a === null && $b === null; + }); } - protected function guardIsValidType() + /** + * Lazily initializes fixup map. + * + * The fixup map is used to determine whether a certain subnode of a certain node may require + * some kind of "fixup" operation, e.g. the addition of parenthesis or braces. + */ + protected function initializeFixupMap() { - if (isset($this->types['void']) && \count($this->types) !== 1) { - throw new DoubleException('void cannot be part of a union'); + if ($this->fixupMap) { + return; } - if (isset($this->types['never']) && \count($this->types) !== 1) { - throw new DoubleException('never cannot be part of a union'); + $this->fixupMap = [Expr\PreInc::class => ['var' => self::FIXUP_PREC_RIGHT], Expr\PreDec::class => ['var' => self::FIXUP_PREC_RIGHT], Expr\PostInc::class => ['var' => self::FIXUP_PREC_LEFT], Expr\PostDec::class => ['var' => self::FIXUP_PREC_LEFT], Expr\Instanceof_::class => ['expr' => self::FIXUP_PREC_LEFT, 'class' => self::FIXUP_NEW], Expr\Ternary::class => ['cond' => self::FIXUP_PREC_LEFT, 'else' => self::FIXUP_PREC_RIGHT], Expr\FuncCall::class => ['name' => self::FIXUP_CALL_LHS], Expr\StaticCall::class => ['class' => self::FIXUP_STATIC_DEREF_LHS], Expr\ArrayDimFetch::class => ['var' => self::FIXUP_DEREF_LHS], Expr\ClassConstFetch::class => ['class' => self::FIXUP_STATIC_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], Expr\New_::class => ['class' => self::FIXUP_NEW], Expr\MethodCall::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], Expr\NullsafeMethodCall::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], Expr\StaticPropertyFetch::class => ['class' => self::FIXUP_STATIC_DEREF_LHS, 'name' => self::FIXUP_VAR_BRACED_NAME], Expr\PropertyFetch::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], Expr\NullsafePropertyFetch::class => ['var' => self::FIXUP_DEREF_LHS, 'name' => self::FIXUP_BRACED_NAME], Scalar\Encapsed::class => ['parts' => self::FIXUP_ENCAPSED]]; + $binaryOps = [BinaryOp\Pow::class, BinaryOp\Mul::class, BinaryOp\Div::class, BinaryOp\Mod::class, BinaryOp\Plus::class, BinaryOp\Minus::class, BinaryOp\Concat::class, BinaryOp\ShiftLeft::class, BinaryOp\ShiftRight::class, BinaryOp\Smaller::class, BinaryOp\SmallerOrEqual::class, BinaryOp\Greater::class, BinaryOp\GreaterOrEqual::class, BinaryOp\Equal::class, BinaryOp\NotEqual::class, BinaryOp\Identical::class, BinaryOp\NotIdentical::class, BinaryOp\Spaceship::class, BinaryOp\BitwiseAnd::class, BinaryOp\BitwiseXor::class, BinaryOp\BitwiseOr::class, BinaryOp\BooleanAnd::class, BinaryOp\BooleanOr::class, BinaryOp\Coalesce::class, BinaryOp\LogicalAnd::class, BinaryOp\LogicalXor::class, BinaryOp\LogicalOr::class]; + foreach ($binaryOps as $binaryOp) { + $this->fixupMap[$binaryOp] = ['left' => self::FIXUP_PREC_LEFT, 'right' => self::FIXUP_PREC_RIGHT]; + } + $assignOps = [Expr\Assign::class, Expr\AssignRef::class, AssignOp\Plus::class, AssignOp\Minus::class, AssignOp\Mul::class, AssignOp\Div::class, AssignOp\Concat::class, AssignOp\Mod::class, AssignOp\BitwiseAnd::class, AssignOp\BitwiseOr::class, AssignOp\BitwiseXor::class, AssignOp\ShiftLeft::class, AssignOp\ShiftRight::class, AssignOp\Pow::class, AssignOp\Coalesce::class]; + foreach ($assignOps as $assignOp) { + $this->fixupMap[$assignOp] = ['var' => self::FIXUP_PREC_LEFT, 'expr' => self::FIXUP_PREC_RIGHT]; + } + $prefixOps = [Expr\BitwiseNot::class, Expr\BooleanNot::class, Expr\UnaryPlus::class, Expr\UnaryMinus::class, Cast\Int_::class, Cast\Double::class, Cast\String_::class, Cast\Array_::class, Cast\Object_::class, Cast\Bool_::class, Cast\Unset_::class, Expr\ErrorSuppress::class, Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class]; + foreach ($prefixOps as $prefixOp) { + $this->fixupMap[$prefixOp] = ['expr' => self::FIXUP_PREC_RIGHT]; } - parent::guardIsValidType(); } /** - * @deprecated use hasReturnStatement + * Lazily initializes the removal map. + * + * The removal map is used to determine which additional tokens should be removed when a + * certain node is replaced by null. */ - public function isVoid() - { - return $this->types == ['void' => 'void']; - } - public function hasReturnStatement() : bool - { - return $this->types !== ['void' => 'void'] && $this->types !== ['never' => 'never']; - } -} -getRealType($type); - $this->types[$type] = $type; + if ($this->removalMap) { + return; } - $this->guardIsValidType(); - } - public function canUseNullShorthand() : bool - { - return isset($this->types['null']) && \count($this->types) <= 2; - } - public function getTypes() : array - { - return \array_values($this->types); + $stripBoth = ['left' => \T_WHITESPACE, 'right' => \T_WHITESPACE]; + $stripLeft = ['left' => \T_WHITESPACE]; + $stripRight = ['right' => \T_WHITESPACE]; + $stripDoubleArrow = ['right' => \T_DOUBLE_ARROW]; + $stripColon = ['left' => ':']; + $stripEquals = ['left' => '=']; + $this->removalMap = ['Expr_ArrayDimFetch->dim' => $stripBoth, 'Expr_ArrayItem->key' => $stripDoubleArrow, 'Expr_ArrowFunction->returnType' => $stripColon, 'Expr_Closure->returnType' => $stripColon, 'Expr_Exit->expr' => $stripBoth, 'Expr_Ternary->if' => $stripBoth, 'Expr_Yield->key' => $stripDoubleArrow, 'Expr_Yield->value' => $stripBoth, 'Param->type' => $stripRight, 'Param->default' => $stripEquals, 'Stmt_Break->num' => $stripBoth, 'Stmt_Catch->var' => $stripLeft, 'Stmt_ClassConst->type' => $stripRight, 'Stmt_ClassMethod->returnType' => $stripColon, 'Stmt_Class->extends' => ['left' => \T_EXTENDS], 'Stmt_Enum->scalarType' => $stripColon, 'Stmt_EnumCase->expr' => $stripEquals, 'Expr_PrintableNewAnonClass->extends' => ['left' => \T_EXTENDS], 'Stmt_Continue->num' => $stripBoth, 'Stmt_Foreach->keyVar' => $stripDoubleArrow, 'Stmt_Function->returnType' => $stripColon, 'Stmt_If->else' => $stripLeft, 'Stmt_Namespace->name' => $stripLeft, 'Stmt_Property->type' => $stripRight, 'Stmt_PropertyProperty->default' => $stripEquals, 'Stmt_Return->expr' => $stripBoth, 'Stmt_StaticVar->default' => $stripEquals, 'Stmt_TraitUseAdaptation_Alias->newName' => $stripLeft, 'Stmt_TryCatch->finally' => $stripLeft]; } - public function getNonNullTypes() : array + protected function initializeInsertionMap() { - $nonNullTypes = $this->types; - unset($nonNullTypes['null']); - return \array_values($nonNullTypes); + if ($this->insertionMap) { + return; + } + // TODO: "yield" where both key and value are inserted doesn't work + // [$find, $beforeToken, $extraLeft, $extraRight] + $this->insertionMap = [ + 'Expr_ArrayDimFetch->dim' => ['[', \false, null, null], + 'Expr_ArrayItem->key' => [null, \false, null, ' => '], + 'Expr_ArrowFunction->returnType' => [')', \false, ' : ', null], + 'Expr_Closure->returnType' => [')', \false, ' : ', null], + 'Expr_Ternary->if' => ['?', \false, ' ', ' '], + 'Expr_Yield->key' => [\T_YIELD, \false, null, ' => '], + 'Expr_Yield->value' => [\T_YIELD, \false, ' ', null], + 'Param->type' => [null, \false, null, ' '], + 'Param->default' => [null, \false, ' = ', null], + 'Stmt_Break->num' => [\T_BREAK, \false, ' ', null], + 'Stmt_Catch->var' => [null, \false, ' ', null], + 'Stmt_ClassMethod->returnType' => [')', \false, ' : ', null], + 'Stmt_ClassConst->type' => [\T_CONST, \false, ' ', null], + 'Stmt_Class->extends' => [null, \false, ' extends ', null], + 'Stmt_Enum->scalarType' => [null, \false, ' : ', null], + 'Stmt_EnumCase->expr' => [null, \false, ' = ', null], + 'Expr_PrintableNewAnonClass->extends' => [null, ' extends ', null], + 'Stmt_Continue->num' => [\T_CONTINUE, \false, ' ', null], + 'Stmt_Foreach->keyVar' => [\T_AS, \false, null, ' => '], + 'Stmt_Function->returnType' => [')', \false, ' : ', null], + 'Stmt_If->else' => [null, \false, ' ', null], + 'Stmt_Namespace->name' => [\T_NAMESPACE, \false, ' ', null], + 'Stmt_Property->type' => [\T_VARIABLE, \true, null, ' '], + 'Stmt_PropertyProperty->default' => [null, \false, ' = ', null], + 'Stmt_Return->expr' => [\T_RETURN, \false, ' ', null], + 'Stmt_StaticVar->default' => [null, \false, ' = ', null], + //'Stmt_TraitUseAdaptation_Alias->newName' => [T_AS, false, ' ', null], // TODO + 'Stmt_TryCatch->finally' => [null, \false, ' ', null], + ]; } - protected function prefixWithNsSeparator(string $type) : string + protected function initializeListInsertionMap() { - return '\\' . \ltrim($type, '\\'); + if ($this->listInsertionMap) { + return; + } + $this->listInsertionMap = [ + // special + //'Expr_ShellExec->parts' => '', // TODO These need to be treated more carefully + //'Scalar_Encapsed->parts' => '', + 'Stmt_Catch->types' => '|', + 'UnionType->types' => '|', + 'IntersectionType->types' => '&', + 'Stmt_If->elseifs' => ' ', + 'Stmt_TryCatch->catches' => ' ', + // comma-separated lists + 'Expr_Array->items' => ', ', + 'Expr_ArrowFunction->params' => ', ', + 'Expr_Closure->params' => ', ', + 'Expr_Closure->uses' => ', ', + 'Expr_FuncCall->args' => ', ', + 'Expr_Isset->vars' => ', ', + 'Expr_List->items' => ', ', + 'Expr_MethodCall->args' => ', ', + 'Expr_NullsafeMethodCall->args' => ', ', + 'Expr_New->args' => ', ', + 'Expr_PrintableNewAnonClass->args' => ', ', + 'Expr_StaticCall->args' => ', ', + 'Stmt_ClassConst->consts' => ', ', + 'Stmt_ClassMethod->params' => ', ', + 'Stmt_Class->implements' => ', ', + 'Stmt_Enum->implements' => ', ', + 'Expr_PrintableNewAnonClass->implements' => ', ', + 'Stmt_Const->consts' => ', ', + 'Stmt_Declare->declares' => ', ', + 'Stmt_Echo->exprs' => ', ', + 'Stmt_For->init' => ', ', + 'Stmt_For->cond' => ', ', + 'Stmt_For->loop' => ', ', + 'Stmt_Function->params' => ', ', + 'Stmt_Global->vars' => ', ', + 'Stmt_GroupUse->uses' => ', ', + 'Stmt_Interface->extends' => ', ', + 'Stmt_Match->arms' => ', ', + 'Stmt_Property->props' => ', ', + 'Stmt_StaticVar->vars' => ', ', + 'Stmt_TraitUse->traits' => ', ', + 'Stmt_TraitUseAdaptation_Precedence->insteadof' => ', ', + 'Stmt_Unset->vars' => ', ', + 'Stmt_Use->uses' => ', ', + 'MatchArm->conds' => ', ', + 'AttributeGroup->attrs' => ', ', + // statement lists + 'Expr_Closure->stmts' => "\n", + 'Stmt_Case->stmts' => "\n", + 'Stmt_Catch->stmts' => "\n", + 'Stmt_Class->stmts' => "\n", + 'Stmt_Enum->stmts' => "\n", + 'Expr_PrintableNewAnonClass->stmts' => "\n", + 'Stmt_Interface->stmts' => "\n", + 'Stmt_Trait->stmts' => "\n", + 'Stmt_ClassMethod->stmts' => "\n", + 'Stmt_Declare->stmts' => "\n", + 'Stmt_Do->stmts' => "\n", + 'Stmt_ElseIf->stmts' => "\n", + 'Stmt_Else->stmts' => "\n", + 'Stmt_Finally->stmts' => "\n", + 'Stmt_Foreach->stmts' => "\n", + 'Stmt_For->stmts' => "\n", + 'Stmt_Function->stmts' => "\n", + 'Stmt_If->stmts' => "\n", + 'Stmt_Namespace->stmts' => "\n", + 'Stmt_Class->attrGroups' => "\n", + 'Stmt_Enum->attrGroups' => "\n", + 'Stmt_EnumCase->attrGroups' => "\n", + 'Stmt_Interface->attrGroups' => "\n", + 'Stmt_Trait->attrGroups' => "\n", + 'Stmt_Function->attrGroups' => "\n", + 'Stmt_ClassMethod->attrGroups' => "\n", + 'Stmt_ClassConst->attrGroups' => "\n", + 'Stmt_Property->attrGroups' => "\n", + 'Expr_PrintableNewAnonClass->attrGroups' => ' ', + 'Expr_Closure->attrGroups' => ' ', + 'Expr_ArrowFunction->attrGroups' => ' ', + 'Param->attrGroups' => ' ', + 'Stmt_Switch->cases' => "\n", + 'Stmt_TraitUse->adaptations' => "\n", + 'Stmt_TryCatch->stmts' => "\n", + 'Stmt_While->stmts' => "\n", + // dummy for top-level context + 'File->stmts' => "\n", + ]; } - protected function getRealType(string $type) : string + protected function initializeEmptyListInsertionMap() { - switch ($type) { - // type aliases - case 'double': - case 'real': - return 'float'; - case 'boolean': - return 'bool'; - case 'integer': - return 'int'; - // built in types - case 'self': - case 'static': - case 'array': - case 'callable': - case 'bool': - case 'false': - case 'float': - case 'int': - case 'string': - case 'iterable': - case 'object': - case 'null': - return $type; - case 'mixed': - return \PHP_VERSION_ID < 80000 ? $this->prefixWithNsSeparator($type) : $type; - default: - return $this->prefixWithNsSeparator($type); + if ($this->emptyListInsertionMap) { + return; } + // TODO Insertion into empty statement lists. + // [$find, $extraLeft, $extraRight] + $this->emptyListInsertionMap = ['Expr_ArrowFunction->params' => ['(', '', ''], 'Expr_Closure->uses' => [')', ' use(', ')'], 'Expr_Closure->params' => ['(', '', ''], 'Expr_FuncCall->args' => ['(', '', ''], 'Expr_MethodCall->args' => ['(', '', ''], 'Expr_NullsafeMethodCall->args' => ['(', '', ''], 'Expr_New->args' => ['(', '', ''], 'Expr_PrintableNewAnonClass->args' => ['(', '', ''], 'Expr_PrintableNewAnonClass->implements' => [null, ' implements ', ''], 'Expr_StaticCall->args' => ['(', '', ''], 'Stmt_Class->implements' => [null, ' implements ', ''], 'Stmt_Enum->implements' => [null, ' implements ', ''], 'Stmt_ClassMethod->params' => ['(', '', ''], 'Stmt_Interface->extends' => [null, ' extends ', ''], 'Stmt_Function->params' => ['(', '', ''], 'Stmt_Interface->attrGroups' => [null, '', "\n"], 'Stmt_Class->attrGroups' => [null, '', "\n"], 'Stmt_ClassConst->attrGroups' => [null, '', "\n"], 'Stmt_ClassMethod->attrGroups' => [null, '', "\n"], 'Stmt_Function->attrGroups' => [null, '', "\n"], 'Stmt_Property->attrGroups' => [null, '', "\n"], 'Stmt_Trait->attrGroups' => [null, '', "\n"], 'Expr_ArrowFunction->attrGroups' => [null, '', ' '], 'Expr_Closure->attrGroups' => [null, '', ' '], 'Expr_PrintableNewAnonClass->attrGroups' => [\T_NEW, ' ', '']]; } - protected function guardIsValidType() + protected function initializeModifierChangeMap() { - if ($this->types == ['null' => 'null']) { - throw new DoubleException('Type cannot be standalone null'); - } - if ($this->types == ['false' => 'false']) { - throw new DoubleException('Type cannot be standalone false'); - } - if ($this->types == ['false' => 'false', 'null' => 'null']) { - throw new DoubleException('Type cannot be nullable false'); - } - if (\PHP_VERSION_ID >= 80000 && isset($this->types['mixed']) && \count($this->types) !== 1) { - throw new DoubleException('mixed cannot be part of a union'); + if ($this->modifierChangeMap) { + return; } + $this->modifierChangeMap = ['Stmt_ClassConst->flags' => \T_CONST, 'Stmt_ClassMethod->flags' => \T_FUNCTION, 'Stmt_Class->flags' => \T_CLASS, 'Stmt_Property->flags' => \T_VARIABLE, 'Expr_PrintableNewAnonClass->flags' => \T_CLASS, 'Param->flags' => \T_VARIABLE]; + // List of integer subnodes that are not modifiers: + // Expr_Include->type + // Stmt_GroupUse->type + // Stmt_Use->type + // Stmt_UseUse->type } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler\Generator; +declare (strict_types=1); +namespace PHPUnitPHAR\PhpParser; -/** - * Reflection interface. - * All reflected classes implement this interface. - * - * @author Konstantin Kudryashov - */ -interface ReflectionInterface +interface NodeTraverserInterface { + /** + * Adds a visitor. + * + * @param NodeVisitor $visitor Visitor to add + */ + public function addVisitor(NodeVisitor $visitor); + /** + * Removes an added visitor. + * + * @param NodeVisitor $visitor + */ + public function removeVisitor(NodeVisitor $visitor); + /** + * Traverses an array of nodes using the registered visitors. + * + * @param Node[] $nodes Array of nodes + * + * @return Node[] Traversed array of nodes + */ + public function traverse(array $nodes): array; } = 80000; - default: - return \false; - } + return new Node\Attribute(BuilderHelpers::normalizeName($name), $this->args($args)); } - public function isBuiltInReturnTypeHint($type) + /** + * Creates a namespace builder. + * + * @param null|string|Node\Name $name Name of the namespace + * + * @return Builder\Namespace_ The created namespace builder + */ + public function namespace($name): Builder\Namespace_ { - if ($type === 'void') { - return \true; - } - return $this->isBuiltInParamTypeHint($type); + return new Builder\Namespace_($name); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler; - -use Prophecy\Exception\Doubler\DoubleException; -use Prophecy\Exception\Doubler\ClassNotFoundException; -use Prophecy\Exception\Doubler\InterfaceNotFoundException; -use ReflectionClass; -/** - * Lazy double. - * Gives simple interface to describe double before creating it. - * - * @author Konstantin Kudryashov - */ -class LazyDouble -{ - private $doubler; - private $class; - private $interfaces = array(); - private $arguments = null; - private $double; /** - * Initializes lazy double. + * Creates a class builder. + * + * @param string $name Name of the class * - * @param Doubler $doubler + * @return Builder\Class_ The created class builder */ - public function __construct(\Prophecy\Doubler\Doubler $doubler) + public function class(string $name): Builder\Class_ { - $this->doubler = $doubler; + return new Builder\Class_($name); } /** - * Tells doubler to use specific class as parent one for double. + * Creates an interface builder. * - * @param string|ReflectionClass $class + * @param string $name Name of the interface * - * @throws \Prophecy\Exception\Doubler\ClassNotFoundException - * @throws \Prophecy\Exception\Doubler\DoubleException + * @return Builder\Interface_ The created interface builder */ - public function setParentClass($class) + public function interface(string $name): Builder\Interface_ { - if (null !== $this->double) { - throw new DoubleException('Can not extend class with already instantiated double.'); - } - if (!$class instanceof ReflectionClass) { - if (!\class_exists($class)) { - throw new ClassNotFoundException(\sprintf('Class %s not found.', $class), $class); - } - $class = new ReflectionClass($class); - } - $this->class = $class; + return new Builder\Interface_($name); } /** - * Tells doubler to implement specific interface with double. + * Creates a trait builder. * - * @param string|ReflectionClass $interface + * @param string $name Name of the trait * - * @throws \Prophecy\Exception\Doubler\InterfaceNotFoundException - * @throws \Prophecy\Exception\Doubler\DoubleException + * @return Builder\Trait_ The created trait builder */ - public function addInterface($interface) + public function trait(string $name): Builder\Trait_ { - if (null !== $this->double) { - throw new DoubleException('Can not implement interface with already instantiated double.'); - } - if (!$interface instanceof ReflectionClass) { - if (!\interface_exists($interface)) { - throw new InterfaceNotFoundException(\sprintf('Interface %s not found.', $interface), $interface); - } - $interface = new ReflectionClass($interface); - } - $this->interfaces[] = $interface; + return new Builder\Trait_($name); } /** - * Sets constructor arguments. + * Creates an enum builder. + * + * @param string $name Name of the enum * - * @param array $arguments + * @return Builder\Enum_ The created enum builder */ - public function setArguments(array $arguments = null) + public function enum(string $name): Builder\Enum_ { - $this->arguments = $arguments; + return new Builder\Enum_($name); } /** - * Creates double instance or returns already created one. + * Creates a trait use builder. + * + * @param Node\Name|string ...$traits Trait names * - * @return DoubleInterface + * @return Builder\TraitUse The create trait use builder */ - public function getInstance() + public function useTrait(...$traits): Builder\TraitUse { - if (null === $this->double) { - if (null !== $this->arguments) { - return $this->double = $this->doubler->double($this->class, $this->interfaces, $this->arguments); - } - $this->double = $this->doubler->double($this->class, $this->interfaces); - } - return $this->double; + return new Builder\TraitUse(...$traits); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Doubler; - -use ReflectionClass; -/** - * Name generator. - * Generates classname for double. - * - * @author Konstantin Kudryashov - */ -class NameGenerator -{ - private static $counter = 1; /** - * Generates name. + * Creates a trait use adaptation builder. * - * @param ReflectionClass $class - * @param ReflectionClass[] $interfaces + * @param Node\Name|string|null $trait Trait name + * @param Node\Identifier|string $method Method name * - * @return string + * @return Builder\TraitUseAdaptation The create trait use adaptation builder */ - public function name(ReflectionClass $class = null, array $interfaces) + public function traitUseAdaptation($trait, $method = null): Builder\TraitUseAdaptation { - $parts = array(); - if (null !== $class) { - $parts[] = $class->getName(); - } else { - foreach ($interfaces as $interface) { - $parts[] = $interface->getShortName(); - } - } - if (!\count($parts)) { - $parts[] = 'stdClass'; + if ($method === null) { + $method = $trait; + $trait = null; } - return \sprintf('Double\\%s\\P%d', \implode('\\', $parts), self::$counter++); - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Call; - -use Prophecy\Exception\Prophecy\ObjectProphecyException; -use Prophecy\Prophecy\ObjectProphecy; -class UnexpectedCallException extends ObjectProphecyException -{ - private $methodName; - private $arguments; - public function __construct($message, ObjectProphecy $objectProphecy, $methodName, array $arguments) - { - parent::__construct($message, $objectProphecy); - $this->methodName = $methodName; - $this->arguments = $arguments; - } - public function getMethodName() - { - return $this->methodName; - } - public function getArguments() - { - return $this->arguments; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -use Prophecy\Doubler\Generator\Node\ClassNode; -class ClassCreatorException extends \RuntimeException implements \Prophecy\Exception\Doubler\DoublerException -{ - private $node; - public function __construct($message, ClassNode $node) - { - parent::__construct($message); - $this->node = $node; - } - public function getClassNode() - { - return $this->node; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -use ReflectionClass; -class ClassMirrorException extends \RuntimeException implements \Prophecy\Exception\Doubler\DoublerException -{ - private $class; - public function __construct($message, ReflectionClass $class) - { - parent::__construct($message); - $this->class = $class; - } - public function getReflectedClass() - { - return $this->class; + return new Builder\TraitUseAdaptation($trait, $method); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -class ClassNotFoundException extends \Prophecy\Exception\Doubler\DoubleException -{ - private $classname; /** - * @param string $message - * @param string $classname + * Creates a method builder. + * + * @param string $name Name of the method + * + * @return Builder\Method The created method builder */ - public function __construct($message, $classname) - { - parent::__construct($message); - $this->classname = $classname; - } - public function getClassname() - { - return $this->classname; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -use RuntimeException; -class DoubleException extends RuntimeException implements \Prophecy\Exception\Doubler\DoublerException -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -use Prophecy\Exception\Exception; -interface DoublerException extends Exception -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -class InterfaceNotFoundException extends \Prophecy\Exception\Doubler\ClassNotFoundException -{ - public function getInterfaceName() + public function method(string $name): Builder\Method { - return $this->getClassname(); + return new Builder\Method($name); } -} -methodName = $methodName; - $this->className = $className; + return new Builder\Param($name); } /** - * @return string + * Creates a property builder. + * + * @param string $name Name of the property + * + * @return Builder\Property The created property builder */ - public function getMethodName() + public function property(string $name): Builder\Property { - return $this->methodName; + return new Builder\Property($name); } /** - * @return string + * Creates a function builder. + * + * @param string $name Name of the function + * + * @return Builder\Function_ The created function builder */ - public function getClassName() + public function function(string $name): Builder\Function_ { - return $this->className; + return new Builder\Function_($name); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -class MethodNotFoundException extends \Prophecy\Exception\Doubler\DoubleException -{ - /** - * @var string|object - */ - private $classname; /** - * @var string + * Creates a namespace/class use builder. + * + * @param Node\Name|string $name Name of the entity (namespace or class) to alias + * + * @return Builder\Use_ The created use builder */ - private $methodName; + public function use($name): Builder\Use_ + { + return new Builder\Use_($name, Use_::TYPE_NORMAL); + } /** - * @var array + * Creates a function use builder. + * + * @param Node\Name|string $name Name of the function to alias + * + * @return Builder\Use_ The created use function builder */ - private $arguments; + public function useFunction($name): Builder\Use_ + { + return new Builder\Use_($name, Use_::TYPE_FUNCTION); + } /** - * @param string $message - * @param string|object $classname - * @param string $methodName - * @param null|Argument\ArgumentsWildcard|array $arguments + * Creates a constant use builder. + * + * @param Node\Name|string $name Name of the const to alias + * + * @return Builder\Use_ The created use const builder */ - public function __construct($message, $classname, $methodName, $arguments = null) + public function useConst($name): Builder\Use_ { - parent::__construct($message); - $this->classname = $classname; - $this->methodName = $methodName; - $this->arguments = $arguments; + return new Builder\Use_($name, Use_::TYPE_CONSTANT); } - public function getClassname() + /** + * Creates a class constant builder. + * + * @param string|Identifier $name Name + * @param Node\Expr|bool|null|int|float|string|array $value Value + * + * @return Builder\ClassConst The created use const builder + */ + public function classConst($name, $value): Builder\ClassConst { - return $this->classname; + return new Builder\ClassConst($name, $value); } - public function getMethodName() + /** + * Creates an enum case builder. + * + * @param string|Identifier $name Name + * + * @return Builder\EnumCase The created use const builder + */ + public function enumCase($name): Builder\EnumCase { - return $this->methodName; + return new Builder\EnumCase($name); } - public function getArguments() + /** + * Creates node a for a literal value. + * + * @param Expr|bool|null|int|float|string|array $value $value + * + * @return Expr + */ + public function val($value): Expr { - return $this->arguments; + return BuilderHelpers::normalizeValue($value); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Doubler; - -class ReturnByReferenceException extends \Prophecy\Exception\Doubler\DoubleException -{ - private $classname; - private $methodName; /** - * @param string $message - * @param string $classname - * @param string $methodName + * Creates variable node. + * + * @param string|Expr $name Name + * + * @return Expr\Variable */ - public function __construct($message, $classname, $methodName) + public function var($name): Expr\Variable { - parent::__construct($message); - $this->classname = $classname; - $this->methodName = $methodName; + if (!\is_string($name) && !$name instanceof Expr) { + throw new \LogicException('Variable name must be string or Expr'); + } + return new Expr\Variable($name); } - public function getClassname() + /** + * Normalizes an argument list. + * + * Creates Arg nodes for all arguments and converts literal values to expressions. + * + * @param array $args List of arguments to normalize + * + * @return Arg[] + */ + public function args(array $args): array { - return $this->classname; + $normalizedArgs = []; + foreach ($args as $key => $arg) { + if (!$arg instanceof Arg) { + $arg = new Arg(BuilderHelpers::normalizeValue($arg)); + } + if (\is_string($key)) { + $arg->name = BuilderHelpers::normalizeIdentifier($key); + } + $normalizedArgs[] = $arg; + } + return $normalizedArgs; } - public function getMethodName() + /** + * Creates a function call node. + * + * @param string|Name|Expr $name Function name + * @param array $args Function arguments + * + * @return Expr\FuncCall + */ + public function funcCall($name, array $args = []): Expr\FuncCall { - return $this->methodName; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception; - -/** - * Core Prophecy exception interface. - * All Prophecy exceptions implement it. - * - * @author Konstantin Kudryashov - */ -interface Exception extends \Throwable -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception; - -class InvalidArgumentException extends \InvalidArgumentException implements \Prophecy\Exception\Exception -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; - -use Prophecy\Prophecy\ObjectProphecy; -class AggregateException extends \RuntimeException implements \Prophecy\Exception\Prediction\PredictionException -{ - private $exceptions = array(); - private $objectProphecy; - public function append(\Prophecy\Exception\Prediction\PredictionException $exception) + return new Expr\FuncCall(BuilderHelpers::normalizeNameOrExpr($name), $this->args($args)); + } + /** + * Creates a method call node. + * + * @param Expr $var Variable the method is called on + * @param string|Identifier|Expr $name Method name + * @param array $args Method arguments + * + * @return Expr\MethodCall + */ + public function methodCall(Expr $var, $name, array $args = []): Expr\MethodCall { - $message = $exception->getMessage(); - $message = \strtr($message, array("\n" => "\n ")) . "\n"; - $message = empty($this->exceptions) ? $message : "\n" . $message; - $this->message = \rtrim($this->message . $message); - $this->exceptions[] = $exception; + return new Expr\MethodCall($var, BuilderHelpers::normalizeIdentifierOrExpr($name), $this->args($args)); } /** - * @return PredictionException[] + * Creates a static method call node. + * + * @param string|Name|Expr $class Class name + * @param string|Identifier|Expr $name Method name + * @param array $args Method arguments + * + * @return Expr\StaticCall */ - public function getExceptions() + public function staticCall($class, $name, array $args = []): Expr\StaticCall { - return $this->exceptions; + return new Expr\StaticCall(BuilderHelpers::normalizeNameOrExpr($class), BuilderHelpers::normalizeIdentifierOrExpr($name), $this->args($args)); } - public function setObjectProphecy(ObjectProphecy $objectProphecy) + /** + * Creates an object creation node. + * + * @param string|Name|Expr $class Class name + * @param array $args Constructor arguments + * + * @return Expr\New_ + */ + public function new($class, array $args = []): Expr\New_ { - $this->objectProphecy = $objectProphecy; + return new Expr\New_(BuilderHelpers::normalizeNameOrExpr($class), $this->args($args)); } /** - * @return ObjectProphecy + * Creates a constant fetch node. + * + * @param string|Name $name Constant name + * + * @return Expr\ConstFetch */ - public function getObjectProphecy() + public function constFetch($name): Expr\ConstFetch { - return $this->objectProphecy; + return new Expr\ConstFetch(BuilderHelpers::normalizeName($name)); + } + /** + * Creates a property fetch node. + * + * @param Expr $var Variable holding object + * @param string|Identifier|Expr $name Property name + * + * @return Expr\PropertyFetch + */ + public function propertyFetch(Expr $var, $name): Expr\PropertyFetch + { + return new Expr\PropertyFetch($var, BuilderHelpers::normalizeIdentifierOrExpr($name)); + } + /** + * Creates a class constant fetch node. + * + * @param string|Name|Expr $class Class name + * @param string|Identifier|Expr $name Constant name + * + * @return Expr\ClassConstFetch + */ + public function classConstFetch($class, $name): Expr\ClassConstFetch + { + return new Expr\ClassConstFetch(BuilderHelpers::normalizeNameOrExpr($class), BuilderHelpers::normalizeIdentifierOrExpr($name)); + } + /** + * Creates nested Concat nodes from a list of expressions. + * + * @param Expr|string ...$exprs Expressions or literal strings + * + * @return Concat + */ + public function concat(...$exprs): Concat + { + $numExprs = count($exprs); + if ($numExprs < 2) { + throw new \LogicException('Expected at least two expressions'); + } + $lastConcat = $this->normalizeStringExpr($exprs[0]); + for ($i = 1; $i < $numExprs; $i++) { + $lastConcat = new Concat($lastConcat, $this->normalizeStringExpr($exprs[$i])); + } + return $lastConcat; + } + /** + * @param string|Expr $expr + * @return Expr + */ + private function normalizeStringExpr($expr): Expr + { + if ($expr instanceof Expr) { + return $expr; + } + if (\is_string($expr)) { + return new String_($expr); + } + throw new \LogicException('Expected string or Expr'); } } - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; +BSD 3-Clause License -use RuntimeException; -/** - * Basic failed prediction exception. - * Use it for custom prediction failures. - * - * @author Konstantin Kudryashov - */ -class FailedPredictionException extends RuntimeException implements \Prophecy\Exception\Prediction\PredictionException -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -use Prophecy\Exception\Prophecy\MethodProphecyException; -class NoCallsException extends MethodProphecyException implements \Prophecy\Exception\Prediction\PredictionException -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. -use Prophecy\Exception\Exception; -interface PredictionException extends Exception -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Copyright (c) 2014 Doctrine Project -use Prophecy\Prophecy\MethodProphecy; -class UnexpectedCallsCountException extends \Prophecy\Exception\Prediction\UnexpectedCallsException -{ - private $expectedCount; - public function __construct($message, MethodProphecy $methodProphecy, $count, array $calls) - { - parent::__construct($message, $methodProphecy, $calls); - $this->expectedCount = \intval($count); - } - public function getExpectedCount() - { - return $this->expectedCount; - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prediction; +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Exception\Prophecy\MethodProphecyException; -class UnexpectedCallsException extends MethodProphecyException implements \Prophecy\Exception\Prediction\PredictionException -{ - private $calls = array(); - public function __construct($message, MethodProphecy $methodProphecy, array $calls) - { - parent::__construct($message, $methodProphecy); - $this->calls = $calls; - } - public function getCalls() - { - return $this->calls; - } -} +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prophecy; +namespace PHPUnitPHAR\Doctrine\Instantiator; -use Prophecy\Prophecy\MethodProphecy; -class MethodProphecyException extends \Prophecy\Exception\Prophecy\ObjectProphecyException +use ArrayIterator; +use PHPUnitPHAR\Doctrine\Instantiator\Exception\ExceptionInterface; +use PHPUnitPHAR\Doctrine\Instantiator\Exception\InvalidArgumentException; +use PHPUnitPHAR\Doctrine\Instantiator\Exception\UnexpectedValueException; +use Exception; +use ReflectionClass; +use ReflectionException; +use Serializable; +use function class_exists; +use function enum_exists; +use function is_subclass_of; +use function restore_error_handler; +use function set_error_handler; +use function sprintf; +use function strlen; +use function unserialize; +use const PHP_VERSION_ID; +final class Instantiator implements InstantiatorInterface { - private $methodProphecy; - public function __construct($message, MethodProphecy $methodProphecy) - { - parent::__construct($message, $methodProphecy->getObjectProphecy()); - $this->methodProphecy = $methodProphecy; - } /** - * @return MethodProphecy + * Markers used internally by PHP to define whether {@see \unserialize} should invoke + * the method {@see \Serializable::unserialize()} when dealing with classes implementing + * the {@see \Serializable} interface. + * + * @deprecated This constant will be private in 2.0 */ - public function getMethodProphecy() + public const SERIALIZATION_FORMAT_USE_UNSERIALIZER = 'C'; + /** @deprecated This constant will be private in 2.0 */ + public const SERIALIZATION_FORMAT_AVOID_UNSERIALIZER = 'O'; + /** + * Used to instantiate specific classes, indexed by class name. + * + * @var callable[] + */ + private static $cachedInstantiators = []; + /** + * Array of objects that can directly be cloned, indexed by class name. + * + * @var object[] + */ + private static $cachedCloneables = []; + /** + * @param string $className + * @phpstan-param class-string $className + * + * @return object + * @phpstan-return T + * + * @throws ExceptionInterface + * + * @template T of object + */ + public function instantiate($className) { - return $this->methodProphecy; + if (isset(self::$cachedCloneables[$className])) { + /** @phpstan-var T */ + $cachedCloneable = self::$cachedCloneables[$className]; + return clone $cachedCloneable; + } + if (isset(self::$cachedInstantiators[$className])) { + $factory = self::$cachedInstantiators[$className]; + return $factory(); + } + return $this->buildAndCacheFromFactory($className); } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prophecy; - -use Prophecy\Prophecy\ObjectProphecy; -class ObjectProphecyException extends \RuntimeException implements \Prophecy\Exception\Prophecy\ProphecyException -{ - private $objectProphecy; - public function __construct($message, ObjectProphecy $objectProphecy) + /** + * Builds the requested object and caches it in static properties for performance + * + * @phpstan-param class-string $className + * + * @return object + * @phpstan-return T + * + * @template T of object + */ + private function buildAndCacheFromFactory(string $className) { - parent::__construct($message); - $this->objectProphecy = $objectProphecy; + $factory = self::$cachedInstantiators[$className] = $this->buildFactory($className); + $instance = $factory(); + if ($this->isSafeToClone(new ReflectionClass($instance))) { + self::$cachedCloneables[$className] = clone $instance; + } + return $instance; } /** - * @return ObjectProphecy + * Builds a callable capable of instantiating the given $className without + * invoking its constructor. + * + * @phpstan-param class-string $className + * + * @phpstan-return callable(): T + * + * @throws InvalidArgumentException + * @throws UnexpectedValueException + * @throws ReflectionException + * + * @template T of object */ - public function getObjectProphecy() + private function buildFactory(string $className): callable { - return $this->objectProphecy; + $reflectionClass = $this->getReflectionClass($className); + if ($this->isInstantiableViaReflection($reflectionClass)) { + return [$reflectionClass, 'newInstanceWithoutConstructor']; + } + $serializedString = sprintf('%s:%d:"%s":0:{}', is_subclass_of($className, Serializable::class) ? self::SERIALIZATION_FORMAT_USE_UNSERIALIZER : self::SERIALIZATION_FORMAT_AVOID_UNSERIALIZER, strlen($className), $className); + $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString); + return static function () use ($serializedString) { + return unserialize($serializedString); + }; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Exception\Prophecy; - -use Prophecy\Exception\Exception; -interface ProphecyException extends Exception -{ -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\PhpDocumentor; - -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tag\MethodTag as LegacyMethodTag; -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tags\Method; -/** - * @author Théo FIDRY - * - * @internal - */ -final class ClassAndInterfaceTagRetriever implements \Prophecy\PhpDocumentor\MethodTagRetrieverInterface -{ - private $classRetriever; - public function __construct(\Prophecy\PhpDocumentor\MethodTagRetrieverInterface $classRetriever = null) + /** + * @phpstan-param class-string $className + * + * @phpstan-return ReflectionClass + * + * @throws InvalidArgumentException + * @throws ReflectionException + * + * @template T of object + */ + private function getReflectionClass(string $className): ReflectionClass { - if (null !== $classRetriever) { - $this->classRetriever = $classRetriever; - return; + if (!class_exists($className)) { + throw InvalidArgumentException::fromNonExistingClass($className); + } + if (PHP_VERSION_ID >= 80100 && enum_exists($className, \false)) { + throw InvalidArgumentException::fromEnum($className); + } + $reflection = new ReflectionClass($className); + if ($reflection->isAbstract()) { + throw InvalidArgumentException::fromAbstractClass($reflection); } - $this->classRetriever = \class_exists('PHPUnit\\phpDocumentor\\Reflection\\DocBlockFactory') && \class_exists('PHPUnit\\phpDocumentor\\Reflection\\Types\\ContextFactory') ? new \Prophecy\PhpDocumentor\ClassTagRetriever() : new \Prophecy\PhpDocumentor\LegacyClassTagRetriever(); + return $reflection; } /** - * @param \ReflectionClass $reflectionClass + * @phpstan-param ReflectionClass $reflectionClass + * + * @throws UnexpectedValueException * - * @return LegacyMethodTag[]|Method[] + * @template T of object */ - public function getTagList(\ReflectionClass $reflectionClass) + private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, string $serializedString): void { - return \array_merge($this->classRetriever->getTagList($reflectionClass), $this->getInterfacesTagList($reflectionClass)); + set_error_handler(static function (int $code, string $message, string $file, int $line) use ($reflectionClass, &$error): bool { + $error = UnexpectedValueException::fromUncleanUnSerialization($reflectionClass, $message, $code, $file, $line); + return \true; + }); + try { + $this->attemptInstantiationViaUnSerialization($reflectionClass, $serializedString); + } finally { + restore_error_handler(); + } + if ($error) { + throw $error; + } } /** - * @param \ReflectionClass $reflectionClass + * @phpstan-param ReflectionClass $reflectionClass + * + * @throws UnexpectedValueException * - * @return LegacyMethodTag[]|Method[] + * @template T of object */ - private function getInterfacesTagList(\ReflectionClass $reflectionClass) + private function attemptInstantiationViaUnSerialization(ReflectionClass $reflectionClass, string $serializedString): void { - $interfaces = $reflectionClass->getInterfaces(); - $tagList = array(); - foreach ($interfaces as $interface) { - $tagList = \array_merge($tagList, $this->classRetriever->getTagList($interface)); + try { + unserialize($serializedString); + } catch (Exception $exception) { + throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception); } - return $tagList; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\PhpDocumentor; - -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tags\Method; -use PHPUnit\phpDocumentor\Reflection\DocBlockFactory; -use PHPUnit\phpDocumentor\Reflection\Types\ContextFactory; -/** - * @author Théo FIDRY - * - * @internal - */ -final class ClassTagRetriever implements \Prophecy\PhpDocumentor\MethodTagRetrieverInterface -{ - private $docBlockFactory; - private $contextFactory; - public function __construct() + /** + * @phpstan-param ReflectionClass $reflectionClass + * + * @template T of object + */ + private function isInstantiableViaReflection(ReflectionClass $reflectionClass): bool { - $this->docBlockFactory = DocBlockFactory::createInstance(); - $this->contextFactory = new ContextFactory(); + return !($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal()); } /** - * @param \ReflectionClass $reflectionClass + * Verifies whether the given class is to be considered internal + * + * @phpstan-param ReflectionClass $reflectionClass * - * @return Method[] + * @template T of object */ - public function getTagList(\ReflectionClass $reflectionClass) + private function hasInternalAncestors(ReflectionClass $reflectionClass): bool { - try { - $phpdoc = $this->docBlockFactory->create($reflectionClass, $this->contextFactory->createFromReflector($reflectionClass)); - $methods = array(); - foreach ($phpdoc->getTagsByName('method') as $tag) { - if ($tag instanceof Method) { - $methods[] = $tag; - } + do { + if ($reflectionClass->isInternal()) { + return \true; } - return $methods; - } catch (\InvalidArgumentException $e) { - return array(); - } + $reflectionClass = $reflectionClass->getParentClass(); + } while ($reflectionClass); + return \false; + } + /** + * Checks if a class is cloneable + * + * Classes implementing `__clone` cannot be safely cloned, as that may cause side-effects. + * + * @phpstan-param ReflectionClass $reflectionClass + * + * @template T of object + */ + private function isSafeToClone(ReflectionClass $reflectionClass): bool + { + return $reflectionClass->isCloneable() && !$reflectionClass->hasMethod('__clone') && !$reflectionClass->isSubclassOf(ArrayIterator::class); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\PhpDocumentor; +namespace PHPUnitPHAR\Doctrine\Instantiator; -use PHPUnit\phpDocumentor\Reflection\DocBlock; -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tag\MethodTag as LegacyMethodTag; +use PHPUnitPHAR\Doctrine\Instantiator\Exception\ExceptionInterface; /** - * @author Théo FIDRY - * - * @internal + * Instantiator provides utility methods to build objects without invoking their constructors */ -final class LegacyClassTagRetriever implements \Prophecy\PhpDocumentor\MethodTagRetrieverInterface +interface InstantiatorInterface { /** - * @param \ReflectionClass $reflectionClass + * @param string $className + * @phpstan-param class-string $className * - * @return LegacyMethodTag[] + * @return object + * @phpstan-return T + * + * @throws ExceptionInterface + * + * @template T of object */ - public function getTagList(\ReflectionClass $reflectionClass) - { - $phpdoc = new DocBlock($reflectionClass->getDocComment()); - return $phpdoc->getTagsByName('method'); - } + public function instantiate($className); } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\PhpDocumentor; +namespace PHPUnitPHAR\Doctrine\Instantiator\Exception; -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tag\MethodTag as LegacyMethodTag; -use PHPUnit\phpDocumentor\Reflection\DocBlock\Tags\Method; +use Throwable; /** - * @author Théo FIDRY - * - * @internal + * Base exception marker interface for the instantiator component */ -interface MethodTagRetrieverInterface +interface ExceptionInterface extends Throwable { - /** - * @param \ReflectionClass $reflectionClass - * - * @return LegacyMethodTag[]|Method[] - */ - public function getTagList(\ReflectionClass $reflectionClass); } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prediction; +namespace PHPUnitPHAR\Doctrine\Instantiator\Exception; -use Prophecy\Call\Call; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Argument\ArgumentsWildcard; -use Prophecy\Argument\Token\AnyValuesToken; -use Prophecy\Util\StringUtil; -use Prophecy\Exception\Prediction\NoCallsException; +use Exception; +use ReflectionClass; +use UnexpectedValueException as BaseUnexpectedValueException; +use function sprintf; /** - * Call prediction. - * - * @author Konstantin Kudryashov + * Exception for given parameters causing invalid/unexpected state on instantiation */ -class CallPrediction implements \Prophecy\Prediction\PredictionInterface +class UnexpectedValueException extends BaseUnexpectedValueException implements ExceptionInterface { - private $util; /** - * Initializes prediction. + * @phpstan-param ReflectionClass $reflectionClass * - * @param StringUtil $util + * @template T of object */ - public function __construct(StringUtil $util = null) + public static function fromSerializationTriggeredException(ReflectionClass $reflectionClass, Exception $exception): self { - $this->util = $util ?: new StringUtil(); + return new self(sprintf('An exception was raised while trying to instantiate an instance of "%s" via un-serialization', $reflectionClass->getName()), 0, $exception); } /** - * Tests that there was at least one call. - * - * @param Call[] $calls - * @param ObjectProphecy $object - * @param MethodProphecy $method + * @phpstan-param ReflectionClass $reflectionClass * - * @throws \Prophecy\Exception\Prediction\NoCallsException + * @template T of object */ - public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) + public static function fromUncleanUnSerialization(ReflectionClass $reflectionClass, string $errorString, int $errorCode, string $errorFile, int $errorLine): self { - if (\count($calls)) { - return; - } - $methodCalls = $object->findProphecyMethodCalls($method->getMethodName(), new ArgumentsWildcard(array(new AnyValuesToken()))); - if (\count($methodCalls)) { - throw new NoCallsException(\sprintf("No calls have been made that match:\n" . " %s->%s(%s)\n" . "but expected at least one.\n" . "Recorded `%s(...)` calls:\n%s", \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), $method->getMethodName(), $this->util->stringifyCalls($methodCalls)), $method); - } - throw new NoCallsException(\sprintf("No calls have been made that match:\n" . " %s->%s(%s)\n" . "but expected at least one.", \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard()), $method); + return new self(sprintf('Could not produce an instance of "%s" via un-serialization, since an error was triggered ' . 'in file "%s" at line "%d"', $reflectionClass->getName(), $errorFile, $errorLine), 0, new Exception($errorString, $errorCode)); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prediction; +namespace PHPUnitPHAR\Doctrine\Instantiator\Exception; -use Prophecy\Call\Call; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Argument\ArgumentsWildcard; -use Prophecy\Argument\Token\AnyValuesToken; -use Prophecy\Util\StringUtil; -use Prophecy\Exception\Prediction\UnexpectedCallsCountException; +use InvalidArgumentException as BaseInvalidArgumentException; +use ReflectionClass; +use function interface_exists; +use function sprintf; +use function trait_exists; /** - * Prediction interface. - * Predictions are logical test blocks, tied to `should...` keyword. - * - * @author Konstantin Kudryashov + * Exception for invalid arguments provided to the instantiator */ -class CallTimesPrediction implements \Prophecy\Prediction\PredictionInterface +class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface { - private $times; - private $util; - /** - * Initializes prediction. - * - * @param int $times - * @param StringUtil $util - */ - public function __construct($times, StringUtil $util = null) + public static function fromNonExistingClass(string $className): self { - $this->times = \intval($times); - $this->util = $util ?: new StringUtil(); + if (interface_exists($className)) { + return new self(sprintf('The provided type "%s" is an interface, and cannot be instantiated', $className)); + } + if (trait_exists($className)) { + return new self(sprintf('The provided type "%s" is a trait, and cannot be instantiated', $className)); + } + return new self(sprintf('The provided class "%s" does not exist', $className)); } /** - * Tests that there was exact amount of calls made. - * - * @param Call[] $calls - * @param ObjectProphecy $object - * @param MethodProphecy $method + * @phpstan-param ReflectionClass $reflectionClass * - * @throws \Prophecy\Exception\Prediction\UnexpectedCallsCountException + * @template T of object */ - public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) + public static function fromAbstractClass(ReflectionClass $reflectionClass): self { - if ($this->times == \count($calls)) { - return; - } - $methodCalls = $object->findProphecyMethodCalls($method->getMethodName(), new ArgumentsWildcard(array(new AnyValuesToken()))); - if (\count($calls)) { - $message = \sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but %d were made:\n%s", $this->times, \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), \count($calls), $this->util->stringifyCalls($calls)); - } elseif (\count($methodCalls)) { - $message = \sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but none were made.\n" . "Recorded `%s(...)` calls:\n%s", $this->times, \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), $method->getMethodName(), $this->util->stringifyCalls($methodCalls)); - } else { - $message = \sprintf("Expected exactly %d calls that match:\n" . " %s->%s(%s)\n" . "but none were made.", $this->times, \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard()); - } - throw new UnexpectedCallsCountException($message, $method, $this->times, $calls); + return new self(sprintf('The provided class "%s" is abstract, and cannot be instantiated', $reflectionClass->getName())); + } + public static function fromEnum(string $className): self + { + return new self(sprintf('The provided class "%s" is an enum, and cannot be instantiated', $className)); } } - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prediction; + + + + + phpunit + phpunit + 9.6.21 + The PHP Unit Testing framework. + + + BSD-3-Clause + + + pkg:composer/phpunit/phpunit@9.6.21 + + + doctrine + deprecations + 1.1.3 + A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages. + + + MIT + + + pkg:composer/doctrine/deprecations@1.1.3 + + + doctrine + instantiator + 1.5.0 + A small, lightweight utility to instantiate objects in PHP without invoking their constructors + + + MIT + + + pkg:composer/doctrine/instantiator@1.5.0 + + + myclabs + deep-copy + 1.12.0 + Create deep copies (clones) of your objects + + + MIT + + + pkg:composer/myclabs/deep-copy@1.12.0 + + + nikic + php-parser + v4.19.1 + A PHP parser written in PHP + + + BSD-3-Clause + + + pkg:composer/nikic/php-parser@v4.19.1 + + + phar-io + manifest + 2.0.4 + Component for reading phar.io manifest information from a PHP Archive (PHAR) + + + BSD-3-Clause + + + pkg:composer/phar-io/manifest@2.0.4 + + + phar-io + version + 3.2.1 + Library for handling version information and constraints + + + BSD-3-Clause + + + pkg:composer/phar-io/version@3.2.1 + + + phpdocumentor + reflection-common + 2.2.0 + Common reflection classes used by phpdocumentor to reflect the code structure + + + MIT + + + pkg:composer/phpdocumentor/reflection-common@2.2.0 + + + phpdocumentor + reflection-docblock + 5.3.0 + With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock. + + + MIT + + + pkg:composer/phpdocumentor/reflection-docblock@5.3.0 + + + phpdocumentor + type-resolver + 1.8.2 + A PSR-5 based resolver of Class names, Types and Structural Element Names + + + MIT + + + pkg:composer/phpdocumentor/type-resolver@1.8.2 + + + phpspec + prophecy + v1.19.0 + Highly opinionated mocking framework for PHP 5.3+ + + + MIT + + + pkg:composer/phpspec/prophecy@v1.19.0 + + + phpstan + phpdoc-parser + 1.30.1 + PHPDoc parser with support for nullable, intersection and generic types + + + MIT + + + pkg:composer/phpstan/phpdoc-parser@1.30.1 + + + phpunit + php-code-coverage + 9.2.32 + Library that provides collection, processing, and rendering functionality for PHP code coverage information. + + + BSD-3-Clause + + + pkg:composer/phpunit/php-code-coverage@9.2.32 + + + phpunit + php-file-iterator + 3.0.6 + FilterIterator implementation that filters files based on a list of suffixes. + + + BSD-3-Clause + + + pkg:composer/phpunit/php-file-iterator@3.0.6 + + + phpunit + php-invoker + 3.1.1 + Invoke callables with a timeout + + + BSD-3-Clause + + + pkg:composer/phpunit/php-invoker@3.1.1 + + + phpunit + php-text-template + 2.0.4 + Simple template engine. + + + BSD-3-Clause + + + pkg:composer/phpunit/php-text-template@2.0.4 + + + phpunit + php-timer + 5.0.3 + Utility class for timing + + + BSD-3-Clause + + + pkg:composer/phpunit/php-timer@5.0.3 + + + sebastian + cli-parser + 1.0.2 + Library for parsing CLI options + + + BSD-3-Clause + + + pkg:composer/sebastian/cli-parser@1.0.2 + + + sebastian + code-unit + 1.0.8 + Collection of value objects that represent the PHP code units + + + BSD-3-Clause + + + pkg:composer/sebastian/code-unit@1.0.8 + + + sebastian + code-unit-reverse-lookup + 2.0.3 + Looks up which function or method a line of code belongs to + + + BSD-3-Clause + + + pkg:composer/sebastian/code-unit-reverse-lookup@2.0.3 + + + sebastian + comparator + 4.0.8 + Provides the functionality to compare PHP values for equality + + + BSD-3-Clause + + + pkg:composer/sebastian/comparator@4.0.8 + + + sebastian + complexity + 2.0.3 + Library for calculating the complexity of PHP code units + + + BSD-3-Clause + + + pkg:composer/sebastian/complexity@2.0.3 + + + sebastian + diff + 4.0.6 + Diff implementation + + + BSD-3-Clause + + + pkg:composer/sebastian/diff@4.0.6 + + + sebastian + environment + 5.1.5 + Provides functionality to handle HHVM/PHP environments + + + BSD-3-Clause + + + pkg:composer/sebastian/environment@5.1.5 + + + sebastian + exporter + 4.0.6 + Provides the functionality to export PHP variables for visualization + + + BSD-3-Clause + + + pkg:composer/sebastian/exporter@4.0.6 + + + sebastian + global-state + 5.0.7 + Snapshotting of global state + + + BSD-3-Clause + + + pkg:composer/sebastian/global-state@5.0.7 + + + sebastian + lines-of-code + 1.0.4 + Library for counting the lines of code in PHP source code + + + BSD-3-Clause + + + pkg:composer/sebastian/lines-of-code@1.0.4 + + + sebastian + object-enumerator + 4.0.4 + Traverses array structures and object graphs to enumerate all referenced objects + + + BSD-3-Clause + + + pkg:composer/sebastian/object-enumerator@4.0.4 + + + sebastian + object-reflector + 2.0.4 + Allows reflection of object attributes, including inherited and non-public ones + + + BSD-3-Clause + + + pkg:composer/sebastian/object-reflector@2.0.4 + + + sebastian + recursion-context + 4.0.5 + Provides functionality to recursively process PHP variables + + + BSD-3-Clause + + + pkg:composer/sebastian/recursion-context@4.0.5 + + + sebastian + resource-operations + 3.0.4 + Provides a list of PHP built-in functions that operate on resources + + + BSD-3-Clause + + + pkg:composer/sebastian/resource-operations@3.0.4 + + + sebastian + type + 3.2.1 + Collection of value objects that represent the types of the PHP type system + + + BSD-3-Clause + + + pkg:composer/sebastian/type@3.2.1 + + + sebastian + version + 3.0.2 + Library that helps with managing the version number of Git-hosted PHP projects + + + BSD-3-Clause + + + pkg:composer/sebastian/version@3.0.2 + + + theseer + tokenizer + 1.2.3 + A small library for converting tokenized PHP source code into XML and potentially other formats + + + BSD-3-Clause + + + pkg:composer/theseer/tokenizer@1.2.3 + + + webmozart + assert + 1.11.0 + Assertions to validate method input/output with nice error messages. + + + MIT + + + pkg:composer/webmozart/assert@1.11.0 + + + +Phar.io - Manifest -use Prophecy\Call\Call; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Exception\InvalidArgumentException; -use Closure; -use ReflectionFunction; -/** - * Callback prediction. - * - * @author Konstantin Kudryashov - */ -class CallbackPrediction implements \Prophecy\Prediction\PredictionInterface -{ - private $callback; - /** - * Initializes callback prediction. - * - * @param callable $callback Custom callback - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function __construct($callback) - { - if (!\is_callable($callback)) { - throw new InvalidArgumentException(\sprintf('Callable expected as an argument to CallbackPrediction, but got %s.', \gettype($callback))); - } - $this->callback = $callback; - } - /** - * Executes preset callback. - * - * @param Call[] $calls - * @param ObjectProphecy $object - * @param MethodProphecy $method - */ - public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) - { - $callback = $this->callback; - if ($callback instanceof Closure && \method_exists('Closure', 'bind') && (new ReflectionFunction($callback))->getClosureThis() !== null) { - $callback = Closure::bind($callback, $object); - } - \call_user_func($callback, $calls, $object, $method); - } -} -, Sebastian Heuer , Sebastian Bergmann , and contributors +All rights reserved. -/* - * This file is part of the Prophecy. - * (c) Konstantin Kudryashov - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prediction; +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: -use Prophecy\Call\Call; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Util\StringUtil; -use Prophecy\Exception\Prediction\UnexpectedCallsException; -/** - * No calls prediction. - * - * @author Konstantin Kudryashov - */ -class NoCallsPrediction implements \Prophecy\Prediction\PredictionInterface -{ - private $util; - /** - * Initializes prediction. - * - * @param null|StringUtil $util - */ - public function __construct(StringUtil $util = null) - { - $this->util = $util ?: new StringUtil(); - } - /** - * Tests that there were no calls made. - * - * @param Call[] $calls - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @throws \Prophecy\Exception\Prediction\UnexpectedCallsException - */ - public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) - { - if (!\count($calls)) { - return; - } - $verb = \count($calls) === 1 ? 'was' : 'were'; - throw new UnexpectedCallsException(\sprintf("No calls expected that match:\n" . " %s->%s(%s)\n" . "but %d %s made:\n%s", \get_class($object->reveal()), $method->getMethodName(), $method->getArgumentsWildcard(), \count($calls), $verb, $this->util->stringifyCalls($calls)), $method, $calls); - } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prediction; +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. -use Prophecy\Call\Call; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -/** - * Prediction interface. - * Predictions are logical test blocks, tied to `should...` keyword. - * - * @author Konstantin Kudryashov - */ -interface PredictionInterface -{ - /** - * Tests that double fulfilled prediction. - * - * @param Call[] $calls - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @throws object - * @return void - */ - public function check(array $calls, ObjectProphecy $object, MethodProphecy $method); -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Promise; +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, +OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Exception\InvalidArgumentException; -use Closure; -use ReflectionFunction; -/** - * Callback promise. - * - * @author Konstantin Kudryashov - */ -class CallbackPromise implements \Prophecy\Promise\PromiseInterface -{ - private $callback; - /** - * Initializes callback promise. - * - * @param callable $callback Custom callback - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function __construct($callback) - { - if (!\is_callable($callback)) { - throw new InvalidArgumentException(\sprintf('Callable expected as an argument to CallbackPromise, but got %s.', \gettype($callback))); - } - $this->callback = $callback; - } - /** - * Evaluates promise callback. - * - * @param array $args - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @return mixed - */ - public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) - { - $callback = $this->callback; - if ($callback instanceof Closure && \method_exists('Closure', 'bind') && (new ReflectionFunction($callback))->getClosureThis() !== null) { - $callback = Closure::bind($callback, $object); - } - return \call_user_func($callback, $args, $object, $method); - } -} - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Promise; - -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -/** - * Promise interface. - * Promises are logical blocks, tied to `will...` keyword. + * This file is part of PharIo\Manifest. * - * @author Konstantin Kudryashov - */ -interface PromiseInterface -{ - /** - * Evaluates promise. - * - * @param array $args - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @return mixed - */ - public function execute(array $args, ObjectProphecy $object, MethodProphecy $method); -} - - * Marcello Duarte + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. - */ -namespace Prophecy\Promise; - -use Prophecy\Exception\InvalidArgumentException; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -/** - * Return argument promise. - * - * @author Konstantin Kudryashov - */ -class ReturnArgumentPromise implements \Prophecy\Promise\PromiseInterface -{ - /** - * @var int - */ - private $index; - /** - * Initializes callback promise. - * - * @param int $index The zero-indexed number of the argument to return - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function __construct($index = 0) - { - if (!\is_int($index) || $index < 0) { - throw new InvalidArgumentException(\sprintf('Zero-based index expected as argument to ReturnArgumentPromise, but got %s.', $index)); - } - $this->index = $index; - } - /** - * Returns nth argument if has one, null otherwise. - * - * @param array $args - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @return null|mixed - */ - public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) - { - return \count($args) > $this->index ? $args[$this->index] : null; - } -} - - * Marcello Duarte * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. */ -namespace Prophecy\Promise; +namespace PHPUnitPHAR\PharIo\Manifest; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -/** - * Return promise. - * - * @author Konstantin Kudryashov - */ -class ReturnPromise implements \Prophecy\Promise\PromiseInterface +use const FILTER_VALIDATE_EMAIL; +use function filter_var; +class Email { - private $returnValues = array(); - /** - * Initializes promise. - * - * @param array $returnValues Array of values - */ - public function __construct(array $returnValues) - { - $this->returnValues = $returnValues; - } - /** - * Returns saved values one by one until last one, then continuously returns last value. - * - * @param array $args - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @return mixed - */ - public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) + /** @var string */ + private $email; + public function __construct(string $email) { - $value = \array_shift($this->returnValues); - if (!\count($this->returnValues)) { - $this->returnValues[] = $value; - } - return $value; + $this->ensureEmailIsValid($email); + $this->email = $email; } -} - - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Promise; - -use PHPUnit\Doctrine\Instantiator\Instantiator; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Exception\InvalidArgumentException; -use ReflectionClass; -/** - * Throw promise. - * - * @author Konstantin Kudryashov - */ -class ThrowPromise implements \Prophecy\Promise\PromiseInterface -{ - private $exception; - /** - * @var \Doctrine\Instantiator\Instantiator - */ - private $instantiator; - /** - * Initializes promise. - * - * @param string|\Exception|\Throwable $exception Exception class name or instance - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function __construct($exception) + public function asString(): string { - if (\is_string($exception)) { - if (!\class_exists($exception) && !\interface_exists($exception) || !$this->isAValidThrowable($exception)) { - throw new InvalidArgumentException(\sprintf('Exception / Throwable class or instance expected as argument to ThrowPromise, but got %s.', $exception)); - } - } elseif (!$exception instanceof \Exception && !$exception instanceof \Throwable) { - throw new InvalidArgumentException(\sprintf('Exception / Throwable class or instance expected as argument to ThrowPromise, but got %s.', \is_object($exception) ? \get_class($exception) : \gettype($exception))); - } - $this->exception = $exception; + return $this->email; } - /** - * Throws predefined exception. - * - * @param array $args - * @param ObjectProphecy $object - * @param MethodProphecy $method - * - * @throws object - */ - public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) + private function ensureEmailIsValid(string $url): void { - if (\is_string($this->exception)) { - $classname = $this->exception; - $reflection = new ReflectionClass($classname); - $constructor = $reflection->getConstructor(); - if ($constructor->isPublic() && 0 == $constructor->getNumberOfRequiredParameters()) { - throw $reflection->newInstance(); - } - if (!$this->instantiator) { - $this->instantiator = new Instantiator(); - } - throw $this->instantiator->instantiate($classname); + if (filter_var($url, FILTER_VALIDATE_EMAIL) === \false) { + throw new InvalidEmailException(); } - throw $this->exception; - } - /** - * @param string $exception - * - * @return bool - */ - private function isAValidThrowable($exception) - { - return \is_a($exception, 'Exception', \true) || \is_a($exception, 'Throwable', \true); } } - * Marcello Duarte - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace Prophecy\Prophecy; - -use Prophecy\Argument; -use Prophecy\Prophet; -use Prophecy\Promise; -use Prophecy\Prediction; -use Prophecy\Exception\Doubler\MethodNotFoundException; -use Prophecy\Exception\InvalidArgumentException; -use Prophecy\Exception\Prophecy\MethodProphecyException; -use ReflectionNamedType; -use ReflectionType; -use ReflectionUnionType; -/** - * Method prophecy. - * - * @author Konstantin Kudryashov - */ -class MethodProphecy -{ - private $objectProphecy; - private $methodName; - private $argumentsWildcard; - private $promise; - private $prediction; - private $checkedPredictions = array(); - private $bound = \false; - private $voidReturnType = \false; - /** - * Initializes method prophecy. - * - * @param ObjectProphecy $objectProphecy - * @param string $methodName - * @param null|Argument\ArgumentsWildcard|array $arguments - * - * @throws \Prophecy\Exception\Doubler\MethodNotFoundException If method not found - */ - public function __construct(\Prophecy\Prophecy\ObjectProphecy $objectProphecy, $methodName, $arguments = null) - { - $double = $objectProphecy->reveal(); - if (!\method_exists($double, $methodName)) { - throw new MethodNotFoundException(\sprintf('Method `%s::%s()` is not defined.', \get_class($double), $methodName), \get_class($double), $methodName, $arguments); - } - $this->objectProphecy = $objectProphecy; - $this->methodName = $methodName; - $reflectedMethod = new \ReflectionMethod($double, $methodName); - if ($reflectedMethod->isFinal()) { - throw new MethodProphecyException(\sprintf("Can not add prophecy for a method `%s::%s()`\n" . "as it is a final method.", \get_class($double), $methodName), $this); - } - if (null !== $arguments) { - $this->withArguments($arguments); - } - $hasTentativeReturnType = \method_exists($reflectedMethod, 'hasTentativeReturnType') && $reflectedMethod->hasTentativeReturnType(); - if (\true === $reflectedMethod->hasReturnType() || $hasTentativeReturnType) { - if ($hasTentativeReturnType) { - $reflectionType = $reflectedMethod->getTentativeReturnType(); - } else { - $reflectionType = $reflectedMethod->getReturnType(); - } - if ($reflectionType instanceof ReflectionNamedType) { - $types = [$reflectionType]; - } elseif ($reflectionType instanceof ReflectionUnionType) { - $types = $reflectionType->getTypes(); - } - $types = \array_map(function (ReflectionType $type) { - return $type->getName(); - }, $types); - \usort($types, static function (string $type1, string $type2) { - // null is lowest priority - if ($type2 == 'null') { - return -1; - } elseif ($type1 == 'null') { - return 1; - } - // objects are higher priority than scalars - $isObject = static function ($type) { - return \class_exists($type) || \interface_exists($type); - }; - if ($isObject($type1) && !$isObject($type2)) { - return -1; - } elseif (!$isObject($type1) && $isObject($type2)) { - return 1; - } - // don't sort both-scalars or both-objects - return 0; - }); - $defaultType = $types[0]; - if ('void' === $defaultType) { - $this->voidReturnType = \true; - } - $this->will(function () use($defaultType) { - switch ($defaultType) { - case 'void': - return; - case 'string': - return ''; - case 'float': - return 0.0; - case 'int': - return 0; - case 'bool': - return \false; - case 'array': - return array(); - case 'callable': - case 'Closure': - return function () { - }; - case 'Traversable': - case 'Generator': - return (function () { - yield; - })(); - default: - $prophet = new Prophet(); - return $prophet->prophesize($defaultType)->reveal(); - } - }); - } - } - /** - * Sets argument wildcard. - * - * @param array|Argument\ArgumentsWildcard $arguments - * - * @return $this - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function withArguments($arguments) + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\VersionConstraint; +class PhpVersionRequirement implements Requirement +{ + /** @var VersionConstraint */ + private $versionConstraint; + public function __construct(VersionConstraint $versionConstraint) { - if (\is_array($arguments)) { - $arguments = new Argument\ArgumentsWildcard($arguments); - } - if (!$arguments instanceof Argument\ArgumentsWildcard) { - throw new InvalidArgumentException(\sprintf("Either an array or an instance of ArgumentsWildcard expected as\n" . 'a `MethodProphecy::withArguments()` argument, but got %s.', \gettype($arguments))); - } - $this->argumentsWildcard = $arguments; - return $this; + $this->versionConstraint = $versionConstraint; } - /** - * Sets custom promise to the prophecy. - * - * @param callable|Promise\PromiseInterface $promise - * - * @return $this - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function will($promise) + public function getVersionConstraint(): VersionConstraint { - if (\is_callable($promise)) { - $promise = new Promise\CallbackPromise($promise); - } - if (!$promise instanceof Promise\PromiseInterface) { - throw new InvalidArgumentException(\sprintf('Expected callable or instance of PromiseInterface, but got %s.', \gettype($promise))); - } - $this->bindToObjectProphecy(); - $this->promise = $promise; - return $this; + return $this->versionConstraint; } - /** - * Sets return promise to the prophecy. - * - * @see \Prophecy\Promise\ReturnPromise - * - * @return $this - */ - public function willReturn() +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class Application extends Type +{ + public function isApplication(): bool { - if ($this->voidReturnType) { - throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type, and so cannot return anything", $this); - } - return $this->will(new Promise\ReturnPromise(\func_get_args())); + return \true; } - /** - * @param array $items - * @param mixed $return - * - * @return $this - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function willYield($items, $return = null) +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use Iterator; +use function count; +/** @template-implements Iterator */ +class RequirementCollectionIterator implements Iterator +{ + /** @var Requirement[] */ + private $requirements; + /** @var int */ + private $position = 0; + public function __construct(RequirementCollection $requirements) { - if ($this->voidReturnType) { - throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type, and so cannot yield anything", $this); - } - if (!\is_array($items)) { - throw new InvalidArgumentException(\sprintf('Expected array, but got %s.', \gettype($items))); - } - $generator = function () use($items, $return) { - yield from $items; - return $return; - }; - return $this->will($generator); + $this->requirements = $requirements->getRequirements(); } - /** - * Sets return argument promise to the prophecy. - * - * @param int $index The zero-indexed number of the argument to return - * - * @see \Prophecy\Promise\ReturnArgumentPromise - * - * @return $this - */ - public function willReturnArgument($index = 0) + public function rewind(): void { - if ($this->voidReturnType) { - throw new MethodProphecyException("The method \"{$this->methodName}\" has a void return type", $this); - } - return $this->will(new Promise\ReturnArgumentPromise($index)); + $this->position = 0; } - /** - * Sets throw promise to the prophecy. - * - * @see \Prophecy\Promise\ThrowPromise - * - * @param string|\Exception $exception Exception class or instance - * - * @return $this - */ - public function willThrow($exception) + public function valid(): bool { - return $this->will(new Promise\ThrowPromise($exception)); + return $this->position < count($this->requirements); } - /** - * Sets custom prediction to the prophecy. - * - * @param callable|Prediction\PredictionInterface $prediction - * - * @return $this - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function should($prediction) + public function key(): int { - if (\is_callable($prediction)) { - $prediction = new Prediction\CallbackPrediction($prediction); - } - if (!$prediction instanceof Prediction\PredictionInterface) { - throw new InvalidArgumentException(\sprintf('Expected callable or instance of PredictionInterface, but got %s.', \gettype($prediction))); - } - $this->bindToObjectProphecy(); - $this->prediction = $prediction; - return $this; + return $this->position; } - /** - * Sets call prediction to the prophecy. - * - * @see \Prophecy\Prediction\CallPrediction - * - * @return $this - */ - public function shouldBeCalled() + public function current(): Requirement { - return $this->should(new Prediction\CallPrediction()); + return $this->requirements[$this->position]; } - /** - * Sets no calls prediction to the prophecy. - * - * @see \Prophecy\Prediction\NoCallsPrediction - * - * @return $this - */ - public function shouldNotBeCalled() + public function next(): void { - return $this->should(new Prediction\NoCallsPrediction()); + $this->position++; } - /** - * Sets call times prediction to the prophecy. - * - * @see \Prophecy\Prediction\CallTimesPrediction - * - * @param $count - * - * @return $this - */ - public function shouldBeCalledTimes($count) +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use Iterator; +use function count; +/** @template-implements Iterator */ +class AuthorCollectionIterator implements Iterator +{ + /** @var Author[] */ + private $authors; + /** @var int */ + private $position = 0; + public function __construct(AuthorCollection $authors) { - return $this->should(new Prediction\CallTimesPrediction($count)); + $this->authors = $authors->getAuthors(); } - /** - * Sets call times prediction to the prophecy. - * - * @see \Prophecy\Prediction\CallTimesPrediction - * - * @return $this - */ - public function shouldBeCalledOnce() + public function rewind(): void { - return $this->shouldBeCalledTimes(1); + $this->position = 0; } - /** - * Checks provided prediction immediately. - * - * @param callable|Prediction\PredictionInterface $prediction - * - * @return $this - * - * @throws \Prophecy\Exception\InvalidArgumentException - */ - public function shouldHave($prediction) + public function valid(): bool { - if (\is_callable($prediction)) { - $prediction = new Prediction\CallbackPrediction($prediction); - } - if (!$prediction instanceof Prediction\PredictionInterface) { - throw new InvalidArgumentException(\sprintf('Expected callable or instance of PredictionInterface, but got %s.', \gettype($prediction))); - } - if (null === $this->promise && !$this->voidReturnType) { - $this->willReturn(); - } - $calls = $this->getObjectProphecy()->findProphecyMethodCalls($this->getMethodName(), $this->getArgumentsWildcard()); - try { - $prediction->check($calls, $this->getObjectProphecy(), $this); - $this->checkedPredictions[] = $prediction; - } catch (\Exception $e) { - $this->checkedPredictions[] = $prediction; - throw $e; - } - return $this; + return $this->position < count($this->authors); } - /** - * Checks call prediction. - * - * @see \Prophecy\Prediction\CallPrediction - * - * @return $this - */ - public function shouldHaveBeenCalled() + public function key(): int { - return $this->shouldHave(new Prediction\CallPrediction()); + return $this->position; } - /** - * Checks no calls prediction. - * - * @see \Prophecy\Prediction\NoCallsPrediction - * - * @return $this - */ - public function shouldNotHaveBeenCalled() + public function current(): Author { - return $this->shouldHave(new Prediction\NoCallsPrediction()); + return $this->authors[$this->position]; } - /** - * Checks no calls prediction. - * - * @see \Prophecy\Prediction\NoCallsPrediction - * @deprecated - * - * @return $this - */ - public function shouldNotBeenCalled() + public function next(): void { - return $this->shouldNotHaveBeenCalled(); + $this->position++; } - /** - * Checks call times prediction. - * - * @see \Prophecy\Prediction\CallTimesPrediction - * - * @param int $count - * - * @return $this - */ - public function shouldHaveBeenCalledTimes($count) +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\VersionConstraint; +abstract class Type +{ + public static function application(): Application { - return $this->shouldHave(new Prediction\CallTimesPrediction($count)); + return new Application(); } - /** - * Checks call times prediction. - * - * @see \Prophecy\Prediction\CallTimesPrediction - * - * @return $this - */ - public function shouldHaveBeenCalledOnce() + public static function library(): Library { - return $this->shouldHaveBeenCalledTimes(1); + return new Library(); } - /** - * Checks currently registered [with should(...)] prediction. - */ - public function checkPrediction() + public static function extension(ApplicationName $application, VersionConstraint $versionConstraint): Extension { - if (null === $this->prediction) { - return; - } - $this->shouldHave($this->prediction); + return new Extension($application, $versionConstraint); } - /** - * Returns currently registered promise. - * - * @return null|Promise\PromiseInterface - */ - public function getPromise() + /** @psalm-assert-if-true Application $this */ + public function isApplication(): bool { - return $this->promise; + return \false; } - /** - * Returns currently registered prediction. - * - * @return null|Prediction\PredictionInterface - */ - public function getPrediction() + /** @psalm-assert-if-true Library $this */ + public function isLibrary(): bool { - return $this->prediction; + return \false; } - /** - * Returns predictions that were checked on this object. - * - * @return Prediction\PredictionInterface[] - */ - public function getCheckedPredictions() + /** @psalm-assert-if-true Extension $this */ + public function isExtension(): bool { - return $this->checkedPredictions; + return \false; } - /** - * Returns object prophecy this method prophecy is tied to. - * - * @return ObjectProphecy - */ - public function getObjectProphecy() +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class Library extends Type +{ + public function isLibrary(): bool { - return $this->objectProphecy; + return \true; } - /** - * Returns method name. - * - * @return string - */ - public function getMethodName() +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use function preg_match; +use function sprintf; +class ApplicationName +{ + /** @var string */ + private $name; + public function __construct(string $name) { - return $this->methodName; + $this->ensureValidFormat($name); + $this->name = $name; } - /** - * Returns arguments wildcard. - * - * @return Argument\ArgumentsWildcard - */ - public function getArgumentsWildcard() + public function asString(): string { - return $this->argumentsWildcard; + return $this->name; } - /** - * @return bool - */ - public function hasReturnVoid() + public function isEqual(ApplicationName $name): bool { - return $this->voidReturnType; + return $this->name === $name->name; } - private function bindToObjectProphecy() + private function ensureValidFormat(string $name): void { - if ($this->bound) { - return; + if (!preg_match('#\w/\w#', $name)) { + throw new InvalidApplicationNameException(sprintf('Format of name "%s" is not valid - expected: vendor/packagename', $name), InvalidApplicationNameException::InvalidFormat); } - $this->getObjectProphecy()->addMethodProphecy($this); - $this->bound = \true; } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -namespace Prophecy\Prophecy; +namespace PHPUnitPHAR\PharIo\Manifest; -use PHPUnit\SebastianBergmann\Comparator\ComparisonFailure; -use Prophecy\Comparator\Factory as ComparatorFactory; -use Prophecy\Call\Call; -use Prophecy\Doubler\LazyDouble; -use Prophecy\Argument\ArgumentsWildcard; -use Prophecy\Call\CallCenter; -use Prophecy\Exception\Prophecy\ObjectProphecyException; -use Prophecy\Exception\Prophecy\MethodProphecyException; -use Prophecy\Exception\Prediction\AggregateException; -use Prophecy\Exception\Prediction\PredictionException; -/** - * Object prophecy. +class PhpExtensionRequirement implements Requirement +{ + /** @var string */ + private $extension; + public function __construct(string $extension) + { + $this->extension = $extension; + } + public function asString(): string + { + return $this->extension; + } +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. * - * @author Konstantin Kudryashov */ -class ObjectProphecy implements \Prophecy\Prophecy\ProphecyInterface +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\Version; +class Manifest { - private $lazyDouble; - private $callCenter; - private $revealer; - private $comparatorFactory; - /** - * @var MethodProphecy[][] - */ - private $methodProphecies = array(); - /** - * Initializes object prophecy. - * - * @param LazyDouble $lazyDouble - * @param CallCenter $callCenter - * @param RevealerInterface $revealer - * @param ComparatorFactory $comparatorFactory - */ - public function __construct(LazyDouble $lazyDouble, CallCenter $callCenter = null, \Prophecy\Prophecy\RevealerInterface $revealer = null, ComparatorFactory $comparatorFactory = null) + /** @var ApplicationName */ + private $name; + /** @var Version */ + private $version; + /** @var Type */ + private $type; + /** @var CopyrightInformation */ + private $copyrightInformation; + /** @var RequirementCollection */ + private $requirements; + /** @var BundledComponentCollection */ + private $bundledComponents; + public function __construct(ApplicationName $name, Version $version, Type $type, CopyrightInformation $copyrightInformation, RequirementCollection $requirements, BundledComponentCollection $bundledComponents) { - $this->lazyDouble = $lazyDouble; - $this->callCenter = $callCenter ?: new CallCenter(); - $this->revealer = $revealer ?: new \Prophecy\Prophecy\Revealer(); - $this->comparatorFactory = $comparatorFactory ?: ComparatorFactory::getInstance(); + $this->name = $name; + $this->version = $version; + $this->type = $type; + $this->copyrightInformation = $copyrightInformation; + $this->requirements = $requirements; + $this->bundledComponents = $bundledComponents; } - /** - * Forces double to extend specific class. - * - * @param string $class - * - * @return $this - */ - public function willExtend($class) + public function getName(): ApplicationName { - $this->lazyDouble->setParentClass($class); - return $this; + return $this->name; } - /** - * Forces double to implement specific interface. - * - * @param string $interface - * - * @return $this - */ - public function willImplement($interface) + public function getVersion(): Version { - $this->lazyDouble->addInterface($interface); - return $this; + return $this->version; } - /** - * Sets constructor arguments. - * - * @param array $arguments - * - * @return $this - */ - public function willBeConstructedWith(array $arguments = null) + public function getType(): Type + { + return $this->type; + } + public function getCopyrightInformation(): CopyrightInformation { - $this->lazyDouble->setArguments($arguments); - return $this; + return $this->copyrightInformation; } - /** - * Reveals double. - * - * @return object - * - * @throws \Prophecy\Exception\Prophecy\ObjectProphecyException If double doesn't implement needed interface - */ - public function reveal() + public function getRequirements(): RequirementCollection { - $double = $this->lazyDouble->getInstance(); - if (null === $double || !$double instanceof \Prophecy\Prophecy\ProphecySubjectInterface) { - throw new ObjectProphecyException("Generated double must implement ProphecySubjectInterface, but it does not.\n" . 'It seems you have wrongly configured doubler without required ClassPatch.', $this); - } - $double->setProphecy($this); - return $double; + return $this->requirements; } - /** - * Adds method prophecy to object prophecy. - * - * @param MethodProphecy $methodProphecy - * - * @throws \Prophecy\Exception\Prophecy\MethodProphecyException If method prophecy doesn't - * have arguments wildcard - */ - public function addMethodProphecy(\Prophecy\Prophecy\MethodProphecy $methodProphecy) + public function getBundledComponents(): BundledComponentCollection { - $argumentsWildcard = $methodProphecy->getArgumentsWildcard(); - if (null === $argumentsWildcard) { - throw new MethodProphecyException(\sprintf("Can not add prophecy for a method `%s::%s()`\n" . "as you did not specify arguments wildcard for it.", \get_class($this->reveal()), $methodProphecy->getMethodName()), $methodProphecy); - } - $methodName = \strtolower($methodProphecy->getMethodName()); - if (!isset($this->methodProphecies[$methodName])) { - $this->methodProphecies[$methodName] = array(); - } - $this->methodProphecies[$methodName][] = $methodProphecy; + return $this->bundledComponents; } - /** - * Returns either all or related to single method prophecies. - * - * @param null|string $methodName - * - * @return MethodProphecy[] - */ - public function getMethodProphecies($methodName = null) + public function isApplication(): bool { - if (null === $methodName) { - return $this->methodProphecies; - } - $methodName = \strtolower($methodName); - if (!isset($this->methodProphecies[$methodName])) { - return array(); - } - return $this->methodProphecies[$methodName]; + return $this->type->isApplication(); } - /** - * Makes specific method call. - * - * @param string $methodName - * @param array $arguments - * - * @return mixed - */ - public function makeProphecyMethodCall($methodName, array $arguments) + public function isLibrary(): bool { - $arguments = $this->revealer->reveal($arguments); - $return = $this->callCenter->makeCall($this, $methodName, $arguments); - return $this->revealer->reveal($return); + return $this->type->isLibrary(); } - /** - * Finds calls by method name & arguments wildcard. - * - * @param string $methodName - * @param ArgumentsWildcard $wildcard - * - * @return Call[] - */ - public function findProphecyMethodCalls($methodName, ArgumentsWildcard $wildcard) + public function isExtension(): bool { - return $this->callCenter->findCalls($methodName, $wildcard); + return $this->type->isExtension(); } - /** - * Checks that registered method predictions do not fail. - * - * @throws \Prophecy\Exception\Prediction\AggregateException If any of registered predictions fail - * @throws \Prophecy\Exception\Call\UnexpectedCallException - */ - public function checkProphecyMethodsPredictions() + public function isExtensionFor(ApplicationName $application, ?Version $version = null): bool { - $exception = new AggregateException(\sprintf("%s:\n", \get_class($this->reveal()))); - $exception->setObjectProphecy($this); - $this->callCenter->checkUnexpectedCalls(); - foreach ($this->methodProphecies as $prophecies) { - foreach ($prophecies as $prophecy) { - try { - $prophecy->checkPrediction(); - } catch (PredictionException $e) { - $exception->append($e); - } - } + if (!$this->isExtension()) { + return \false; } - if (\count($exception->getExceptions())) { - throw $exception; + /** @var Extension $type */ + $type = $this->type; + if ($version !== null) { + return $type->isCompatibleWith($application, $version); } + return $type->isExtensionFor($application); } - /** - * Creates new method prophecy using specified method name and arguments. - * - * @param string $methodName - * @param array $arguments - * - * @return MethodProphecy - */ - public function __call($methodName, array $arguments) +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use const FILTER_VALIDATE_URL; +use function filter_var; +class Url +{ + /** @var string */ + private $url; + public function __construct(string $url) { - $arguments = new ArgumentsWildcard($this->revealer->reveal($arguments)); - foreach ($this->getMethodProphecies($methodName) as $prophecy) { - $argumentsWildcard = $prophecy->getArgumentsWildcard(); - $comparator = $this->comparatorFactory->getComparatorFor($argumentsWildcard, $arguments); - try { - $comparator->assertEquals($argumentsWildcard, $arguments); - return $prophecy; - } catch (ComparisonFailure $failure) { - } - } - return new \Prophecy\Prophecy\MethodProphecy($this, $methodName, $arguments); + $this->ensureUrlIsValid($url); + $this->url = $url; } - /** - * Tries to get property value from double. - * - * @param string $name - * - * @return mixed - */ - public function __get($name) + public function asString(): string { - return $this->reveal()->{$name}; + return $this->url; } /** - * Tries to set property value to double. - * - * @param string $name - * @param mixed $value + * @throws InvalidUrlException */ - public function __set($name, $value) + private function ensureUrlIsValid(string $url): void { - $this->reveal()->{$name} = $this->revealer->reveal($value); + if (filter_var($url, FILTER_VALIDATE_URL) === \false) { + throw new InvalidUrlException(); + } } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. - */ -namespace Prophecy\Prophecy; - -/** - * Core Prophecy interface. * - * @author Konstantin Kudryashov */ -interface ProphecyInterface +namespace PHPUnitPHAR\PharIo\Manifest; + +use Countable; +use IteratorAggregate; +use function count; +/** @template-implements IteratorAggregate */ +class RequirementCollection implements Countable, IteratorAggregate { + /** @var Requirement[] */ + private $requirements = []; + public function add(Requirement $requirement): void + { + $this->requirements[] = $requirement; + } /** - * Reveals prophecy object (double) . - * - * @return object + * @return Requirement[] */ - public function reveal(); + public function getRequirements(): array + { + return $this->requirements; + } + public function count(): int + { + return count($this->requirements); + } + public function getIterator(): RequirementCollectionIterator + { + return new RequirementCollectionIterator($this); + } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. - */ -namespace Prophecy\Prophecy; - -/** - * Controllable doubles interface. * - * @author Konstantin Kudryashov */ -interface ProphecySubjectInterface +namespace PHPUnitPHAR\PharIo\Manifest; + +class License { - /** - * Sets subject prophecy. - * - * @param ProphecyInterface $prophecy - */ - public function setProphecy(\Prophecy\Prophecy\ProphecyInterface $prophecy); - /** - * Returns subject prophecy. - * - * @return ProphecyInterface - */ - public function getProphecy(); + /** @var string */ + private $name; + /** @var Url */ + private $url; + public function __construct(string $name, Url $url) + { + $this->name = $name; + $this->url = $url; + } + public function getName(): string + { + return $this->name; + } + public function getUrl(): Url + { + return $this->url; + } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. - */ -namespace Prophecy\Prophecy; - -/** - * Basic prophecies revealer. * - * @author Konstantin Kudryashov */ -class Revealer implements \Prophecy\Prophecy\RevealerInterface +namespace PHPUnitPHAR\PharIo\Manifest; + +use Countable; +use IteratorAggregate; +use function count; +/** @template-implements IteratorAggregate */ +class AuthorCollection implements Countable, IteratorAggregate { + /** @var Author[] */ + private $authors = []; + public function add(Author $author): void + { + $this->authors[] = $author; + } /** - * Unwraps value(s). - * - * @param mixed $value - * - * @return mixed + * @return Author[] */ - public function reveal($value) + public function getAuthors(): array { - if (\is_array($value)) { - return \array_map(array($this, __FUNCTION__), $value); - } - if (!\is_object($value)) { - return $value; - } - if ($value instanceof \Prophecy\Prophecy\ProphecyInterface) { - $value = $value->reveal(); - } - return $value; + return $this->authors; + } + public function count(): int + { + return count($this->authors); + } + public function getIterator(): AuthorCollectionIterator + { + return new AuthorCollectionIterator($this); } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. - */ -namespace Prophecy\Prophecy; - -/** - * Prophecies revealer interface. * - * @author Konstantin Kudryashov */ -interface RevealerInterface +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\Version; +class BundledComponent { - /** - * Unwraps value(s). - * - * @param mixed $value - * - * @return mixed - */ - public function reveal($value); + /** @var string */ + private $name; + /** @var Version */ + private $version; + public function __construct(string $name, Version $version) + { + $this->name = $name; + $this->version = $version; + } + public function getName(): string + { + return $this->name; + } + public function getVersion(): Version + { + return $this->version; + } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -namespace Prophecy; +namespace PHPUnitPHAR\PharIo\Manifest; -use Prophecy\Doubler\CachedDoubler; -use Prophecy\Doubler\Doubler; -use Prophecy\Doubler\LazyDouble; -use Prophecy\Doubler\ClassPatch; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophecy\RevealerInterface; -use Prophecy\Prophecy\Revealer; -use Prophecy\Call\CallCenter; -use Prophecy\Util\StringUtil; -use Prophecy\Exception\Prediction\PredictionException; -use Prophecy\Exception\Prediction\AggregateException; -/** - * Prophet creates prophecies. +use PHPUnitPHAR\PharIo\Version\Version; +use PHPUnitPHAR\PharIo\Version\VersionConstraint; +class Extension extends Type +{ + /** @var ApplicationName */ + private $application; + /** @var VersionConstraint */ + private $versionConstraint; + public function __construct(ApplicationName $application, VersionConstraint $versionConstraint) + { + $this->application = $application; + $this->versionConstraint = $versionConstraint; + } + public function getApplicationName(): ApplicationName + { + return $this->application; + } + public function getVersionConstraint(): VersionConstraint + { + return $this->versionConstraint; + } + public function isExtension(): bool + { + return \true; + } + public function isExtensionFor(ApplicationName $name): bool + { + return $this->application->isEqual($name); + } + public function isCompatibleWith(ApplicationName $name, Version $version): bool + { + return $this->isExtensionFor($name) && $this->versionConstraint->complies($version); + } +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. * - * @author Konstantin Kudryashov */ -class Prophet +namespace PHPUnitPHAR\PharIo\Manifest; + +use Iterator; +use function count; +/** @template-implements Iterator */ +class BundledComponentCollectionIterator implements Iterator { - private $doubler; - private $revealer; - private $util; - /** - * @var ObjectProphecy[] - */ - private $prophecies = array(); - /** - * Initializes Prophet. - * - * @param null|Doubler $doubler - * @param null|RevealerInterface $revealer - * @param null|StringUtil $util - */ - public function __construct(Doubler $doubler = null, RevealerInterface $revealer = null, StringUtil $util = null) + /** @var BundledComponent[] */ + private $bundledComponents; + /** @var int */ + private $position = 0; + public function __construct(BundledComponentCollection $bundledComponents) { - if (null === $doubler) { - $doubler = new CachedDoubler(); - $doubler->registerClassPatch(new ClassPatch\SplFileInfoPatch()); - $doubler->registerClassPatch(new ClassPatch\TraversablePatch()); - $doubler->registerClassPatch(new ClassPatch\ThrowablePatch()); - $doubler->registerClassPatch(new ClassPatch\DisableConstructorPatch()); - $doubler->registerClassPatch(new ClassPatch\ProphecySubjectPatch()); - $doubler->registerClassPatch(new ClassPatch\ReflectionClassNewInstancePatch()); - $doubler->registerClassPatch(new ClassPatch\HhvmExceptionPatch()); - $doubler->registerClassPatch(new ClassPatch\MagicCallPatch()); - $doubler->registerClassPatch(new ClassPatch\KeywordPatch()); - } - $this->doubler = $doubler; - $this->revealer = $revealer ?: new Revealer(); - $this->util = $util ?: new StringUtil(); + $this->bundledComponents = $bundledComponents->getBundledComponents(); } - /** - * Creates new object prophecy. - * - * @param null|string $classOrInterface Class or interface name - * - * @return ObjectProphecy - */ - public function prophesize($classOrInterface = null) + public function rewind(): void { - $this->prophecies[] = $prophecy = new ObjectProphecy(new LazyDouble($this->doubler), new CallCenter($this->util), $this->revealer); - if ($classOrInterface && \class_exists($classOrInterface)) { - return $prophecy->willExtend($classOrInterface); - } - if ($classOrInterface && \interface_exists($classOrInterface)) { - return $prophecy->willImplement($classOrInterface); - } - return $prophecy; + $this->position = 0; } - /** - * Returns all created object prophecies. - * - * @return ObjectProphecy[] - */ - public function getProphecies() + public function valid(): bool { - return $this->prophecies; + return $this->position < count($this->bundledComponents); } - /** - * Returns Doubler instance assigned to this Prophet. - * - * @return Doubler - */ - public function getDoubler() + public function key(): int { - return $this->doubler; + return $this->position; } - /** - * Checks all predictions defined by prophecies of this Prophet. - * - * @throws Exception\Prediction\AggregateException If any prediction fails - */ - public function checkPredictions() + public function current(): BundledComponent { - $exception = new AggregateException("Some predictions failed:\n"); - foreach ($this->prophecies as $prophecy) { - try { - $prophecy->checkProphecyMethodsPredictions(); - } catch (PredictionException $e) { - $exception->append($e); - } - } - if (\count($exception->getExceptions())) { - throw $exception; - } + return $this->bundledComponents[$this->position]; + } + public function next(): void + { + $this->position++; } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -/** - * This class is a modification from sebastianbergmann/exporter - * @see https://github.com/sebastianbergmann/exporter +namespace PHPUnitPHAR\PharIo\Manifest; + +class CopyrightInformation +{ + /** @var AuthorCollection */ + private $authors; + /** @var License */ + private $license; + public function __construct(AuthorCollection $authors, License $license) + { + $this->authors = $authors; + $this->license = $license; + } + public function getAuthors(): AuthorCollection + { + return $this->authors; + } + public function getLicense(): License + { + return $this->license; + } +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * */ -class ExportUtil +namespace PHPUnitPHAR\PharIo\Manifest; + +use function sprintf; +class Author { - /** - * Exports a value as a string - * - * The output of this method is similar to the output of print_r(), but - * improved in various aspects: - * - * - NULL is rendered as "null" (instead of "") - * - TRUE is rendered as "true" (instead of "1") - * - FALSE is rendered as "false" (instead of "") - * - Strings are always quoted with single quotes - * - Carriage returns and newlines are normalized to \n - * - Recursion and repeated rendering is treated properly - * - * @param mixed $value - * @param int $indentation The indentation level of the 2nd+ line - * @return string - */ - public static function export($value, $indentation = 0) + /** @var string */ + private $name; + /** @var null|Email */ + private $email; + public function __construct(string $name, ?Email $email = null) { - return self::recursiveExport($value, $indentation); + $this->name = $name; + $this->email = $email; } - /** - * Converts an object to an array containing all of its private, protected - * and public properties. - * - * @param mixed $value - * @return array - */ - public static function toArray($value) + public function asString(): string { - if (!\is_object($value)) { - return (array) $value; - } - $array = array(); - foreach ((array) $value as $key => $val) { - // properties are transformed to keys in the following way: - // private $property => "\0Classname\0property" - // protected $property => "\0*\0property" - // public $property => "property" - if (\preg_match('/^\\0.+\\0(.+)$/', $key, $matches)) { - $key = $matches[1]; - } - // See https://github.com/php/php-src/commit/5721132 - if ($key === "\x00gcdata") { - continue; - } - $array[$key] = $val; - } - // Some internal classes like SplObjectStorage don't work with the - // above (fast) mechanism nor with reflection in Zend. - // Format the output similarly to print_r() in this case - if ($value instanceof \SplObjectStorage) { - // However, the fast method does work in HHVM, and exposes the - // internal implementation. Hide it again. - if (\property_exists('\\SplObjectStorage', '__storage')) { - unset($array['__storage']); - } elseif (\property_exists('\\SplObjectStorage', 'storage')) { - unset($array['storage']); - } - if (\property_exists('\\SplObjectStorage', '__key')) { - unset($array['__key']); - } - foreach ($value as $key => $val) { - $array[\spl_object_hash($val)] = array('obj' => $val, 'inf' => $value->getInfo()); - } + if (!$this->hasEmail()) { + return $this->name; } - return $array; + return sprintf('%s <%s>', $this->name, $this->email->asString()); + } + public function getName(): string + { + return $this->name; } /** - * Recursive implementation of export - * - * @param mixed $value The value to export - * @param int $indentation The indentation level of the 2nd+ line - * @param \SebastianBergmann\RecursionContext\Context $processed Previously processed objects - * @return string - * @see SebastianBergmann\Exporter\Exporter::export + * @psalm-assert-if-true Email $this->email */ - protected static function recursiveExport(&$value, $indentation, $processed = null) + public function hasEmail(): bool { - if ($value === null) { - return 'null'; - } - if ($value === \true) { - return 'true'; - } - if ($value === \false) { - return 'false'; - } - if (\is_float($value) && \floatval(\intval($value)) === $value) { - return "{$value}.0"; - } - if (\is_resource($value)) { - return \sprintf('resource(%d) of type (%s)', $value, \get_resource_type($value)); - } - if (\is_string($value)) { - // Match for most non printable chars somewhat taking multibyte chars into account - if (\preg_match('/[^\\x09-\\x0d\\x20-\\xff]/', $value)) { - return 'Binary String: 0x' . \bin2hex($value); - } - return "'" . \str_replace(array("\r\n", "\n\r", "\r"), array("\n", "\n", "\n"), $value) . "'"; - } - $whitespace = \str_repeat(' ', 4 * $indentation); - if (!$processed) { - $processed = new Context(); - } - if (\is_array($value)) { - if (($key = $processed->contains($value)) !== \false) { - return 'Array &' . $key; - } - $array = $value; - $key = $processed->add($value); - $values = ''; - if (\count($array) > 0) { - foreach ($array as $k => $v) { - $values .= \sprintf('%s %s => %s' . "\n", $whitespace, self::recursiveExport($k, $indentation), self::recursiveExport($value[$k], $indentation + 1, $processed)); - } - $values = "\n" . $values . $whitespace; - } - return \sprintf('Array &%s (%s)', $key, $values); - } - if (\is_object($value)) { - $class = \get_class($value); - if ($hash = $processed->contains($value)) { - return \sprintf('%s:%s Object', $class, $hash); - } - $hash = $processed->add($value); - $values = ''; - $array = self::toArray($value); - if (\count($array) > 0) { - foreach ($array as $k => $v) { - $values .= \sprintf('%s %s => %s' . "\n", $whitespace, self::recursiveExport($k, $indentation), self::recursiveExport($v, $indentation + 1, $processed)); - } - $values = "\n" . $values . $whitespace; - } - return \sprintf('%s:%s Object (%s)', $class, $hash, $values); + return $this->email !== null; + } + public function getEmail(): Email + { + if (!$this->hasEmail()) { + throw new NoEmailAddressException(); } - return \var_export($value, \true); + return $this->email; } } - * Marcello Duarte + * This file is part of PharIo\Manifest. + * + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -namespace Prophecy\Util; +namespace PHPUnitPHAR\PharIo\Manifest; -use Prophecy\Call\Call; -/** - * String utility. +interface Requirement +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. * - * @author Konstantin Kudryashov */ -class StringUtil +namespace PHPUnitPHAR\PharIo\Manifest; + +use Countable; +use IteratorAggregate; +use function count; +/** @template-implements IteratorAggregate */ +class BundledComponentCollection implements Countable, IteratorAggregate { - private $verbose; - /** - * @param bool $verbose - */ - public function __construct($verbose = \true) + /** @var BundledComponent[] */ + private $bundledComponents = []; + public function add(BundledComponent $bundledComponent): void { - $this->verbose = $verbose; + $this->bundledComponents[] = $bundledComponent; } /** - * Stringifies any provided value. - * - * @param mixed $value - * @param boolean $exportObject - * - * @return string + * @return BundledComponent[] */ - public function stringify($value, $exportObject = \true) + public function getBundledComponents(): array { - if (\is_array($value)) { - if (\range(0, \count($value) - 1) === \array_keys($value)) { - return '[' . \implode(', ', \array_map(array($this, __FUNCTION__), $value)) . ']'; - } - $stringify = array($this, __FUNCTION__); - return '[' . \implode(', ', \array_map(function ($item, $key) use($stringify) { - return (\is_integer($key) ? $key : '"' . $key . '"') . ' => ' . \call_user_func($stringify, $item); - }, $value, \array_keys($value))) . ']'; - } - if (\is_resource($value)) { - return \get_resource_type($value) . ':' . $value; - } - if (\is_object($value)) { - return $exportObject ? \Prophecy\Util\ExportUtil::export($value) : \sprintf('%s:%s', \get_class($value), \spl_object_hash($value)); - } - if (\true === $value || \false === $value) { - return $value ? 'true' : 'false'; - } - if (\is_string($value)) { - $str = \sprintf('"%s"', \str_replace("\n", '\\n', $value)); - if (!$this->verbose && 50 <= \strlen($str)) { - return \substr($str, 0, 50) . '"...'; - } - return $str; - } - if (null === $value) { - return 'null'; - } - return (string) $value; + return $this->bundledComponents; } - /** - * Stringifies provided array of calls. - * - * @param Call[] $calls Array of Call instances - * - * @return string - */ - public function stringifyCalls(array $calls) + public function count(): int { - $self = $this; - return \implode(\PHP_EOL, \array_map(function (Call $call) use($self) { - return \sprintf(' - %s(%s) @ %s', $call->getMethodName(), \implode(', ', \array_map(array($self, 'stringify'), $call->getArguments())), \str_replace(\GETCWD() . \DIRECTORY_SEPARATOR, '', $call->getCallPlace())); - }, $calls)); + return count($this->bundledComponents); + } + public function getIterator(): BundledComponentCollectionIterator + { + return new BundledComponentCollectionIterator($this); } } - - - - - This Schema file defines the rules by which the XML configuration file of PHPUnit 9.5 may be structured. - - - - - - Root Element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The main type specifying the document structure - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ManifestLoaderException extends \Exception implements Exception +{ +} + + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -namespace PHPUnit; +namespace PHPUnitPHAR\PharIo\Manifest; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit +use InvalidArgumentException; +class NoEmailAddressException extends InvalidArgumentException implements Exception +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * */ -interface Exception extends Throwable +namespace PHPUnitPHAR\PharIo\Manifest; + +use RuntimeException; +class ManifestDocumentException extends RuntimeException implements Exception { } + * Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. + * */ -namespace PHPUnit\Framework; +namespace PHPUnitPHAR\PharIo\Manifest; -use const DEBUG_BACKTRACE_IGNORE_ARGS; -use const PHP_EOL; -use function array_shift; -use function array_unshift; -use function assert; -use function class_exists; -use function count; -use function debug_backtrace; -use function explode; -use function file_get_contents; -use function func_get_args; -use function implode; -use function interface_exists; -use function is_array; -use function is_bool; -use function is_int; -use function is_iterable; -use function is_object; -use function is_string; -use function preg_match; -use function preg_split; -use function sprintf; -use function strpos; -use ArrayAccess; -use Countable; -use DOMAttr; -use DOMDocument; -use DOMElement; -use PHPUnit\Framework\Constraint\ArrayHasKey; -use PHPUnit\Framework\Constraint\Callback; -use PHPUnit\Framework\Constraint\ClassHasAttribute; -use PHPUnit\Framework\Constraint\ClassHasStaticAttribute; -use PHPUnit\Framework\Constraint\Constraint; -use PHPUnit\Framework\Constraint\Count; -use PHPUnit\Framework\Constraint\DirectoryExists; -use PHPUnit\Framework\Constraint\FileExists; -use PHPUnit\Framework\Constraint\GreaterThan; -use PHPUnit\Framework\Constraint\IsAnything; -use PHPUnit\Framework\Constraint\IsEmpty; -use PHPUnit\Framework\Constraint\IsEqual; -use PHPUnit\Framework\Constraint\IsEqualCanonicalizing; -use PHPUnit\Framework\Constraint\IsEqualIgnoringCase; -use PHPUnit\Framework\Constraint\IsEqualWithDelta; -use PHPUnit\Framework\Constraint\IsFalse; -use PHPUnit\Framework\Constraint\IsFinite; -use PHPUnit\Framework\Constraint\IsIdentical; -use PHPUnit\Framework\Constraint\IsInfinite; -use PHPUnit\Framework\Constraint\IsInstanceOf; -use PHPUnit\Framework\Constraint\IsJson; -use PHPUnit\Framework\Constraint\IsNan; -use PHPUnit\Framework\Constraint\IsNull; -use PHPUnit\Framework\Constraint\IsReadable; -use PHPUnit\Framework\Constraint\IsTrue; -use PHPUnit\Framework\Constraint\IsType; -use PHPUnit\Framework\Constraint\IsWritable; -use PHPUnit\Framework\Constraint\JsonMatches; -use PHPUnit\Framework\Constraint\LessThan; -use PHPUnit\Framework\Constraint\LogicalAnd; -use PHPUnit\Framework\Constraint\LogicalNot; -use PHPUnit\Framework\Constraint\LogicalOr; -use PHPUnit\Framework\Constraint\LogicalXor; -use PHPUnit\Framework\Constraint\ObjectEquals; -use PHPUnit\Framework\Constraint\ObjectHasAttribute; -use PHPUnit\Framework\Constraint\RegularExpression; -use PHPUnit\Framework\Constraint\SameSize; -use PHPUnit\Framework\Constraint\StringContains; -use PHPUnit\Framework\Constraint\StringEndsWith; -use PHPUnit\Framework\Constraint\StringMatchesFormatDescription; -use PHPUnit\Framework\Constraint\StringStartsWith; -use PHPUnit\Framework\Constraint\TraversableContainsEqual; -use PHPUnit\Framework\Constraint\TraversableContainsIdentical; -use PHPUnit\Framework\Constraint\TraversableContainsOnly; -use PHPUnit\Util\Type; -use PHPUnit\Util\Xml; -use PHPUnit\Util\Xml\Loader as XmlLoader; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit +use InvalidArgumentException; +class InvalidApplicationNameException extends InvalidArgumentException implements Exception +{ + public const InvalidFormat = 2; +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * */ -abstract class Assert +namespace PHPUnitPHAR\PharIo\Manifest; + +use RuntimeException; +class ManifestDocumentMapperException extends RuntimeException implements Exception { +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use RuntimeException; +class ManifestElementException extends RuntimeException implements Exception +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use InvalidArgumentException; +class InvalidEmailException extends InvalidArgumentException implements Exception +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use InvalidArgumentException; +class InvalidUrlException extends InvalidArgumentException implements Exception +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use LibXMLError; +use function sprintf; +class ManifestDocumentLoadingException extends \Exception implements Exception +{ + /** @var LibXMLError[] */ + private $libxmlErrors; /** - * @var int - */ - private static $count = 0; - /** - * Asserts that an array has a specified key. - * - * @param int|string $key - * @param array|ArrayAccess $array + * ManifestDocumentLoadingException constructor. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @param LibXMLError[] $libxmlErrors */ - public static function assertArrayHasKey($key, $array, string $message = '') : void + public function __construct(array $libxmlErrors) { - if (!(is_int($key) || is_string($key))) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'integer or string'); - } - if (!(is_array($array) || $array instanceof ArrayAccess)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'array or ArrayAccess'); - } - $constraint = new ArrayHasKey($key); - static::assertThat($array, $constraint, $message); + $this->libxmlErrors = $libxmlErrors; + $first = $this->libxmlErrors[0]; + parent::__construct(sprintf('%s (Line: %d / Column: %d / File: %s)', $first->message, $first->line, $first->column, $first->file), $first->code); } /** - * Asserts that an array does not have a specified key. - * - * @param int|string $key - * @param array|ArrayAccess $array - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @return LibXMLError[] */ - public static function assertArrayNotHasKey($key, $array, string $message = '') : void + public function getLibxmlErrors(): array { - if (!(is_int($key) || is_string($key))) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'integer or string'); - } - if (!(is_array($array) || $array instanceof ArrayAccess)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'array or ArrayAccess'); - } - $constraint = new LogicalNot(new ArrayHasKey($key)); - static::assertThat($array, $constraint, $message); + return $this->libxmlErrors; } - /** - * Asserts that a haystack contains a needle. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - */ - public static function assertContains($needle, iterable $haystack, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use Throwable; +interface Exception extends Throwable +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use InvalidArgumentException; +class ElementCollectionException extends InvalidArgumentException implements Exception +{ +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ContainsElement extends ManifestElement +{ + public function getName(): string { - $constraint = new TraversableContainsIdentical($needle); - static::assertThat($haystack, $constraint, $message); + return $this->getAttributeValue('name'); } - public static function assertContainsEquals($needle, iterable $haystack, string $message = '') : void + public function getVersion(): string { - $constraint = new TraversableContainsEqual($needle); - static::assertThat($haystack, $constraint, $message); + return $this->getAttributeValue('version'); } - /** - * Asserts that a haystack does not contain a needle. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - */ - public static function assertNotContains($needle, iterable $haystack, string $message = '') : void + public function getType(): string { - $constraint = new LogicalNot(new TraversableContainsIdentical($needle)); - static::assertThat($haystack, $constraint, $message); + return $this->getAttributeValue('type'); } - public static function assertNotContainsEquals($needle, iterable $haystack, string $message = '') : void + public function getExtensionElement(): ExtensionElement { - $constraint = new LogicalNot(new TraversableContainsEqual($needle)); - static::assertThat($haystack, $constraint, $message); + return new ExtensionElement($this->getChildByName('extension')); } - /** - * Asserts that a haystack contains only values of a given type. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class LicenseElement extends ManifestElement +{ + public function getType(): string { - if ($isNativeType === null) { - $isNativeType = Type::isType($type); - } - static::assertThat($haystack, new TraversableContainsOnly($type, $isNativeType), $message); + return $this->getAttributeValue('type'); } - /** - * Asserts that a haystack contains only instances of a given class name. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = '') : void + public function getUrl(): string { - static::assertThat($haystack, new TraversableContainsOnly($className, \false), $message); + return $this->getAttributeValue('url'); } - /** - * Asserts that a haystack does not contain only values of a given type. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ComponentElement extends ManifestElement +{ + public function getName(): string { - if ($isNativeType === null) { - $isNativeType = Type::isType($type); - } - static::assertThat($haystack, new LogicalNot(new TraversableContainsOnly($type, $isNativeType)), $message); + return $this->getAttributeValue('name'); } - /** - * Asserts the number of elements of an array, Countable or Traversable. - * - * @param Countable|iterable $haystack - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - */ - public static function assertCount(int $expectedCount, $haystack, string $message = '') : void + public function getVersion(): string { - if (!$haystack instanceof Countable && !is_iterable($haystack)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); - } - static::assertThat($haystack, new Count($expectedCount), $message); + return $this->getAttributeValue('version'); } - /** - * Asserts the number of elements of an array, Countable or Traversable. - * - * @param Countable|iterable $haystack - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - */ - public static function assertNotCount(int $expectedCount, $haystack, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class PhpElement extends ManifestElement +{ + public function getVersion(): string { - if (!$haystack instanceof Countable && !is_iterable($haystack)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); - } - $constraint = new LogicalNot(new Count($expectedCount)); - static::assertThat($haystack, $constraint, $message); + return $this->getAttributeValue('version'); } - /** - * Asserts that two variables are equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertEquals($expected, $actual, string $message = '') : void + public function hasExtElements(): bool { - $constraint = new IsEqual($expected); - static::assertThat($actual, $constraint, $message); + return $this->hasChild('ext'); } - /** - * Asserts that two variables are equal (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertEqualsCanonicalizing($expected, $actual, string $message = '') : void + public function getExtElements(): ExtElementCollection { - $constraint = new IsEqualCanonicalizing($expected); - static::assertThat($actual, $constraint, $message); + return new ExtElementCollection($this->getChildrenByName('ext')); } - /** - * Asserts that two variables are equal (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertEqualsIgnoringCase($expected, $actual, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ExtElementCollection extends ElementCollection +{ + public function current(): ExtElement { - $constraint = new IsEqualIgnoringCase($expected); - static::assertThat($actual, $constraint, $message); + return new ExtElement($this->getCurrentElement()); } - /** - * Asserts that two variables are equal (with delta). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertEqualsWithDelta($expected, $actual, float $delta, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class AuthorElement extends ManifestElement +{ + public function getName(): string { - $constraint = new IsEqualWithDelta($expected, $delta); - static::assertThat($actual, $constraint, $message); + return $this->getAttributeValue('name'); } - /** - * Asserts that two variables are not equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotEquals($expected, $actual, string $message = '') : void + public function getEmail(): string + { + return $this->getAttributeValue('email'); + } + public function hasEMail(): bool + { + return $this->hasAttribute('email'); + } +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use DOMElement; +use DOMNodeList; +use Iterator; +use ReturnTypeWillChange; +use function count; +use function get_class; +use function sprintf; +/** @template-implements Iterator */ +abstract class ElementCollection implements Iterator +{ + /** @var DOMElement[] */ + private $nodes = []; + /** @var int */ + private $position; + public function __construct(DOMNodeList $nodeList) { - $constraint = new LogicalNot(new IsEqual($expected)); - static::assertThat($actual, $constraint, $message); + $this->position = 0; + $this->importNodes($nodeList); } - /** - * Asserts that two variables are not equal (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotEqualsCanonicalizing($expected, $actual, string $message = '') : void + #[ReturnTypeWillChange] + abstract public function current(); + public function next(): void { - $constraint = new LogicalNot(new IsEqualCanonicalizing($expected)); - static::assertThat($actual, $constraint, $message); + $this->position++; } - /** - * Asserts that two variables are not equal (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotEqualsIgnoringCase($expected, $actual, string $message = '') : void + public function key(): int { - $constraint = new LogicalNot(new IsEqualIgnoringCase($expected)); - static::assertThat($actual, $constraint, $message); + return $this->position; } - /** - * Asserts that two variables are not equal (with delta). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotEqualsWithDelta($expected, $actual, float $delta, string $message = '') : void + public function valid(): bool { - $constraint = new LogicalNot(new IsEqualWithDelta($expected, $delta)); - static::assertThat($actual, $constraint, $message); + return $this->position < count($this->nodes); } - /** - * @throws ExpectationFailedException - */ - public static function assertObjectEquals(object $expected, object $actual, string $method = 'equals', string $message = '') : void + public function rewind(): void { - static::assertThat($actual, static::objectEquals($expected, $method), $message); + $this->position = 0; } - /** - * Asserts that a variable is empty. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert empty $actual - */ - public static function assertEmpty($actual, string $message = '') : void + protected function getCurrentElement(): DOMElement { - static::assertThat($actual, static::isEmpty(), $message); + return $this->nodes[$this->position]; } - /** - * Asserts that a variable is not empty. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !empty $actual - */ - public static function assertNotEmpty($actual, string $message = '') : void + private function importNodes(DOMNodeList $nodeList): void { - static::assertThat($actual, static::logicalNot(static::isEmpty()), $message); + foreach ($nodeList as $node) { + if (!$node instanceof DOMElement) { + throw new ElementCollectionException(sprintf('\DOMElement expected, got \%s', get_class($node))); + } + $this->nodes[] = $node; + } } - /** - * Asserts that a value is greater than another value. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertGreaterThan($expected, $actual, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use DOMDocument; +use DOMElement; +use Throwable; +use function count; +use function file_get_contents; +use function is_file; +use function libxml_clear_errors; +use function libxml_get_errors; +use function libxml_use_internal_errors; +use function sprintf; +class ManifestDocument +{ + public const XMLNS = 'https://phar.io/xml/manifest/1.0'; + /** @var DOMDocument */ + private $dom; + public static function fromFile(string $filename): ManifestDocument { - static::assertThat($actual, static::greaterThan($expected), $message); + if (!is_file($filename)) { + throw new ManifestDocumentException(sprintf('File "%s" not found', $filename)); + } + return self::fromString(file_get_contents($filename)); } - /** - * Asserts that a value is greater than or equal to another value. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertGreaterThanOrEqual($expected, $actual, string $message = '') : void + public static function fromString(string $xmlString): ManifestDocument { - static::assertThat($actual, static::greaterThanOrEqual($expected), $message); + $prev = libxml_use_internal_errors(\true); + libxml_clear_errors(); + try { + $dom = new DOMDocument(); + $dom->loadXML($xmlString); + $errors = libxml_get_errors(); + libxml_use_internal_errors($prev); + } catch (Throwable $t) { + throw new ManifestDocumentException($t->getMessage(), 0, $t); + } + if (count($errors) !== 0) { + throw new ManifestDocumentLoadingException($errors); + } + return new self($dom); } - /** - * Asserts that a value is smaller than another value. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertLessThan($expected, $actual, string $message = '') : void + private function __construct(DOMDocument $dom) { - static::assertThat($actual, static::lessThan($expected), $message); + $this->ensureCorrectDocumentType($dom); + $this->dom = $dom; } - /** - * Asserts that a value is smaller than or equal to another value. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertLessThanOrEqual($expected, $actual, string $message = '') : void + public function getContainsElement(): ContainsElement { - static::assertThat($actual, static::lessThanOrEqual($expected), $message); + return new ContainsElement($this->fetchElementByName('contains')); } - /** - * Asserts that the contents of one file is equal to the contents of another - * file. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileEquals(string $expected, string $actual, string $message = '') : void + public function getCopyrightElement(): CopyrightElement { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new IsEqual(file_get_contents($expected)); - static::assertThat(file_get_contents($actual), $constraint, $message); + return new CopyrightElement($this->fetchElementByName('copyright')); } - /** - * Asserts that the contents of one file is equal to the contents of another - * file (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileEqualsCanonicalizing(string $expected, string $actual, string $message = '') : void + public function getRequiresElement(): RequiresElement { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new IsEqualCanonicalizing(file_get_contents($expected)); - static::assertThat(file_get_contents($actual), $constraint, $message); + return new RequiresElement($this->fetchElementByName('requires')); } - /** - * Asserts that the contents of one file is equal to the contents of another - * file (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileEqualsIgnoringCase(string $expected, string $actual, string $message = '') : void + public function hasBundlesElement(): bool { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new IsEqualIgnoringCase(file_get_contents($expected)); - static::assertThat(file_get_contents($actual), $constraint, $message); + return $this->dom->getElementsByTagNameNS(self::XMLNS, 'bundles')->length === 1; } - /** - * Asserts that the contents of one file is not equal to the contents of - * another file. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileNotEquals(string $expected, string $actual, string $message = '') : void + public function getBundlesElement(): BundlesElement { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new LogicalNot(new IsEqual(file_get_contents($expected))); - static::assertThat(file_get_contents($actual), $constraint, $message); + return new BundlesElement($this->fetchElementByName('bundles')); } - /** - * Asserts that the contents of one file is not equal to the contents of another - * file (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileNotEqualsCanonicalizing(string $expected, string $actual, string $message = '') : void + private function ensureCorrectDocumentType(DOMDocument $dom): void { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new LogicalNot(new IsEqualCanonicalizing(file_get_contents($expected))); - static::assertThat(file_get_contents($actual), $constraint, $message); + $root = $dom->documentElement; + if ($root->localName !== 'phar' || $root->namespaceURI !== self::XMLNS) { + throw new ManifestDocumentException('Not a phar.io manifest document'); + } } - /** - * Asserts that the contents of one file is not equal to the contents of another - * file (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileNotEqualsIgnoringCase(string $expected, string $actual, string $message = '') : void + private function fetchElementByName(string $elementName): DOMElement { - static::assertFileExists($expected, $message); - static::assertFileExists($actual, $message); - $constraint = new LogicalNot(new IsEqualIgnoringCase(file_get_contents($expected))); - static::assertThat(file_get_contents($actual), $constraint, $message); + $element = $this->dom->getElementsByTagNameNS(self::XMLNS, $elementName)->item(0); + if (!$element instanceof DOMElement) { + throw new ManifestDocumentException(sprintf('Element %s missing', $elementName)); + } + return $element; } - /** - * Asserts that the contents of a string is equal - * to the contents of a file. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringEqualsFile(string $expectedFile, string $actualString, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class BundlesElement extends ManifestElement +{ + public function getComponentElements(): ComponentElementCollection { - static::assertFileExists($expectedFile, $message); - $constraint = new IsEqual(file_get_contents($expectedFile)); - static::assertThat($actualString, $constraint, $message); + return new ComponentElementCollection($this->getChildrenByName('component')); } - /** - * Asserts that the contents of a string is equal - * to the contents of a file (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class AuthorElementCollection extends ElementCollection +{ + public function current(): AuthorElement { - static::assertFileExists($expectedFile, $message); - $constraint = new IsEqualCanonicalizing(file_get_contents($expectedFile)); - static::assertThat($actualString, $constraint, $message); + return new AuthorElement($this->getCurrentElement()); } - /** - * Asserts that the contents of a string is equal - * to the contents of a file (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ComponentElementCollection extends ElementCollection +{ + public function current(): ComponentElement { - static::assertFileExists($expectedFile, $message); - $constraint = new IsEqualIgnoringCase(file_get_contents($expectedFile)); - static::assertThat($actualString, $constraint, $message); + return new ComponentElement($this->getCurrentElement()); } - /** - * Asserts that the contents of a string is not equal - * to the contents of a file. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringNotEqualsFile(string $expectedFile, string $actualString, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class CopyrightElement extends ManifestElement +{ + public function getAuthorElements(): AuthorElementCollection { - static::assertFileExists($expectedFile, $message); - $constraint = new LogicalNot(new IsEqual(file_get_contents($expectedFile))); - static::assertThat($actualString, $constraint, $message); + return new AuthorElementCollection($this->getChildrenByName('author')); } - /** - * Asserts that the contents of a string is not equal - * to the contents of a file (canonicalizing). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringNotEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = '') : void + public function getLicenseElement(): LicenseElement { - static::assertFileExists($expectedFile, $message); - $constraint = new LogicalNot(new IsEqualCanonicalizing(file_get_contents($expectedFile))); - static::assertThat($actualString, $constraint, $message); + return new LicenseElement($this->getChildByName('license')); } - /** - * Asserts that the contents of a string is not equal - * to the contents of a file (ignoring case). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertStringNotEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ExtElement extends ManifestElement +{ + public function getName(): string { - static::assertFileExists($expectedFile, $message); - $constraint = new LogicalNot(new IsEqualIgnoringCase(file_get_contents($expectedFile))); - static::assertThat($actualString, $constraint, $message); + return $this->getAttributeValue('name'); } - /** - * Asserts that a file/dir is readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertIsReadable(string $filename, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class RequiresElement extends ManifestElement +{ + public function getPHPElement(): PhpElement { - static::assertThat($filename, new IsReadable(), $message); + return new PhpElement($this->getChildByName('php')); } - /** - * Asserts that a file/dir exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertIsNotReadable(string $filename, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +class ExtensionElement extends ManifestElement +{ + public function getFor(): string { - static::assertThat($filename, new LogicalNot(new IsReadable()), $message); + return $this->getAttributeValue('for'); } - /** - * Asserts that a file/dir exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4062 - */ - public static function assertNotIsReadable(string $filename, string $message = '') : void + public function getCompatible(): string { - self::createWarning('assertNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertIsNotReadable() instead.'); - static::assertThat($filename, new LogicalNot(new IsReadable()), $message); + return $this->getAttributeValue('compatible'); } - /** - * Asserts that a file/dir exists and is writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertIsWritable(string $filename, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use DOMElement; +use DOMNodeList; +use function sprintf; +class ManifestElement +{ + public const XMLNS = 'https://phar.io/xml/manifest/1.0'; + /** @var DOMElement */ + private $element; + public function __construct(DOMElement $element) { - static::assertThat($filename, new IsWritable(), $message); + $this->element = $element; } - /** - * Asserts that a file/dir exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertIsNotWritable(string $filename, string $message = '') : void + protected function getAttributeValue(string $name): string { - static::assertThat($filename, new LogicalNot(new IsWritable()), $message); + if (!$this->element->hasAttribute($name)) { + throw new ManifestElementException(sprintf('Attribute %s not set on element %s', $name, $this->element->localName)); + } + return $this->element->getAttribute($name); } - /** - * Asserts that a file/dir exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4065 - */ - public static function assertNotIsWritable(string $filename, string $message = '') : void + protected function hasAttribute(string $name): bool { - self::createWarning('assertNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertIsNotWritable() instead.'); - static::assertThat($filename, new LogicalNot(new IsWritable()), $message); + return $this->element->hasAttribute($name); } - /** - * Asserts that a directory exists. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryExists(string $directory, string $message = '') : void + protected function getChildByName(string $elementName): DOMElement { - static::assertThat($directory, new DirectoryExists(), $message); + $element = $this->element->getElementsByTagNameNS(self::XMLNS, $elementName)->item(0); + if (!$element instanceof DOMElement) { + throw new ManifestElementException(sprintf('Element %s missing', $elementName)); + } + return $element; } - /** - * Asserts that a directory does not exist. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryDoesNotExist(string $directory, string $message = '') : void + protected function getChildrenByName(string $elementName): DOMNodeList { - static::assertThat($directory, new LogicalNot(new DirectoryExists()), $message); + $elementList = $this->element->getElementsByTagNameNS(self::XMLNS, $elementName); + if ($elementList->length === 0) { + throw new ManifestElementException(sprintf('Element(s) %s missing', $elementName)); + } + return $elementList; } - /** - * Asserts that a directory does not exist. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4068 - */ - public static function assertDirectoryNotExists(string $directory, string $message = '') : void + protected function hasChild(string $elementName): bool + { + return $this->element->getElementsByTagNameNS(self::XMLNS, $elementName)->length !== 0; + } +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\AnyVersionConstraint; +use PHPUnitPHAR\PharIo\Version\Version; +use PHPUnitPHAR\PharIo\Version\VersionConstraint; +use XMLWriter; +use function count; +use function file_put_contents; +use function str_repeat; +/** @psalm-suppress MissingConstructor */ +class ManifestSerializer +{ + /** @var XMLWriter */ + private $xmlWriter; + public function serializeToFile(Manifest $manifest, string $filename): void { - self::createWarning('assertDirectoryNotExists() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryDoesNotExist() instead.'); - static::assertThat($directory, new LogicalNot(new DirectoryExists()), $message); + file_put_contents($filename, $this->serializeToString($manifest)); } - /** - * Asserts that a directory exists and is readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryIsReadable(string $directory, string $message = '') : void + public function serializeToString(Manifest $manifest): string { - self::assertDirectoryExists($directory, $message); - self::assertIsReadable($directory, $message); + $this->startDocument(); + $this->addContains($manifest->getName(), $manifest->getVersion(), $manifest->getType()); + $this->addCopyright($manifest->getCopyrightInformation()); + $this->addRequirements($manifest->getRequirements()); + $this->addBundles($manifest->getBundledComponents()); + return $this->finishDocument(); } - /** - * Asserts that a directory exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryIsNotReadable(string $directory, string $message = '') : void + private function startDocument(): void { - self::assertDirectoryExists($directory, $message); - self::assertIsNotReadable($directory, $message); + $xmlWriter = new XMLWriter(); + $xmlWriter->openMemory(); + $xmlWriter->setIndent(\true); + $xmlWriter->setIndentString(str_repeat(' ', 4)); + $xmlWriter->startDocument('1.0', 'UTF-8'); + $xmlWriter->startElement('phar'); + $xmlWriter->writeAttribute('xmlns', 'https://phar.io/xml/manifest/1.0'); + $this->xmlWriter = $xmlWriter; } - /** - * Asserts that a directory exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4071 - */ - public static function assertDirectoryNotIsReadable(string $directory, string $message = '') : void + private function finishDocument(): string { - self::createWarning('assertDirectoryNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryIsNotReadable() instead.'); - self::assertDirectoryExists($directory, $message); - self::assertIsNotReadable($directory, $message); + $this->xmlWriter->endElement(); + $this->xmlWriter->endDocument(); + return $this->xmlWriter->outputMemory(); } - /** - * Asserts that a directory exists and is writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryIsWritable(string $directory, string $message = '') : void + private function addContains(ApplicationName $name, Version $version, Type $type): void { - self::assertDirectoryExists($directory, $message); - self::assertIsWritable($directory, $message); + $this->xmlWriter->startElement('contains'); + $this->xmlWriter->writeAttribute('name', $name->asString()); + $this->xmlWriter->writeAttribute('version', $version->getVersionString()); + switch (\true) { + case $type->isApplication(): + { + $this->xmlWriter->writeAttribute('type', 'application'); + break; + } + case $type->isLibrary(): + { + $this->xmlWriter->writeAttribute('type', 'library'); + break; + } + case $type->isExtension(): + { + $this->xmlWriter->writeAttribute('type', 'extension'); + /* @var $type Extension */ + $this->addExtension($type->getApplicationName(), $type->getVersionConstraint()); + break; + } + default: + { + $this->xmlWriter->writeAttribute('type', 'custom'); + } + } + $this->xmlWriter->endElement(); } - /** - * Asserts that a directory exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertDirectoryIsNotWritable(string $directory, string $message = '') : void + private function addCopyright(CopyrightInformation $copyrightInformation): void { - self::assertDirectoryExists($directory, $message); - self::assertIsNotWritable($directory, $message); + $this->xmlWriter->startElement('copyright'); + foreach ($copyrightInformation->getAuthors() as $author) { + $this->xmlWriter->startElement('author'); + $this->xmlWriter->writeAttribute('name', $author->getName()); + $this->xmlWriter->writeAttribute('email', $author->getEmail()->asString()); + $this->xmlWriter->endElement(); + } + $license = $copyrightInformation->getLicense(); + $this->xmlWriter->startElement('license'); + $this->xmlWriter->writeAttribute('type', $license->getName()); + $this->xmlWriter->writeAttribute('url', $license->getUrl()->asString()); + $this->xmlWriter->endElement(); + $this->xmlWriter->endElement(); } - /** - * Asserts that a directory exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4074 - */ - public static function assertDirectoryNotIsWritable(string $directory, string $message = '') : void + private function addRequirements(RequirementCollection $requirementCollection): void { - self::createWarning('assertDirectoryNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryIsNotWritable() instead.'); - self::assertDirectoryExists($directory, $message); - self::assertIsNotWritable($directory, $message); + $phpRequirement = new AnyVersionConstraint(); + $extensions = []; + foreach ($requirementCollection as $requirement) { + if ($requirement instanceof PhpVersionRequirement) { + $phpRequirement = $requirement->getVersionConstraint(); + continue; + } + if ($requirement instanceof PhpExtensionRequirement) { + $extensions[] = $requirement->asString(); + } + } + $this->xmlWriter->startElement('requires'); + $this->xmlWriter->startElement('php'); + $this->xmlWriter->writeAttribute('version', $phpRequirement->asString()); + foreach ($extensions as $extension) { + $this->xmlWriter->startElement('ext'); + $this->xmlWriter->writeAttribute('name', $extension); + $this->xmlWriter->endElement(); + } + $this->xmlWriter->endElement(); + $this->xmlWriter->endElement(); } - /** - * Asserts that a file exists. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileExists(string $filename, string $message = '') : void + private function addBundles(BundledComponentCollection $bundledComponentCollection): void { - static::assertThat($filename, new FileExists(), $message); + if (count($bundledComponentCollection) === 0) { + return; + } + $this->xmlWriter->startElement('bundles'); + foreach ($bundledComponentCollection as $bundledComponent) { + $this->xmlWriter->startElement('component'); + $this->xmlWriter->writeAttribute('name', $bundledComponent->getName()); + $this->xmlWriter->writeAttribute('version', $bundledComponent->getVersion()->getVersionString()); + $this->xmlWriter->endElement(); + } + $this->xmlWriter->endElement(); } - /** - * Asserts that a file does not exist. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileDoesNotExist(string $filename, string $message = '') : void + private function addExtension(ApplicationName $applicationName, VersionConstraint $versionConstraint): void { - static::assertThat($filename, new LogicalNot(new FileExists()), $message); + $this->xmlWriter->startElement('extension'); + $this->xmlWriter->writeAttribute('for', $applicationName->asString()); + $this->xmlWriter->writeAttribute('compatible', $versionConstraint->asString()); + $this->xmlWriter->endElement(); } - /** - * Asserts that a file does not exist. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4077 - */ - public static function assertFileNotExists(string $filename, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use function sprintf; +class ManifestLoader +{ + public static function fromFile(string $filename): Manifest { - self::createWarning('assertFileNotExists() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileDoesNotExist() instead.'); - static::assertThat($filename, new LogicalNot(new FileExists()), $message); + try { + return (new ManifestDocumentMapper())->map(ManifestDocument::fromFile($filename)); + } catch (Exception $e) { + throw new ManifestLoaderException(sprintf('Loading %s failed.', $filename), (int) $e->getCode(), $e); + } } - /** - * Asserts that a file exists and is readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileIsReadable(string $file, string $message = '') : void + public static function fromPhar(string $filename): Manifest { - self::assertFileExists($file, $message); - self::assertIsReadable($file, $message); + return self::fromFile('phar://' . $filename . '/manifest.xml'); } - /** - * Asserts that a file exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileIsNotReadable(string $file, string $message = '') : void + public static function fromString(string $manifest): Manifest { - self::assertFileExists($file, $message); - self::assertIsNotReadable($file, $message); + try { + return (new ManifestDocumentMapper())->map(ManifestDocument::fromString($manifest)); + } catch (Exception $e) { + throw new ManifestLoaderException('Processing string failed', (int) $e->getCode(), $e); + } } - /** - * Asserts that a file exists and is not readable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4080 - */ - public static function assertFileNotIsReadable(string $file, string $message = '') : void +} +, Sebastian Heuer , Sebastian Bergmann and contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ +namespace PHPUnitPHAR\PharIo\Manifest; + +use PHPUnitPHAR\PharIo\Version\Exception as VersionException; +use PHPUnitPHAR\PharIo\Version\Version; +use PHPUnitPHAR\PharIo\Version\VersionConstraintParser; +use Throwable; +use function sprintf; +class ManifestDocumentMapper +{ + public function map(ManifestDocument $document): Manifest { - self::createWarning('assertFileNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileIsNotReadable() instead.'); - self::assertFileExists($file, $message); - self::assertIsNotReadable($file, $message); + try { + $contains = $document->getContainsElement(); + $type = $this->mapType($contains); + $copyright = $this->mapCopyright($document->getCopyrightElement()); + $requirements = $this->mapRequirements($document->getRequiresElement()); + $bundledComponents = $this->mapBundledComponents($document); + return new Manifest(new ApplicationName($contains->getName()), new Version($contains->getVersion()), $type, $copyright, $requirements, $bundledComponents); + } catch (Throwable $e) { + throw new ManifestDocumentMapperException($e->getMessage(), (int) $e->getCode(), $e); + } } - /** - * Asserts that a file exists and is writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileIsWritable(string $file, string $message = '') : void + private function mapType(ContainsElement $contains): Type { - self::assertFileExists($file, $message); - self::assertIsWritable($file, $message); + switch ($contains->getType()) { + case 'application': + return Type::application(); + case 'library': + return Type::library(); + case 'extension': + return $this->mapExtension($contains->getExtensionElement()); + } + throw new ManifestDocumentMapperException(sprintf('Unsupported type %s', $contains->getType())); } - /** - * Asserts that a file exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFileIsNotWritable(string $file, string $message = '') : void + private function mapCopyright(CopyrightElement $copyright): CopyrightInformation { - self::assertFileExists($file, $message); - self::assertIsNotWritable($file, $message); + $authors = new AuthorCollection(); + foreach ($copyright->getAuthorElements() as $authorElement) { + $authors->add(new Author($authorElement->getName(), $authorElement->hasEMail() ? new Email($authorElement->getEmail()) : null)); + } + $licenseElement = $copyright->getLicenseElement(); + $license = new License($licenseElement->getType(), new Url($licenseElement->getUrl())); + return new CopyrightInformation($authors, $license); } - /** - * Asserts that a file exists and is not writable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4083 - */ - public static function assertFileNotIsWritable(string $file, string $message = '') : void + private function mapRequirements(RequiresElement $requires): RequirementCollection { - self::createWarning('assertFileNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileIsNotWritable() instead.'); - self::assertFileExists($file, $message); - self::assertIsNotWritable($file, $message); + $collection = new RequirementCollection(); + $phpElement = $requires->getPHPElement(); + $parser = new VersionConstraintParser(); + try { + $versionConstraint = $parser->parse($phpElement->getVersion()); + } catch (VersionException $e) { + throw new ManifestDocumentMapperException(sprintf('Unsupported version constraint - %s', $e->getMessage()), (int) $e->getCode(), $e); + } + $collection->add(new PhpVersionRequirement($versionConstraint)); + if (!$phpElement->hasExtElements()) { + return $collection; + } + foreach ($phpElement->getExtElements() as $extElement) { + $collection->add(new PhpExtensionRequirement($extElement->getName())); + } + return $collection; } - /** - * Asserts that a condition is true. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert true $condition - */ - public static function assertTrue($condition, string $message = '') : void + private function mapBundledComponents(ManifestDocument $document): BundledComponentCollection { - static::assertThat($condition, static::isTrue(), $message); + $collection = new BundledComponentCollection(); + if (!$document->hasBundlesElement()) { + return $collection; + } + foreach ($document->getBundlesElement()->getComponentElements() as $componentElement) { + $collection->add(new BundledComponent($componentElement->getName(), new Version($componentElement->getVersion()))); + } + return $collection; } - /** - * Asserts that a condition is not true. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !true $condition - */ - public static function assertNotTrue($condition, string $message = '') : void + private function mapExtension(ExtensionElement $extension): Extension { - static::assertThat($condition, static::logicalNot(static::isTrue()), $message); + try { + $versionConstraint = (new VersionConstraintParser())->parse($extension->getCompatible()); + return Type::extension(new ApplicationName($extension->getFor()), $versionConstraint); + } catch (VersionException $e) { + throw new ManifestDocumentMapperException(sprintf('Unsupported version constraint - %s', $e->getMessage()), (int) $e->getCode(), $e); + } } +} +Recursion Context + +Copyright (c) 2002-2022, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\RecursionContext; + +final class InvalidArgumentException extends \InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\RecursionContext; + +use const PHP_INT_MAX; +use const PHP_INT_MIN; +use function array_key_exists; +use function array_pop; +use function array_slice; +use function count; +use function is_array; +use function is_object; +use function random_int; +use function spl_object_hash; +use SplObjectStorage; +/** + * A context containing previously processed arrays and objects + * when recursively processing a value. + */ +final class Context +{ /** - * Asserts that a condition is false. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert false $condition + * @var array[] */ - public static function assertFalse($condition, string $message = '') : void - { - static::assertThat($condition, static::isFalse(), $message); - } + private $arrays; /** - * Asserts that a condition is not false. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !false $condition + * @var SplObjectStorage */ - public static function assertNotFalse($condition, string $message = '') : void - { - static::assertThat($condition, static::logicalNot(static::isFalse()), $message); - } + private $objects; /** - * Asserts that a variable is null. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert null $actual + * Initialises the context. */ - public static function assertNull($actual, string $message = '') : void + public function __construct() { - static::assertThat($actual, static::isNull(), $message); + $this->arrays = []; + $this->objects = new SplObjectStorage(); } /** - * Asserts that a variable is not null. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !null $actual + * @codeCoverageIgnore */ - public static function assertNotNull($actual, string $message = '') : void + public function __destruct() { - static::assertThat($actual, static::logicalNot(static::isNull()), $message); + foreach ($this->arrays as &$array) { + if (is_array($array)) { + array_pop($array); + array_pop($array); + } + } } /** - * Asserts that a variable is finite. + * Adds a value to the context. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertFinite($actual, string $message = '') : void - { - static::assertThat($actual, static::isFinite(), $message); - } - /** - * Asserts that a variable is infinite. + * @param array|object $value the value to add * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertInfinite($actual, string $message = '') : void - { - static::assertThat($actual, static::isInfinite(), $message); - } - /** - * Asserts that a variable is nan. + * @throws InvalidArgumentException Thrown if $value is not an array or object * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @return bool|int|string the ID of the stored value, either as a string or integer + * + * @psalm-template T + * @psalm-param T $value + * @param-out T $value */ - public static function assertNan($actual, string $message = '') : void + public function add(&$value) { - static::assertThat($actual, static::isNan(), $message); + if (is_array($value)) { + return $this->addArray($value); + } + if (is_object($value)) { + return $this->addObject($value); + } + throw new InvalidArgumentException('Only arrays and objects are supported'); } /** - * Asserts that a class has a specified attribute. + * Checks if the given value exists within the context. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @param array|object $value the value to check + * + * @throws InvalidArgumentException Thrown if $value is not an array or object + * + * @return false|int|string the string or integer ID of the stored value if it has already been seen, or false if the value is not stored + * + * @psalm-template T + * @psalm-param T $value + * @param-out T $value */ - public static function assertClassHasAttribute(string $attributeName, string $className, string $message = '') : void + public function contains(&$value) { - if (!self::isValidClassAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + if (is_array($value)) { + return $this->containsArray($value); } - if (!class_exists($className)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + if (is_object($value)) { + return $this->containsObject($value); } - static::assertThat($className, new ClassHasAttribute($attributeName), $message); + throw new InvalidArgumentException('Only arrays and objects are supported'); } /** - * Asserts that a class does not have a specified attribute. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @return bool|int */ - public static function assertClassNotHasAttribute(string $attributeName, string $className, string $message = '') : void + private function addArray(array &$array) { - if (!self::isValidClassAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + $key = $this->containsArray($array); + if ($key !== \false) { + return $key; } - if (!class_exists($className)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + $key = count($this->arrays); + $this->arrays[] =& $array; + if (!array_key_exists(PHP_INT_MAX, $array) && !array_key_exists(PHP_INT_MAX - 1, $array)) { + $array[] = $key; + $array[] = $this->objects; + } else { + /* cover the improbable case too */ + /* Note that array_slice (used in containsArray) will return the + * last two values added *not necessarily* the highest integer + * keys in the array, so the order of these writes to $array + * is important, but the actual keys used is not. */ + do { + $key = random_int(PHP_INT_MIN, PHP_INT_MAX); + } while (array_key_exists($key, $array)); + $array[$key] = $key; + do { + $key = random_int(PHP_INT_MIN, PHP_INT_MAX); + } while (array_key_exists($key, $array)); + $array[$key] = $this->objects; } - static::assertThat($className, new LogicalNot(new ClassHasAttribute($attributeName)), $message); + return $key; } /** - * Asserts that a class has a specified static attribute. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @param object $object */ - public static function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = '') : void + private function addObject($object): string { - if (!self::isValidClassAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); - } - if (!class_exists($className)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + if (!$this->objects->contains($object)) { + $this->objects->attach($object); } - static::assertThat($className, new ClassHasStaticAttribute($attributeName), $message); + return spl_object_hash($object); } /** - * Asserts that a class does not have a specified static attribute. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @return false|int */ - public static function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = '') : void + private function containsArray(array &$array) { - if (!self::isValidClassAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); - } - if (!class_exists($className)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); - } - static::assertThat($className, new LogicalNot(new ClassHasStaticAttribute($attributeName)), $message); + $end = array_slice($array, -2); + return isset($end[1]) && $end[1] === $this->objects ? $end[0] : \false; } /** - * Asserts that an object has a specified attribute. - * - * @param object $object + * @param object $value * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @return false|string */ - public static function assertObjectHasAttribute(string $attributeName, $object, string $message = '') : void + private function containsObject($value) + { + if ($this->objects->contains($value)) { + return spl_object_hash($value); + } + return \false; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\RecursionContext; + +use Throwable; +interface Exception extends Throwable +{ +} + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 8.5 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.0 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.0 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.2 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.3 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.4 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.5 may be structured. + + + + + + Root Element + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The main type specifying the document structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI; + +use PHPUnit\Framework\TestListener; +use PHPUnit\Framework\TestResult; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +interface ResultPrinter extends TestListener +{ + public function printResult(TestResult $result): void; + public function write(string $buffer): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\CliArguments; + +use function array_map; +use function array_merge; +use function class_exists; +use function explode; +use function is_numeric; +use function str_replace; +use PHPUnit\Runner\TestSuiteSorter; +use PHPUnit\TextUI\DefaultResultPrinter; +use PHPUnit\TextUI\XmlConfiguration\Extension; +use PHPUnit\Util\Log\TeamCity; +use PHPUnit\Util\TestDox\CliTestDoxPrinter; +use PHPUnitPHAR\SebastianBergmann\CliParser\Exception as CliParserException; +use PHPUnitPHAR\SebastianBergmann\CliParser\Parser as CliParser; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Builder +{ + private const LONG_OPTIONS = ['atleast-version=', 'prepend=', 'bootstrap=', 'cache-result', 'do-not-cache-result', 'cache-result-file=', 'check-version', 'colors==', 'columns=', 'configuration=', 'coverage-cache=', 'warm-coverage-cache', 'coverage-filter=', 'coverage-clover=', 'coverage-cobertura=', 'coverage-crap4j=', 'coverage-html=', 'coverage-php=', 'coverage-text==', 'coverage-xml=', 'path-coverage', 'debug', 'disallow-test-output', 'disallow-resource-usage', 'disallow-todo-tests', 'default-time-limit=', 'enforce-time-limit', 'exclude-group=', 'extensions=', 'filter=', 'generate-configuration', 'globals-backup', 'group=', 'covers=', 'uses=', 'help', 'resolve-dependencies', 'ignore-dependencies', 'include-path=', 'list-groups', 'list-suites', 'list-tests', 'list-tests-xml=', 'loader=', 'log-junit=', 'log-teamcity=', 'migrate-configuration', 'no-configuration', 'no-coverage', 'no-logging', 'no-interaction', 'no-extensions', 'order-by=', 'printer=', 'process-isolation', 'repeat=', 'dont-report-useless-tests', 'random-order', 'random-order-seed=', 'reverse-order', 'reverse-list', 'static-backup', 'stderr', 'stop-on-defect', 'stop-on-error', 'stop-on-failure', 'stop-on-warning', 'stop-on-incomplete', 'stop-on-risky', 'stop-on-skipped', 'fail-on-empty-test-suite', 'fail-on-incomplete', 'fail-on-risky', 'fail-on-skipped', 'fail-on-warning', 'strict-coverage', 'disable-coverage-ignore', 'strict-global-state', 'teamcity', 'testdox', 'testdox-group=', 'testdox-exclude-group=', 'testdox-html=', 'testdox-text=', 'testdox-xml=', 'test-suffix=', 'testsuite=', 'verbose', 'version', 'whitelist=', 'dump-xdebug-filter=']; + private const SHORT_OPTIONS = 'd:c:hv'; + public function fromParameters(array $parameters, array $additionalLongOptions): \PHPUnit\TextUI\CliArguments\Configuration { - if (!self::isValidObjectAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + try { + $options = (new CliParser())->parse($parameters, self::SHORT_OPTIONS, array_merge(self::LONG_OPTIONS, $additionalLongOptions)); + } catch (CliParserException $e) { + throw new \PHPUnit\TextUI\CliArguments\Exception($e->getMessage(), $e->getCode(), $e); } - if (!is_object($object)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'object'); + $argument = null; + $atLeastVersion = null; + $backupGlobals = null; + $backupStaticAttributes = null; + $beStrictAboutChangesToGlobalState = null; + $beStrictAboutResourceUsageDuringSmallTests = null; + $bootstrap = null; + $cacheResult = null; + $cacheResultFile = null; + $checkVersion = null; + $colors = null; + $columns = null; + $configuration = null; + $coverageCacheDirectory = null; + $warmCoverageCache = null; + $coverageFilter = null; + $coverageClover = null; + $coverageCobertura = null; + $coverageCrap4J = null; + $coverageHtml = null; + $coveragePhp = null; + $coverageText = null; + $coverageTextShowUncoveredFiles = null; + $coverageTextShowOnlySummary = null; + $coverageXml = null; + $pathCoverage = null; + $debug = null; + $defaultTimeLimit = null; + $disableCodeCoverageIgnore = null; + $disallowTestOutput = null; + $disallowTodoAnnotatedTests = null; + $enforceTimeLimit = null; + $excludeGroups = null; + $executionOrder = null; + $executionOrderDefects = null; + $extensions = []; + $unavailableExtensions = []; + $failOnEmptyTestSuite = null; + $failOnIncomplete = null; + $failOnRisky = null; + $failOnSkipped = null; + $failOnWarning = null; + $filter = null; + $generateConfiguration = null; + $migrateConfiguration = null; + $groups = null; + $testsCovering = null; + $testsUsing = null; + $help = null; + $includePath = null; + $iniSettings = []; + $junitLogfile = null; + $listGroups = null; + $listSuites = null; + $listTests = null; + $listTestsXml = null; + $loader = null; + $noCoverage = null; + $noExtensions = null; + $noInteraction = null; + $noLogging = null; + $printer = null; + $processIsolation = null; + $randomOrderSeed = null; + $repeat = null; + $reportUselessTests = null; + $resolveDependencies = null; + $reverseList = null; + $stderr = null; + $strictCoverage = null; + $stopOnDefect = null; + $stopOnError = null; + $stopOnFailure = null; + $stopOnIncomplete = null; + $stopOnRisky = null; + $stopOnSkipped = null; + $stopOnWarning = null; + $teamcityLogfile = null; + $testdoxExcludeGroups = null; + $testdoxGroups = null; + $testdoxHtmlFile = null; + $testdoxTextFile = null; + $testdoxXmlFile = null; + $testSuffixes = null; + $testSuite = null; + $unrecognizedOptions = []; + $unrecognizedOrderBy = null; + $useDefaultConfiguration = null; + $verbose = null; + $version = null; + $xdebugFilterFile = null; + if (isset($options[1][0])) { + $argument = $options[1][0]; } - static::assertThat($object, new ObjectHasAttribute($attributeName), $message); - } - /** - * Asserts that an object does not have a specified attribute. - * - * @param object $object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - */ - public static function assertObjectNotHasAttribute(string $attributeName, $object, string $message = '') : void - { - if (!self::isValidObjectAttributeName($attributeName)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + foreach ($options[0] as $option) { + switch ($option[0]) { + case '--colors': + $colors = $option[1] ?: DefaultResultPrinter::COLOR_AUTO; + break; + case '--bootstrap': + $bootstrap = $option[1]; + break; + case '--cache-result': + $cacheResult = \true; + break; + case '--do-not-cache-result': + $cacheResult = \false; + break; + case '--cache-result-file': + $cacheResultFile = $option[1]; + break; + case '--columns': + if (is_numeric($option[1])) { + $columns = (int) $option[1]; + } elseif ($option[1] === 'max') { + $columns = 'max'; + } + break; + case 'c': + case '--configuration': + $configuration = $option[1]; + break; + case '--coverage-cache': + $coverageCacheDirectory = $option[1]; + break; + case '--warm-coverage-cache': + $warmCoverageCache = \true; + break; + case '--coverage-clover': + $coverageClover = $option[1]; + break; + case '--coverage-cobertura': + $coverageCobertura = $option[1]; + break; + case '--coverage-crap4j': + $coverageCrap4J = $option[1]; + break; + case '--coverage-html': + $coverageHtml = $option[1]; + break; + case '--coverage-php': + $coveragePhp = $option[1]; + break; + case '--coverage-text': + if ($option[1] === null) { + $option[1] = 'php://stdout'; + } + $coverageText = $option[1]; + $coverageTextShowUncoveredFiles = \false; + $coverageTextShowOnlySummary = \false; + break; + case '--coverage-xml': + $coverageXml = $option[1]; + break; + case '--path-coverage': + $pathCoverage = \true; + break; + case 'd': + $tmp = explode('=', $option[1]); + if (isset($tmp[0])) { + if (isset($tmp[1])) { + $iniSettings[$tmp[0]] = $tmp[1]; + } else { + $iniSettings[$tmp[0]] = '1'; + } + } + break; + case '--debug': + $debug = \true; + break; + case 'h': + case '--help': + $help = \true; + break; + case '--filter': + $filter = $option[1]; + break; + case '--testsuite': + $testSuite = $option[1]; + break; + case '--generate-configuration': + $generateConfiguration = \true; + break; + case '--migrate-configuration': + $migrateConfiguration = \true; + break; + case '--group': + $groups = explode(',', $option[1]); + break; + case '--exclude-group': + $excludeGroups = explode(',', $option[1]); + break; + case '--covers': + $testsCovering = array_map('strtolower', explode(',', $option[1])); + break; + case '--uses': + $testsUsing = array_map('strtolower', explode(',', $option[1])); + break; + case '--test-suffix': + $testSuffixes = explode(',', $option[1]); + break; + case '--include-path': + $includePath = $option[1]; + break; + case '--list-groups': + $listGroups = \true; + break; + case '--list-suites': + $listSuites = \true; + break; + case '--list-tests': + $listTests = \true; + break; + case '--list-tests-xml': + $listTestsXml = $option[1]; + break; + case '--printer': + $printer = $option[1]; + break; + case '--loader': + $loader = $option[1]; + break; + case '--log-junit': + $junitLogfile = $option[1]; + break; + case '--log-teamcity': + $teamcityLogfile = $option[1]; + break; + case '--order-by': + foreach (explode(',', $option[1]) as $order) { + switch ($order) { + case 'default': + $executionOrder = TestSuiteSorter::ORDER_DEFAULT; + $executionOrderDefects = TestSuiteSorter::ORDER_DEFAULT; + $resolveDependencies = \true; + break; + case 'defects': + $executionOrderDefects = TestSuiteSorter::ORDER_DEFECTS_FIRST; + break; + case 'depends': + $resolveDependencies = \true; + break; + case 'duration': + $executionOrder = TestSuiteSorter::ORDER_DURATION; + break; + case 'no-depends': + $resolveDependencies = \false; + break; + case 'random': + $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; + break; + case 'reverse': + $executionOrder = TestSuiteSorter::ORDER_REVERSED; + break; + case 'size': + $executionOrder = TestSuiteSorter::ORDER_SIZE; + break; + default: + $unrecognizedOrderBy = $order; + } + } + break; + case '--process-isolation': + $processIsolation = \true; + break; + case '--repeat': + $repeat = (int) $option[1]; + break; + case '--stderr': + $stderr = \true; + break; + case '--stop-on-defect': + $stopOnDefect = \true; + break; + case '--stop-on-error': + $stopOnError = \true; + break; + case '--stop-on-failure': + $stopOnFailure = \true; + break; + case '--stop-on-warning': + $stopOnWarning = \true; + break; + case '--stop-on-incomplete': + $stopOnIncomplete = \true; + break; + case '--stop-on-risky': + $stopOnRisky = \true; + break; + case '--stop-on-skipped': + $stopOnSkipped = \true; + break; + case '--fail-on-empty-test-suite': + $failOnEmptyTestSuite = \true; + break; + case '--fail-on-incomplete': + $failOnIncomplete = \true; + break; + case '--fail-on-risky': + $failOnRisky = \true; + break; + case '--fail-on-skipped': + $failOnSkipped = \true; + break; + case '--fail-on-warning': + $failOnWarning = \true; + break; + case '--teamcity': + $printer = TeamCity::class; + break; + case '--testdox': + $printer = CliTestDoxPrinter::class; + break; + case '--testdox-group': + $testdoxGroups = explode(',', $option[1]); + break; + case '--testdox-exclude-group': + $testdoxExcludeGroups = explode(',', $option[1]); + break; + case '--testdox-html': + $testdoxHtmlFile = $option[1]; + break; + case '--testdox-text': + $testdoxTextFile = $option[1]; + break; + case '--testdox-xml': + $testdoxXmlFile = $option[1]; + break; + case '--no-configuration': + $useDefaultConfiguration = \false; + break; + case '--extensions': + foreach (explode(',', $option[1]) as $extensionClass) { + if (!class_exists($extensionClass)) { + $unavailableExtensions[] = $extensionClass; + continue; + } + $extensions[] = new Extension($extensionClass, '', []); + } + break; + case '--no-extensions': + $noExtensions = \true; + break; + case '--no-coverage': + $noCoverage = \true; + break; + case '--no-logging': + $noLogging = \true; + break; + case '--no-interaction': + $noInteraction = \true; + break; + case '--globals-backup': + $backupGlobals = \true; + break; + case '--static-backup': + $backupStaticAttributes = \true; + break; + case 'v': + case '--verbose': + $verbose = \true; + break; + case '--atleast-version': + $atLeastVersion = $option[1]; + break; + case '--version': + $version = \true; + break; + case '--dont-report-useless-tests': + $reportUselessTests = \false; + break; + case '--strict-coverage': + $strictCoverage = \true; + break; + case '--disable-coverage-ignore': + $disableCodeCoverageIgnore = \true; + break; + case '--strict-global-state': + $beStrictAboutChangesToGlobalState = \true; + break; + case '--disallow-test-output': + $disallowTestOutput = \true; + break; + case '--disallow-resource-usage': + $beStrictAboutResourceUsageDuringSmallTests = \true; + break; + case '--default-time-limit': + $defaultTimeLimit = (int) $option[1]; + break; + case '--enforce-time-limit': + $enforceTimeLimit = \true; + break; + case '--disallow-todo-tests': + $disallowTodoAnnotatedTests = \true; + break; + case '--reverse-list': + $reverseList = \true; + break; + case '--check-version': + $checkVersion = \true; + break; + case '--coverage-filter': + case '--whitelist': + if ($coverageFilter === null) { + $coverageFilter = []; + } + $coverageFilter[] = $option[1]; + break; + case '--random-order': + $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; + break; + case '--random-order-seed': + $randomOrderSeed = (int) $option[1]; + break; + case '--resolve-dependencies': + $resolveDependencies = \true; + break; + case '--ignore-dependencies': + $resolveDependencies = \false; + break; + case '--reverse-order': + $executionOrder = TestSuiteSorter::ORDER_REVERSED; + break; + case '--dump-xdebug-filter': + $xdebugFilterFile = $option[1]; + break; + default: + $unrecognizedOptions[str_replace('--', '', $option[0])] = $option[1]; + } } - if (!is_object($object)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'object'); + if (empty($extensions)) { + $extensions = null; } - static::assertThat($object, new LogicalNot(new ObjectHasAttribute($attributeName)), $message); - } - /** - * Asserts that two variables have the same type and value. - * Used on objects, it asserts that two variables reference - * the same object. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-template ExpectedType - * - * @psalm-param ExpectedType $expected - * - * @psalm-assert =ExpectedType $actual - */ - public static function assertSame($expected, $actual, string $message = '') : void - { - static::assertThat($actual, new IsIdentical($expected), $message); - } - /** - * Asserts that two variables do not have the same type and value. - * Used on objects, it asserts that two variables do not reference - * the same object. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public static function assertNotSame($expected, $actual, string $message = '') : void - { - if (is_bool($expected) && is_bool($actual)) { - static::assertNotEquals($expected, $actual, $message); + if (empty($unavailableExtensions)) { + $unavailableExtensions = null; } - static::assertThat($actual, new LogicalNot(new IsIdentical($expected)), $message); - } - /** - * Asserts that a variable is of a given type. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - * - * @psalm-template ExpectedType of object - * - * @psalm-param class-string $expected - * - * @psalm-assert =ExpectedType $actual - */ - public static function assertInstanceOf(string $expected, $actual, string $message = '') : void - { - if (!class_exists($expected) && !interface_exists($expected)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class or interface name'); + if (empty($iniSettings)) { + $iniSettings = null; } - static::assertThat($actual, new IsInstanceOf($expected), $message); - } - /** - * Asserts that a variable is not of a given type. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException - * - * @psalm-template ExpectedType of object - * - * @psalm-param class-string $expected - * - * @psalm-assert !ExpectedType $actual - */ - public static function assertNotInstanceOf(string $expected, $actual, string $message = '') : void - { - if (!class_exists($expected) && !interface_exists($expected)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class or interface name'); + if (empty($coverageFilter)) { + $coverageFilter = null; } - static::assertThat($actual, new LogicalNot(new IsInstanceOf($expected)), $message); - } - /** - * Asserts that a variable is of type array. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert array $actual - */ - public static function assertIsArray($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_ARRAY), $message); - } - /** - * Asserts that a variable is of type bool. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert bool $actual - */ - public static function assertIsBool($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_BOOL), $message); + return new \PHPUnit\TextUI\CliArguments\Configuration($argument, $atLeastVersion, $backupGlobals, $backupStaticAttributes, $beStrictAboutChangesToGlobalState, $beStrictAboutResourceUsageDuringSmallTests, $bootstrap, $cacheResult, $cacheResultFile, $checkVersion, $colors, $columns, $configuration, $coverageClover, $coverageCobertura, $coverageCrap4J, $coverageHtml, $coveragePhp, $coverageText, $coverageTextShowUncoveredFiles, $coverageTextShowOnlySummary, $coverageXml, $pathCoverage, $coverageCacheDirectory, $warmCoverageCache, $debug, $defaultTimeLimit, $disableCodeCoverageIgnore, $disallowTestOutput, $disallowTodoAnnotatedTests, $enforceTimeLimit, $excludeGroups, $executionOrder, $executionOrderDefects, $extensions, $unavailableExtensions, $failOnEmptyTestSuite, $failOnIncomplete, $failOnRisky, $failOnSkipped, $failOnWarning, $filter, $generateConfiguration, $migrateConfiguration, $groups, $testsCovering, $testsUsing, $help, $includePath, $iniSettings, $junitLogfile, $listGroups, $listSuites, $listTests, $listTestsXml, $loader, $noCoverage, $noExtensions, $noInteraction, $noLogging, $printer, $processIsolation, $randomOrderSeed, $repeat, $reportUselessTests, $resolveDependencies, $reverseList, $stderr, $strictCoverage, $stopOnDefect, $stopOnError, $stopOnFailure, $stopOnIncomplete, $stopOnRisky, $stopOnSkipped, $stopOnWarning, $teamcityLogfile, $testdoxExcludeGroups, $testdoxGroups, $testdoxHtmlFile, $testdoxTextFile, $testdoxXmlFile, $testSuffixes, $testSuite, $unrecognizedOptions, $unrecognizedOrderBy, $useDefaultConfiguration, $verbose, $version, $coverageFilter, $xdebugFilterFile); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\CliArguments; + +use PHPUnit\TextUI\XmlConfiguration\Extension; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @psalm-immutable + */ +final class Configuration +{ /** - * Asserts that a variable is of type float. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert float $actual + * @var ?string */ - public static function assertIsFloat($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_FLOAT), $message); - } + private $argument; /** - * Asserts that a variable is of type int. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert int $actual + * @var ?string */ - public static function assertIsInt($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_INT), $message); - } + private $atLeastVersion; /** - * Asserts that a variable is of type numeric. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert numeric $actual + * @var ?bool */ - public static function assertIsNumeric($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_NUMERIC), $message); - } + private $backupGlobals; /** - * Asserts that a variable is of type object. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert object $actual + * @var ?bool */ - public static function assertIsObject($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_OBJECT), $message); - } + private $backupStaticAttributes; /** - * Asserts that a variable is of type resource. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert resource $actual + * @var ?bool */ - public static function assertIsResource($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_RESOURCE), $message); - } + private $beStrictAboutChangesToGlobalState; /** - * Asserts that a variable is of type resource and is closed. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert resource $actual + * @var ?bool */ - public static function assertIsClosedResource($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_CLOSED_RESOURCE), $message); - } + private $beStrictAboutResourceUsageDuringSmallTests; /** - * Asserts that a variable is of type string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert string $actual + * @var ?string */ - public static function assertIsString($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_STRING), $message); - } + private $bootstrap; /** - * Asserts that a variable is of type scalar. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert scalar $actual + * @var ?bool */ - public static function assertIsScalar($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_SCALAR), $message); - } + private $cacheResult; /** - * Asserts that a variable is of type callable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert callable $actual + * @var ?string */ - public static function assertIsCallable($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_CALLABLE), $message); - } + private $cacheResultFile; /** - * Asserts that a variable is of type iterable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert iterable $actual + * @var ?bool */ - public static function assertIsIterable($actual, string $message = '') : void - { - static::assertThat($actual, new IsType(IsType::TYPE_ITERABLE), $message); - } + private $checkVersion; /** - * Asserts that a variable is not of type array. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !array $actual + * @var ?string */ - public static function assertIsNotArray($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_ARRAY)), $message); - } + private $colors; /** - * Asserts that a variable is not of type bool. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !bool $actual + * @var null|int|string */ - public static function assertIsNotBool($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_BOOL)), $message); - } + private $columns; /** - * Asserts that a variable is not of type float. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !float $actual + * @var ?string */ - public static function assertIsNotFloat($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_FLOAT)), $message); - } + private $configuration; /** - * Asserts that a variable is not of type int. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !int $actual + * @var null|string[] */ - public static function assertIsNotInt($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_INT)), $message); - } + private $coverageFilter; /** - * Asserts that a variable is not of type numeric. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !numeric $actual + * @var ?string */ - public static function assertIsNotNumeric($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_NUMERIC)), $message); - } + private $coverageClover; /** - * Asserts that a variable is not of type object. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !object $actual + * @var ?string */ - public static function assertIsNotObject($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_OBJECT)), $message); - } + private $coverageCobertura; /** - * Asserts that a variable is not of type resource. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !resource $actual + * @var ?string */ - public static function assertIsNotResource($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_RESOURCE)), $message); - } + private $coverageCrap4J; /** - * Asserts that a variable is not of type resource. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !resource $actual + * @var ?string */ - public static function assertIsNotClosedResource($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_CLOSED_RESOURCE)), $message); - } + private $coverageHtml; /** - * Asserts that a variable is not of type string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !string $actual + * @var ?string */ - public static function assertIsNotString($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_STRING)), $message); - } + private $coveragePhp; /** - * Asserts that a variable is not of type scalar. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !scalar $actual + * @var ?string */ - public static function assertIsNotScalar($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_SCALAR)), $message); - } + private $coverageText; /** - * Asserts that a variable is not of type callable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !callable $actual + * @var ?bool */ - public static function assertIsNotCallable($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_CALLABLE)), $message); - } + private $coverageTextShowUncoveredFiles; /** - * Asserts that a variable is not of type iterable. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-assert !iterable $actual + * @var ?bool */ - public static function assertIsNotIterable($actual, string $message = '') : void - { - static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_ITERABLE)), $message); - } + private $coverageTextShowOnlySummary; /** - * Asserts that a string matches a given regular expression. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?string */ - public static function assertMatchesRegularExpression(string $pattern, string $string, string $message = '') : void - { - static::assertThat($string, new RegularExpression($pattern), $message); - } + private $coverageXml; /** - * Asserts that a string matches a given regular expression. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4086 + * @var ?bool */ - public static function assertRegExp(string $pattern, string $string, string $message = '') : void - { - self::createWarning('assertRegExp() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertMatchesRegularExpression() instead.'); - static::assertThat($string, new RegularExpression($pattern), $message); - } + private $pathCoverage; /** - * Asserts that a string does not match a given regular expression. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?string */ - public static function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = '') : void - { - static::assertThat($string, new LogicalNot(new RegularExpression($pattern)), $message); - } + private $coverageCacheDirectory; /** - * Asserts that a string does not match a given regular expression. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4089 + * @var ?bool */ - public static function assertNotRegExp(string $pattern, string $string, string $message = '') : void - { - self::createWarning('assertNotRegExp() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDoesNotMatchRegularExpression() instead.'); - static::assertThat($string, new LogicalNot(new RegularExpression($pattern)), $message); - } + private $warmCoverageCache; /** - * Assert that the size of two arrays (or `Countable` or `Traversable` objects) - * is the same. - * - * @param Countable|iterable $expected - * @param Countable|iterable $actual - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertSameSize($expected, $actual, string $message = '') : void - { - if (!$expected instanceof Countable && !is_iterable($expected)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'countable or iterable'); - } - if (!$actual instanceof Countable && !is_iterable($actual)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); - } - static::assertThat($actual, new SameSize($expected), $message); - } + private $debug; /** - * Assert that the size of two arrays (or `Countable` or `Traversable` objects) - * is not the same. - * - * @param Countable|iterable $expected - * @param Countable|iterable $actual - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @var ?int */ - public static function assertNotSameSize($expected, $actual, string $message = '') : void - { - if (!$expected instanceof Countable && !is_iterable($expected)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'countable or iterable'); - } - if (!$actual instanceof Countable && !is_iterable($actual)) { - throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); - } - static::assertThat($actual, new LogicalNot(new SameSize($expected)), $message); - } + private $defaultTimeLimit; /** - * Asserts that a string matches a given format string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringMatchesFormat(string $format, string $string, string $message = '') : void - { - static::assertThat($string, new StringMatchesFormatDescription($format), $message); - } + private $disableCodeCoverageIgnore; /** - * Asserts that a string does not match a given format string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringNotMatchesFormat(string $format, string $string, string $message = '') : void - { - static::assertThat($string, new LogicalNot(new StringMatchesFormatDescription($format)), $message); - } + private $disallowTestOutput; /** - * Asserts that a string matches a given format file. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringMatchesFormatFile(string $formatFile, string $string, string $message = '') : void - { - static::assertFileExists($formatFile, $message); - static::assertThat($string, new StringMatchesFormatDescription(file_get_contents($formatFile)), $message); - } + private $disallowTodoAnnotatedTests; /** - * Asserts that a string does not match a given format string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringNotMatchesFormatFile(string $formatFile, string $string, string $message = '') : void - { - static::assertFileExists($formatFile, $message); - static::assertThat($string, new LogicalNot(new StringMatchesFormatDescription(file_get_contents($formatFile))), $message); - } + private $enforceTimeLimit; /** - * Asserts that a string starts with a given prefix. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|string[] */ - public static function assertStringStartsWith(string $prefix, string $string, string $message = '') : void - { - static::assertThat($string, new StringStartsWith($prefix), $message); - } + private $excludeGroups; /** - * Asserts that a string starts not with a given prefix. - * - * @param string $prefix - * @param string $string - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?int */ - public static function assertStringStartsNotWith($prefix, $string, string $message = '') : void - { - static::assertThat($string, new LogicalNot(new StringStartsWith($prefix)), $message); - } + private $executionOrder; /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?int */ - public static function assertStringContainsString(string $needle, string $haystack, string $message = '') : void - { - $constraint = new StringContains($needle, \false); - static::assertThat($haystack, $constraint, $message); - } + private $executionOrderDefects; /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|Extension[] */ - public static function assertStringContainsStringIgnoringCase(string $needle, string $haystack, string $message = '') : void - { - $constraint = new StringContains($needle, \true); - static::assertThat($haystack, $constraint, $message); - } + private $extensions; /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|string[] */ - public static function assertStringNotContainsString(string $needle, string $haystack, string $message = '') : void - { - $constraint = new LogicalNot(new StringContains($needle)); - static::assertThat($haystack, $constraint, $message); - } + private $unavailableExtensions; /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringNotContainsStringIgnoringCase(string $needle, string $haystack, string $message = '') : void - { - $constraint = new LogicalNot(new StringContains($needle, \true)); - static::assertThat($haystack, $constraint, $message); - } + private $failOnEmptyTestSuite; /** - * Asserts that a string ends with a given suffix. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringEndsWith(string $suffix, string $string, string $message = '') : void - { - static::assertThat($string, new StringEndsWith($suffix), $message); - } + private $failOnIncomplete; /** - * Asserts that a string ends not with a given suffix. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertStringEndsNotWith(string $suffix, string $string, string $message = '') : void - { - static::assertThat($string, new LogicalNot(new StringEndsWith($suffix)), $message); - } + private $failOnRisky; /** - * Asserts that two XML files are equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertXmlFileEqualsXmlFile(string $expectedFile, string $actualFile, string $message = '') : void - { - $expected = (new XmlLoader())->loadFile($expectedFile); - $actual = (new XmlLoader())->loadFile($actualFile); - static::assertEquals($expected, $actual, $message); - } + private $failOnSkipped; /** - * Asserts that two XML files are not equal. - * - * @throws \PHPUnit\Util\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertXmlFileNotEqualsXmlFile(string $expectedFile, string $actualFile, string $message = '') : void - { - $expected = (new XmlLoader())->loadFile($expectedFile); - $actual = (new XmlLoader())->loadFile($actualFile); - static::assertNotEquals($expected, $actual, $message); - } + private $failOnWarning; /** - * Asserts that two XML documents are equal. - * - * @param DOMDocument|string $actualXml - * - * @throws \PHPUnit\Util\Xml\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?string */ - public static function assertXmlStringEqualsXmlFile(string $expectedFile, $actualXml, string $message = '') : void - { - if (!is_string($actualXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $actual = $actualXml; - } else { - $actual = (new XmlLoader())->load($actualXml); - } - $expected = (new XmlLoader())->loadFile($expectedFile); - static::assertEquals($expected, $actual, $message); - } + private $filter; /** - * Asserts that two XML documents are not equal. - * - * @param DOMDocument|string $actualXml - * - * @throws \PHPUnit\Util\Xml\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertXmlStringNotEqualsXmlFile(string $expectedFile, $actualXml, string $message = '') : void - { - if (!is_string($actualXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $actual = $actualXml; - } else { - $actual = (new XmlLoader())->load($actualXml); - } - $expected = (new XmlLoader())->loadFile($expectedFile); - static::assertNotEquals($expected, $actual, $message); - } + private $generateConfiguration; /** - * Asserts that two XML documents are equal. - * - * @param DOMDocument|string $expectedXml - * @param DOMDocument|string $actualXml - * - * @throws \PHPUnit\Util\Xml\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertXmlStringEqualsXmlString($expectedXml, $actualXml, string $message = '') : void - { - if (!is_string($expectedXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $expectedXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $expected = $expectedXml; - } else { - $expected = (new XmlLoader())->load($expectedXml); - } - if (!is_string($actualXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $actual = $actualXml; - } else { - $actual = (new XmlLoader())->load($actualXml); - } - static::assertEquals($expected, $actual, $message); - } + private $migrateConfiguration; /** - * Asserts that two XML documents are not equal. - * - * @param DOMDocument|string $expectedXml - * @param DOMDocument|string $actualXml - * - * @throws \PHPUnit\Util\Xml\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|string[] */ - public static function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, string $message = '') : void - { - if (!is_string($expectedXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $expectedXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $expected = $expectedXml; - } else { - $expected = (new XmlLoader())->load($expectedXml); - } - if (!is_string($actualXml)) { - self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); - $actual = $actualXml; - } else { - $actual = (new XmlLoader())->load($actualXml); - } - static::assertNotEquals($expected, $actual, $message); - } + private $groups; /** - * Asserts that a hierarchy of DOMElements matches. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws AssertionFailedError - * @throws ExpectationFailedException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4091 + * @var null|string[] */ - public static function assertEqualXMLStructure(DOMElement $expectedElement, DOMElement $actualElement, bool $checkAttributes = \false, string $message = '') : void - { - self::createWarning('assertEqualXMLStructure() is deprecated and will be removed in PHPUnit 10.'); - $expectedElement = Xml::import($expectedElement); - $actualElement = Xml::import($actualElement); - static::assertSame($expectedElement->tagName, $actualElement->tagName, $message); - if ($checkAttributes) { - static::assertSame($expectedElement->attributes->length, $actualElement->attributes->length, sprintf('%s%sNumber of attributes on node "%s" does not match', $message, !empty($message) ? "\n" : '', $expectedElement->tagName)); - for ($i = 0; $i < $expectedElement->attributes->length; $i++) { - $expectedAttribute = $expectedElement->attributes->item($i); - $actualAttribute = $actualElement->attributes->getNamedItem($expectedAttribute->name); - assert($expectedAttribute instanceof DOMAttr); - if (!$actualAttribute) { - static::fail(sprintf('%s%sCould not find attribute "%s" on node "%s"', $message, !empty($message) ? "\n" : '', $expectedAttribute->name, $expectedElement->tagName)); - } - } - } - Xml::removeCharacterDataNodes($expectedElement); - Xml::removeCharacterDataNodes($actualElement); - static::assertSame($expectedElement->childNodes->length, $actualElement->childNodes->length, sprintf('%s%sNumber of child nodes of "%s" differs', $message, !empty($message) ? "\n" : '', $expectedElement->tagName)); - for ($i = 0; $i < $expectedElement->childNodes->length; $i++) { - static::assertEqualXMLStructure($expectedElement->childNodes->item($i), $actualElement->childNodes->item($i), $checkAttributes, $message); - } - } + private $testsCovering; /** - * Evaluates a PHPUnit\Framework\Constraint matcher object. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|string[] */ - public static function assertThat($value, Constraint $constraint, string $message = '') : void - { - self::$count += count($constraint); - $constraint->evaluate($value, $message); - } + private $testsUsing; /** - * Asserts that a string is a valid JSON string. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertJson(string $actualJson, string $message = '') : void - { - static::assertThat($actualJson, static::isJson(), $message); - } + private $help; /** - * Asserts that two given JSON encoded objects or arrays are equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?string */ - public static function assertJsonStringEqualsJsonString(string $expectedJson, string $actualJson, string $message = '') : void - { - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - static::assertThat($actualJson, new JsonMatches($expectedJson), $message); - } + private $includePath; /** - * Asserts that two given JSON encoded objects or arrays are not equal. - * - * @param string $expectedJson - * @param string $actualJson - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var null|string[] */ - public static function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, string $message = '') : void - { - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - static::assertThat($actualJson, new LogicalNot(new JsonMatches($expectedJson)), $message); - } + private $iniSettings; /** - * Asserts that the generated JSON encoded object and the content of the given file are equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?string */ - public static function assertJsonStringEqualsJsonFile(string $expectedFile, string $actualJson, string $message = '') : void - { - static::assertFileExists($expectedFile, $message); - $expectedJson = file_get_contents($expectedFile); - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - static::assertThat($actualJson, new JsonMatches($expectedJson), $message); - } + private $junitLogfile; /** - * Asserts that the generated JSON encoded object and the content of the given file are not equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertJsonStringNotEqualsJsonFile(string $expectedFile, string $actualJson, string $message = '') : void - { - static::assertFileExists($expectedFile, $message); - $expectedJson = file_get_contents($expectedFile); - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - static::assertThat($actualJson, new LogicalNot(new JsonMatches($expectedJson)), $message); - } + private $listGroups; /** - * Asserts that two JSON files are equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = '') : void - { - static::assertFileExists($expectedFile, $message); - static::assertFileExists($actualFile, $message); - $actualJson = file_get_contents($actualFile); - $expectedJson = file_get_contents($expectedFile); - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - $constraintExpected = new JsonMatches($expectedJson); - $constraintActual = new JsonMatches($actualJson); - static::assertThat($expectedJson, $constraintActual, $message); - static::assertThat($actualJson, $constraintExpected, $message); - } + private $listSuites; /** - * Asserts that two JSON files are not equal. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ?bool */ - public static function assertJsonFileNotEqualsJsonFile(string $expectedFile, string $actualFile, string $message = '') : void - { - static::assertFileExists($expectedFile, $message); - static::assertFileExists($actualFile, $message); - $actualJson = file_get_contents($actualFile); - $expectedJson = file_get_contents($expectedFile); - static::assertJson($expectedJson, $message); - static::assertJson($actualJson, $message); - $constraintExpected = new JsonMatches($expectedJson); - $constraintActual = new JsonMatches($actualJson); - static::assertThat($expectedJson, new LogicalNot($constraintActual), $message); - static::assertThat($actualJson, new LogicalNot($constraintExpected), $message); - } + private $listTests; /** - * @throws Exception + * @var ?string */ - public static function logicalAnd() : LogicalAnd - { - $constraints = func_get_args(); - $constraint = new LogicalAnd(); - $constraint->setConstraints($constraints); - return $constraint; - } - public static function logicalOr() : LogicalOr - { - $constraints = func_get_args(); - $constraint = new LogicalOr(); - $constraint->setConstraints($constraints); - return $constraint; - } - public static function logicalNot(Constraint $constraint) : LogicalNot - { - return new LogicalNot($constraint); - } - public static function logicalXor() : LogicalXor - { - $constraints = func_get_args(); - $constraint = new LogicalXor(); - $constraint->setConstraints($constraints); - return $constraint; - } - public static function anything() : IsAnything - { - return new IsAnything(); - } - public static function isTrue() : IsTrue - { - return new IsTrue(); - } + private $listTestsXml; /** - * @psalm-template CallbackInput of mixed - * - * @psalm-param callable(CallbackInput $callback): bool $callback - * - * @psalm-return Callback + * @var ?string */ - public static function callback(callable $callback) : Callback - { - return new Callback($callback); - } - public static function isFalse() : IsFalse - { - return new IsFalse(); - } - public static function isJson() : IsJson - { - return new IsJson(); - } - public static function isNull() : IsNull - { - return new IsNull(); - } - public static function isFinite() : IsFinite - { - return new IsFinite(); - } - public static function isInfinite() : IsInfinite - { - return new IsInfinite(); - } - public static function isNan() : IsNan - { - return new IsNan(); - } - public static function containsEqual($value) : TraversableContainsEqual - { - return new TraversableContainsEqual($value); - } - public static function containsIdentical($value) : TraversableContainsIdentical - { - return new TraversableContainsIdentical($value); - } - public static function containsOnly(string $type) : TraversableContainsOnly - { - return new TraversableContainsOnly($type); - } - public static function containsOnlyInstancesOf(string $className) : TraversableContainsOnly - { - return new TraversableContainsOnly($className, \false); - } + private $loader; /** - * @param int|string $key + * @var ?bool */ - public static function arrayHasKey($key) : ArrayHasKey - { - return new ArrayHasKey($key); - } - public static function equalTo($value) : IsEqual - { - return new IsEqual($value, 0.0, \false, \false); - } - public static function equalToCanonicalizing($value) : IsEqualCanonicalizing - { - return new IsEqualCanonicalizing($value); - } - public static function equalToIgnoringCase($value) : IsEqualIgnoringCase - { - return new IsEqualIgnoringCase($value); - } - public static function equalToWithDelta($value, float $delta) : IsEqualWithDelta - { - return new IsEqualWithDelta($value, $delta); - } - public static function isEmpty() : IsEmpty - { - return new IsEmpty(); - } - public static function isWritable() : IsWritable - { - return new IsWritable(); - } - public static function isReadable() : IsReadable - { - return new IsReadable(); - } - public static function directoryExists() : DirectoryExists - { - return new DirectoryExists(); - } - public static function fileExists() : FileExists - { - return new FileExists(); - } - public static function greaterThan($value) : GreaterThan - { - return new GreaterThan($value); - } - public static function greaterThanOrEqual($value) : LogicalOr - { - return static::logicalOr(new IsEqual($value), new GreaterThan($value)); - } - public static function classHasAttribute(string $attributeName) : ClassHasAttribute - { - return new ClassHasAttribute($attributeName); - } - public static function classHasStaticAttribute(string $attributeName) : ClassHasStaticAttribute - { - return new ClassHasStaticAttribute($attributeName); - } - public static function objectHasAttribute($attributeName) : ObjectHasAttribute - { - return new ObjectHasAttribute($attributeName); - } - public static function identicalTo($value) : IsIdentical - { - return new IsIdentical($value); - } - public static function isInstanceOf(string $className) : IsInstanceOf - { - return new IsInstanceOf($className); - } - public static function isType(string $type) : IsType - { - return new IsType($type); - } - public static function lessThan($value) : LessThan - { - return new LessThan($value); - } - public static function lessThanOrEqual($value) : LogicalOr - { - return static::logicalOr(new IsEqual($value), new LessThan($value)); - } - public static function matchesRegularExpression(string $pattern) : RegularExpression - { - return new RegularExpression($pattern); - } - public static function matches(string $string) : StringMatchesFormatDescription - { - return new StringMatchesFormatDescription($string); - } - public static function stringStartsWith($prefix) : StringStartsWith - { - return new StringStartsWith($prefix); - } - public static function stringContains(string $string, bool $case = \true) : StringContains - { - return new StringContains($string, $case); - } - public static function stringEndsWith(string $suffix) : StringEndsWith - { - return new StringEndsWith($suffix); - } - public static function countOf(int $count) : Count - { - return new Count($count); - } - public static function objectEquals(object $object, string $method = 'equals') : ObjectEquals - { - return new ObjectEquals($object, $method); - } + private $noCoverage; /** - * Fails a test with the given message. - * - * @throws AssertionFailedError - * - * @psalm-return never-return + * @var ?bool */ - public static function fail(string $message = '') : void - { - self::$count++; - throw new \PHPUnit\Framework\AssertionFailedError($message); - } + private $noExtensions; /** - * Mark the test as incomplete. - * - * @throws IncompleteTestError - * - * @psalm-return never-return + * @var ?bool */ - public static function markTestIncomplete(string $message = '') : void - { - throw new \PHPUnit\Framework\IncompleteTestError($message); - } + private $noInteraction; /** - * Mark the test as skipped. - * - * @throws SkippedTestError - * @throws SyntheticSkippedError - * - * @psalm-return never-return + * @var ?bool */ - public static function markTestSkipped(string $message = '') : void - { - if ($hint = self::detectLocationHint($message)) { - $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); - array_unshift($trace, $hint); - throw new \PHPUnit\Framework\SyntheticSkippedError($hint['message'], 0, $hint['file'], (int) $hint['line'], $trace); - } - throw new \PHPUnit\Framework\SkippedTestError($message); - } + private $noLogging; /** - * Return the current assertion count. + * @var ?string */ - public static function getCount() : int - { - return self::$count; - } + private $printer; /** - * Reset the assertion counter. + * @var ?bool */ - public static function resetCount() : void - { - self::$count = 0; - } - private static function detectLocationHint(string $message) : ?array - { - $hint = null; - $lines = preg_split('/\\r\\n|\\r|\\n/', $message); - while (strpos($lines[0], '__OFFSET') !== \false) { - $offset = explode('=', array_shift($lines)); - if ($offset[0] === '__OFFSET_FILE') { - $hint['file'] = $offset[1]; - } - if ($offset[0] === '__OFFSET_LINE') { - $hint['line'] = $offset[1]; - } - } - if ($hint) { - $hint['message'] = implode(PHP_EOL, $lines); - } - return $hint; - } - private static function isValidObjectAttributeName(string $attributeName) : bool - { - return (bool) preg_match('/[^\\x00-\\x1f\\x7f-\\x9f]+/', $attributeName); - } - private static function isValidClassAttributeName(string $attributeName) : bool - { - return (bool) preg_match('/[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/', $attributeName); - } + private $processIsolation; /** - * @codeCoverageIgnore + * @var ?int */ - private static function createWarning(string $warning) : void - { - foreach (debug_backtrace() as $step) { - if (isset($step['object']) && $step['object'] instanceof \PHPUnit\Framework\TestCase) { - assert($step['object'] instanceof \PHPUnit\Framework\TestCase); - $step['object']->addWarning($warning); - break; - } - } - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -use function func_get_args; -use function function_exists; -use ArrayAccess; -use Countable; -use DOMDocument; -use DOMElement; -use PHPUnit\Framework\Constraint\ArrayHasKey; -use PHPUnit\Framework\Constraint\Callback; -use PHPUnit\Framework\Constraint\ClassHasAttribute; -use PHPUnit\Framework\Constraint\ClassHasStaticAttribute; -use PHPUnit\Framework\Constraint\Constraint; -use PHPUnit\Framework\Constraint\Count; -use PHPUnit\Framework\Constraint\DirectoryExists; -use PHPUnit\Framework\Constraint\FileExists; -use PHPUnit\Framework\Constraint\GreaterThan; -use PHPUnit\Framework\Constraint\IsAnything; -use PHPUnit\Framework\Constraint\IsEmpty; -use PHPUnit\Framework\Constraint\IsEqual; -use PHPUnit\Framework\Constraint\IsEqualCanonicalizing; -use PHPUnit\Framework\Constraint\IsEqualIgnoringCase; -use PHPUnit\Framework\Constraint\IsEqualWithDelta; -use PHPUnit\Framework\Constraint\IsFalse; -use PHPUnit\Framework\Constraint\IsFinite; -use PHPUnit\Framework\Constraint\IsIdentical; -use PHPUnit\Framework\Constraint\IsInfinite; -use PHPUnit\Framework\Constraint\IsInstanceOf; -use PHPUnit\Framework\Constraint\IsJson; -use PHPUnit\Framework\Constraint\IsNan; -use PHPUnit\Framework\Constraint\IsNull; -use PHPUnit\Framework\Constraint\IsReadable; -use PHPUnit\Framework\Constraint\IsTrue; -use PHPUnit\Framework\Constraint\IsType; -use PHPUnit\Framework\Constraint\IsWritable; -use PHPUnit\Framework\Constraint\LessThan; -use PHPUnit\Framework\Constraint\LogicalAnd; -use PHPUnit\Framework\Constraint\LogicalNot; -use PHPUnit\Framework\Constraint\LogicalOr; -use PHPUnit\Framework\Constraint\LogicalXor; -use PHPUnit\Framework\Constraint\ObjectEquals; -use PHPUnit\Framework\Constraint\ObjectHasAttribute; -use PHPUnit\Framework\Constraint\RegularExpression; -use PHPUnit\Framework\Constraint\StringContains; -use PHPUnit\Framework\Constraint\StringEndsWith; -use PHPUnit\Framework\Constraint\StringMatchesFormatDescription; -use PHPUnit\Framework\Constraint\StringStartsWith; -use PHPUnit\Framework\Constraint\TraversableContainsEqual; -use PHPUnit\Framework\Constraint\TraversableContainsIdentical; -use PHPUnit\Framework\Constraint\TraversableContainsOnly; -use PHPUnit\Framework\MockObject\Rule\AnyInvokedCount as AnyInvokedCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtIndex as InvokedAtIndexMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastCount as InvokedAtLeastCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastOnce as InvokedAtLeastOnceMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtMostCount as InvokedAtMostCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedCount as InvokedCountMatcher; -use PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls as ConsecutiveCallsStub; -use PHPUnit\Framework\MockObject\Stub\Exception as ExceptionStub; -use PHPUnit\Framework\MockObject\Stub\ReturnArgument as ReturnArgumentStub; -use PHPUnit\Framework\MockObject\Stub\ReturnCallback as ReturnCallbackStub; -use PHPUnit\Framework\MockObject\Stub\ReturnSelf as ReturnSelfStub; -use PHPUnit\Framework\MockObject\Stub\ReturnStub; -use PHPUnit\Framework\MockObject\Stub\ReturnValueMap as ReturnValueMapStub; -use Throwable; -if (!function_exists('PHPUnit\\Framework\\assertArrayHasKey')) { + private $randomOrderSeed; /** - * Asserts that an array has a specified key. - * - * @param int|string $key - * @param array|ArrayAccess $array - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertArrayHasKey + * @var ?int */ - function assertArrayHasKey($key, $array, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertArrayHasKey(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertArrayNotHasKey')) { + private $repeat; /** - * Asserts that an array does not have a specified key. - * - * @param int|string $key - * @param array|ArrayAccess $array - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertArrayNotHasKey + * @var ?bool */ - function assertArrayNotHasKey($key, $array, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertArrayNotHasKey(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertContains')) { + private $reportUselessTests; /** - * Asserts that a haystack contains a needle. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertContains + * @var ?bool */ - function assertContains($needle, iterable $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertContains(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertContainsEquals')) { - function assertContainsEquals($needle, iterable $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertContainsEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotContains')) { + private $resolveDependencies; /** - * Asserts that a haystack does not contain a needle. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotContains + * @var ?bool */ - function assertNotContains($needle, iterable $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotContains(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotContainsEquals')) { - function assertNotContainsEquals($needle, iterable $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotContainsEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertContainsOnly')) { + private $reverseList; /** - * Asserts that a haystack contains only values of a given type. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertContainsOnly + * @var ?bool */ - function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertContainsOnly(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertContainsOnlyInstancesOf')) { + private $stderr; /** - * Asserts that a haystack contains only instances of a given class name. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertContainsOnlyInstancesOf + * @var ?bool */ - function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertContainsOnlyInstancesOf(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotContainsOnly')) { + private $strictCoverage; /** - * Asserts that a haystack does not contain only values of a given type. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotContainsOnly + * @var ?bool */ - function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotContainsOnly(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertCount')) { + private $stopOnDefect; /** - * Asserts the number of elements of an array, Countable or Traversable. - * - * @param Countable|iterable $haystack - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertCount + * @var ?bool + */ + private $stopOnError; + /** + * @var ?bool + */ + private $stopOnFailure; + /** + * @var ?bool */ - function assertCount(int $expectedCount, $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertCount(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotCount')) { + private $stopOnIncomplete; /** - * Asserts the number of elements of an array, Countable or Traversable. - * - * @param Countable|iterable $haystack - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotCount + * @var ?bool */ - function assertNotCount(int $expectedCount, $haystack, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotCount(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEquals')) { + private $stopOnRisky; /** - * Asserts that two variables are equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEquals + * @var ?bool */ - function assertEquals($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEqualsCanonicalizing')) { + private $stopOnSkipped; /** - * Asserts that two variables are equal (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEqualsCanonicalizing + * @var ?bool */ - function assertEqualsCanonicalizing($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEqualsCanonicalizing(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEqualsIgnoringCase')) { + private $stopOnWarning; /** - * Asserts that two variables are equal (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEqualsIgnoringCase + * @var ?string */ - function assertEqualsIgnoringCase($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEqualsIgnoringCase(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEqualsWithDelta')) { + private $teamcityLogfile; /** - * Asserts that two variables are equal (with delta). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEqualsWithDelta + * @var null|string[] */ - function assertEqualsWithDelta($expected, $actual, float $delta, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEqualsWithDelta(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotEquals')) { + private $testdoxExcludeGroups; /** - * Asserts that two variables are not equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotEquals + * @var null|string[] */ - function assertNotEquals($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotEqualsCanonicalizing')) { + private $testdoxGroups; /** - * Asserts that two variables are not equal (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotEqualsCanonicalizing + * @var ?string */ - function assertNotEqualsCanonicalizing($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotEqualsCanonicalizing(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotEqualsIgnoringCase')) { + private $testdoxHtmlFile; /** - * Asserts that two variables are not equal (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotEqualsIgnoringCase + * @var ?string */ - function assertNotEqualsIgnoringCase($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotEqualsIgnoringCase(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotEqualsWithDelta')) { + private $testdoxTextFile; /** - * Asserts that two variables are not equal (with delta). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotEqualsWithDelta + * @var ?string */ - function assertNotEqualsWithDelta($expected, $actual, float $delta, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotEqualsWithDelta(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertObjectEquals')) { + private $testdoxXmlFile; /** - * @throws ExpectationFailedException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertObjectEquals + * @var null|string[] */ - function assertObjectEquals(object $expected, object $actual, string $method = 'equals', string $message = '') : void - { - \PHPUnit\Framework\Assert::assertObjectEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEmpty')) { + private $testSuffixes; /** - * Asserts that a variable is empty. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert empty $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEmpty + * @var ?string */ - function assertEmpty($actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEmpty(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertNotEmpty')) { + private $testSuite; /** - * Asserts that a variable is not empty. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !empty $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotEmpty + * @var string[] */ - function assertNotEmpty($actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertNotEmpty(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertGreaterThan')) { + private $unrecognizedOptions; /** - * Asserts that a value is greater than another value. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertGreaterThan + * @var ?string */ - function assertGreaterThan($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertGreaterThan(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertGreaterThanOrEqual')) { + private $unrecognizedOrderBy; /** - * Asserts that a value is greater than or equal to another value. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertGreaterThanOrEqual + * @var ?bool */ - function assertGreaterThanOrEqual($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertGreaterThanOrEqual(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertLessThan')) { + private $useDefaultConfiguration; /** - * Asserts that a value is smaller than another value. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertLessThan + * @var ?bool */ - function assertLessThan($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertLessThan(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertLessThanOrEqual')) { + private $verbose; /** - * Asserts that a value is smaller than or equal to another value. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertLessThanOrEqual + * @var ?bool */ - function assertLessThanOrEqual($expected, $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertLessThanOrEqual(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertFileEquals')) { + private $version; /** - * Asserts that the contents of one file is equal to the contents of another - * file. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileEquals + * @var ?string */ - function assertFileEquals(string $expected, string $actual, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertFileEquals(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertFileEqualsCanonicalizing')) { + private $xdebugFilterFile; /** - * Asserts that the contents of one file is equal to the contents of another - * file (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileEqualsCanonicalizing + * @param null|int|string $columns */ - function assertFileEqualsCanonicalizing(string $expected, string $actual, string $message = '') : void + public function __construct(?string $argument, ?string $atLeastVersion, ?bool $backupGlobals, ?bool $backupStaticAttributes, ?bool $beStrictAboutChangesToGlobalState, ?bool $beStrictAboutResourceUsageDuringSmallTests, ?string $bootstrap, ?bool $cacheResult, ?string $cacheResultFile, ?bool $checkVersion, ?string $colors, $columns, ?string $configuration, ?string $coverageClover, ?string $coverageCobertura, ?string $coverageCrap4J, ?string $coverageHtml, ?string $coveragePhp, ?string $coverageText, ?bool $coverageTextShowUncoveredFiles, ?bool $coverageTextShowOnlySummary, ?string $coverageXml, ?bool $pathCoverage, ?string $coverageCacheDirectory, ?bool $warmCoverageCache, ?bool $debug, ?int $defaultTimeLimit, ?bool $disableCodeCoverageIgnore, ?bool $disallowTestOutput, ?bool $disallowTodoAnnotatedTests, ?bool $enforceTimeLimit, ?array $excludeGroups, ?int $executionOrder, ?int $executionOrderDefects, ?array $extensions, ?array $unavailableExtensions, ?bool $failOnEmptyTestSuite, ?bool $failOnIncomplete, ?bool $failOnRisky, ?bool $failOnSkipped, ?bool $failOnWarning, ?string $filter, ?bool $generateConfiguration, ?bool $migrateConfiguration, ?array $groups, ?array $testsCovering, ?array $testsUsing, ?bool $help, ?string $includePath, ?array $iniSettings, ?string $junitLogfile, ?bool $listGroups, ?bool $listSuites, ?bool $listTests, ?string $listTestsXml, ?string $loader, ?bool $noCoverage, ?bool $noExtensions, ?bool $noInteraction, ?bool $noLogging, ?string $printer, ?bool $processIsolation, ?int $randomOrderSeed, ?int $repeat, ?bool $reportUselessTests, ?bool $resolveDependencies, ?bool $reverseList, ?bool $stderr, ?bool $strictCoverage, ?bool $stopOnDefect, ?bool $stopOnError, ?bool $stopOnFailure, ?bool $stopOnIncomplete, ?bool $stopOnRisky, ?bool $stopOnSkipped, ?bool $stopOnWarning, ?string $teamcityLogfile, ?array $testdoxExcludeGroups, ?array $testdoxGroups, ?string $testdoxHtmlFile, ?string $testdoxTextFile, ?string $testdoxXmlFile, ?array $testSuffixes, ?string $testSuite, array $unrecognizedOptions, ?string $unrecognizedOrderBy, ?bool $useDefaultConfiguration, ?bool $verbose, ?bool $version, ?array $coverageFilter, ?string $xdebugFilterFile) { - \PHPUnit\Framework\Assert::assertFileEqualsCanonicalizing(...func_get_args()); + $this->argument = $argument; + $this->atLeastVersion = $atLeastVersion; + $this->backupGlobals = $backupGlobals; + $this->backupStaticAttributes = $backupStaticAttributes; + $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; + $this->beStrictAboutResourceUsageDuringSmallTests = $beStrictAboutResourceUsageDuringSmallTests; + $this->bootstrap = $bootstrap; + $this->cacheResult = $cacheResult; + $this->cacheResultFile = $cacheResultFile; + $this->checkVersion = $checkVersion; + $this->colors = $colors; + $this->columns = $columns; + $this->configuration = $configuration; + $this->coverageFilter = $coverageFilter; + $this->coverageClover = $coverageClover; + $this->coverageCobertura = $coverageCobertura; + $this->coverageCrap4J = $coverageCrap4J; + $this->coverageHtml = $coverageHtml; + $this->coveragePhp = $coveragePhp; + $this->coverageText = $coverageText; + $this->coverageTextShowUncoveredFiles = $coverageTextShowUncoveredFiles; + $this->coverageTextShowOnlySummary = $coverageTextShowOnlySummary; + $this->coverageXml = $coverageXml; + $this->pathCoverage = $pathCoverage; + $this->coverageCacheDirectory = $coverageCacheDirectory; + $this->warmCoverageCache = $warmCoverageCache; + $this->debug = $debug; + $this->defaultTimeLimit = $defaultTimeLimit; + $this->disableCodeCoverageIgnore = $disableCodeCoverageIgnore; + $this->disallowTestOutput = $disallowTestOutput; + $this->disallowTodoAnnotatedTests = $disallowTodoAnnotatedTests; + $this->enforceTimeLimit = $enforceTimeLimit; + $this->excludeGroups = $excludeGroups; + $this->executionOrder = $executionOrder; + $this->executionOrderDefects = $executionOrderDefects; + $this->extensions = $extensions; + $this->unavailableExtensions = $unavailableExtensions; + $this->failOnEmptyTestSuite = $failOnEmptyTestSuite; + $this->failOnIncomplete = $failOnIncomplete; + $this->failOnRisky = $failOnRisky; + $this->failOnSkipped = $failOnSkipped; + $this->failOnWarning = $failOnWarning; + $this->filter = $filter; + $this->generateConfiguration = $generateConfiguration; + $this->migrateConfiguration = $migrateConfiguration; + $this->groups = $groups; + $this->testsCovering = $testsCovering; + $this->testsUsing = $testsUsing; + $this->help = $help; + $this->includePath = $includePath; + $this->iniSettings = $iniSettings; + $this->junitLogfile = $junitLogfile; + $this->listGroups = $listGroups; + $this->listSuites = $listSuites; + $this->listTests = $listTests; + $this->listTestsXml = $listTestsXml; + $this->loader = $loader; + $this->noCoverage = $noCoverage; + $this->noExtensions = $noExtensions; + $this->noInteraction = $noInteraction; + $this->noLogging = $noLogging; + $this->printer = $printer; + $this->processIsolation = $processIsolation; + $this->randomOrderSeed = $randomOrderSeed; + $this->repeat = $repeat; + $this->reportUselessTests = $reportUselessTests; + $this->resolveDependencies = $resolveDependencies; + $this->reverseList = $reverseList; + $this->stderr = $stderr; + $this->strictCoverage = $strictCoverage; + $this->stopOnDefect = $stopOnDefect; + $this->stopOnError = $stopOnError; + $this->stopOnFailure = $stopOnFailure; + $this->stopOnIncomplete = $stopOnIncomplete; + $this->stopOnRisky = $stopOnRisky; + $this->stopOnSkipped = $stopOnSkipped; + $this->stopOnWarning = $stopOnWarning; + $this->teamcityLogfile = $teamcityLogfile; + $this->testdoxExcludeGroups = $testdoxExcludeGroups; + $this->testdoxGroups = $testdoxGroups; + $this->testdoxHtmlFile = $testdoxHtmlFile; + $this->testdoxTextFile = $testdoxTextFile; + $this->testdoxXmlFile = $testdoxXmlFile; + $this->testSuffixes = $testSuffixes; + $this->testSuite = $testSuite; + $this->unrecognizedOptions = $unrecognizedOptions; + $this->unrecognizedOrderBy = $unrecognizedOrderBy; + $this->useDefaultConfiguration = $useDefaultConfiguration; + $this->verbose = $verbose; + $this->version = $version; + $this->xdebugFilterFile = $xdebugFilterFile; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileEqualsIgnoringCase')) { - /** - * Asserts that the contents of one file is equal to the contents of another - * file (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileEqualsIgnoringCase - */ - function assertFileEqualsIgnoringCase(string $expected, string $actual, string $message = '') : void + public function hasArgument(): bool { - \PHPUnit\Framework\Assert::assertFileEqualsIgnoringCase(...func_get_args()); + return $this->argument !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotEquals')) { /** - * Asserts that the contents of one file is not equal to the contents of - * another file. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotEquals + * @throws Exception */ - function assertFileNotEquals(string $expected, string $actual, string $message = '') : void + public function argument(): string { - \PHPUnit\Framework\Assert::assertFileNotEquals(...func_get_args()); + if ($this->argument === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->argument; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotEqualsCanonicalizing')) { - /** - * Asserts that the contents of one file is not equal to the contents of another - * file (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotEqualsCanonicalizing - */ - function assertFileNotEqualsCanonicalizing(string $expected, string $actual, string $message = '') : void + public function hasAtLeastVersion(): bool { - \PHPUnit\Framework\Assert::assertFileNotEqualsCanonicalizing(...func_get_args()); + return $this->atLeastVersion !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotEqualsIgnoringCase')) { /** - * Asserts that the contents of one file is not equal to the contents of another - * file (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotEqualsIgnoringCase + * @throws Exception */ - function assertFileNotEqualsIgnoringCase(string $expected, string $actual, string $message = '') : void + public function atLeastVersion(): string { - \PHPUnit\Framework\Assert::assertFileNotEqualsIgnoringCase(...func_get_args()); + if ($this->atLeastVersion === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->atLeastVersion; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringEqualsFile')) { - /** - * Asserts that the contents of a string is equal - * to the contents of a file. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringEqualsFile - */ - function assertStringEqualsFile(string $expectedFile, string $actualString, string $message = '') : void + public function hasBackupGlobals(): bool { - \PHPUnit\Framework\Assert::assertStringEqualsFile(...func_get_args()); + return $this->backupGlobals !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringEqualsFileCanonicalizing')) { /** - * Asserts that the contents of a string is equal - * to the contents of a file (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringEqualsFileCanonicalizing + * @throws Exception */ - function assertStringEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = '') : void + public function backupGlobals(): bool { - \PHPUnit\Framework\Assert::assertStringEqualsFileCanonicalizing(...func_get_args()); + if ($this->backupGlobals === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->backupGlobals; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringEqualsFileIgnoringCase')) { - /** - * Asserts that the contents of a string is equal - * to the contents of a file (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringEqualsFileIgnoringCase - */ - function assertStringEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = '') : void + public function hasBackupStaticAttributes(): bool { - \PHPUnit\Framework\Assert::assertStringEqualsFileIgnoringCase(...func_get_args()); + return $this->backupStaticAttributes !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotEqualsFile')) { /** - * Asserts that the contents of a string is not equal - * to the contents of a file. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotEqualsFile + * @throws Exception */ - function assertStringNotEqualsFile(string $expectedFile, string $actualString, string $message = '') : void + public function backupStaticAttributes(): bool { - \PHPUnit\Framework\Assert::assertStringNotEqualsFile(...func_get_args()); + if ($this->backupStaticAttributes === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->backupStaticAttributes; + } + public function hasBeStrictAboutChangesToGlobalState(): bool + { + return $this->beStrictAboutChangesToGlobalState !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotEqualsFileCanonicalizing')) { /** - * Asserts that the contents of a string is not equal - * to the contents of a file (canonicalizing). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotEqualsFileCanonicalizing + * @throws Exception */ - function assertStringNotEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = '') : void + public function beStrictAboutChangesToGlobalState(): bool { - \PHPUnit\Framework\Assert::assertStringNotEqualsFileCanonicalizing(...func_get_args()); + if ($this->beStrictAboutChangesToGlobalState === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->beStrictAboutChangesToGlobalState; + } + public function hasBeStrictAboutResourceUsageDuringSmallTests(): bool + { + return $this->beStrictAboutResourceUsageDuringSmallTests !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotEqualsFileIgnoringCase')) { /** - * Asserts that the contents of a string is not equal - * to the contents of a file (ignoring case). - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotEqualsFileIgnoringCase + * @throws Exception */ - function assertStringNotEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = '') : void + public function beStrictAboutResourceUsageDuringSmallTests(): bool + { + if ($this->beStrictAboutResourceUsageDuringSmallTests === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->beStrictAboutResourceUsageDuringSmallTests; + } + public function hasBootstrap(): bool { - \PHPUnit\Framework\Assert::assertStringNotEqualsFileIgnoringCase(...func_get_args()); + return $this->bootstrap !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsReadable')) { /** - * Asserts that a file/dir is readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsReadable + * @throws Exception */ - function assertIsReadable(string $filename, string $message = '') : void + public function bootstrap(): string { - \PHPUnit\Framework\Assert::assertIsReadable(...func_get_args()); + if ($this->bootstrap === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->bootstrap; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotReadable')) { - /** - * Asserts that a file/dir exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotReadable - */ - function assertIsNotReadable(string $filename, string $message = '') : void + public function hasCacheResult(): bool { - \PHPUnit\Framework\Assert::assertIsNotReadable(...func_get_args()); + return $this->cacheResult !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotIsReadable')) { /** - * Asserts that a file/dir exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4062 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotIsReadable + * @throws Exception */ - function assertNotIsReadable(string $filename, string $message = '') : void + public function cacheResult(): bool { - \PHPUnit\Framework\Assert::assertNotIsReadable(...func_get_args()); + if ($this->cacheResult === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->cacheResult; + } + public function hasCacheResultFile(): bool + { + return $this->cacheResultFile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsWritable')) { /** - * Asserts that a file/dir exists and is writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsWritable + * @throws Exception */ - function assertIsWritable(string $filename, string $message = '') : void + public function cacheResultFile(): string { - \PHPUnit\Framework\Assert::assertIsWritable(...func_get_args()); + if ($this->cacheResultFile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->cacheResultFile; + } + public function hasCheckVersion(): bool + { + return $this->checkVersion !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotWritable')) { /** - * Asserts that a file/dir exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotWritable + * @throws Exception */ - function assertIsNotWritable(string $filename, string $message = '') : void + public function checkVersion(): bool { - \PHPUnit\Framework\Assert::assertIsNotWritable(...func_get_args()); + if ($this->checkVersion === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->checkVersion; + } + public function hasColors(): bool + { + return $this->colors !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotIsWritable')) { /** - * Asserts that a file/dir exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4065 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotIsWritable + * @throws Exception */ - function assertNotIsWritable(string $filename, string $message = '') : void + public function colors(): string { - \PHPUnit\Framework\Assert::assertNotIsWritable(...func_get_args()); + if ($this->colors === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->colors; + } + public function hasColumns(): bool + { + return $this->columns !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryExists')) { /** - * Asserts that a directory exists. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryExists + * @throws Exception */ - function assertDirectoryExists(string $directory, string $message = '') : void + public function columns() { - \PHPUnit\Framework\Assert::assertDirectoryExists(...func_get_args()); + if ($this->columns === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->columns; + } + public function hasConfiguration(): bool + { + return $this->configuration !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryDoesNotExist')) { /** - * Asserts that a directory does not exist. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryDoesNotExist + * @throws Exception */ - function assertDirectoryDoesNotExist(string $directory, string $message = '') : void + public function configuration(): string { - \PHPUnit\Framework\Assert::assertDirectoryDoesNotExist(...func_get_args()); + if ($this->configuration === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->configuration; + } + public function hasCoverageFilter(): bool + { + return $this->coverageFilter !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryNotExists')) { /** - * Asserts that a directory does not exist. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4068 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryNotExists + * @throws Exception */ - function assertDirectoryNotExists(string $directory, string $message = '') : void + public function coverageFilter(): array { - \PHPUnit\Framework\Assert::assertDirectoryNotExists(...func_get_args()); + if ($this->coverageFilter === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageFilter; + } + public function hasCoverageClover(): bool + { + return $this->coverageClover !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryIsReadable')) { /** - * Asserts that a directory exists and is readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryIsReadable + * @throws Exception */ - function assertDirectoryIsReadable(string $directory, string $message = '') : void + public function coverageClover(): string { - \PHPUnit\Framework\Assert::assertDirectoryIsReadable(...func_get_args()); + if ($this->coverageClover === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageClover; + } + public function hasCoverageCobertura(): bool + { + return $this->coverageCobertura !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryIsNotReadable')) { /** - * Asserts that a directory exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryIsNotReadable + * @throws Exception */ - function assertDirectoryIsNotReadable(string $directory, string $message = '') : void + public function coverageCobertura(): string { - \PHPUnit\Framework\Assert::assertDirectoryIsNotReadable(...func_get_args()); + if ($this->coverageCobertura === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageCobertura; + } + public function hasCoverageCrap4J(): bool + { + return $this->coverageCrap4J !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryNotIsReadable')) { /** - * Asserts that a directory exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4071 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryNotIsReadable + * @throws Exception */ - function assertDirectoryNotIsReadable(string $directory, string $message = '') : void + public function coverageCrap4J(): string { - \PHPUnit\Framework\Assert::assertDirectoryNotIsReadable(...func_get_args()); + if ($this->coverageCrap4J === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageCrap4J; + } + public function hasCoverageHtml(): bool + { + return $this->coverageHtml !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryIsWritable')) { /** - * Asserts that a directory exists and is writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryIsWritable + * @throws Exception */ - function assertDirectoryIsWritable(string $directory, string $message = '') : void + public function coverageHtml(): string { - \PHPUnit\Framework\Assert::assertDirectoryIsWritable(...func_get_args()); + if ($this->coverageHtml === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageHtml; + } + public function hasCoveragePhp(): bool + { + return $this->coveragePhp !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryIsNotWritable')) { /** - * Asserts that a directory exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryIsNotWritable + * @throws Exception */ - function assertDirectoryIsNotWritable(string $directory, string $message = '') : void + public function coveragePhp(): string { - \PHPUnit\Framework\Assert::assertDirectoryIsNotWritable(...func_get_args()); + if ($this->coveragePhp === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coveragePhp; + } + public function hasCoverageText(): bool + { + return $this->coverageText !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDirectoryNotIsWritable')) { /** - * Asserts that a directory exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4074 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDirectoryNotIsWritable + * @throws Exception */ - function assertDirectoryNotIsWritable(string $directory, string $message = '') : void + public function coverageText(): string { - \PHPUnit\Framework\Assert::assertDirectoryNotIsWritable(...func_get_args()); + if ($this->coverageText === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageText; + } + public function hasCoverageTextShowUncoveredFiles(): bool + { + return $this->coverageTextShowUncoveredFiles !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileExists')) { /** - * Asserts that a file exists. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileExists + * @throws Exception */ - function assertFileExists(string $filename, string $message = '') : void + public function coverageTextShowUncoveredFiles(): bool { - \PHPUnit\Framework\Assert::assertFileExists(...func_get_args()); + if ($this->coverageTextShowUncoveredFiles === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageTextShowUncoveredFiles; + } + public function hasCoverageTextShowOnlySummary(): bool + { + return $this->coverageTextShowOnlySummary !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileDoesNotExist')) { /** - * Asserts that a file does not exist. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileDoesNotExist + * @throws Exception */ - function assertFileDoesNotExist(string $filename, string $message = '') : void + public function coverageTextShowOnlySummary(): bool { - \PHPUnit\Framework\Assert::assertFileDoesNotExist(...func_get_args()); + if ($this->coverageTextShowOnlySummary === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageTextShowOnlySummary; + } + public function hasCoverageXml(): bool + { + return $this->coverageXml !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotExists')) { /** - * Asserts that a file does not exist. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4077 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotExists + * @throws Exception */ - function assertFileNotExists(string $filename, string $message = '') : void + public function coverageXml(): string { - \PHPUnit\Framework\Assert::assertFileNotExists(...func_get_args()); + if ($this->coverageXml === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageXml; + } + public function hasPathCoverage(): bool + { + return $this->pathCoverage !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileIsReadable')) { /** - * Asserts that a file exists and is readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileIsReadable + * @throws Exception */ - function assertFileIsReadable(string $file, string $message = '') : void + public function pathCoverage(): bool { - \PHPUnit\Framework\Assert::assertFileIsReadable(...func_get_args()); + if ($this->pathCoverage === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->pathCoverage; + } + public function hasCoverageCacheDirectory(): bool + { + return $this->coverageCacheDirectory !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileIsNotReadable')) { /** - * Asserts that a file exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileIsNotReadable + * @throws Exception */ - function assertFileIsNotReadable(string $file, string $message = '') : void + public function coverageCacheDirectory(): string { - \PHPUnit\Framework\Assert::assertFileIsNotReadable(...func_get_args()); + if ($this->coverageCacheDirectory === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->coverageCacheDirectory; + } + public function hasWarmCoverageCache(): bool + { + return $this->warmCoverageCache !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotIsReadable')) { /** - * Asserts that a file exists and is not readable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4080 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotIsReadable + * @throws Exception */ - function assertFileNotIsReadable(string $file, string $message = '') : void + public function warmCoverageCache(): bool { - \PHPUnit\Framework\Assert::assertFileNotIsReadable(...func_get_args()); + if ($this->warmCoverageCache === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->warmCoverageCache; + } + public function hasDebug(): bool + { + return $this->debug !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileIsWritable')) { /** - * Asserts that a file exists and is writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileIsWritable + * @throws Exception */ - function assertFileIsWritable(string $file, string $message = '') : void + public function debug(): bool { - \PHPUnit\Framework\Assert::assertFileIsWritable(...func_get_args()); + if ($this->debug === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->debug; + } + public function hasDefaultTimeLimit(): bool + { + return $this->defaultTimeLimit !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileIsNotWritable')) { /** - * Asserts that a file exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileIsNotWritable + * @throws Exception */ - function assertFileIsNotWritable(string $file, string $message = '') : void + public function defaultTimeLimit(): int { - \PHPUnit\Framework\Assert::assertFileIsNotWritable(...func_get_args()); + if ($this->defaultTimeLimit === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->defaultTimeLimit; + } + public function hasDisableCodeCoverageIgnore(): bool + { + return $this->disableCodeCoverageIgnore !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFileNotIsWritable')) { /** - * Asserts that a file exists and is not writable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4083 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFileNotIsWritable + * @throws Exception */ - function assertFileNotIsWritable(string $file, string $message = '') : void + public function disableCodeCoverageIgnore(): bool { - \PHPUnit\Framework\Assert::assertFileNotIsWritable(...func_get_args()); + if ($this->disableCodeCoverageIgnore === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->disableCodeCoverageIgnore; + } + public function hasDisallowTestOutput(): bool + { + return $this->disallowTestOutput !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertTrue')) { /** - * Asserts that a condition is true. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert true $condition - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertTrue + * @throws Exception */ - function assertTrue($condition, string $message = '') : void + public function disallowTestOutput(): bool { - \PHPUnit\Framework\Assert::assertTrue(...func_get_args()); + if ($this->disallowTestOutput === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->disallowTestOutput; + } + public function hasDisallowTodoAnnotatedTests(): bool + { + return $this->disallowTodoAnnotatedTests !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotTrue')) { /** - * Asserts that a condition is not true. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !true $condition - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotTrue + * @throws Exception */ - function assertNotTrue($condition, string $message = '') : void + public function disallowTodoAnnotatedTests(): bool { - \PHPUnit\Framework\Assert::assertNotTrue(...func_get_args()); + if ($this->disallowTodoAnnotatedTests === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->disallowTodoAnnotatedTests; + } + public function hasEnforceTimeLimit(): bool + { + return $this->enforceTimeLimit !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFalse')) { /** - * Asserts that a condition is false. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert false $condition - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFalse + * @throws Exception */ - function assertFalse($condition, string $message = '') : void + public function enforceTimeLimit(): bool { - \PHPUnit\Framework\Assert::assertFalse(...func_get_args()); + if ($this->enforceTimeLimit === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->enforceTimeLimit; + } + public function hasExcludeGroups(): bool + { + return $this->excludeGroups !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotFalse')) { /** - * Asserts that a condition is not false. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !false $condition - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotFalse + * @throws Exception */ - function assertNotFalse($condition, string $message = '') : void + public function excludeGroups(): array { - \PHPUnit\Framework\Assert::assertNotFalse(...func_get_args()); + if ($this->excludeGroups === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->excludeGroups; + } + public function hasExecutionOrder(): bool + { + return $this->executionOrder !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNull')) { /** - * Asserts that a variable is null. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert null $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNull + * @throws Exception */ - function assertNull($actual, string $message = '') : void + public function executionOrder(): int { - \PHPUnit\Framework\Assert::assertNull(...func_get_args()); + if ($this->executionOrder === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->executionOrder; + } + public function hasExecutionOrderDefects(): bool + { + return $this->executionOrderDefects !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotNull')) { /** - * Asserts that a variable is not null. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !null $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotNull + * @throws Exception */ - function assertNotNull($actual, string $message = '') : void + public function executionOrderDefects(): int { - \PHPUnit\Framework\Assert::assertNotNull(...func_get_args()); + if ($this->executionOrderDefects === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->executionOrderDefects; + } + public function hasFailOnEmptyTestSuite(): bool + { + return $this->failOnEmptyTestSuite !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertFinite')) { /** - * Asserts that a variable is finite. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertFinite + * @throws Exception */ - function assertFinite($actual, string $message = '') : void + public function failOnEmptyTestSuite(): bool { - \PHPUnit\Framework\Assert::assertFinite(...func_get_args()); + if ($this->failOnEmptyTestSuite === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->failOnEmptyTestSuite; + } + public function hasFailOnIncomplete(): bool + { + return $this->failOnIncomplete !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertInfinite')) { /** - * Asserts that a variable is infinite. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertInfinite + * @throws Exception */ - function assertInfinite($actual, string $message = '') : void + public function failOnIncomplete(): bool { - \PHPUnit\Framework\Assert::assertInfinite(...func_get_args()); + if ($this->failOnIncomplete === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->failOnIncomplete; + } + public function hasFailOnRisky(): bool + { + return $this->failOnRisky !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNan')) { /** - * Asserts that a variable is nan. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNan + * @throws Exception */ - function assertNan($actual, string $message = '') : void + public function failOnRisky(): bool { - \PHPUnit\Framework\Assert::assertNan(...func_get_args()); + if ($this->failOnRisky === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->failOnRisky; + } + public function hasFailOnSkipped(): bool + { + return $this->failOnSkipped !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertClassHasAttribute')) { /** - * Asserts that a class has a specified attribute. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertClassHasAttribute */ - function assertClassHasAttribute(string $attributeName, string $className, string $message = '') : void + public function failOnSkipped(): bool { - \PHPUnit\Framework\Assert::assertClassHasAttribute(...func_get_args()); + if ($this->failOnSkipped === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->failOnSkipped; + } + public function hasFailOnWarning(): bool + { + return $this->failOnWarning !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertClassNotHasAttribute')) { /** - * Asserts that a class does not have a specified attribute. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertClassNotHasAttribute */ - function assertClassNotHasAttribute(string $attributeName, string $className, string $message = '') : void + public function failOnWarning(): bool { - \PHPUnit\Framework\Assert::assertClassNotHasAttribute(...func_get_args()); + if ($this->failOnWarning === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->failOnWarning; + } + public function hasFilter(): bool + { + return $this->filter !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertClassHasStaticAttribute')) { /** - * Asserts that a class has a specified static attribute. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertClassHasStaticAttribute */ - function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = '') : void + public function filter(): string { - \PHPUnit\Framework\Assert::assertClassHasStaticAttribute(...func_get_args()); + if ($this->filter === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->filter; + } + public function hasGenerateConfiguration(): bool + { + return $this->generateConfiguration !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertClassNotHasStaticAttribute')) { /** - * Asserts that a class does not have a specified static attribute. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertClassNotHasStaticAttribute */ - function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = '') : void + public function generateConfiguration(): bool { - \PHPUnit\Framework\Assert::assertClassNotHasStaticAttribute(...func_get_args()); + if ($this->generateConfiguration === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->generateConfiguration; + } + public function hasMigrateConfiguration(): bool + { + return $this->migrateConfiguration !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertObjectHasAttribute')) { /** - * Asserts that an object has a specified attribute. - * - * @param object $object - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertObjectHasAttribute */ - function assertObjectHasAttribute(string $attributeName, $object, string $message = '') : void + public function migrateConfiguration(): bool { - \PHPUnit\Framework\Assert::assertObjectHasAttribute(...func_get_args()); + if ($this->migrateConfiguration === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->migrateConfiguration; + } + public function hasGroups(): bool + { + return $this->groups !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertObjectNotHasAttribute')) { /** - * Asserts that an object does not have a specified attribute. - * - * @param object $object - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertObjectNotHasAttribute */ - function assertObjectNotHasAttribute(string $attributeName, $object, string $message = '') : void + public function groups(): array { - \PHPUnit\Framework\Assert::assertObjectNotHasAttribute(...func_get_args()); + if ($this->groups === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->groups; + } + public function hasTestsCovering(): bool + { + return $this->testsCovering !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertSame')) { /** - * Asserts that two variables have the same type and value. - * Used on objects, it asserts that two variables reference - * the same object. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-template ExpectedType - * - * @psalm-param ExpectedType $expected - * - * @psalm-assert =ExpectedType $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertSame + * @throws Exception */ - function assertSame($expected, $actual, string $message = '') : void + public function testsCovering(): array { - \PHPUnit\Framework\Assert::assertSame(...func_get_args()); + if ($this->testsCovering === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testsCovering; + } + public function hasTestsUsing(): bool + { + return $this->testsUsing !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotSame')) { /** - * Asserts that two variables do not have the same type and value. - * Used on objects, it asserts that two variables do not reference - * the same object. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotSame + * @throws Exception */ - function assertNotSame($expected, $actual, string $message = '') : void + public function testsUsing(): array { - \PHPUnit\Framework\Assert::assertNotSame(...func_get_args()); + if ($this->testsUsing === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testsUsing; + } + public function hasHelp(): bool + { + return $this->help !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertInstanceOf')) { /** - * Asserts that a variable is of a given type. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @psalm-template ExpectedType of object - * - * @psalm-param class-string $expected - * - * @psalm-assert =ExpectedType $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertInstanceOf */ - function assertInstanceOf(string $expected, $actual, string $message = '') : void + public function help(): bool { - \PHPUnit\Framework\Assert::assertInstanceOf(...func_get_args()); + if ($this->help === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->help; + } + public function hasIncludePath(): bool + { + return $this->includePath !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotInstanceOf')) { /** - * Asserts that a variable is not of a given type. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @psalm-template ExpectedType of object - * - * @psalm-param class-string $expected - * - * @psalm-assert !ExpectedType $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotInstanceOf */ - function assertNotInstanceOf(string $expected, $actual, string $message = '') : void + public function includePath(): string { - \PHPUnit\Framework\Assert::assertNotInstanceOf(...func_get_args()); + if ($this->includePath === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->includePath; + } + public function hasIniSettings(): bool + { + return $this->iniSettings !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsArray')) { /** - * Asserts that a variable is of type array. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert array $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsArray + * @throws Exception */ - function assertIsArray($actual, string $message = '') : void + public function iniSettings(): array { - \PHPUnit\Framework\Assert::assertIsArray(...func_get_args()); + if ($this->iniSettings === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->iniSettings; + } + public function hasJunitLogfile(): bool + { + return $this->junitLogfile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsBool')) { /** - * Asserts that a variable is of type bool. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert bool $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsBool + * @throws Exception */ - function assertIsBool($actual, string $message = '') : void + public function junitLogfile(): string { - \PHPUnit\Framework\Assert::assertIsBool(...func_get_args()); + if ($this->junitLogfile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->junitLogfile; + } + public function hasListGroups(): bool + { + return $this->listGroups !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsFloat')) { /** - * Asserts that a variable is of type float. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert float $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsFloat + * @throws Exception */ - function assertIsFloat($actual, string $message = '') : void + public function listGroups(): bool { - \PHPUnit\Framework\Assert::assertIsFloat(...func_get_args()); + if ($this->listGroups === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->listGroups; + } + public function hasListSuites(): bool + { + return $this->listSuites !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsInt')) { /** - * Asserts that a variable is of type int. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert int $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsInt + * @throws Exception */ - function assertIsInt($actual, string $message = '') : void + public function listSuites(): bool { - \PHPUnit\Framework\Assert::assertIsInt(...func_get_args()); + if ($this->listSuites === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->listSuites; + } + public function hasListTests(): bool + { + return $this->listTests !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNumeric')) { /** - * Asserts that a variable is of type numeric. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert numeric $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNumeric + * @throws Exception */ - function assertIsNumeric($actual, string $message = '') : void + public function listTests(): bool { - \PHPUnit\Framework\Assert::assertIsNumeric(...func_get_args()); + if ($this->listTests === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->listTests; + } + public function hasListTestsXml(): bool + { + return $this->listTestsXml !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsObject')) { /** - * Asserts that a variable is of type object. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert object $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsObject + * @throws Exception */ - function assertIsObject($actual, string $message = '') : void + public function listTestsXml(): string { - \PHPUnit\Framework\Assert::assertIsObject(...func_get_args()); + if ($this->listTestsXml === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->listTestsXml; + } + public function hasLoader(): bool + { + return $this->loader !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsResource')) { /** - * Asserts that a variable is of type resource. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert resource $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsResource + * @throws Exception */ - function assertIsResource($actual, string $message = '') : void + public function loader(): string { - \PHPUnit\Framework\Assert::assertIsResource(...func_get_args()); + if ($this->loader === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->loader; + } + public function hasNoCoverage(): bool + { + return $this->noCoverage !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsClosedResource')) { /** - * Asserts that a variable is of type resource and is closed. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert resource $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsClosedResource + * @throws Exception */ - function assertIsClosedResource($actual, string $message = '') : void + public function noCoverage(): bool { - \PHPUnit\Framework\Assert::assertIsClosedResource(...func_get_args()); + if ($this->noCoverage === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->noCoverage; + } + public function hasNoExtensions(): bool + { + return $this->noExtensions !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsString')) { /** - * Asserts that a variable is of type string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert string $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsString + * @throws Exception */ - function assertIsString($actual, string $message = '') : void + public function noExtensions(): bool { - \PHPUnit\Framework\Assert::assertIsString(...func_get_args()); + if ($this->noExtensions === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->noExtensions; + } + public function hasExtensions(): bool + { + return $this->extensions !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsScalar')) { /** - * Asserts that a variable is of type scalar. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert scalar $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsScalar + * @throws Exception */ - function assertIsScalar($actual, string $message = '') : void + public function extensions(): array { - \PHPUnit\Framework\Assert::assertIsScalar(...func_get_args()); + if ($this->extensions === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->extensions; + } + public function hasUnavailableExtensions(): bool + { + return $this->unavailableExtensions !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsCallable')) { /** - * Asserts that a variable is of type callable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert callable $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsCallable + * @throws Exception */ - function assertIsCallable($actual, string $message = '') : void + public function unavailableExtensions(): array { - \PHPUnit\Framework\Assert::assertIsCallable(...func_get_args()); + if ($this->unavailableExtensions === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->unavailableExtensions; + } + public function hasNoInteraction(): bool + { + return $this->noInteraction !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsIterable')) { /** - * Asserts that a variable is of type iterable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert iterable $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsIterable + * @throws Exception */ - function assertIsIterable($actual, string $message = '') : void + public function noInteraction(): bool { - \PHPUnit\Framework\Assert::assertIsIterable(...func_get_args()); + if ($this->noInteraction === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->noInteraction; + } + public function hasNoLogging(): bool + { + return $this->noLogging !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotArray')) { /** - * Asserts that a variable is not of type array. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !array $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotArray + * @throws Exception */ - function assertIsNotArray($actual, string $message = '') : void + public function noLogging(): bool { - \PHPUnit\Framework\Assert::assertIsNotArray(...func_get_args()); + if ($this->noLogging === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->noLogging; + } + public function hasPrinter(): bool + { + return $this->printer !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotBool')) { /** - * Asserts that a variable is not of type bool. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !bool $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotBool + * @throws Exception */ - function assertIsNotBool($actual, string $message = '') : void + public function printer(): string { - \PHPUnit\Framework\Assert::assertIsNotBool(...func_get_args()); + if ($this->printer === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->printer; + } + public function hasProcessIsolation(): bool + { + return $this->processIsolation !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotFloat')) { /** - * Asserts that a variable is not of type float. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !float $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotFloat + * @throws Exception */ - function assertIsNotFloat($actual, string $message = '') : void + public function processIsolation(): bool { - \PHPUnit\Framework\Assert::assertIsNotFloat(...func_get_args()); + if ($this->processIsolation === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->processIsolation; + } + public function hasRandomOrderSeed(): bool + { + return $this->randomOrderSeed !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotInt')) { /** - * Asserts that a variable is not of type int. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !int $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotInt + * @throws Exception */ - function assertIsNotInt($actual, string $message = '') : void + public function randomOrderSeed(): int { - \PHPUnit\Framework\Assert::assertIsNotInt(...func_get_args()); + if ($this->randomOrderSeed === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->randomOrderSeed; + } + public function hasRepeat(): bool + { + return $this->repeat !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotNumeric')) { /** - * Asserts that a variable is not of type numeric. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !numeric $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotNumeric + * @throws Exception */ - function assertIsNotNumeric($actual, string $message = '') : void + public function repeat(): int { - \PHPUnit\Framework\Assert::assertIsNotNumeric(...func_get_args()); + if ($this->repeat === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->repeat; + } + public function hasReportUselessTests(): bool + { + return $this->reportUselessTests !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotObject')) { /** - * Asserts that a variable is not of type object. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !object $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotObject + * @throws Exception */ - function assertIsNotObject($actual, string $message = '') : void + public function reportUselessTests(): bool { - \PHPUnit\Framework\Assert::assertIsNotObject(...func_get_args()); + if ($this->reportUselessTests === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->reportUselessTests; + } + public function hasResolveDependencies(): bool + { + return $this->resolveDependencies !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotResource')) { /** - * Asserts that a variable is not of type resource. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !resource $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotResource + * @throws Exception */ - function assertIsNotResource($actual, string $message = '') : void + public function resolveDependencies(): bool { - \PHPUnit\Framework\Assert::assertIsNotResource(...func_get_args()); + if ($this->resolveDependencies === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->resolveDependencies; + } + public function hasReverseList(): bool + { + return $this->reverseList !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotClosedResource')) { /** - * Asserts that a variable is not of type resource. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !resource $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotClosedResource + * @throws Exception */ - function assertIsNotClosedResource($actual, string $message = '') : void + public function reverseList(): bool { - \PHPUnit\Framework\Assert::assertIsNotClosedResource(...func_get_args()); + if ($this->reverseList === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->reverseList; + } + public function hasStderr(): bool + { + return $this->stderr !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotString')) { /** - * Asserts that a variable is not of type string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !string $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotString + * @throws Exception */ - function assertIsNotString($actual, string $message = '') : void + public function stderr(): bool { - \PHPUnit\Framework\Assert::assertIsNotString(...func_get_args()); + if ($this->stderr === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stderr; + } + public function hasStrictCoverage(): bool + { + return $this->strictCoverage !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotScalar')) { /** - * Asserts that a variable is not of type scalar. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !scalar $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotScalar + * @throws Exception */ - function assertIsNotScalar($actual, string $message = '') : void + public function strictCoverage(): bool { - \PHPUnit\Framework\Assert::assertIsNotScalar(...func_get_args()); + if ($this->strictCoverage === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->strictCoverage; + } + public function hasStopOnDefect(): bool + { + return $this->stopOnDefect !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotCallable')) { /** - * Asserts that a variable is not of type callable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !callable $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotCallable + * @throws Exception */ - function assertIsNotCallable($actual, string $message = '') : void + public function stopOnDefect(): bool { - \PHPUnit\Framework\Assert::assertIsNotCallable(...func_get_args()); + if ($this->stopOnDefect === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnDefect; + } + public function hasStopOnError(): bool + { + return $this->stopOnError !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertIsNotIterable')) { /** - * Asserts that a variable is not of type iterable. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @psalm-assert !iterable $actual - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertIsNotIterable + * @throws Exception */ - function assertIsNotIterable($actual, string $message = '') : void + public function stopOnError(): bool { - \PHPUnit\Framework\Assert::assertIsNotIterable(...func_get_args()); + if ($this->stopOnError === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnError; + } + public function hasStopOnFailure(): bool + { + return $this->stopOnFailure !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertMatchesRegularExpression')) { /** - * Asserts that a string matches a given regular expression. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertMatchesRegularExpression + * @throws Exception */ - function assertMatchesRegularExpression(string $pattern, string $string, string $message = '') : void + public function stopOnFailure(): bool { - \PHPUnit\Framework\Assert::assertMatchesRegularExpression(...func_get_args()); + if ($this->stopOnFailure === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnFailure; + } + public function hasStopOnIncomplete(): bool + { + return $this->stopOnIncomplete !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertRegExp')) { /** - * Asserts that a string matches a given regular expression. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4086 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertRegExp + * @throws Exception */ - function assertRegExp(string $pattern, string $string, string $message = '') : void + public function stopOnIncomplete(): bool { - \PHPUnit\Framework\Assert::assertRegExp(...func_get_args()); + if ($this->stopOnIncomplete === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnIncomplete; + } + public function hasStopOnRisky(): bool + { + return $this->stopOnRisky !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertDoesNotMatchRegularExpression')) { /** - * Asserts that a string does not match a given regular expression. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertDoesNotMatchRegularExpression + * @throws Exception */ - function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = '') : void + public function stopOnRisky(): bool { - \PHPUnit\Framework\Assert::assertDoesNotMatchRegularExpression(...func_get_args()); + if ($this->stopOnRisky === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnRisky; + } + public function hasStopOnSkipped(): bool + { + return $this->stopOnSkipped !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotRegExp')) { /** - * Asserts that a string does not match a given regular expression. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4089 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotRegExp + * @throws Exception */ - function assertNotRegExp(string $pattern, string $string, string $message = '') : void + public function stopOnSkipped(): bool { - \PHPUnit\Framework\Assert::assertNotRegExp(...func_get_args()); + if ($this->stopOnSkipped === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnSkipped; + } + public function hasStopOnWarning(): bool + { + return $this->stopOnWarning !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertSameSize')) { /** - * Assert that the size of two arrays (or `Countable` or `Traversable` objects) - * is the same. - * - * @param Countable|iterable $expected - * @param Countable|iterable $actual - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertSameSize */ - function assertSameSize($expected, $actual, string $message = '') : void + public function stopOnWarning(): bool { - \PHPUnit\Framework\Assert::assertSameSize(...func_get_args()); + if ($this->stopOnWarning === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->stopOnWarning; + } + public function hasTeamcityLogfile(): bool + { + return $this->teamcityLogfile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertNotSameSize')) { /** - * Assert that the size of two arrays (or `Countable` or `Traversable` objects) - * is not the same. - * - * @param Countable|iterable $expected - * @param Countable|iterable $actual - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertNotSameSize */ - function assertNotSameSize($expected, $actual, string $message = '') : void + public function teamcityLogfile(): string { - \PHPUnit\Framework\Assert::assertNotSameSize(...func_get_args()); + if ($this->teamcityLogfile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->teamcityLogfile; + } + public function hasTestdoxExcludeGroups(): bool + { + return $this->testdoxExcludeGroups !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringMatchesFormat')) { /** - * Asserts that a string matches a given format string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringMatchesFormat + * @throws Exception */ - function assertStringMatchesFormat(string $format, string $string, string $message = '') : void + public function testdoxExcludeGroups(): array { - \PHPUnit\Framework\Assert::assertStringMatchesFormat(...func_get_args()); + if ($this->testdoxExcludeGroups === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testdoxExcludeGroups; + } + public function hasTestdoxGroups(): bool + { + return $this->testdoxGroups !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotMatchesFormat')) { /** - * Asserts that a string does not match a given format string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotMatchesFormat + * @throws Exception */ - function assertStringNotMatchesFormat(string $format, string $string, string $message = '') : void + public function testdoxGroups(): array { - \PHPUnit\Framework\Assert::assertStringNotMatchesFormat(...func_get_args()); + if ($this->testdoxGroups === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testdoxGroups; + } + public function hasTestdoxHtmlFile(): bool + { + return $this->testdoxHtmlFile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringMatchesFormatFile')) { /** - * Asserts that a string matches a given format file. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringMatchesFormatFile + * @throws Exception */ - function assertStringMatchesFormatFile(string $formatFile, string $string, string $message = '') : void + public function testdoxHtmlFile(): string { - \PHPUnit\Framework\Assert::assertStringMatchesFormatFile(...func_get_args()); + if ($this->testdoxHtmlFile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testdoxHtmlFile; + } + public function hasTestdoxTextFile(): bool + { + return $this->testdoxTextFile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotMatchesFormatFile')) { /** - * Asserts that a string does not match a given format string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotMatchesFormatFile + * @throws Exception */ - function assertStringNotMatchesFormatFile(string $formatFile, string $string, string $message = '') : void + public function testdoxTextFile(): string { - \PHPUnit\Framework\Assert::assertStringNotMatchesFormatFile(...func_get_args()); + if ($this->testdoxTextFile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testdoxTextFile; + } + public function hasTestdoxXmlFile(): bool + { + return $this->testdoxXmlFile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringStartsWith')) { /** - * Asserts that a string starts with a given prefix. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringStartsWith + * @throws Exception */ - function assertStringStartsWith(string $prefix, string $string, string $message = '') : void + public function testdoxXmlFile(): string { - \PHPUnit\Framework\Assert::assertStringStartsWith(...func_get_args()); + if ($this->testdoxXmlFile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testdoxXmlFile; + } + public function hasTestSuffixes(): bool + { + return $this->testSuffixes !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringStartsNotWith')) { /** - * Asserts that a string starts not with a given prefix. - * - * @param string $prefix - * @param string $string - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringStartsNotWith + * @throws Exception */ - function assertStringStartsNotWith($prefix, $string, string $message = '') : void + public function testSuffixes(): array { - \PHPUnit\Framework\Assert::assertStringStartsNotWith(...func_get_args()); + if ($this->testSuffixes === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testSuffixes; + } + public function hasTestSuite(): bool + { + return $this->testSuite !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringContainsString')) { /** - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringContainsString + * @throws Exception */ - function assertStringContainsString(string $needle, string $haystack, string $message = '') : void + public function testSuite(): string { - \PHPUnit\Framework\Assert::assertStringContainsString(...func_get_args()); + if ($this->testSuite === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->testSuite; + } + public function unrecognizedOptions(): array + { + return $this->unrecognizedOptions; + } + public function hasUnrecognizedOrderBy(): bool + { + return $this->unrecognizedOrderBy !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringContainsStringIgnoringCase')) { /** - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringContainsStringIgnoringCase + * @throws Exception */ - function assertStringContainsStringIgnoringCase(string $needle, string $haystack, string $message = '') : void + public function unrecognizedOrderBy(): string { - \PHPUnit\Framework\Assert::assertStringContainsStringIgnoringCase(...func_get_args()); + if ($this->unrecognizedOrderBy === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->unrecognizedOrderBy; + } + public function hasUseDefaultConfiguration(): bool + { + return $this->useDefaultConfiguration !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotContainsString')) { /** - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotContainsString + * @throws Exception */ - function assertStringNotContainsString(string $needle, string $haystack, string $message = '') : void + public function useDefaultConfiguration(): bool { - \PHPUnit\Framework\Assert::assertStringNotContainsString(...func_get_args()); + if ($this->useDefaultConfiguration === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->useDefaultConfiguration; + } + public function hasVerbose(): bool + { + return $this->verbose !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringNotContainsStringIgnoringCase')) { /** - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringNotContainsStringIgnoringCase + * @throws Exception */ - function assertStringNotContainsStringIgnoringCase(string $needle, string $haystack, string $message = '') : void + public function verbose(): bool { - \PHPUnit\Framework\Assert::assertStringNotContainsStringIgnoringCase(...func_get_args()); + if ($this->verbose === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->verbose; + } + public function hasVersion(): bool + { + return $this->version !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringEndsWith')) { /** - * Asserts that a string ends with a given suffix. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringEndsWith + * @throws Exception */ - function assertStringEndsWith(string $suffix, string $string, string $message = '') : void + public function version(): bool { - \PHPUnit\Framework\Assert::assertStringEndsWith(...func_get_args()); + if ($this->version === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->version; + } + public function hasXdebugFilterFile(): bool + { + return $this->xdebugFilterFile !== null; } -} -if (!function_exists('PHPUnit\\Framework\\assertStringEndsNotWith')) { /** - * Asserts that a string ends not with a given suffix. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertStringEndsNotWith + * @throws Exception */ - function assertStringEndsNotWith(string $suffix, string $string, string $message = '') : void + public function xdebugFilterFile(): string { - \PHPUnit\Framework\Assert::assertStringEndsNotWith(...func_get_args()); + if ($this->xdebugFilterFile === null) { + throw new \PHPUnit\TextUI\CliArguments\Exception(); + } + return $this->xdebugFilterFile; } } -if (!function_exists('PHPUnit\\Framework\\assertXmlFileEqualsXmlFile')) { + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\CliArguments; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Mapper +{ /** - * Asserts that two XML files are equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException * @throws Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlFileEqualsXmlFile */ - function assertXmlFileEqualsXmlFile(string $expectedFile, string $actualFile, string $message = '') : void + public function mapToLegacyArray(\PHPUnit\TextUI\CliArguments\Configuration $arguments): array { - \PHPUnit\Framework\Assert::assertXmlFileEqualsXmlFile(...func_get_args()); + $result = ['extensions' => [], 'listGroups' => \false, 'listSuites' => \false, 'listTests' => \false, 'listTestsXml' => \false, 'loader' => null, 'useDefaultConfiguration' => \true, 'loadedExtensions' => [], 'unavailableExtensions' => [], 'notLoadedExtensions' => []]; + if ($arguments->hasColors()) { + $result['colors'] = $arguments->colors(); + } + if ($arguments->hasBootstrap()) { + $result['bootstrap'] = $arguments->bootstrap(); + } + if ($arguments->hasCacheResult()) { + $result['cacheResult'] = $arguments->cacheResult(); + } + if ($arguments->hasCacheResultFile()) { + $result['cacheResultFile'] = $arguments->cacheResultFile(); + } + if ($arguments->hasColumns()) { + $result['columns'] = $arguments->columns(); + } + if ($arguments->hasConfiguration()) { + $result['configuration'] = $arguments->configuration(); + } + if ($arguments->hasCoverageCacheDirectory()) { + $result['coverageCacheDirectory'] = $arguments->coverageCacheDirectory(); + } + if ($arguments->hasWarmCoverageCache()) { + $result['warmCoverageCache'] = $arguments->warmCoverageCache(); + } + if ($arguments->hasCoverageClover()) { + $result['coverageClover'] = $arguments->coverageClover(); + } + if ($arguments->hasCoverageCobertura()) { + $result['coverageCobertura'] = $arguments->coverageCobertura(); + } + if ($arguments->hasCoverageCrap4J()) { + $result['coverageCrap4J'] = $arguments->coverageCrap4J(); + } + if ($arguments->hasCoverageHtml()) { + $result['coverageHtml'] = $arguments->coverageHtml(); + } + if ($arguments->hasCoveragePhp()) { + $result['coveragePHP'] = $arguments->coveragePhp(); + } + if ($arguments->hasCoverageText()) { + $result['coverageText'] = $arguments->coverageText(); + } + if ($arguments->hasCoverageTextShowUncoveredFiles()) { + $result['coverageTextShowUncoveredFiles'] = $arguments->hasCoverageTextShowUncoveredFiles(); + } + if ($arguments->hasCoverageTextShowOnlySummary()) { + $result['coverageTextShowOnlySummary'] = $arguments->coverageTextShowOnlySummary(); + } + if ($arguments->hasCoverageXml()) { + $result['coverageXml'] = $arguments->coverageXml(); + } + if ($arguments->hasPathCoverage()) { + $result['pathCoverage'] = $arguments->pathCoverage(); + } + if ($arguments->hasDebug()) { + $result['debug'] = $arguments->debug(); + } + if ($arguments->hasHelp()) { + $result['help'] = $arguments->help(); + } + if ($arguments->hasFilter()) { + $result['filter'] = $arguments->filter(); + } + if ($arguments->hasTestSuite()) { + $result['testsuite'] = $arguments->testSuite(); + } + if ($arguments->hasGroups()) { + $result['groups'] = $arguments->groups(); + } + if ($arguments->hasExcludeGroups()) { + $result['excludeGroups'] = $arguments->excludeGroups(); + } + if ($arguments->hasTestsCovering()) { + $result['testsCovering'] = $arguments->testsCovering(); + } + if ($arguments->hasTestsUsing()) { + $result['testsUsing'] = $arguments->testsUsing(); + } + if ($arguments->hasTestSuffixes()) { + $result['testSuffixes'] = $arguments->testSuffixes(); + } + if ($arguments->hasIncludePath()) { + $result['includePath'] = $arguments->includePath(); + } + if ($arguments->hasListGroups()) { + $result['listGroups'] = $arguments->listGroups(); + } + if ($arguments->hasListSuites()) { + $result['listSuites'] = $arguments->listSuites(); + } + if ($arguments->hasListTests()) { + $result['listTests'] = $arguments->listTests(); + } + if ($arguments->hasListTestsXml()) { + $result['listTestsXml'] = $arguments->listTestsXml(); + } + if ($arguments->hasPrinter()) { + $result['printer'] = $arguments->printer(); + } + if ($arguments->hasLoader()) { + $result['loader'] = $arguments->loader(); + } + if ($arguments->hasJunitLogfile()) { + $result['junitLogfile'] = $arguments->junitLogfile(); + } + if ($arguments->hasTeamcityLogfile()) { + $result['teamcityLogfile'] = $arguments->teamcityLogfile(); + } + if ($arguments->hasExecutionOrder()) { + $result['executionOrder'] = $arguments->executionOrder(); + } + if ($arguments->hasExecutionOrderDefects()) { + $result['executionOrderDefects'] = $arguments->executionOrderDefects(); + } + if ($arguments->hasExtensions()) { + $result['extensions'] = $arguments->extensions(); + } + if ($arguments->hasUnavailableExtensions()) { + $result['unavailableExtensions'] = $arguments->unavailableExtensions(); + } + if ($arguments->hasResolveDependencies()) { + $result['resolveDependencies'] = $arguments->resolveDependencies(); + } + if ($arguments->hasProcessIsolation()) { + $result['processIsolation'] = $arguments->processIsolation(); + } + if ($arguments->hasRepeat()) { + $result['repeat'] = $arguments->repeat(); + } + if ($arguments->hasStderr()) { + $result['stderr'] = $arguments->stderr(); + } + if ($arguments->hasStopOnDefect()) { + $result['stopOnDefect'] = $arguments->stopOnDefect(); + } + if ($arguments->hasStopOnError()) { + $result['stopOnError'] = $arguments->stopOnError(); + } + if ($arguments->hasStopOnFailure()) { + $result['stopOnFailure'] = $arguments->stopOnFailure(); + } + if ($arguments->hasStopOnWarning()) { + $result['stopOnWarning'] = $arguments->stopOnWarning(); + } + if ($arguments->hasStopOnIncomplete()) { + $result['stopOnIncomplete'] = $arguments->stopOnIncomplete(); + } + if ($arguments->hasStopOnRisky()) { + $result['stopOnRisky'] = $arguments->stopOnRisky(); + } + if ($arguments->hasStopOnSkipped()) { + $result['stopOnSkipped'] = $arguments->stopOnSkipped(); + } + if ($arguments->hasFailOnEmptyTestSuite()) { + $result['failOnEmptyTestSuite'] = $arguments->failOnEmptyTestSuite(); + } + if ($arguments->hasFailOnIncomplete()) { + $result['failOnIncomplete'] = $arguments->failOnIncomplete(); + } + if ($arguments->hasFailOnRisky()) { + $result['failOnRisky'] = $arguments->failOnRisky(); + } + if ($arguments->hasFailOnSkipped()) { + $result['failOnSkipped'] = $arguments->failOnSkipped(); + } + if ($arguments->hasFailOnWarning()) { + $result['failOnWarning'] = $arguments->failOnWarning(); + } + if ($arguments->hasTestdoxGroups()) { + $result['testdoxGroups'] = $arguments->testdoxGroups(); + } + if ($arguments->hasTestdoxExcludeGroups()) { + $result['testdoxExcludeGroups'] = $arguments->testdoxExcludeGroups(); + } + if ($arguments->hasTestdoxHtmlFile()) { + $result['testdoxHTMLFile'] = $arguments->testdoxHtmlFile(); + } + if ($arguments->hasTestdoxTextFile()) { + $result['testdoxTextFile'] = $arguments->testdoxTextFile(); + } + if ($arguments->hasTestdoxXmlFile()) { + $result['testdoxXMLFile'] = $arguments->testdoxXmlFile(); + } + if ($arguments->hasUseDefaultConfiguration()) { + $result['useDefaultConfiguration'] = $arguments->useDefaultConfiguration(); + } + if ($arguments->hasNoExtensions()) { + $result['noExtensions'] = $arguments->noExtensions(); + } + if ($arguments->hasNoCoverage()) { + $result['noCoverage'] = $arguments->noCoverage(); + } + if ($arguments->hasNoLogging()) { + $result['noLogging'] = $arguments->noLogging(); + } + if ($arguments->hasNoInteraction()) { + $result['noInteraction'] = $arguments->noInteraction(); + } + if ($arguments->hasBackupGlobals()) { + $result['backupGlobals'] = $arguments->backupGlobals(); + } + if ($arguments->hasBackupStaticAttributes()) { + $result['backupStaticAttributes'] = $arguments->backupStaticAttributes(); + } + if ($arguments->hasVerbose()) { + $result['verbose'] = $arguments->verbose(); + } + if ($arguments->hasReportUselessTests()) { + $result['reportUselessTests'] = $arguments->reportUselessTests(); + } + if ($arguments->hasStrictCoverage()) { + $result['strictCoverage'] = $arguments->strictCoverage(); + } + if ($arguments->hasDisableCodeCoverageIgnore()) { + $result['disableCodeCoverageIgnore'] = $arguments->disableCodeCoverageIgnore(); + } + if ($arguments->hasBeStrictAboutChangesToGlobalState()) { + $result['beStrictAboutChangesToGlobalState'] = $arguments->beStrictAboutChangesToGlobalState(); + } + if ($arguments->hasDisallowTestOutput()) { + $result['disallowTestOutput'] = $arguments->disallowTestOutput(); + } + if ($arguments->hasBeStrictAboutResourceUsageDuringSmallTests()) { + $result['beStrictAboutResourceUsageDuringSmallTests'] = $arguments->beStrictAboutResourceUsageDuringSmallTests(); + } + if ($arguments->hasDefaultTimeLimit()) { + $result['defaultTimeLimit'] = $arguments->defaultTimeLimit(); + } + if ($arguments->hasEnforceTimeLimit()) { + $result['enforceTimeLimit'] = $arguments->enforceTimeLimit(); + } + if ($arguments->hasDisallowTodoAnnotatedTests()) { + $result['disallowTodoAnnotatedTests'] = $arguments->disallowTodoAnnotatedTests(); + } + if ($arguments->hasReverseList()) { + $result['reverseList'] = $arguments->reverseList(); + } + if ($arguments->hasCoverageFilter()) { + $result['coverageFilter'] = $arguments->coverageFilter(); + } + if ($arguments->hasRandomOrderSeed()) { + $result['randomOrderSeed'] = $arguments->randomOrderSeed(); + } + if ($arguments->hasXdebugFilterFile()) { + $result['xdebugFilterFile'] = $arguments->xdebugFilterFile(); + } + return $result; } } -if (!function_exists('PHPUnit\\Framework\\assertXmlFileNotEqualsXmlFile')) { + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\CliArguments; + +use RuntimeException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Exception extends RuntimeException implements \PHPUnit\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI; + +use const PHP_VERSION; +use function explode; +use function in_array; +use function is_dir; +use function is_file; +use function strpos; +use function version_compare; +use PHPUnit\Framework\Exception as FrameworkException; +use PHPUnit\Framework\TestSuite as TestSuiteObject; +use PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection; +use PHPUnitPHAR\SebastianBergmann\FileIterator\Facade; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TestSuiteMapper +{ /** - * Asserts that two XML files are not equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws \PHPUnit\Util\Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlFileNotEqualsXmlFile + * @throws RuntimeException + * @throws TestDirectoryNotFoundException + * @throws TestFileNotFoundException */ - function assertXmlFileNotEqualsXmlFile(string $expectedFile, string $actualFile, string $message = '') : void + public function map(TestSuiteCollection $configuration, string $filter): TestSuiteObject { - \PHPUnit\Framework\Assert::assertXmlFileNotEqualsXmlFile(...func_get_args()); + try { + $filterAsArray = $filter ? explode(',', $filter) : []; + $result = new TestSuiteObject(); + foreach ($configuration as $testSuiteConfiguration) { + if (!empty($filterAsArray) && !in_array($testSuiteConfiguration->name(), $filterAsArray, \true)) { + continue; + } + $testSuite = new TestSuiteObject($testSuiteConfiguration->name()); + $testSuiteEmpty = \true; + $exclude = []; + foreach ($testSuiteConfiguration->exclude()->asArray() as $file) { + $exclude[] = $file->path(); + } + foreach ($testSuiteConfiguration->directories() as $directory) { + if (!version_compare(PHP_VERSION, $directory->phpVersion(), $directory->phpVersionOperator()->asString())) { + continue; + } + $files = (new Facade())->getFilesAsArray($directory->path(), $directory->suffix(), $directory->prefix(), $exclude); + if (!empty($files)) { + $testSuite->addTestFiles($files); + $testSuiteEmpty = \false; + } elseif (strpos($directory->path(), '*') === \false && !is_dir($directory->path())) { + throw new \PHPUnit\TextUI\TestDirectoryNotFoundException($directory->path()); + } + } + foreach ($testSuiteConfiguration->files() as $file) { + if (!is_file($file->path())) { + throw new \PHPUnit\TextUI\TestFileNotFoundException($file->path()); + } + if (!version_compare(PHP_VERSION, $file->phpVersion(), $file->phpVersionOperator()->asString())) { + continue; + } + $testSuite->addTestFile($file->path()); + $testSuiteEmpty = \false; + } + if (!$testSuiteEmpty) { + $result->addTest($testSuite); + } + } + return $result; + } catch (FrameworkException $e) { + throw new \PHPUnit\TextUI\RuntimeException($e->getMessage(), $e->getCode(), $e); + } } } -if (!function_exists('PHPUnit\\Framework\\assertXmlStringEqualsXmlFile')) { + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI; + +use const PHP_EOL; +use const PHP_SAPI; +use const PHP_VERSION; +use function array_diff; +use function array_map; +use function array_merge; +use function assert; +use function class_exists; +use function count; +use function dirname; +use function file_put_contents; +use function htmlspecialchars; +use function is_array; +use function is_int; +use function is_string; +use function mt_srand; +use function range; +use function realpath; +use function sort; +use function sprintf; +use function time; +use PHPUnit\Framework\Exception; +use PHPUnit\Framework\TestResult; +use PHPUnit\Framework\TestSuite; +use PHPUnit\Runner\AfterLastTestHook; +use PHPUnit\Runner\BaseTestRunner; +use PHPUnit\Runner\BeforeFirstTestHook; +use PHPUnit\Runner\DefaultTestResultCache; +use PHPUnit\Runner\Extension\ExtensionHandler; +use PHPUnit\Runner\Filter\ExcludeGroupFilterIterator; +use PHPUnit\Runner\Filter\Factory; +use PHPUnit\Runner\Filter\IncludeGroupFilterIterator; +use PHPUnit\Runner\Filter\NameFilterIterator; +use PHPUnit\Runner\Hook; +use PHPUnit\Runner\NullTestResultCache; +use PHPUnit\Runner\ResultCacheExtension; +use PHPUnit\Runner\StandardTestSuiteLoader; +use PHPUnit\Runner\TestHook; +use PHPUnit\Runner\TestListenerAdapter; +use PHPUnit\Runner\TestSuiteLoader; +use PHPUnit\Runner\TestSuiteSorter; +use PHPUnit\Runner\Version; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\FilterMapper; +use PHPUnit\TextUI\XmlConfiguration\Configuration; +use PHPUnit\TextUI\XmlConfiguration\Loader; +use PHPUnit\TextUI\XmlConfiguration\PhpHandler; +use PHPUnit\Util\Filesystem; +use PHPUnit\Util\Log\JUnit; +use PHPUnit\Util\Log\TeamCity; +use PHPUnit\Util\Printer; +use PHPUnit\Util\TestDox\CliTestDoxPrinter; +use PHPUnit\Util\TestDox\HtmlResultPrinter; +use PHPUnit\Util\TestDox\TextResultPrinter; +use PHPUnit\Util\TestDox\XmlResultPrinter; +use PHPUnit\Util\XdebugFilterScriptGenerator; +use PHPUnit\Util\Xml\SchemaDetector; +use ReflectionClass; +use ReflectionException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\CodeCoverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver\Selector; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Exception as CodeCoverageException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter as CodeCoverageFilter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Clover as CloverReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Cobertura as CoberturaReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Crap4j as Crap4jReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Html\Facade as HtmlReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\PHP as PhpReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Text as TextReport; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Xml\Facade as XmlReport; +use PHPUnitPHAR\SebastianBergmann\Comparator\Comparator; +use PHPUnitPHAR\SebastianBergmann\Environment\Runtime; +use PHPUnitPHAR\SebastianBergmann\Invoker\Invoker; +use PHPUnitPHAR\SebastianBergmann\Timer\Timer; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TestRunner extends BaseTestRunner +{ + public const SUCCESS_EXIT = 0; + public const FAILURE_EXIT = 1; + public const EXCEPTION_EXIT = 2; /** - * Asserts that two XML documents are equal. - * - * @param DOMDocument|string $actualXml - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws \PHPUnit\Util\Xml\Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlStringEqualsXmlFile + * @var CodeCoverageFilter */ - function assertXmlStringEqualsXmlFile(string $expectedFile, $actualXml, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlFile(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertXmlStringNotEqualsXmlFile')) { + private $codeCoverageFilter; /** - * Asserts that two XML documents are not equal. - * - * @param DOMDocument|string $actualXml - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws \PHPUnit\Util\Xml\Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlStringNotEqualsXmlFile + * @var TestSuiteLoader */ - function assertXmlStringNotEqualsXmlFile(string $expectedFile, $actualXml, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertXmlStringNotEqualsXmlFile(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertXmlStringEqualsXmlString')) { + private $loader; /** - * Asserts that two XML documents are equal. - * - * @param DOMDocument|string $expectedXml - * @param DOMDocument|string $actualXml - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws \PHPUnit\Util\Xml\Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlStringEqualsXmlString + * @var ResultPrinter */ - function assertXmlStringEqualsXmlString($expectedXml, $actualXml, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlString(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertXmlStringNotEqualsXmlString')) { + private $printer; /** - * Asserts that two XML documents are not equal. - * - * @param DOMDocument|string $expectedXml - * @param DOMDocument|string $actualXml - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws \PHPUnit\Util\Xml\Exception - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertXmlStringNotEqualsXmlString + * @var bool */ - function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertXmlStringNotEqualsXmlString(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertEqualXMLStructure')) { + private $messagePrinted = \false; /** - * Asserts that a hierarchy of DOMElements matches. - * - * @throws AssertionFailedError - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @codeCoverageIgnore - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4091 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertEqualXMLStructure + * @var Hook[] */ - function assertEqualXMLStructure(DOMElement $expectedElement, DOMElement $actualElement, bool $checkAttributes = \false, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertEqualXMLStructure(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\assertThat')) { + private $extensions = []; /** - * Evaluates a PHPUnit\Framework\Constraint matcher object. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertThat + * @var Timer */ - function assertThat($value, Constraint $constraint, string $message = '') : void + private $timer; + public function __construct(?TestSuiteLoader $loader = null, ?CodeCoverageFilter $filter = null) { - \PHPUnit\Framework\Assert::assertThat(...func_get_args()); + if ($filter === null) { + $filter = new CodeCoverageFilter(); + } + $this->codeCoverageFilter = $filter; + $this->loader = $loader; + $this->timer = new Timer(); } -} -if (!function_exists('PHPUnit\\Framework\\assertJson')) { /** - * Asserts that a string is a valid JSON string. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJson + * @throws \PHPUnit\Runner\Exception + * @throws Exception + * @throws XmlConfiguration\Exception */ - function assertJson(string $actualJson, string $message = '') : void + public function run(TestSuite $suite, array $arguments = [], array $warnings = [], bool $exit = \true): TestResult { - \PHPUnit\Framework\Assert::assertJson(...func_get_args()); + if (isset($arguments['configuration'])) { + $GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] = $arguments['configuration']; + } + $this->handleConfiguration($arguments); + $warnings = array_merge($warnings, $arguments['warnings']); + if (is_int($arguments['columns']) && $arguments['columns'] < 16) { + $arguments['columns'] = 16; + $tooFewColumnsRequested = \true; + } + if (isset($arguments['bootstrap'])) { + $GLOBALS['__PHPUNIT_BOOTSTRAP'] = $arguments['bootstrap']; + } + if ($arguments['backupGlobals'] === \true) { + $suite->setBackupGlobals(\true); + } + if ($arguments['backupStaticAttributes'] === \true) { + $suite->setBackupStaticAttributes(\true); + } + if ($arguments['beStrictAboutChangesToGlobalState'] === \true) { + $suite->setBeStrictAboutChangesToGlobalState(\true); + } + if ($arguments['executionOrder'] === TestSuiteSorter::ORDER_RANDOMIZED) { + mt_srand($arguments['randomOrderSeed']); + } + if ($arguments['cacheResult']) { + if (!isset($arguments['cacheResultFile'])) { + if (isset($arguments['configurationObject'])) { + assert($arguments['configurationObject'] instanceof Configuration); + $cacheLocation = $arguments['configurationObject']->filename(); + } else { + $cacheLocation = $_SERVER['PHP_SELF']; + } + $arguments['cacheResultFile'] = null; + $cacheResultFile = realpath($cacheLocation); + if ($cacheResultFile !== \false) { + $arguments['cacheResultFile'] = dirname($cacheResultFile); + } + } + $cache = new DefaultTestResultCache($arguments['cacheResultFile']); + $this->addExtension(new ResultCacheExtension($cache)); + } + if ($arguments['executionOrder'] !== TestSuiteSorter::ORDER_DEFAULT || $arguments['executionOrderDefects'] !== TestSuiteSorter::ORDER_DEFAULT || $arguments['resolveDependencies']) { + $cache = $cache ?? new NullTestResultCache(); + $cache->load(); + $sorter = new TestSuiteSorter($cache); + $sorter->reorderTestsInSuite($suite, $arguments['executionOrder'], $arguments['resolveDependencies'], $arguments['executionOrderDefects']); + $originalExecutionOrder = $sorter->getOriginalExecutionOrder(); + unset($sorter); + } + if (is_int($arguments['repeat']) && $arguments['repeat'] > 0) { + $_suite = new TestSuite(); + /* @noinspection PhpUnusedLocalVariableInspection */ + foreach (range(1, $arguments['repeat']) as $step) { + $_suite->addTest($suite); + } + $suite = $_suite; + unset($_suite); + } + $result = $this->createTestResult(); + $listener = new TestListenerAdapter(); + $listenerNeeded = \false; + foreach ($this->extensions as $extension) { + if ($extension instanceof TestHook) { + $listener->add($extension); + $listenerNeeded = \true; + } + } + if ($listenerNeeded) { + $result->addListener($listener); + } + unset($listener, $listenerNeeded); + if ($arguments['convertDeprecationsToExceptions']) { + $result->convertDeprecationsToExceptions(\true); + } + if (!$arguments['convertErrorsToExceptions']) { + $result->convertErrorsToExceptions(\false); + } + if (!$arguments['convertNoticesToExceptions']) { + $result->convertNoticesToExceptions(\false); + } + if (!$arguments['convertWarningsToExceptions']) { + $result->convertWarningsToExceptions(\false); + } + if ($arguments['stopOnError']) { + $result->stopOnError(\true); + } + if ($arguments['stopOnFailure']) { + $result->stopOnFailure(\true); + } + if ($arguments['stopOnWarning']) { + $result->stopOnWarning(\true); + } + if ($arguments['stopOnIncomplete']) { + $result->stopOnIncomplete(\true); + } + if ($arguments['stopOnRisky']) { + $result->stopOnRisky(\true); + } + if ($arguments['stopOnSkipped']) { + $result->stopOnSkipped(\true); + } + if ($arguments['stopOnDefect']) { + $result->stopOnDefect(\true); + } + if ($arguments['registerMockObjectsFromTestArgumentsRecursively']) { + $result->setRegisterMockObjectsFromTestArgumentsRecursively(\true); + } + if ($this->printer === null) { + if (isset($arguments['printer'])) { + if ($arguments['printer'] instanceof \PHPUnit\TextUI\ResultPrinter) { + $this->printer = $arguments['printer']; + } elseif (is_string($arguments['printer']) && class_exists($arguments['printer'], \false)) { + try { + $reflector = new ReflectionClass($arguments['printer']); + if ($reflector->implementsInterface(\PHPUnit\TextUI\ResultPrinter::class)) { + $this->printer = $this->createPrinter($arguments['printer'], $arguments); + } + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } + } else { + $this->printer = $this->createPrinter(\PHPUnit\TextUI\DefaultResultPrinter::class, $arguments); + } + } + if (isset($originalExecutionOrder) && $this->printer instanceof CliTestDoxPrinter) { + assert($this->printer instanceof CliTestDoxPrinter); + $this->printer->setOriginalExecutionOrder($originalExecutionOrder); + $this->printer->setShowProgressAnimation(!$arguments['noInteraction']); + } + $this->write(Version::getVersionString() . "\n"); + foreach ($arguments['listeners'] as $listener) { + $result->addListener($listener); + } + $result->addListener($this->printer); + $coverageFilterFromConfigurationFile = \false; + $coverageFilterFromOption = \false; + $codeCoverageReports = 0; + if (isset($arguments['testdoxHTMLFile'])) { + $result->addListener(new HtmlResultPrinter($arguments['testdoxHTMLFile'], $arguments['testdoxGroups'], $arguments['testdoxExcludeGroups'])); + } + if (isset($arguments['testdoxTextFile'])) { + $result->addListener(new TextResultPrinter($arguments['testdoxTextFile'], $arguments['testdoxGroups'], $arguments['testdoxExcludeGroups'])); + } + if (isset($arguments['testdoxXMLFile'])) { + $result->addListener(new XmlResultPrinter($arguments['testdoxXMLFile'])); + } + if (isset($arguments['teamcityLogfile'])) { + $result->addListener(new TeamCity($arguments['teamcityLogfile'])); + } + if (isset($arguments['junitLogfile'])) { + $result->addListener(new JUnit($arguments['junitLogfile'], $arguments['reportUselessTests'])); + } + if (isset($arguments['coverageClover'])) { + $codeCoverageReports++; + } + if (isset($arguments['coverageCobertura'])) { + $codeCoverageReports++; + } + if (isset($arguments['coverageCrap4J'])) { + $codeCoverageReports++; + } + if (isset($arguments['coverageHtml'])) { + $codeCoverageReports++; + } + if (isset($arguments['coveragePHP'])) { + $codeCoverageReports++; + } + if (isset($arguments['coverageText'])) { + $codeCoverageReports++; + } + if (isset($arguments['coverageXml'])) { + $codeCoverageReports++; + } + if ($codeCoverageReports > 0 || isset($arguments['xdebugFilterFile'])) { + if (isset($arguments['coverageFilter'])) { + if (!is_array($arguments['coverageFilter'])) { + $coverageFilterDirectories = [$arguments['coverageFilter']]; + } else { + $coverageFilterDirectories = $arguments['coverageFilter']; + } + foreach ($coverageFilterDirectories as $coverageFilterDirectory) { + $this->codeCoverageFilter->includeDirectory($coverageFilterDirectory); + } + $coverageFilterFromOption = \true; + } + if (isset($arguments['configurationObject'])) { + assert($arguments['configurationObject'] instanceof Configuration); + $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); + if ($codeCoverageConfiguration->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { + $coverageFilterFromConfigurationFile = \true; + (new FilterMapper())->map($this->codeCoverageFilter, $codeCoverageConfiguration); + } + } + } + if ($codeCoverageReports > 0) { + try { + if (isset($codeCoverageConfiguration) && ($codeCoverageConfiguration->pathCoverage() || isset($arguments['pathCoverage']) && $arguments['pathCoverage'] === \true)) { + $codeCoverageDriver = (new Selector())->forLineAndPathCoverage($this->codeCoverageFilter); + } else { + $codeCoverageDriver = (new Selector())->forLineCoverage($this->codeCoverageFilter); + } + $codeCoverage = new CodeCoverage($codeCoverageDriver, $this->codeCoverageFilter); + if (isset($codeCoverageConfiguration) && $codeCoverageConfiguration->hasCacheDirectory()) { + $codeCoverage->cacheStaticAnalysis($codeCoverageConfiguration->cacheDirectory()->path()); + } + if (isset($arguments['coverageCacheDirectory'])) { + $codeCoverage->cacheStaticAnalysis($arguments['coverageCacheDirectory']); + } + $codeCoverage->excludeSubclassesOfThisClassFromUnintentionallyCoveredCodeCheck(Comparator::class); + if ($arguments['strictCoverage']) { + $codeCoverage->enableCheckForUnintentionallyCoveredCode(); + } + if (isset($arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'])) { + if ($arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage']) { + $codeCoverage->ignoreDeprecatedCode(); + } else { + $codeCoverage->doNotIgnoreDeprecatedCode(); + } + } + if (isset($arguments['disableCodeCoverageIgnore'])) { + if ($arguments['disableCodeCoverageIgnore']) { + $codeCoverage->disableAnnotationsForIgnoringCode(); + } else { + $codeCoverage->enableAnnotationsForIgnoringCode(); + } + } + if (isset($arguments['configurationObject'])) { + $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); + if ($codeCoverageConfiguration->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { + if ($codeCoverageConfiguration->includeUncoveredFiles()) { + $codeCoverage->includeUncoveredFiles(); + } else { + $codeCoverage->excludeUncoveredFiles(); + } + if ($codeCoverageConfiguration->processUncoveredFiles()) { + $codeCoverage->processUncoveredFiles(); + } else { + $codeCoverage->doNotProcessUncoveredFiles(); + } + } + } + if ($this->codeCoverageFilter->isEmpty()) { + if (!$coverageFilterFromConfigurationFile && !$coverageFilterFromOption) { + $warnings[] = 'No filter is configured, code coverage will not be processed'; + } else { + $warnings[] = 'Incorrect filter configuration, code coverage will not be processed'; + } + unset($codeCoverage); + } + } catch (CodeCoverageException $e) { + $warnings[] = $e->getMessage(); + } + } + if ($arguments['verbose']) { + if (PHP_SAPI === 'phpdbg') { + $this->writeMessage('Runtime', 'PHPDBG ' . PHP_VERSION); + } else { + $runtime = 'PHP ' . PHP_VERSION; + if (isset($codeCoverageDriver)) { + $runtime .= ' with ' . $codeCoverageDriver->nameAndVersion(); + } + $this->writeMessage('Runtime', $runtime); + } + if (isset($arguments['configurationObject'])) { + assert($arguments['configurationObject'] instanceof Configuration); + $this->writeMessage('Configuration', $arguments['configurationObject']->filename()); + } + foreach ($arguments['loadedExtensions'] as $extension) { + $this->writeMessage('Extension', $extension); + } + foreach ($arguments['notLoadedExtensions'] as $extension) { + $this->writeMessage('Extension', $extension); + } + } + if ($arguments['executionOrder'] === TestSuiteSorter::ORDER_RANDOMIZED) { + $this->writeMessage('Random Seed', (string) $arguments['randomOrderSeed']); + } + if (isset($tooFewColumnsRequested)) { + $warnings[] = 'Less than 16 columns requested, number of columns set to 16'; + } + if ((new Runtime())->discardsComments()) { + $warnings[] = 'opcache.save_comments=0 set; annotations will not work'; + } + if (isset($arguments['conflictBetweenPrinterClassAndTestdox'])) { + $warnings[] = 'Directives printerClass and testdox are mutually exclusive'; + } + $warnings = array_merge($warnings, $suite->warnings()); + sort($warnings); + foreach ($warnings as $warning) { + $this->writeMessage('Warning', $warning); + } + if (isset($arguments['configurationObject'])) { + assert($arguments['configurationObject'] instanceof Configuration); + if ($arguments['configurationObject']->hasValidationErrors()) { + if ((new SchemaDetector())->detect($arguments['configurationObject']->filename())->detected()) { + $this->writeMessage('Warning', 'Your XML configuration validates against a deprecated schema.'); + $this->writeMessage('Suggestion', 'Migrate your XML configuration using "--migrate-configuration"!'); + } else { + $this->write("\n Warning - The configuration file did not pass validation!\n The following problems have been detected:\n"); + $this->write($arguments['configurationObject']->validationErrors()); + $this->write("\n Test results may not be as expected.\n\n"); + } + } + } + if (isset($arguments['xdebugFilterFile'], $codeCoverageConfiguration)) { + $this->write(PHP_EOL . 'Please note that --dump-xdebug-filter and --prepend are deprecated and will be removed in PHPUnit 10.' . PHP_EOL); + $script = (new XdebugFilterScriptGenerator())->generate($codeCoverageConfiguration); + if ($arguments['xdebugFilterFile'] !== 'php://stdout' && $arguments['xdebugFilterFile'] !== 'php://stderr' && !Filesystem::createDirectory(dirname($arguments['xdebugFilterFile']))) { + $this->write(sprintf('Cannot write Xdebug filter script to %s ' . PHP_EOL, $arguments['xdebugFilterFile'])); + exit(self::EXCEPTION_EXIT); + } + file_put_contents($arguments['xdebugFilterFile'], $script); + $this->write(sprintf('Wrote Xdebug filter script to %s ' . PHP_EOL . PHP_EOL, $arguments['xdebugFilterFile'])); + exit(self::SUCCESS_EXIT); + } + $this->write("\n"); + if (isset($codeCoverage)) { + $result->setCodeCoverage($codeCoverage); + } + $result->beStrictAboutTestsThatDoNotTestAnything($arguments['reportUselessTests']); + $result->beStrictAboutOutputDuringTests($arguments['disallowTestOutput']); + $result->beStrictAboutTodoAnnotatedTests($arguments['disallowTodoAnnotatedTests']); + $result->beStrictAboutResourceUsageDuringSmallTests($arguments['beStrictAboutResourceUsageDuringSmallTests']); + if ($arguments['enforceTimeLimit'] === \true && !(new Invoker())->canInvokeWithTimeout()) { + $this->writeMessage('Error', 'PHP extension pcntl is required for enforcing time limits'); + } + $result->enforceTimeLimit($arguments['enforceTimeLimit']); + $result->setDefaultTimeLimit($arguments['defaultTimeLimit']); + $result->setTimeoutForSmallTests($arguments['timeoutForSmallTests']); + $result->setTimeoutForMediumTests($arguments['timeoutForMediumTests']); + $result->setTimeoutForLargeTests($arguments['timeoutForLargeTests']); + if (isset($arguments['forceCoversAnnotation']) && $arguments['forceCoversAnnotation'] === \true) { + $result->forceCoversAnnotation(); + } + $this->processSuiteFilters($suite, $arguments); + $suite->setRunTestInSeparateProcess($arguments['processIsolation']); + foreach ($this->extensions as $extension) { + if ($extension instanceof BeforeFirstTestHook) { + $extension->executeBeforeFirstTest(); + } + } + $suite->run($result); + foreach ($this->extensions as $extension) { + if ($extension instanceof AfterLastTestHook) { + $extension->executeAfterLastTest(); + } + } + $result->flushListeners(); + $this->printer->printResult($result); + if (isset($codeCoverage)) { + if (isset($arguments['coveragePHP'])) { + $this->codeCoverageGenerationStart('PHP'); + try { + $writer = new PhpReport(); + $writer->process($codeCoverage, $arguments['coveragePHP']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + if (isset($arguments['coverageClover'])) { + $this->codeCoverageGenerationStart('Clover XML'); + try { + $writer = new CloverReport(); + $writer->process($codeCoverage, $arguments['coverageClover']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + if (isset($arguments['coverageCobertura'])) { + $this->codeCoverageGenerationStart('Cobertura XML'); + try { + $writer = new CoberturaReport(); + $writer->process($codeCoverage, $arguments['coverageCobertura']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + if (isset($arguments['coverageCrap4J'])) { + $this->codeCoverageGenerationStart('Crap4J XML'); + try { + $writer = new Crap4jReport($arguments['crap4jThreshold']); + $writer->process($codeCoverage, $arguments['coverageCrap4J']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + if (isset($arguments['coverageHtml'])) { + $this->codeCoverageGenerationStart('HTML'); + try { + $writer = new HtmlReport($arguments['reportLowUpperBound'], $arguments['reportHighLowerBound'], sprintf(' and PHPUnit %s', Version::id())); + $writer->process($codeCoverage, $arguments['coverageHtml']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + if (isset($arguments['coverageText'])) { + if ($arguments['coverageText'] === 'php://stdout') { + $outputStream = $this->printer; + $colors = $arguments['colors'] && $arguments['colors'] !== \PHPUnit\TextUI\DefaultResultPrinter::COLOR_NEVER; + } else { + $outputStream = new Printer($arguments['coverageText']); + $colors = \false; + } + $processor = new TextReport($arguments['reportLowUpperBound'], $arguments['reportHighLowerBound'], $arguments['coverageTextShowUncoveredFiles'], $arguments['coverageTextShowOnlySummary']); + $outputStream->write($processor->process($codeCoverage, $colors)); + } + if (isset($arguments['coverageXml'])) { + $this->codeCoverageGenerationStart('PHPUnit XML'); + try { + $writer = new XmlReport(Version::id()); + $writer->process($codeCoverage, $arguments['coverageXml']); + $this->codeCoverageGenerationSucceeded(); + unset($writer); + } catch (CodeCoverageException $e) { + $this->codeCoverageGenerationFailed($e); + } + } + } + if ($exit) { + if (isset($arguments['failOnEmptyTestSuite']) && $arguments['failOnEmptyTestSuite'] === \true && count($result) === 0) { + exit(self::FAILURE_EXIT); + } + if ($result->wasSuccessfulIgnoringWarnings()) { + if ($arguments['failOnRisky'] && !$result->allHarmless()) { + exit(self::FAILURE_EXIT); + } + if ($arguments['failOnWarning'] && $result->warningCount() > 0) { + exit(self::FAILURE_EXIT); + } + if ($arguments['failOnIncomplete'] && $result->notImplementedCount() > 0) { + exit(self::FAILURE_EXIT); + } + if ($arguments['failOnSkipped'] && $result->skippedCount() > 0) { + exit(self::FAILURE_EXIT); + } + exit(self::SUCCESS_EXIT); + } + if ($result->errorCount() > 0) { + exit(self::EXCEPTION_EXIT); + } + if ($result->failureCount() > 0) { + exit(self::FAILURE_EXIT); + } + } + return $result; } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonStringEqualsJsonString')) { /** - * Asserts that two given JSON encoded objects or arrays are equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonStringEqualsJsonString + * Returns the loader to be used. */ - function assertJsonStringEqualsJsonString(string $expectedJson, string $actualJson, string $message = '') : void + public function getLoader(): TestSuiteLoader { - \PHPUnit\Framework\Assert::assertJsonStringEqualsJsonString(...func_get_args()); + if ($this->loader === null) { + $this->loader = new StandardTestSuiteLoader(); + } + return $this->loader; } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonStringNotEqualsJsonString')) { - /** - * Asserts that two given JSON encoded objects or arrays are not equal. - * - * @param string $expectedJson - * @param string $actualJson - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonStringNotEqualsJsonString - */ - function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, string $message = '') : void + public function addExtension(Hook $extension): void { - \PHPUnit\Framework\Assert::assertJsonStringNotEqualsJsonString(...func_get_args()); + $this->extensions[] = $extension; } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonStringEqualsJsonFile')) { /** - * Asserts that the generated JSON encoded object and the content of the given file are equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonStringEqualsJsonFile + * Override to define how to handle a failed loading of + * a test suite. */ - function assertJsonStringEqualsJsonFile(string $expectedFile, string $actualJson, string $message = '') : void + protected function runFailed(string $message): void { - \PHPUnit\Framework\Assert::assertJsonStringEqualsJsonFile(...func_get_args()); + $this->write($message . PHP_EOL); + exit(self::FAILURE_EXIT); } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonStringNotEqualsJsonFile')) { - /** - * Asserts that the generated JSON encoded object and the content of the given file are not equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonStringNotEqualsJsonFile - */ - function assertJsonStringNotEqualsJsonFile(string $expectedFile, string $actualJson, string $message = '') : void + private function createTestResult(): TestResult { - \PHPUnit\Framework\Assert::assertJsonStringNotEqualsJsonFile(...func_get_args()); + return new TestResult(); } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonFileEqualsJsonFile')) { - /** - * Asserts that two JSON files are equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonFileEqualsJsonFile - */ - function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = '') : void + private function write(string $buffer): void { - \PHPUnit\Framework\Assert::assertJsonFileEqualsJsonFile(...func_get_args()); + if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') { + $buffer = htmlspecialchars($buffer); + } + if ($this->printer !== null) { + $this->printer->write($buffer); + } else { + print $buffer; + } } -} -if (!function_exists('PHPUnit\\Framework\\assertJsonFileNotEqualsJsonFile')) { /** - * Asserts that two JSON files are not equal. - * - * @throws ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see Assert::assertJsonFileNotEqualsJsonFile + * @throws Exception + * @throws XmlConfiguration\Exception */ - function assertJsonFileNotEqualsJsonFile(string $expectedFile, string $actualFile, string $message = '') : void - { - \PHPUnit\Framework\Assert::assertJsonFileNotEqualsJsonFile(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\logicalAnd')) { - function logicalAnd() : LogicalAnd - { - return \PHPUnit\Framework\Assert::logicalAnd(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\logicalOr')) { - function logicalOr() : LogicalOr - { - return \PHPUnit\Framework\Assert::logicalOr(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\logicalNot')) { - function logicalNot(Constraint $constraint) : LogicalNot - { - return \PHPUnit\Framework\Assert::logicalNot(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\logicalXor')) { - function logicalXor() : LogicalXor - { - return \PHPUnit\Framework\Assert::logicalXor(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\anything')) { - function anything() : IsAnything - { - return \PHPUnit\Framework\Assert::anything(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isTrue')) { - function isTrue() : IsTrue - { - return \PHPUnit\Framework\Assert::isTrue(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\callback')) { - function callback(callable $callback) : Callback - { - return \PHPUnit\Framework\Assert::callback(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isFalse')) { - function isFalse() : IsFalse - { - return \PHPUnit\Framework\Assert::isFalse(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isJson')) { - function isJson() : IsJson - { - return \PHPUnit\Framework\Assert::isJson(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isNull')) { - function isNull() : IsNull - { - return \PHPUnit\Framework\Assert::isNull(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isFinite')) { - function isFinite() : IsFinite - { - return \PHPUnit\Framework\Assert::isFinite(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isInfinite')) { - function isInfinite() : IsInfinite - { - return \PHPUnit\Framework\Assert::isInfinite(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isNan')) { - function isNan() : IsNan - { - return \PHPUnit\Framework\Assert::isNan(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\containsEqual')) { - function containsEqual($value) : TraversableContainsEqual - { - return \PHPUnit\Framework\Assert::containsEqual(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\containsIdentical')) { - function containsIdentical($value) : TraversableContainsIdentical - { - return \PHPUnit\Framework\Assert::containsIdentical(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\containsOnly')) { - function containsOnly(string $type) : TraversableContainsOnly - { - return \PHPUnit\Framework\Assert::containsOnly(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\containsOnlyInstancesOf')) { - function containsOnlyInstancesOf(string $className) : TraversableContainsOnly - { - return \PHPUnit\Framework\Assert::containsOnlyInstancesOf(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\arrayHasKey')) { - function arrayHasKey($key) : ArrayHasKey - { - return \PHPUnit\Framework\Assert::arrayHasKey(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\equalTo')) { - function equalTo($value) : IsEqual - { - return \PHPUnit\Framework\Assert::equalTo(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\equalToCanonicalizing')) { - function equalToCanonicalizing($value) : IsEqualCanonicalizing - { - return \PHPUnit\Framework\Assert::equalToCanonicalizing(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\equalToIgnoringCase')) { - function equalToIgnoringCase($value) : IsEqualIgnoringCase - { - return \PHPUnit\Framework\Assert::equalToIgnoringCase(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\equalToWithDelta')) { - function equalToWithDelta($value, float $delta) : IsEqualWithDelta - { - return \PHPUnit\Framework\Assert::equalToWithDelta(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isEmpty')) { - function isEmpty() : IsEmpty - { - return \PHPUnit\Framework\Assert::isEmpty(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isWritable')) { - function isWritable() : IsWritable - { - return \PHPUnit\Framework\Assert::isWritable(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\isReadable')) { - function isReadable() : IsReadable - { - return \PHPUnit\Framework\Assert::isReadable(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\directoryExists')) { - function directoryExists() : DirectoryExists - { - return \PHPUnit\Framework\Assert::directoryExists(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\fileExists')) { - function fileExists() : FileExists - { - return \PHPUnit\Framework\Assert::fileExists(...func_get_args()); - } -} -if (!function_exists('PHPUnit\\Framework\\greaterThan')) { - function greaterThan($value) : GreaterThan + private function handleConfiguration(array &$arguments): void { - return \PHPUnit\Framework\Assert::greaterThan(...func_get_args()); + if (!isset($arguments['configurationObject']) && isset($arguments['configuration'])) { + $arguments['configurationObject'] = (new Loader())->load($arguments['configuration']); + } + if (!isset($arguments['warnings'])) { + $arguments['warnings'] = []; + } + $arguments['debug'] = $arguments['debug'] ?? \false; + $arguments['filter'] = $arguments['filter'] ?? \false; + $arguments['listeners'] = $arguments['listeners'] ?? []; + if (isset($arguments['configurationObject'])) { + (new PhpHandler())->handle($arguments['configurationObject']->php()); + $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); + if (!isset($arguments['noCoverage'])) { + if (!isset($arguments['coverageClover']) && $codeCoverageConfiguration->hasClover()) { + $arguments['coverageClover'] = $codeCoverageConfiguration->clover()->target()->path(); + } + if (!isset($arguments['coverageCobertura']) && $codeCoverageConfiguration->hasCobertura()) { + $arguments['coverageCobertura'] = $codeCoverageConfiguration->cobertura()->target()->path(); + } + if (!isset($arguments['coverageCrap4J']) && $codeCoverageConfiguration->hasCrap4j()) { + $arguments['coverageCrap4J'] = $codeCoverageConfiguration->crap4j()->target()->path(); + if (!isset($arguments['crap4jThreshold'])) { + $arguments['crap4jThreshold'] = $codeCoverageConfiguration->crap4j()->threshold(); + } + } + if (!isset($arguments['coverageHtml']) && $codeCoverageConfiguration->hasHtml()) { + $arguments['coverageHtml'] = $codeCoverageConfiguration->html()->target()->path(); + if (!isset($arguments['reportLowUpperBound'])) { + $arguments['reportLowUpperBound'] = $codeCoverageConfiguration->html()->lowUpperBound(); + } + if (!isset($arguments['reportHighLowerBound'])) { + $arguments['reportHighLowerBound'] = $codeCoverageConfiguration->html()->highLowerBound(); + } + } + if (!isset($arguments['coveragePHP']) && $codeCoverageConfiguration->hasPhp()) { + $arguments['coveragePHP'] = $codeCoverageConfiguration->php()->target()->path(); + } + if (!isset($arguments['coverageText']) && $codeCoverageConfiguration->hasText()) { + $arguments['coverageText'] = $codeCoverageConfiguration->text()->target()->path(); + $arguments['coverageTextShowUncoveredFiles'] = $codeCoverageConfiguration->text()->showUncoveredFiles(); + $arguments['coverageTextShowOnlySummary'] = $codeCoverageConfiguration->text()->showOnlySummary(); + } + if (!isset($arguments['coverageXml']) && $codeCoverageConfiguration->hasXml()) { + $arguments['coverageXml'] = $codeCoverageConfiguration->xml()->target()->path(); + } + } + $phpunitConfiguration = $arguments['configurationObject']->phpunit(); + $arguments['backupGlobals'] = $arguments['backupGlobals'] ?? $phpunitConfiguration->backupGlobals(); + $arguments['backupStaticAttributes'] = $arguments['backupStaticAttributes'] ?? $phpunitConfiguration->backupStaticAttributes(); + $arguments['beStrictAboutChangesToGlobalState'] = $arguments['beStrictAboutChangesToGlobalState'] ?? $phpunitConfiguration->beStrictAboutChangesToGlobalState(); + $arguments['cacheResult'] = $arguments['cacheResult'] ?? $phpunitConfiguration->cacheResult(); + $arguments['colors'] = $arguments['colors'] ?? $phpunitConfiguration->colors(); + $arguments['convertDeprecationsToExceptions'] = $arguments['convertDeprecationsToExceptions'] ?? $phpunitConfiguration->convertDeprecationsToExceptions(); + $arguments['convertErrorsToExceptions'] = $arguments['convertErrorsToExceptions'] ?? $phpunitConfiguration->convertErrorsToExceptions(); + $arguments['convertNoticesToExceptions'] = $arguments['convertNoticesToExceptions'] ?? $phpunitConfiguration->convertNoticesToExceptions(); + $arguments['convertWarningsToExceptions'] = $arguments['convertWarningsToExceptions'] ?? $phpunitConfiguration->convertWarningsToExceptions(); + $arguments['processIsolation'] = $arguments['processIsolation'] ?? $phpunitConfiguration->processIsolation(); + $arguments['stopOnDefect'] = $arguments['stopOnDefect'] ?? $phpunitConfiguration->stopOnDefect(); + $arguments['stopOnError'] = $arguments['stopOnError'] ?? $phpunitConfiguration->stopOnError(); + $arguments['stopOnFailure'] = $arguments['stopOnFailure'] ?? $phpunitConfiguration->stopOnFailure(); + $arguments['stopOnWarning'] = $arguments['stopOnWarning'] ?? $phpunitConfiguration->stopOnWarning(); + $arguments['stopOnIncomplete'] = $arguments['stopOnIncomplete'] ?? $phpunitConfiguration->stopOnIncomplete(); + $arguments['stopOnRisky'] = $arguments['stopOnRisky'] ?? $phpunitConfiguration->stopOnRisky(); + $arguments['stopOnSkipped'] = $arguments['stopOnSkipped'] ?? $phpunitConfiguration->stopOnSkipped(); + $arguments['failOnEmptyTestSuite'] = $arguments['failOnEmptyTestSuite'] ?? $phpunitConfiguration->failOnEmptyTestSuite(); + $arguments['failOnIncomplete'] = $arguments['failOnIncomplete'] ?? $phpunitConfiguration->failOnIncomplete(); + $arguments['failOnRisky'] = $arguments['failOnRisky'] ?? $phpunitConfiguration->failOnRisky(); + $arguments['failOnSkipped'] = $arguments['failOnSkipped'] ?? $phpunitConfiguration->failOnSkipped(); + $arguments['failOnWarning'] = $arguments['failOnWarning'] ?? $phpunitConfiguration->failOnWarning(); + $arguments['enforceTimeLimit'] = $arguments['enforceTimeLimit'] ?? $phpunitConfiguration->enforceTimeLimit(); + $arguments['defaultTimeLimit'] = $arguments['defaultTimeLimit'] ?? $phpunitConfiguration->defaultTimeLimit(); + $arguments['timeoutForSmallTests'] = $arguments['timeoutForSmallTests'] ?? $phpunitConfiguration->timeoutForSmallTests(); + $arguments['timeoutForMediumTests'] = $arguments['timeoutForMediumTests'] ?? $phpunitConfiguration->timeoutForMediumTests(); + $arguments['timeoutForLargeTests'] = $arguments['timeoutForLargeTests'] ?? $phpunitConfiguration->timeoutForLargeTests(); + $arguments['reportUselessTests'] = $arguments['reportUselessTests'] ?? $phpunitConfiguration->beStrictAboutTestsThatDoNotTestAnything(); + $arguments['strictCoverage'] = $arguments['strictCoverage'] ?? $phpunitConfiguration->beStrictAboutCoversAnnotation(); + $arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'] = $arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'] ?? $codeCoverageConfiguration->ignoreDeprecatedCodeUnits(); + $arguments['disallowTestOutput'] = $arguments['disallowTestOutput'] ?? $phpunitConfiguration->beStrictAboutOutputDuringTests(); + $arguments['disallowTodoAnnotatedTests'] = $arguments['disallowTodoAnnotatedTests'] ?? $phpunitConfiguration->beStrictAboutTodoAnnotatedTests(); + $arguments['beStrictAboutResourceUsageDuringSmallTests'] = $arguments['beStrictAboutResourceUsageDuringSmallTests'] ?? $phpunitConfiguration->beStrictAboutResourceUsageDuringSmallTests(); + $arguments['verbose'] = $arguments['verbose'] ?? $phpunitConfiguration->verbose(); + $arguments['reverseDefectList'] = $arguments['reverseDefectList'] ?? $phpunitConfiguration->reverseDefectList(); + $arguments['forceCoversAnnotation'] = $arguments['forceCoversAnnotation'] ?? $phpunitConfiguration->forceCoversAnnotation(); + $arguments['disableCodeCoverageIgnore'] = $arguments['disableCodeCoverageIgnore'] ?? $codeCoverageConfiguration->disableCodeCoverageIgnore(); + $arguments['registerMockObjectsFromTestArgumentsRecursively'] = $arguments['registerMockObjectsFromTestArgumentsRecursively'] ?? $phpunitConfiguration->registerMockObjectsFromTestArgumentsRecursively(); + $arguments['noInteraction'] = $arguments['noInteraction'] ?? $phpunitConfiguration->noInteraction(); + $arguments['executionOrder'] = $arguments['executionOrder'] ?? $phpunitConfiguration->executionOrder(); + $arguments['resolveDependencies'] = $arguments['resolveDependencies'] ?? $phpunitConfiguration->resolveDependencies(); + if (!isset($arguments['bootstrap']) && $phpunitConfiguration->hasBootstrap()) { + $arguments['bootstrap'] = $phpunitConfiguration->bootstrap(); + } + if (!isset($arguments['cacheResultFile']) && $phpunitConfiguration->hasCacheResultFile()) { + $arguments['cacheResultFile'] = $phpunitConfiguration->cacheResultFile(); + } + if (!isset($arguments['executionOrderDefects'])) { + $arguments['executionOrderDefects'] = $phpunitConfiguration->defectsFirst() ? TestSuiteSorter::ORDER_DEFECTS_FIRST : TestSuiteSorter::ORDER_DEFAULT; + } + if ($phpunitConfiguration->conflictBetweenPrinterClassAndTestdox()) { + $arguments['conflictBetweenPrinterClassAndTestdox'] = \true; + } + $groupCliArgs = []; + if (!empty($arguments['groups'])) { + $groupCliArgs = $arguments['groups']; + } + $groupConfiguration = $arguments['configurationObject']->groups(); + if (!isset($arguments['groups']) && $groupConfiguration->hasInclude()) { + $arguments['groups'] = $groupConfiguration->include()->asArrayOfStrings(); + } + if (!isset($arguments['excludeGroups']) && $groupConfiguration->hasExclude()) { + $arguments['excludeGroups'] = array_diff($groupConfiguration->exclude()->asArrayOfStrings(), $groupCliArgs); + } + if (!isset($arguments['noExtensions'])) { + $extensionHandler = new ExtensionHandler(); + foreach ($arguments['configurationObject']->extensions() as $extension) { + $extensionHandler->registerExtension($extension, $this); + } + foreach ($arguments['configurationObject']->listeners() as $listener) { + $arguments['listeners'][] = $extensionHandler->createTestListenerInstance($listener); + } + unset($extensionHandler); + } + foreach ($arguments['unavailableExtensions'] as $extension) { + $arguments['warnings'][] = sprintf('Extension "%s" is not available', $extension); + } + $loggingConfiguration = $arguments['configurationObject']->logging(); + if (!isset($arguments['noLogging'])) { + if ($loggingConfiguration->hasText()) { + $arguments['listeners'][] = new \PHPUnit\TextUI\DefaultResultPrinter($loggingConfiguration->text()->target()->path(), \true); + } + if (!isset($arguments['teamcityLogfile']) && $loggingConfiguration->hasTeamCity()) { + $arguments['teamcityLogfile'] = $loggingConfiguration->teamCity()->target()->path(); + } + if (!isset($arguments['junitLogfile']) && $loggingConfiguration->hasJunit()) { + $arguments['junitLogfile'] = $loggingConfiguration->junit()->target()->path(); + } + if (!isset($arguments['testdoxHTMLFile']) && $loggingConfiguration->hasTestDoxHtml()) { + $arguments['testdoxHTMLFile'] = $loggingConfiguration->testDoxHtml()->target()->path(); + } + if (!isset($arguments['testdoxTextFile']) && $loggingConfiguration->hasTestDoxText()) { + $arguments['testdoxTextFile'] = $loggingConfiguration->testDoxText()->target()->path(); + } + if (!isset($arguments['testdoxXMLFile']) && $loggingConfiguration->hasTestDoxXml()) { + $arguments['testdoxXMLFile'] = $loggingConfiguration->testDoxXml()->target()->path(); + } + } + $testdoxGroupConfiguration = $arguments['configurationObject']->testdoxGroups(); + if (!isset($arguments['testdoxGroups']) && $testdoxGroupConfiguration->hasInclude()) { + $arguments['testdoxGroups'] = $testdoxGroupConfiguration->include()->asArrayOfStrings(); + } + if (!isset($arguments['testdoxExcludeGroups']) && $testdoxGroupConfiguration->hasExclude()) { + $arguments['testdoxExcludeGroups'] = $testdoxGroupConfiguration->exclude()->asArrayOfStrings(); + } + } + $extensionHandler = new ExtensionHandler(); + foreach ($arguments['extensions'] as $extension) { + $extensionHandler->registerExtension($extension, $this); + } + unset($extensionHandler); + $arguments['backupGlobals'] = $arguments['backupGlobals'] ?? null; + $arguments['backupStaticAttributes'] = $arguments['backupStaticAttributes'] ?? null; + $arguments['beStrictAboutChangesToGlobalState'] = $arguments['beStrictAboutChangesToGlobalState'] ?? null; + $arguments['beStrictAboutResourceUsageDuringSmallTests'] = $arguments['beStrictAboutResourceUsageDuringSmallTests'] ?? \false; + $arguments['cacheResult'] = $arguments['cacheResult'] ?? \true; + $arguments['colors'] = $arguments['colors'] ?? \PHPUnit\TextUI\DefaultResultPrinter::COLOR_DEFAULT; + $arguments['columns'] = $arguments['columns'] ?? 80; + $arguments['convertDeprecationsToExceptions'] = $arguments['convertDeprecationsToExceptions'] ?? \false; + $arguments['convertErrorsToExceptions'] = $arguments['convertErrorsToExceptions'] ?? \true; + $arguments['convertNoticesToExceptions'] = $arguments['convertNoticesToExceptions'] ?? \true; + $arguments['convertWarningsToExceptions'] = $arguments['convertWarningsToExceptions'] ?? \true; + $arguments['crap4jThreshold'] = $arguments['crap4jThreshold'] ?? 30; + $arguments['disallowTestOutput'] = $arguments['disallowTestOutput'] ?? \false; + $arguments['disallowTodoAnnotatedTests'] = $arguments['disallowTodoAnnotatedTests'] ?? \false; + $arguments['defaultTimeLimit'] = $arguments['defaultTimeLimit'] ?? 0; + $arguments['enforceTimeLimit'] = $arguments['enforceTimeLimit'] ?? \false; + $arguments['excludeGroups'] = $arguments['excludeGroups'] ?? []; + $arguments['executionOrder'] = $arguments['executionOrder'] ?? TestSuiteSorter::ORDER_DEFAULT; + $arguments['executionOrderDefects'] = $arguments['executionOrderDefects'] ?? TestSuiteSorter::ORDER_DEFAULT; + $arguments['failOnIncomplete'] = $arguments['failOnIncomplete'] ?? \false; + $arguments['failOnRisky'] = $arguments['failOnRisky'] ?? \false; + $arguments['failOnSkipped'] = $arguments['failOnSkipped'] ?? \false; + $arguments['failOnWarning'] = $arguments['failOnWarning'] ?? \false; + $arguments['groups'] = $arguments['groups'] ?? []; + $arguments['noInteraction'] = $arguments['noInteraction'] ?? \false; + $arguments['processIsolation'] = $arguments['processIsolation'] ?? \false; + $arguments['randomOrderSeed'] = $arguments['randomOrderSeed'] ?? time(); + $arguments['registerMockObjectsFromTestArgumentsRecursively'] = $arguments['registerMockObjectsFromTestArgumentsRecursively'] ?? \false; + $arguments['repeat'] = $arguments['repeat'] ?? \false; + $arguments['reportHighLowerBound'] = $arguments['reportHighLowerBound'] ?? 90; + $arguments['reportLowUpperBound'] = $arguments['reportLowUpperBound'] ?? 50; + $arguments['reportUselessTests'] = $arguments['reportUselessTests'] ?? \true; + $arguments['reverseList'] = $arguments['reverseList'] ?? \false; + $arguments['resolveDependencies'] = $arguments['resolveDependencies'] ?? \true; + $arguments['stopOnError'] = $arguments['stopOnError'] ?? \false; + $arguments['stopOnFailure'] = $arguments['stopOnFailure'] ?? \false; + $arguments['stopOnIncomplete'] = $arguments['stopOnIncomplete'] ?? \false; + $arguments['stopOnRisky'] = $arguments['stopOnRisky'] ?? \false; + $arguments['stopOnSkipped'] = $arguments['stopOnSkipped'] ?? \false; + $arguments['stopOnWarning'] = $arguments['stopOnWarning'] ?? \false; + $arguments['stopOnDefect'] = $arguments['stopOnDefect'] ?? \false; + $arguments['strictCoverage'] = $arguments['strictCoverage'] ?? \false; + $arguments['testdoxExcludeGroups'] = $arguments['testdoxExcludeGroups'] ?? []; + $arguments['testdoxGroups'] = $arguments['testdoxGroups'] ?? []; + $arguments['timeoutForLargeTests'] = $arguments['timeoutForLargeTests'] ?? 60; + $arguments['timeoutForMediumTests'] = $arguments['timeoutForMediumTests'] ?? 10; + $arguments['timeoutForSmallTests'] = $arguments['timeoutForSmallTests'] ?? 1; + $arguments['verbose'] = $arguments['verbose'] ?? \false; + if ($arguments['reportLowUpperBound'] > $arguments['reportHighLowerBound']) { + $arguments['reportLowUpperBound'] = 50; + $arguments['reportHighLowerBound'] = 90; + } } -} -if (!function_exists('PHPUnit\\Framework\\greaterThanOrEqual')) { - function greaterThanOrEqual($value) : LogicalOr + private function processSuiteFilters(TestSuite $suite, array $arguments): void { - return \PHPUnit\Framework\Assert::greaterThanOrEqual(...func_get_args()); + if (!$arguments['filter'] && empty($arguments['groups']) && empty($arguments['excludeGroups']) && empty($arguments['testsCovering']) && empty($arguments['testsUsing'])) { + return; + } + $filterFactory = new Factory(); + if (!empty($arguments['excludeGroups'])) { + $filterFactory->addFilter(new ReflectionClass(ExcludeGroupFilterIterator::class), $arguments['excludeGroups']); + } + if (!empty($arguments['groups'])) { + $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), $arguments['groups']); + } + if (!empty($arguments['testsCovering'])) { + $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), array_map(static function (string $name): string { + return '__phpunit_covers_' . $name; + }, $arguments['testsCovering'])); + } + if (!empty($arguments['testsUsing'])) { + $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), array_map(static function (string $name): string { + return '__phpunit_uses_' . $name; + }, $arguments['testsUsing'])); + } + if ($arguments['filter']) { + $filterFactory->addFilter(new ReflectionClass(NameFilterIterator::class), $arguments['filter']); + } + $suite->injectFilter($filterFactory); } -} -if (!function_exists('PHPUnit\\Framework\\classHasAttribute')) { - function classHasAttribute(string $attributeName) : ClassHasAttribute + private function writeMessage(string $type, string $message): void { - return \PHPUnit\Framework\Assert::classHasAttribute(...func_get_args()); + if (!$this->messagePrinted) { + $this->write("\n"); + } + $this->write(sprintf("%-15s%s\n", $type . ':', $message)); + $this->messagePrinted = \true; } -} -if (!function_exists('PHPUnit\\Framework\\classHasStaticAttribute')) { - function classHasStaticAttribute(string $attributeName) : ClassHasStaticAttribute + private function createPrinter(string $class, array $arguments): \PHPUnit\TextUI\ResultPrinter { - return \PHPUnit\Framework\Assert::classHasStaticAttribute(...func_get_args()); + $object = new $class(isset($arguments['stderr']) && $arguments['stderr'] === \true ? 'php://stderr' : null, $arguments['verbose'], $arguments['colors'], $arguments['debug'], $arguments['columns'], $arguments['reverseList']); + assert($object instanceof \PHPUnit\TextUI\ResultPrinter); + return $object; } -} -if (!function_exists('PHPUnit\\Framework\\objectHasAttribute')) { - function objectHasAttribute($attributeName) : ObjectHasAttribute + private function codeCoverageGenerationStart(string $format): void { - return \PHPUnit\Framework\Assert::objectHasAttribute(...func_get_args()); + $this->write(sprintf("\nGenerating code coverage report in %s format ... ", $format)); + $this->timer->start(); } -} -if (!function_exists('PHPUnit\\Framework\\identicalTo')) { - function identicalTo($value) : IsIdentical + private function codeCoverageGenerationSucceeded(): void { - return \PHPUnit\Framework\Assert::identicalTo(...func_get_args()); + $this->write(sprintf("done [%s]\n", $this->timer->stop()->asString())); } -} -if (!function_exists('PHPUnit\\Framework\\isInstanceOf')) { - function isInstanceOf(string $className) : IsInstanceOf + private function codeCoverageGenerationFailed(\Exception $e): void { - return \PHPUnit\Framework\Assert::isInstanceOf(...func_get_args()); + $this->write(sprintf("failed [%s]\n%s\n", $this->timer->stop()->asString(), $e->getMessage())); } } -if (!function_exists('PHPUnit\\Framework\\isType')) { - function isType(string $type) : IsType + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI; + +use const PHP_EOL; +use function count; +use function defined; +use function explode; +use function max; +use function preg_replace_callback; +use function str_pad; +use function str_repeat; +use function strlen; +use function wordwrap; +use PHPUnit\Util\Color; +use PHPUnitPHAR\SebastianBergmann\Environment\Console; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Help +{ + private const LEFT_MARGIN = ' '; + /** + * @var int Number of columns required to write the longest option name to the console + */ + private $maxArgLength = 0; + /** + * @var int Number of columns left for the description field after padding and option + */ + private $maxDescLength; + /** + * @var bool Use color highlights for sections, options and parameters + */ + private $hasColor = \false; + public function __construct(?int $width = null, ?bool $withColor = null) { - return \PHPUnit\Framework\Assert::isType(...func_get_args()); + if ($width === null) { + $width = (new Console())->getNumberOfColumns(); + } + if ($withColor === null) { + $this->hasColor = (new Console())->hasColorSupport(); + } else { + $this->hasColor = $withColor; + } + foreach ($this->elements() as $options) { + foreach ($options as $option) { + if (isset($option['arg'])) { + $this->maxArgLength = max($this->maxArgLength, isset($option['arg']) ? strlen($option['arg']) : 0); + } + } + } + $this->maxDescLength = $width - $this->maxArgLength - 4; } -} -if (!function_exists('PHPUnit\\Framework\\lessThan')) { - function lessThan($value) : LessThan + /** + * Write the help file to the CLI, adapting width and colors to the console. + */ + public function writeToConsole(): void { - return \PHPUnit\Framework\Assert::lessThan(...func_get_args()); + if ($this->hasColor) { + $this->writeWithColor(); + } else { + $this->writePlaintext(); + } } -} -if (!function_exists('PHPUnit\\Framework\\lessThanOrEqual')) { - function lessThanOrEqual($value) : LogicalOr + private function writePlaintext(): void { - return \PHPUnit\Framework\Assert::lessThanOrEqual(...func_get_args()); + foreach ($this->elements() as $section => $options) { + print "{$section}:" . PHP_EOL; + if ($section !== 'Usage') { + print PHP_EOL; + } + foreach ($options as $option) { + if (isset($option['spacer'])) { + print PHP_EOL; + } + if (isset($option['text'])) { + print self::LEFT_MARGIN . $option['text'] . PHP_EOL; + } + if (isset($option['arg'])) { + $arg = str_pad($option['arg'], $this->maxArgLength); + print self::LEFT_MARGIN . $arg . ' ' . $option['desc'] . PHP_EOL; + } + } + print PHP_EOL; + } } -} -if (!function_exists('PHPUnit\\Framework\\matchesRegularExpression')) { - function matchesRegularExpression(string $pattern) : RegularExpression + private function writeWithColor(): void { - return \PHPUnit\Framework\Assert::matchesRegularExpression(...func_get_args()); + foreach ($this->elements() as $section => $options) { + print Color::colorize('fg-yellow', "{$section}:") . PHP_EOL; + foreach ($options as $option) { + if (isset($option['spacer'])) { + print PHP_EOL; + } + if (isset($option['text'])) { + print self::LEFT_MARGIN . $option['text'] . PHP_EOL; + } + if (isset($option['arg'])) { + $arg = Color::colorize('fg-green', str_pad($option['arg'], $this->maxArgLength)); + $arg = preg_replace_callback('/(<[^>]+>)/', static function ($matches) { + return Color::colorize('fg-cyan', $matches[0]); + }, $arg); + $desc = explode(PHP_EOL, wordwrap($option['desc'], $this->maxDescLength, PHP_EOL)); + print self::LEFT_MARGIN . $arg . ' ' . $desc[0] . PHP_EOL; + for ($i = 1; $i < count($desc); $i++) { + print str_repeat(' ', $this->maxArgLength + 3) . $desc[$i] . PHP_EOL; + } + } + } + print PHP_EOL; + } } -} -if (!function_exists('PHPUnit\\Framework\\matches')) { - function matches(string $string) : StringMatchesFormatDescription + /** + * @psalm-return array> + */ + private function elements(): array { - return \PHPUnit\Framework\Assert::matches(...func_get_args()); + $elements = ['Usage' => [['text' => 'phpunit [options] UnitTest.php'], ['text' => 'phpunit [options] ']], 'Code Coverage Options' => [['arg' => '--coverage-clover ', 'desc' => 'Generate code coverage report in Clover XML format'], ['arg' => '--coverage-cobertura ', 'desc' => 'Generate code coverage report in Cobertura XML format'], ['arg' => '--coverage-crap4j ', 'desc' => 'Generate code coverage report in Crap4J XML format'], ['arg' => '--coverage-html ', 'desc' => 'Generate code coverage report in HTML format'], ['arg' => '--coverage-php ', 'desc' => 'Export PHP_CodeCoverage object to file'], ['arg' => '--coverage-text=', 'desc' => 'Generate code coverage report in text format [default: standard output]'], ['arg' => '--coverage-xml ', 'desc' => 'Generate code coverage report in PHPUnit XML format'], ['arg' => '--coverage-cache ', 'desc' => 'Cache static analysis results'], ['arg' => '--warm-coverage-cache', 'desc' => 'Warm static analysis cache'], ['arg' => '--coverage-filter ', 'desc' => 'Include in code coverage analysis'], ['arg' => '--path-coverage', 'desc' => 'Perform path coverage analysis'], ['arg' => '--disable-coverage-ignore', 'desc' => 'Disable annotations for ignoring code coverage'], ['arg' => '--no-coverage', 'desc' => 'Ignore code coverage configuration']], 'Logging Options' => [['arg' => '--log-junit ', 'desc' => 'Log test execution in JUnit XML format to file'], ['arg' => '--log-teamcity ', 'desc' => 'Log test execution in TeamCity format to file'], ['arg' => '--testdox-html ', 'desc' => 'Write agile documentation in HTML format to file'], ['arg' => '--testdox-text ', 'desc' => 'Write agile documentation in Text format to file'], ['arg' => '--testdox-xml ', 'desc' => 'Write agile documentation in XML format to file'], ['arg' => '--reverse-list', 'desc' => 'Print defects in reverse order'], ['arg' => '--no-logging', 'desc' => 'Ignore logging configuration']], 'Test Selection Options' => [['arg' => '--list-suites', 'desc' => 'List available test suites'], ['arg' => '--testsuite ', 'desc' => 'Filter which testsuite to run'], ['arg' => '--list-groups', 'desc' => 'List available test groups'], ['arg' => '--group ', 'desc' => 'Only runs tests from the specified group(s)'], ['arg' => '--exclude-group ', 'desc' => 'Exclude tests from the specified group(s)'], ['arg' => '--covers ', 'desc' => 'Only runs tests annotated with "@covers "'], ['arg' => '--uses ', 'desc' => 'Only runs tests annotated with "@uses "'], ['arg' => '--list-tests', 'desc' => 'List available tests'], ['arg' => '--list-tests-xml ', 'desc' => 'List available tests in XML format'], ['arg' => '--filter ', 'desc' => 'Filter which tests to run'], ['arg' => '--test-suffix ', 'desc' => 'Only search for test in files with specified suffix(es). Default: Test.php,.phpt']], 'Test Execution Options' => [['arg' => '--dont-report-useless-tests', 'desc' => 'Do not report tests that do not test anything'], ['arg' => '--strict-coverage', 'desc' => 'Be strict about @covers annotation usage'], ['arg' => '--strict-global-state', 'desc' => 'Be strict about changes to global state'], ['arg' => '--disallow-test-output', 'desc' => 'Be strict about output during tests'], ['arg' => '--disallow-resource-usage', 'desc' => 'Be strict about resource usage during small tests'], ['arg' => '--enforce-time-limit', 'desc' => 'Enforce time limit based on test size'], ['arg' => '--default-time-limit ', 'desc' => 'Timeout in seconds for tests without @small, @medium or @large'], ['arg' => '--disallow-todo-tests', 'desc' => 'Disallow @todo-annotated tests'], ['spacer' => ''], ['arg' => '--process-isolation', 'desc' => 'Run each test in a separate PHP process'], ['arg' => '--globals-backup', 'desc' => 'Backup and restore $GLOBALS for each test'], ['arg' => '--static-backup', 'desc' => 'Backup and restore static attributes for each test'], ['spacer' => ''], ['arg' => '--colors ', 'desc' => 'Use colors in output ("never", "auto" or "always")'], ['arg' => '--columns ', 'desc' => 'Number of columns to use for progress output'], ['arg' => '--columns max', 'desc' => 'Use maximum number of columns for progress output'], ['arg' => '--stderr', 'desc' => 'Write to STDERR instead of STDOUT'], ['arg' => '--stop-on-defect', 'desc' => 'Stop execution upon first not-passed test'], ['arg' => '--stop-on-error', 'desc' => 'Stop execution upon first error'], ['arg' => '--stop-on-failure', 'desc' => 'Stop execution upon first error or failure'], ['arg' => '--stop-on-warning', 'desc' => 'Stop execution upon first warning'], ['arg' => '--stop-on-risky', 'desc' => 'Stop execution upon first risky test'], ['arg' => '--stop-on-skipped', 'desc' => 'Stop execution upon first skipped test'], ['arg' => '--stop-on-incomplete', 'desc' => 'Stop execution upon first incomplete test'], ['arg' => '--fail-on-incomplete', 'desc' => 'Treat incomplete tests as failures'], ['arg' => '--fail-on-risky', 'desc' => 'Treat risky tests as failures'], ['arg' => '--fail-on-skipped', 'desc' => 'Treat skipped tests as failures'], ['arg' => '--fail-on-warning', 'desc' => 'Treat tests with warnings as failures'], ['arg' => '-v|--verbose', 'desc' => 'Output more verbose information'], ['arg' => '--debug', 'desc' => 'Display debugging information'], ['spacer' => ''], ['arg' => '--repeat ', 'desc' => 'Runs the test(s) repeatedly'], ['arg' => '--teamcity', 'desc' => 'Report test execution progress in TeamCity format'], ['arg' => '--testdox', 'desc' => 'Report test execution progress in TestDox format'], ['arg' => '--testdox-group', 'desc' => 'Only include tests from the specified group(s)'], ['arg' => '--testdox-exclude-group', 'desc' => 'Exclude tests from the specified group(s)'], ['arg' => '--no-interaction', 'desc' => 'Disable TestDox progress animation'], ['arg' => '--printer ', 'desc' => 'TestListener implementation to use'], ['spacer' => ''], ['arg' => '--order-by ', 'desc' => 'Run tests in order: default|defects|duration|no-depends|random|reverse|size'], ['arg' => '--random-order-seed ', 'desc' => 'Use a specific random seed for random order'], ['arg' => '--cache-result', 'desc' => 'Write test results to cache file'], ['arg' => '--do-not-cache-result', 'desc' => 'Do not write test results to cache file']], 'Configuration Options' => [['arg' => '--prepend ', 'desc' => 'A PHP script that is included as early as possible'], ['arg' => '--bootstrap ', 'desc' => 'A PHP script that is included before the tests run'], ['arg' => '-c|--configuration ', 'desc' => 'Read configuration from XML file'], ['arg' => '--no-configuration', 'desc' => 'Ignore default configuration file (phpunit.xml)'], ['arg' => '--extensions ', 'desc' => 'A comma separated list of PHPUnit extensions to load'], ['arg' => '--no-extensions', 'desc' => 'Do not load PHPUnit extensions'], ['arg' => '--include-path ', 'desc' => 'Prepend PHP\'s include_path with given path(s)'], ['arg' => '-d ', 'desc' => 'Sets a php.ini value'], ['arg' => '--cache-result-file ', 'desc' => 'Specify result cache path and filename'], ['arg' => '--generate-configuration', 'desc' => 'Generate configuration file with suggested settings'], ['arg' => '--migrate-configuration', 'desc' => 'Migrate configuration file to current format']]]; + if (defined('__PHPUNIT_PHAR__')) { + $elements['PHAR Options'] = [['arg' => '--manifest', 'desc' => 'Print Software Bill of Materials (SBOM) in plain-text format'], ['arg' => '--sbom', 'desc' => 'Print Software Bill of Materials (SBOM) in CycloneDX XML format'], ['arg' => '--composer-lock', 'desc' => 'Print composer.lock file used to build the PHAR']]; + } + $elements['Miscellaneous Options'] = [['arg' => '-h|--help', 'desc' => 'Prints this usage information'], ['arg' => '--version', 'desc' => 'Prints the version and exits'], ['arg' => '--atleast-version ', 'desc' => 'Checks that version is greater than min and exits'], ['arg' => '--check-version', 'desc' => 'Checks whether PHPUnit is the latest version and exits']]; + return $elements; } } -if (!function_exists('PHPUnit\\Framework\\stringStartsWith')) { - function stringStartsWith($prefix) : StringStartsWith + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\XmlConfiguration; + +use const DIRECTORY_SEPARATOR; +use const PHP_VERSION; +use function assert; +use function defined; +use function dirname; +use function explode; +use function is_file; +use function is_numeric; +use function preg_match; +use function stream_resolve_include_path; +use function strlen; +use function strpos; +use function strtolower; +use function substr; +use function trim; +use DOMDocument; +use DOMElement; +use DOMNode; +use DOMNodeList; +use DOMXPath; +use PHPUnit\Runner\TestSuiteSorter; +use PHPUnit\Runner\Version; +use PHPUnit\TextUI\DefaultResultPrinter; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\CodeCoverage; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\Directory as FilterDirectory; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollection as FilterDirectoryCollection; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Clover; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Cobertura; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Crap4j; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Html as CodeCoverageHtml; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Php as CodeCoveragePhp; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Text as CodeCoverageText; +use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Xml as CodeCoverageXml; +use PHPUnit\TextUI\XmlConfiguration\Logging\Junit; +use PHPUnit\TextUI\XmlConfiguration\Logging\Logging; +use PHPUnit\TextUI\XmlConfiguration\Logging\TeamCity; +use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Html as TestDoxHtml; +use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Text as TestDoxText; +use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Xml as TestDoxXml; +use PHPUnit\TextUI\XmlConfiguration\Logging\Text; +use PHPUnit\TextUI\XmlConfiguration\TestSuite as TestSuiteConfiguration; +use PHPUnit\Util\TestDox\CliTestDoxPrinter; +use PHPUnit\Util\VersionComparisonOperator; +use PHPUnit\Util\Xml; +use PHPUnit\Util\Xml\Exception as XmlException; +use PHPUnit\Util\Xml\Loader as XmlLoader; +use PHPUnit\Util\Xml\SchemaFinder; +use PHPUnit\Util\Xml\Validator; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Loader +{ + /** + * @throws Exception + */ + public function load(string $filename): \PHPUnit\TextUI\XmlConfiguration\Configuration { - return \PHPUnit\Framework\Assert::stringStartsWith(...func_get_args()); + try { + $document = (new XmlLoader())->loadFile($filename, \false, \true, \true); + } catch (XmlException $e) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception($e->getMessage(), $e->getCode(), $e); + } + $xpath = new DOMXPath($document); + try { + $xsdFilename = (new SchemaFinder())->find(Version::series()); + } catch (XmlException $e) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception($e->getMessage(), $e->getCode(), $e); + } + return new \PHPUnit\TextUI\XmlConfiguration\Configuration($filename, (new Validator())->validate($document, $xsdFilename), $this->extensions($filename, $xpath), $this->codeCoverage($filename, $xpath, $document), $this->groups($xpath), $this->testdoxGroups($xpath), $this->listeners($filename, $xpath), $this->logging($filename, $xpath), $this->php($filename, $xpath), $this->phpunit($filename, $document), $this->testSuite($filename, $xpath)); } -} -if (!function_exists('PHPUnit\\Framework\\stringContains')) { - function stringContains(string $string, bool $case = \true) : StringContains + public function logging(string $filename, DOMXPath $xpath): Logging { - return \PHPUnit\Framework\Assert::stringContains(...func_get_args()); + if ($xpath->query('logging/log')->length !== 0) { + return $this->legacyLogging($filename, $xpath); + } + $junit = null; + $element = $this->element($xpath, 'logging/junit'); + if ($element) { + $junit = new Junit(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $text = null; + $element = $this->element($xpath, 'logging/text'); + if ($element) { + $text = new Text(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $teamCity = null; + $element = $this->element($xpath, 'logging/teamcity'); + if ($element) { + $teamCity = new TeamCity(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $testDoxHtml = null; + $element = $this->element($xpath, 'logging/testdoxHtml'); + if ($element) { + $testDoxHtml = new TestDoxHtml(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $testDoxText = null; + $element = $this->element($xpath, 'logging/testdoxText'); + if ($element) { + $testDoxText = new TestDoxText(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $testDoxXml = null; + $element = $this->element($xpath, 'logging/testdoxXml'); + if ($element) { + $testDoxXml = new TestDoxXml(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + return new Logging($junit, $text, $teamCity, $testDoxHtml, $testDoxText, $testDoxXml); } -} -if (!function_exists('PHPUnit\\Framework\\stringEndsWith')) { - function stringEndsWith(string $suffix) : StringEndsWith + public function legacyLogging(string $filename, DOMXPath $xpath): Logging { - return \PHPUnit\Framework\Assert::stringEndsWith(...func_get_args()); + $junit = null; + $teamCity = null; + $testDoxHtml = null; + $testDoxText = null; + $testDoxXml = null; + $text = null; + foreach ($xpath->query('logging/log') as $log) { + assert($log instanceof DOMElement); + $type = (string) $log->getAttribute('type'); + $target = (string) $log->getAttribute('target'); + if (!$target) { + continue; + } + $target = $this->toAbsolutePath($filename, $target); + switch ($type) { + case 'plain': + $text = new Text(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'junit': + $junit = new Junit(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'teamcity': + $teamCity = new TeamCity(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'testdox-html': + $testDoxHtml = new TestDoxHtml(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'testdox-text': + $testDoxText = new TestDoxText(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'testdox-xml': + $testDoxXml = new TestDoxXml(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + } + } + return new Logging($junit, $text, $teamCity, $testDoxHtml, $testDoxText, $testDoxXml); } -} -if (!function_exists('PHPUnit\\Framework\\countOf')) { - function countOf(int $count) : Count + private function extensions(string $filename, DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection { - return \PHPUnit\Framework\Assert::countOf(...func_get_args()); + $extensions = []; + foreach ($xpath->query('extensions/extension') as $extension) { + assert($extension instanceof DOMElement); + $extensions[] = $this->getElementConfigurationParameters($filename, $extension); + } + return \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection::fromArray($extensions); } -} -if (!function_exists('PHPUnit\\Framework\\objectEquals')) { - function objectEquals(object $object, string $method = 'equals') : ObjectEquals + private function getElementConfigurationParameters(string $filename, DOMElement $element): \PHPUnit\TextUI\XmlConfiguration\Extension { - return \PHPUnit\Framework\Assert::objectEquals(...func_get_args()); + /** @psalm-var class-string $class */ + $class = (string) $element->getAttribute('class'); + $file = ''; + $arguments = $this->getConfigurationArguments($filename, $element->childNodes); + if ($element->getAttribute('file')) { + $file = $this->toAbsolutePath($filename, (string) $element->getAttribute('file'), \true); + } + return new \PHPUnit\TextUI\XmlConfiguration\Extension($class, $file, $arguments); } -} -if (!function_exists('PHPUnit\\Framework\\any')) { - /** - * Returns a matcher that matches when the method is executed - * zero or more times. - */ - function any() : AnyInvokedCountMatcher + private function toAbsolutePath(string $filename, string $path, bool $useIncludePath = \false): string { - return new AnyInvokedCountMatcher(); + $path = trim($path); + if (strpos($path, '/') === 0) { + return $path; + } + // Matches the following on Windows: + // - \\NetworkComputer\Path + // - \\.\D: + // - \\.\c: + // - C:\Windows + // - C:\windows + // - C:/windows + // - c:/windows + if (defined('PHP_WINDOWS_VERSION_BUILD') && ($path[0] === '\\' || strlen($path) >= 3 && preg_match('#^[A-Z]\:[/\\\\]#i', substr($path, 0, 3)))) { + return $path; + } + if (strpos($path, '://') !== \false) { + return $path; + } + $file = dirname($filename) . DIRECTORY_SEPARATOR . $path; + if ($useIncludePath && !is_file($file)) { + $includePathFile = stream_resolve_include_path($path); + if ($includePathFile) { + $file = $includePathFile; + } + } + return $file; } -} -if (!function_exists('PHPUnit\\Framework\\never')) { - /** - * Returns a matcher that matches when the method is never executed. - */ - function never() : InvokedCountMatcher + private function getConfigurationArguments(string $filename, DOMNodeList $nodes): array { - return new InvokedCountMatcher(0); + $arguments = []; + if ($nodes->length === 0) { + return $arguments; + } + foreach ($nodes as $node) { + if (!$node instanceof DOMElement) { + continue; + } + if ($node->tagName !== 'arguments') { + continue; + } + foreach ($node->childNodes as $argument) { + if (!$argument instanceof DOMElement) { + continue; + } + if ($argument->tagName === 'file' || $argument->tagName === 'directory') { + $arguments[] = $this->toAbsolutePath($filename, (string) $argument->textContent); + } else { + $arguments[] = Xml::xmlToVariable($argument); + } + } + } + return $arguments; } -} -if (!function_exists('PHPUnit\\Framework\\atLeast')) { - /** - * Returns a matcher that matches when the method is executed - * at least N times. - */ - function atLeast(int $requiredInvocations) : InvokedAtLeastCountMatcher + private function codeCoverage(string $filename, DOMXPath $xpath, DOMDocument $document): CodeCoverage { - return new InvokedAtLeastCountMatcher($requiredInvocations); + if ($xpath->query('filter/whitelist')->length !== 0) { + return $this->legacyCodeCoverage($filename, $xpath, $document); + } + $cacheDirectory = null; + $pathCoverage = \false; + $includeUncoveredFiles = \true; + $processUncoveredFiles = \false; + $ignoreDeprecatedCodeUnits = \false; + $disableCodeCoverageIgnore = \false; + $element = $this->element($xpath, 'coverage'); + if ($element) { + $cacheDirectory = $this->getStringAttribute($element, 'cacheDirectory'); + if ($cacheDirectory !== null) { + $cacheDirectory = new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, $cacheDirectory)); + } + $pathCoverage = $this->getBooleanAttribute($element, 'pathCoverage', \false); + $includeUncoveredFiles = $this->getBooleanAttribute($element, 'includeUncoveredFiles', \true); + $processUncoveredFiles = $this->getBooleanAttribute($element, 'processUncoveredFiles', \false); + $ignoreDeprecatedCodeUnits = $this->getBooleanAttribute($element, 'ignoreDeprecatedCodeUnits', \false); + $disableCodeCoverageIgnore = $this->getBooleanAttribute($element, 'disableCodeCoverageIgnore', \false); + } + $clover = null; + $element = $this->element($xpath, 'coverage/report/clover'); + if ($element) { + $clover = new Clover(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $cobertura = null; + $element = $this->element($xpath, 'coverage/report/cobertura'); + if ($element) { + $cobertura = new Cobertura(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $crap4j = null; + $element = $this->element($xpath, 'coverage/report/crap4j'); + if ($element) { + $crap4j = new Crap4j(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile'))), $this->getIntegerAttribute($element, 'threshold', 30)); + } + $html = null; + $element = $this->element($xpath, 'coverage/report/html'); + if ($element) { + $html = new CodeCoverageHtml(new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputDirectory'))), $this->getIntegerAttribute($element, 'lowUpperBound', 50), $this->getIntegerAttribute($element, 'highLowerBound', 90)); + } + $php = null; + $element = $this->element($xpath, 'coverage/report/php'); + if ($element) { + $php = new CodeCoveragePhp(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + } + $text = null; + $element = $this->element($xpath, 'coverage/report/text'); + if ($element) { + $text = new CodeCoverageText(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile'))), $this->getBooleanAttribute($element, 'showUncoveredFiles', \false), $this->getBooleanAttribute($element, 'showOnlySummary', \false)); + } + $xml = null; + $element = $this->element($xpath, 'coverage/report/xml'); + if ($element) { + $xml = new CodeCoverageXml(new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputDirectory')))); + } + return new CodeCoverage($cacheDirectory, $this->readFilterDirectories($filename, $xpath, 'coverage/include/directory'), $this->readFilterFiles($filename, $xpath, 'coverage/include/file'), $this->readFilterDirectories($filename, $xpath, 'coverage/exclude/directory'), $this->readFilterFiles($filename, $xpath, 'coverage/exclude/file'), $pathCoverage, $includeUncoveredFiles, $processUncoveredFiles, $ignoreDeprecatedCodeUnits, $disableCodeCoverageIgnore, $clover, $cobertura, $crap4j, $html, $php, $text, $xml); } -} -if (!function_exists('PHPUnit\\Framework\\atLeastOnce')) { /** - * Returns a matcher that matches when the method is executed at least once. + * @deprecated */ - function atLeastOnce() : InvokedAtLeastOnceMatcher + private function legacyCodeCoverage(string $filename, DOMXPath $xpath, DOMDocument $document): CodeCoverage { - return new InvokedAtLeastOnceMatcher(); + $ignoreDeprecatedCodeUnits = $this->getBooleanAttribute($document->documentElement, 'ignoreDeprecatedCodeUnitsFromCodeCoverage', \false); + $disableCodeCoverageIgnore = $this->getBooleanAttribute($document->documentElement, 'disableCodeCoverageIgnore', \false); + $includeUncoveredFiles = \true; + $processUncoveredFiles = \false; + $element = $this->element($xpath, 'filter/whitelist'); + if ($element) { + if ($element->hasAttribute('addUncoveredFilesFromWhitelist')) { + $includeUncoveredFiles = (bool) $this->getBoolean((string) $element->getAttribute('addUncoveredFilesFromWhitelist'), \true); + } + if ($element->hasAttribute('processUncoveredFilesFromWhitelist')) { + $processUncoveredFiles = (bool) $this->getBoolean((string) $element->getAttribute('processUncoveredFilesFromWhitelist'), \false); + } + } + $clover = null; + $cobertura = null; + $crap4j = null; + $html = null; + $php = null; + $text = null; + $xml = null; + foreach ($xpath->query('logging/log') as $log) { + assert($log instanceof DOMElement); + $type = (string) $log->getAttribute('type'); + $target = (string) $log->getAttribute('target'); + if (!$target) { + continue; + } + $target = $this->toAbsolutePath($filename, $target); + switch ($type) { + case 'coverage-clover': + $clover = new Clover(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'coverage-cobertura': + $cobertura = new Cobertura(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'coverage-crap4j': + $crap4j = new Crap4j(new \PHPUnit\TextUI\XmlConfiguration\File($target), $this->getIntegerAttribute($log, 'threshold', 30)); + break; + case 'coverage-html': + $html = new CodeCoverageHtml(new \PHPUnit\TextUI\XmlConfiguration\Directory($target), $this->getIntegerAttribute($log, 'lowUpperBound', 50), $this->getIntegerAttribute($log, 'highLowerBound', 90)); + break; + case 'coverage-php': + $php = new CodeCoveragePhp(new \PHPUnit\TextUI\XmlConfiguration\File($target)); + break; + case 'coverage-text': + $text = new CodeCoverageText(new \PHPUnit\TextUI\XmlConfiguration\File($target), $this->getBooleanAttribute($log, 'showUncoveredFiles', \false), $this->getBooleanAttribute($log, 'showOnlySummary', \false)); + break; + case 'coverage-xml': + $xml = new CodeCoverageXml(new \PHPUnit\TextUI\XmlConfiguration\Directory($target)); + break; + } + } + return new CodeCoverage(null, $this->readFilterDirectories($filename, $xpath, 'filter/whitelist/directory'), $this->readFilterFiles($filename, $xpath, 'filter/whitelist/file'), $this->readFilterDirectories($filename, $xpath, 'filter/whitelist/exclude/directory'), $this->readFilterFiles($filename, $xpath, 'filter/whitelist/exclude/file'), \false, $includeUncoveredFiles, $processUncoveredFiles, $ignoreDeprecatedCodeUnits, $disableCodeCoverageIgnore, $clover, $cobertura, $crap4j, $html, $php, $text, $xml); } -} -if (!function_exists('PHPUnit\\Framework\\once')) { /** - * Returns a matcher that matches when the method is executed exactly once. + * If $value is 'false' or 'true', this returns the value that $value represents. + * Otherwise, returns $default, which may be a string in rare cases. + * + * @see \PHPUnit\TextUI\XmlConfigurationTest::testPHPConfigurationIsReadCorrectly + * + * @param bool|string $default + * + * @return bool|string */ - function once() : InvokedCountMatcher + private function getBoolean(string $value, $default) { - return new InvokedCountMatcher(1); + if (strtolower($value) === 'false') { + return \false; + } + if (strtolower($value) === 'true') { + return \true; + } + return $default; } -} -if (!function_exists('PHPUnit\\Framework\\exactly')) { - /** - * Returns a matcher that matches when the method is executed - * exactly $count times. - */ - function exactly(int $count) : InvokedCountMatcher + private function readFilterDirectories(string $filename, DOMXPath $xpath, string $query): FilterDirectoryCollection { - return new InvokedCountMatcher($count); + $directories = []; + foreach ($xpath->query($query) as $directoryNode) { + assert($directoryNode instanceof DOMElement); + $directoryPath = (string) $directoryNode->textContent; + if (!$directoryPath) { + continue; + } + $directories[] = new FilterDirectory($this->toAbsolutePath($filename, $directoryPath), $directoryNode->hasAttribute('prefix') ? (string) $directoryNode->getAttribute('prefix') : '', $directoryNode->hasAttribute('suffix') ? (string) $directoryNode->getAttribute('suffix') : '.php', $directoryNode->hasAttribute('group') ? (string) $directoryNode->getAttribute('group') : 'DEFAULT'); + } + return FilterDirectoryCollection::fromArray($directories); } -} -if (!function_exists('PHPUnit\\Framework\\atMost')) { - /** - * Returns a matcher that matches when the method is executed - * at most N times. - */ - function atMost(int $allowedInvocations) : InvokedAtMostCountMatcher + private function readFilterFiles(string $filename, DOMXPath $xpath, string $query): \PHPUnit\TextUI\XmlConfiguration\FileCollection { - return new InvokedAtMostCountMatcher($allowedInvocations); + $files = []; + foreach ($xpath->query($query) as $file) { + assert($file instanceof DOMNode); + $filePath = (string) $file->textContent; + if ($filePath) { + $files[] = new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, $filePath)); + } + } + return \PHPUnit\TextUI\XmlConfiguration\FileCollection::fromArray($files); } -} -if (!function_exists('PHPUnit\\Framework\\at')) { - /** - * Returns a matcher that matches when the method is executed - * at the given index. - */ - function at(int $index) : InvokedAtIndexMatcher + private function groups(DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\Groups { - return new InvokedAtIndexMatcher($index); + return $this->parseGroupConfiguration($xpath, 'groups'); } -} -if (!function_exists('PHPUnit\\Framework\\returnValue')) { - function returnValue($value) : ReturnStub + private function testdoxGroups(DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\Groups { - return new ReturnStub($value); + return $this->parseGroupConfiguration($xpath, 'testdoxGroups'); } -} -if (!function_exists('PHPUnit\\Framework\\returnValueMap')) { - function returnValueMap(array $valueMap) : ReturnValueMapStub + private function parseGroupConfiguration(DOMXPath $xpath, string $root): \PHPUnit\TextUI\XmlConfiguration\Groups { - return new ReturnValueMapStub($valueMap); + $include = []; + $exclude = []; + foreach ($xpath->query($root . '/include/group') as $group) { + assert($group instanceof DOMNode); + $include[] = new \PHPUnit\TextUI\XmlConfiguration\Group((string) $group->textContent); + } + foreach ($xpath->query($root . '/exclude/group') as $group) { + assert($group instanceof DOMNode); + $exclude[] = new \PHPUnit\TextUI\XmlConfiguration\Group((string) $group->textContent); + } + return new \PHPUnit\TextUI\XmlConfiguration\Groups(\PHPUnit\TextUI\XmlConfiguration\GroupCollection::fromArray($include), \PHPUnit\TextUI\XmlConfiguration\GroupCollection::fromArray($exclude)); } -} -if (!function_exists('PHPUnit\\Framework\\returnArgument')) { - function returnArgument(int $argumentIndex) : ReturnArgumentStub + private function listeners(string $filename, DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection { - return new ReturnArgumentStub($argumentIndex); + $listeners = []; + foreach ($xpath->query('listeners/listener') as $listener) { + assert($listener instanceof DOMElement); + $listeners[] = $this->getElementConfigurationParameters($filename, $listener); + } + return \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection::fromArray($listeners); } -} -if (!function_exists('PHPUnit\\Framework\\returnCallback')) { - function returnCallback($callback) : ReturnCallbackStub + private function getBooleanAttribute(DOMElement $element, string $attribute, bool $default): bool { - return new ReturnCallbackStub($callback); + if (!$element->hasAttribute($attribute)) { + return $default; + } + return (bool) $this->getBoolean((string) $element->getAttribute($attribute), \false); } -} -if (!function_exists('PHPUnit\\Framework\\returnSelf')) { - /** - * Returns the current object. - * - * This method is useful when mocking a fluent interface. - */ - function returnSelf() : ReturnSelfStub + private function getIntegerAttribute(DOMElement $element, string $attribute, int $default): int { - return new ReturnSelfStub(); + if (!$element->hasAttribute($attribute)) { + return $default; + } + return $this->getInteger((string) $element->getAttribute($attribute), $default); } -} -if (!function_exists('PHPUnit\\Framework\\throwException')) { - function throwException(Throwable $exception) : ExceptionStub + private function getStringAttribute(DOMElement $element, string $attribute): ?string { - return new ExceptionStub($exception); + if (!$element->hasAttribute($attribute)) { + return null; + } + return (string) $element->getAttribute($attribute); } -} -if (!function_exists('PHPUnit\\Framework\\onConsecutiveCalls')) { - function onConsecutiveCalls() : ConsecutiveCallsStub + private function getInteger(string $value, int $default): int { - $args = func_get_args(); - return new ConsecutiveCallsStub($args); + if (is_numeric($value)) { + return (int) $value; + } + return $default; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class IsFalse extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + private function php(string $filename, DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\Php { - return 'is false'; + $includePaths = []; + foreach ($xpath->query('php/includePath') as $includePath) { + assert($includePath instanceof DOMNode); + $path = (string) $includePath->textContent; + if ($path) { + $includePaths[] = new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, $path)); + } + } + $iniSettings = []; + foreach ($xpath->query('php/ini') as $ini) { + assert($ini instanceof DOMElement); + $iniSettings[] = new \PHPUnit\TextUI\XmlConfiguration\IniSetting((string) $ini->getAttribute('name'), (string) $ini->getAttribute('value')); + } + $constants = []; + foreach ($xpath->query('php/const') as $const) { + assert($const instanceof DOMElement); + $value = (string) $const->getAttribute('value'); + $constants[] = new \PHPUnit\TextUI\XmlConfiguration\Constant((string) $const->getAttribute('name'), $this->getBoolean($value, $value)); + } + $variables = ['var' => [], 'env' => [], 'post' => [], 'get' => [], 'cookie' => [], 'server' => [], 'files' => [], 'request' => []]; + foreach (['var', 'env', 'post', 'get', 'cookie', 'server', 'files', 'request'] as $array) { + foreach ($xpath->query('php/' . $array) as $var) { + assert($var instanceof DOMElement); + $name = (string) $var->getAttribute('name'); + $value = (string) $var->getAttribute('value'); + $force = \false; + $verbatim = \false; + if ($var->hasAttribute('force')) { + $force = (bool) $this->getBoolean($var->getAttribute('force'), \false); + } + if ($var->hasAttribute('verbatim')) { + $verbatim = $this->getBoolean($var->getAttribute('verbatim'), \false); + } + if (!$verbatim) { + $value = $this->getBoolean($value, $value); + } + $variables[$array][] = new \PHPUnit\TextUI\XmlConfiguration\Variable($name, $value, $force); + } + } + return new \PHPUnit\TextUI\XmlConfiguration\Php(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection::fromArray($includePaths), \PHPUnit\TextUI\XmlConfiguration\IniSettingCollection::fromArray($iniSettings), \PHPUnit\TextUI\XmlConfiguration\ConstantCollection::fromArray($constants), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['var']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['env']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['post']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['get']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['cookie']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['server']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['files']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['request'])); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + private function phpunit(string $filename, DOMDocument $document): \PHPUnit\TextUI\XmlConfiguration\PHPUnit { - return $other === \false; + $executionOrder = TestSuiteSorter::ORDER_DEFAULT; + $defectsFirst = \false; + $resolveDependencies = $this->getBooleanAttribute($document->documentElement, 'resolveDependencies', \true); + if ($document->documentElement->hasAttribute('executionOrder')) { + foreach (explode(',', $document->documentElement->getAttribute('executionOrder')) as $order) { + switch ($order) { + case 'default': + $executionOrder = TestSuiteSorter::ORDER_DEFAULT; + $defectsFirst = \false; + $resolveDependencies = \true; + break; + case 'depends': + $resolveDependencies = \true; + break; + case 'no-depends': + $resolveDependencies = \false; + break; + case 'defects': + $defectsFirst = \true; + break; + case 'duration': + $executionOrder = TestSuiteSorter::ORDER_DURATION; + break; + case 'random': + $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; + break; + case 'reverse': + $executionOrder = TestSuiteSorter::ORDER_REVERSED; + break; + case 'size': + $executionOrder = TestSuiteSorter::ORDER_SIZE; + break; + } + } + } + $printerClass = $this->getStringAttribute($document->documentElement, 'printerClass'); + $testdox = $this->getBooleanAttribute($document->documentElement, 'testdox', \false); + $conflictBetweenPrinterClassAndTestdox = \false; + if ($testdox) { + if ($printerClass !== null) { + $conflictBetweenPrinterClassAndTestdox = \true; + } + $printerClass = CliTestDoxPrinter::class; + } + $cacheResultFile = $this->getStringAttribute($document->documentElement, 'cacheResultFile'); + if ($cacheResultFile !== null) { + $cacheResultFile = $this->toAbsolutePath($filename, $cacheResultFile); + } + $bootstrap = $this->getStringAttribute($document->documentElement, 'bootstrap'); + if ($bootstrap !== null) { + $bootstrap = $this->toAbsolutePath($filename, $bootstrap); + } + $extensionsDirectory = $this->getStringAttribute($document->documentElement, 'extensionsDirectory'); + if ($extensionsDirectory !== null) { + $extensionsDirectory = $this->toAbsolutePath($filename, $extensionsDirectory); + } + $testSuiteLoaderFile = $this->getStringAttribute($document->documentElement, 'testSuiteLoaderFile'); + if ($testSuiteLoaderFile !== null) { + $testSuiteLoaderFile = $this->toAbsolutePath($filename, $testSuiteLoaderFile); + } + $printerFile = $this->getStringAttribute($document->documentElement, 'printerFile'); + if ($printerFile !== null) { + $printerFile = $this->toAbsolutePath($filename, $printerFile); + } + return new \PHPUnit\TextUI\XmlConfiguration\PHPUnit($this->getBooleanAttribute($document->documentElement, 'cacheResult', \true), $cacheResultFile, $this->getColumns($document), $this->getColors($document), $this->getBooleanAttribute($document->documentElement, 'stderr', \false), $this->getBooleanAttribute($document->documentElement, 'noInteraction', \false), $this->getBooleanAttribute($document->documentElement, 'verbose', \false), $this->getBooleanAttribute($document->documentElement, 'reverseDefectList', \false), $this->getBooleanAttribute($document->documentElement, 'convertDeprecationsToExceptions', \false), $this->getBooleanAttribute($document->documentElement, 'convertErrorsToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'convertNoticesToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'convertWarningsToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'forceCoversAnnotation', \false), $bootstrap, $this->getBooleanAttribute($document->documentElement, 'processIsolation', \false), $this->getBooleanAttribute($document->documentElement, 'failOnEmptyTestSuite', \false), $this->getBooleanAttribute($document->documentElement, 'failOnIncomplete', \false), $this->getBooleanAttribute($document->documentElement, 'failOnRisky', \false), $this->getBooleanAttribute($document->documentElement, 'failOnSkipped', \false), $this->getBooleanAttribute($document->documentElement, 'failOnWarning', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnDefect', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnError', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnFailure', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnWarning', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnIncomplete', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnRisky', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnSkipped', \false), $extensionsDirectory, $this->getStringAttribute($document->documentElement, 'testSuiteLoaderClass'), $testSuiteLoaderFile, $printerClass, $printerFile, $this->getBooleanAttribute($document->documentElement, 'beStrictAboutChangesToGlobalState', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutOutputDuringTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutResourceUsageDuringSmallTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutTestsThatDoNotTestAnything', \true), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutTodoAnnotatedTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutCoversAnnotation', \false), $this->getBooleanAttribute($document->documentElement, 'enforceTimeLimit', \false), $this->getIntegerAttribute($document->documentElement, 'defaultTimeLimit', 1), $this->getIntegerAttribute($document->documentElement, 'timeoutForSmallTests', 1), $this->getIntegerAttribute($document->documentElement, 'timeoutForMediumTests', 10), $this->getIntegerAttribute($document->documentElement, 'timeoutForLargeTests', 60), $this->getStringAttribute($document->documentElement, 'defaultTestSuite'), $executionOrder, $resolveDependencies, $defectsFirst, $this->getBooleanAttribute($document->documentElement, 'backupGlobals', \false), $this->getBooleanAttribute($document->documentElement, 'backupStaticAttributes', \false), $this->getBooleanAttribute($document->documentElement, 'registerMockObjectsFromTestArgumentsRecursively', \false), $conflictBetweenPrinterClassAndTestdox); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class IsTrue extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + private function getColors(DOMDocument $document): string { - return 'is true'; + $colors = DefaultResultPrinter::COLOR_DEFAULT; + if ($document->documentElement->hasAttribute('colors')) { + /* only allow boolean for compatibility with previous versions + 'always' only allowed from command line */ + if ($this->getBoolean($document->documentElement->getAttribute('colors'), \false)) { + $colors = DefaultResultPrinter::COLOR_AUTO; + } else { + $colors = DefaultResultPrinter::COLOR_NEVER; + } + } + return $colors; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @return int|string */ - protected function matches($other) : bool + private function getColumns(DOMDocument $document) { - return $other === \true; + $columns = 80; + if ($document->documentElement->hasAttribute('columns')) { + $columns = (string) $document->documentElement->getAttribute('columns'); + if ($columns !== 'max') { + $columns = $this->getInteger($columns, 80); + } + } + return $columns; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -/** - * @psalm-template CallbackInput of mixed - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class Callback extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * @var callable - * - * @psalm-var callable(CallbackInput $input): bool - */ - private $callback; - /** @psalm-param callable(CallbackInput $input): bool $callback */ - public function __construct(callable $callback) + private function testSuite(string $filename, DOMXPath $xpath): \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection { - $this->callback = $callback; + $testSuites = []; + foreach ($this->getTestSuiteElements($xpath) as $element) { + $exclude = []; + foreach ($element->getElementsByTagName('exclude') as $excludeNode) { + $excludeFile = (string) $excludeNode->textContent; + if ($excludeFile) { + $exclude[] = new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, $excludeFile)); + } + } + $directories = []; + foreach ($element->getElementsByTagName('directory') as $directoryNode) { + assert($directoryNode instanceof DOMElement); + $directory = (string) $directoryNode->textContent; + if (empty($directory)) { + continue; + } + $prefix = ''; + if ($directoryNode->hasAttribute('prefix')) { + $prefix = (string) $directoryNode->getAttribute('prefix'); + } + $suffix = 'Test.php'; + if ($directoryNode->hasAttribute('suffix')) { + $suffix = (string) $directoryNode->getAttribute('suffix'); + } + $phpVersion = PHP_VERSION; + if ($directoryNode->hasAttribute('phpVersion')) { + $phpVersion = (string) $directoryNode->getAttribute('phpVersion'); + } + $phpVersionOperator = new VersionComparisonOperator('>='); + if ($directoryNode->hasAttribute('phpVersionOperator')) { + $phpVersionOperator = new VersionComparisonOperator((string) $directoryNode->getAttribute('phpVersionOperator')); + } + $directories[] = new \PHPUnit\TextUI\XmlConfiguration\TestDirectory($this->toAbsolutePath($filename, $directory), $prefix, $suffix, $phpVersion, $phpVersionOperator); + } + $files = []; + foreach ($element->getElementsByTagName('file') as $fileNode) { + assert($fileNode instanceof DOMElement); + $file = (string) $fileNode->textContent; + if (empty($file)) { + continue; + } + $phpVersion = PHP_VERSION; + if ($fileNode->hasAttribute('phpVersion')) { + $phpVersion = (string) $fileNode->getAttribute('phpVersion'); + } + $phpVersionOperator = new VersionComparisonOperator('>='); + if ($fileNode->hasAttribute('phpVersionOperator')) { + $phpVersionOperator = new VersionComparisonOperator((string) $fileNode->getAttribute('phpVersionOperator')); + } + $files[] = new \PHPUnit\TextUI\XmlConfiguration\TestFile($this->toAbsolutePath($filename, $file), $phpVersion, $phpVersionOperator); + } + $testSuites[] = new TestSuiteConfiguration((string) $element->getAttribute('name'), \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection::fromArray($directories), \PHPUnit\TextUI\XmlConfiguration\TestFileCollection::fromArray($files), \PHPUnit\TextUI\XmlConfiguration\FileCollection::fromArray($exclude)); + } + return \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection::fromArray($testSuites); } /** - * Returns a string representation of the constraint. + * @return DOMElement[] */ - public function toString() : string + private function getTestSuiteElements(DOMXPath $xpath): array { - return 'is accepted by specified callback'; + /** @var DOMElement[] $elements */ + $elements = []; + $testSuiteNodes = $xpath->query('testsuites/testsuite'); + if ($testSuiteNodes->length === 0) { + $testSuiteNodes = $xpath->query('testsuite'); + } + if ($testSuiteNodes->length === 1) { + $element = $testSuiteNodes->item(0); + assert($element instanceof DOMElement); + $elements[] = $element; + } else { + foreach ($testSuiteNodes as $testSuiteNode) { + assert($testSuiteNode instanceof DOMElement); + $elements[] = $testSuiteNode; + } + } + return $elements; } - /** - * Evaluates the constraint for parameter $value. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - * - * @psalm-param CallbackInput $other - */ - protected function matches($other) : bool + private function element(DOMXPath $xpath, string $element): ?DOMElement { - return ($this->callback)($other); + $nodes = $xpath->query($element); + if ($nodes->length === 1) { + $node = $nodes->item(0); + assert($node instanceof DOMElement); + return $node; + } + return null; } } expectedCount = $expected; - } - public function toString() : string - { - return sprintf('count matches %d', $this->expectedCount); - } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @throws Exception - */ - protected function matches($other) : bool - { - return $this->expectedCount === $this->getCountOf($other); - } - /** - * @throws Exception - */ - protected function getCountOf($other) : ?int - { - if ($other instanceof Countable || is_array($other)) { - return count($other); - } - if ($other instanceof EmptyIterator) { - return 0; - } - if ($other instanceof Traversable) { - while ($other instanceof IteratorAggregate) { - try { - $other = $other->getIterator(); - } catch (\Exception $e) { - throw new Exception($e->getMessage(), $e->getCode(), $e); - } - } - $iterator = $other; - if ($iterator instanceof Generator) { - return $this->getCountOfGenerator($iterator); - } - if (!$iterator instanceof Iterator) { - return iterator_count($iterator); - } - $key = $iterator->key(); - $count = iterator_count($iterator); - // Manually rewind $iterator to previous key, since iterator_count - // moves pointer. - if ($key !== null) { - $iterator->rewind(); - while ($iterator->valid() && $key !== $iterator->key()) { - $iterator->next(); - } - } - return $count; - } - return null; - } - /** - * Returns the total number of iterations from a generator. - * This will fully exhaust the generator. - */ - protected function getCountOfGenerator(Generator $generator) : int - { - for ($count = 0; $generator->valid(); $generator->next()) { - $count++; - } - return $count; - } +final class Group +{ /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object + * @var string */ - protected function failureDescription($other) : string + private $name; + public function __construct(string $name) { - return sprintf('actual size %d matches expected size %d', (int) $this->getCountOf($other), $this->expectedCount); + $this->name = $name; + } + public function name(): string + { + return $this->name; } } */ -final class GreaterThan extends \PHPUnit\Framework\Constraint\Constraint +final class GroupCollectionIterator implements Countable, Iterator { /** - * @var float|int + * @var Group[] */ - private $value; + private $groups; /** - * @param float|int $value + * @var int */ - public function __construct($value) + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\GroupCollection $groups) { - $this->value = $value; + $this->groups = $groups->asArray(); } - /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function toString() : string + public function count(): int { - return 'is greater than ' . $this->exporter()->export($this->value); + return iterator_count($this); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function rewind(): void { - return $this->value < $other; + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->groups); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\Group + { + return $this->groups[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class IsEmpty extends \PHPUnit\Framework\Constraint\Constraint +final class GroupCollection implements IteratorAggregate { /** - * Returns a string representation of the constraint. + * @var Group[] + */ + private $groups; + /** + * @param Group[] $groups */ - public function toString() : string + public static function fromArray(array $groups): self { - return 'is empty'; + return new self(...$groups); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\Group ...$groups) + { + $this->groups = $groups; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @return Group[] */ - protected function matches($other) : bool + public function asArray(): array { - if ($other instanceof EmptyIterator) { - return \true; - } - if ($other instanceof Countable) { - return count($other) === 0; - } - return empty($other); + return $this->groups; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object + * @return string[] */ - protected function failureDescription($other) : string + public function asArrayOfStrings(): array { - $type = gettype($other); - return sprintf('%s %s %s', strpos($type, 'a') === 0 || strpos($type, 'o') === 0 ? 'an' : 'a', $type, $this->toString()); + $result = []; + foreach ($this->groups as $group) { + $result[] = $group->name(); + } + return $result; + } + public function isEmpty(): bool + { + return empty($this->groups); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\GroupCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\GroupCollectionIterator($this); } } value = $value; + $this->include = $include; + $this->exclude = $exclude; } - /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function toString() : string + public function hasInclude(): bool { - return 'is less than ' . $this->exporter()->export($this->value); + return !$this->include->isEmpty(); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function include(): \PHPUnit\TextUI\XmlConfiguration\GroupCollection { - return $this->value > $other; + return $this->include; + } + public function hasExclude(): bool + { + return !$this->exclude->isEmpty(); + } + public function exclude(): \PHPUnit\TextUI\XmlConfiguration\GroupCollection + { + return $this->exclude; } } */ -final class SameSize extends \PHPUnit\Framework\Constraint\Count +final class TestFileCollectionIterator implements Countable, Iterator { - public function __construct(iterable $expected) + /** + * @var TestFile[] + */ + private $files; + /** + * @var int + */ + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\TestFileCollection $files) { - parent::__construct((int) $this->getCountOf($expected)); + $this->files = $files->asArray(); + } + public function count(): int + { + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->files); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\TestFile + { + return $this->files[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -abstract class Constraint implements Countable, SelfDescribing +final class TestSuiteCollection implements Countable, IteratorAggregate { /** - * @var ?Exporter - */ - private $exporter; - /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool - { - $success = \false; - if ($this->matches($other)) { - $success = \true; - } - if ($returnResult) { - return $success; - } - if (!$success) { - $this->fail($other, $description); - } - return null; - } - /** - * Counts the number of constraint elements. - */ - public function count() : int - { - return 1; - } - protected function exporter() : Exporter - { - if ($this->exporter === null) { - $this->exporter = new Exporter(); - } - return $this->exporter; - } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * This method can be overridden to implement the evaluation algorithm. - * - * @param mixed $other value or object to evaluate - * - * @codeCoverageIgnore + * @var TestSuite[] */ - protected function matches($other) : bool - { - return \false; - } + private $testSuites; /** - * Throws an exception for the given compared value and test description. - * - * @param mixed $other evaluated value or object - * @param string $description Additional information about the test - * @param ComparisonFailure $comparisonFailure - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-return never-return + * @param TestSuite[] $testSuites */ - protected function fail($other, $description, ComparisonFailure $comparisonFailure = null) : void + public static function fromArray(array $testSuites): self { - $failureDescription = sprintf('Failed asserting that %s.', $this->failureDescription($other)); - $additionalFailureDescription = $this->additionalFailureDescription($other); - if ($additionalFailureDescription) { - $failureDescription .= "\n" . $additionalFailureDescription; - } - if (!empty($description)) { - $failureDescription = $description . "\n" . $failureDescription; - } - throw new ExpectationFailedException($failureDescription, $comparisonFailure); + return new self(...$testSuites); } - /** - * Return additional failure description where needed. - * - * The function can be overridden to provide additional failure - * information like a diff - * - * @param mixed $other evaluated value or object - */ - protected function additionalFailureDescription($other) : string + private function __construct(\PHPUnit\TextUI\XmlConfiguration\TestSuite ...$testSuites) { - return ''; + $this->testSuites = $testSuites; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * To provide additional failure information additionalFailureDescription - * can be used. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @return TestSuite[] */ - protected function failureDescription($other) : string + public function asArray(): array { - return $this->exporter()->export($other) . ' ' . $this->toString(); + return $this->testSuites; } - /** - * Returns a custom string representation of the constraint object when it - * appears in context of an $operator expression. - * - * The purpose of this method is to provide meaningful descriptive string - * in context of operators such as LogicalNot. Native PHPUnit constraints - * are supported out of the box by LogicalNot, but externally developed - * ones had no way to provide correct strings in this context. - * - * The method shall return empty string, when it does not handle - * customization by itself. - * - * @param Operator $operator the $operator of the expression - * @param mixed $role role of $this constraint in the $operator expression - */ - protected function toStringInContext(\PHPUnit\Framework\Constraint\Operator $operator, $role) : string + public function count(): int { - return ''; + return count($this->testSuites); } - /** - * Returns the description of the failure when this constraint appears in - * context of an $operator expression. - * - * The purpose of this method is to provide meaningful failure description - * in context of operators such as LogicalNot. Native PHPUnit constraints - * are supported out of the box by LogicalNot, but externally developed - * ones had no way to provide correct messages in this context. - * - * The method shall return empty string, when it does not handle - * customization by itself. - * - * @param Operator $operator the $operator of the expression - * @param mixed $role role of $this constraint in the $operator expression - * @param mixed $other evaluated value or object - */ - protected function failureDescriptionInContext(\PHPUnit\Framework\Constraint\Operator $operator, $role, $other) : string + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollectionIterator { - $string = $this->toStringInContext($operator, $role); - if ($string === '') { - return ''; - } - return $this->exporter()->export($other) . ' ' . $string; + return new \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollectionIterator($this); } - /** - * Reduces the sub-expression starting at $this by skipping degenerate - * sub-expression and returns first descendant constraint that starts - * a non-reducible sub-expression. - * - * Returns $this for terminal constraints and for operators that start - * non-reducible sub-expression, or the nearest descendant of $this that - * starts a non-reducible sub-expression. - * - * A constraint expression may be modelled as a tree with non-terminal - * nodes (operators) and terminal nodes. For example: - * - * LogicalOr (operator, non-terminal) - * + LogicalAnd (operator, non-terminal) - * | + IsType('int') (terminal) - * | + GreaterThan(10) (terminal) - * + LogicalNot (operator, non-terminal) - * + IsType('array') (terminal) - * - * A degenerate sub-expression is a part of the tree, that effectively does - * not contribute to the evaluation of the expression it appears in. An example - * of degenerate sub-expression is a BinaryOperator constructed with single - * operand or nested BinaryOperators, each with single operand. An - * expression involving a degenerate sub-expression is equivalent to a - * reduced expression with the degenerate sub-expression removed, for example - * - * LogicalAnd (operator) - * + LogicalOr (degenerate operator) - * | + LogicalAnd (degenerate operator) - * | + IsType('int') (terminal) - * + GreaterThan(10) (terminal) - * - * is equivalent to - * - * LogicalAnd (operator) - * + IsType('int') (terminal) - * + GreaterThan(10) (terminal) - * - * because the subexpression - * - * + LogicalOr - * + LogicalAnd - * + - - * - * is degenerate. Calling reduce() on the LogicalOr object above, as well - * as on LogicalAnd, shall return the IsType('int') instance. - * - * Other specific reductions can be implemented, for example cascade of - * LogicalNot operators - * - * + LogicalNot - * + LogicalNot - * +LogicalNot - * + IsTrue - * - * can be reduced to - * - * LogicalNot - * + IsTrue - */ - protected function reduce() : self + public function isEmpty(): bool { - return $this; + return $this->count() === 0; } } */ -final class IsEqual extends \PHPUnit\Framework\Constraint\Constraint +final class TestFileCollection implements Countable, IteratorAggregate { /** - * @var mixed - */ - private $value; - /** - * @var float - */ - private $delta; - /** - * @var bool + * @var TestFile[] */ - private $canonicalize; + private $files; /** - * @var bool + * @param TestFile[] $files */ - private $ignoreCase; - public function __construct($value, float $delta = 0.0, bool $canonicalize = \false, bool $ignoreCase = \false) + public static function fromArray(array $files): self { - $this->value = $value; - $this->delta = $delta; - $this->canonicalize = $canonicalize; - $this->ignoreCase = $ignoreCase; + return new self(...$files); } - /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws ExpectationFailedException - * - * @return bool - */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool + private function __construct(\PHPUnit\TextUI\XmlConfiguration\TestFile ...$files) { - // If $this->value and $other are identical, they are also equal. - // This is the most common path and will allow us to skip - // initialization of all the comparators. - if ($this->value === $other) { - return \true; - } - $comparatorFactory = ComparatorFactory::getInstance(); - try { - $comparator = $comparatorFactory->getComparatorFor($this->value, $other); - $comparator->assertEquals($this->value, $other, $this->delta, $this->canonicalize, $this->ignoreCase); - } catch (ComparisonFailure $f) { - if ($returnResult) { - return \false; - } - throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); - } - return \true; + $this->files = $files; } /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @return TestFile[] */ - public function toString() : string + public function asArray(): array { - $delta = ''; - if (is_string($this->value)) { - if (strpos($this->value, "\n") !== \false) { - return 'is equal to '; - } - return sprintf("is equal to '%s'", $this->value); - } - if ($this->delta != 0) { - $delta = sprintf(' with delta <%F>', $this->delta); - } - return sprintf('is equal to %s%s', $this->exporter()->export($this->value), $delta); + return $this->files; + } + public function count(): int + { + return count($this->files); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\TestFileCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\TestFileCollectionIterator($this); + } + public function isEmpty(): bool + { + return $this->count() === 0; } } value = $value; - } + private $name; /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws ExpectationFailedException + * @var TestDirectoryCollection */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool - { - // If $this->value and $other are identical, they are also equal. - // This is the most common path and will allow us to skip - // initialization of all the comparators. - if ($this->value === $other) { - return \true; - } - $comparatorFactory = ComparatorFactory::getInstance(); - try { - $comparator = $comparatorFactory->getComparatorFor($this->value, $other); - $comparator->assertEquals($this->value, $other, 0.0, \true, \false); - } catch (ComparisonFailure $f) { - if ($returnResult) { - return \false; - } - throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); - } - return \true; - } + private $directories; /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var TestFileCollection + */ + private $files; + /** + * @var FileCollection */ - public function toString() : string + private $exclude; + public function __construct(string $name, \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection $directories, \PHPUnit\TextUI\XmlConfiguration\TestFileCollection $files, \PHPUnit\TextUI\XmlConfiguration\FileCollection $exclude) { - if (is_string($this->value)) { - if (strpos($this->value, "\n") !== \false) { - return 'is equal to '; - } - return sprintf("is equal to '%s'", $this->value); - } - return sprintf('is equal to %s', $this->exporter()->export($this->value)); + $this->name = $name; + $this->directories = $directories; + $this->files = $files; + $this->exclude = $exclude; + } + public function name(): string + { + return $this->name; + } + public function directories(): \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection + { + return $this->directories; + } + public function files(): \PHPUnit\TextUI\XmlConfiguration\TestFileCollection + { + return $this->files; + } + public function exclude(): \PHPUnit\TextUI\XmlConfiguration\FileCollection + { + return $this->exclude; } } value = $value; - } + private $path; /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws ExpectationFailedException + * @var string */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool - { - // If $this->value and $other are identical, they are also equal. - // This is the most common path and will allow us to skip - // initialization of all the comparators. - if ($this->value === $other) { - return \true; - } - $comparatorFactory = ComparatorFactory::getInstance(); - try { - $comparator = $comparatorFactory->getComparatorFor($this->value, $other); - $comparator->assertEquals($this->value, $other, 0.0, \false, \true); - } catch (ComparisonFailure $f) { - if ($returnResult) { - return \false; - } - throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); - } - return \true; - } + private $prefix; /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var string + */ + private $suffix; + /** + * @var string + */ + private $phpVersion; + /** + * @var VersionComparisonOperator */ - public function toString() : string + private $phpVersionOperator; + public function __construct(string $path, string $prefix, string $suffix, string $phpVersion, VersionComparisonOperator $phpVersionOperator) { - if (is_string($this->value)) { - if (strpos($this->value, "\n") !== \false) { - return 'is equal to '; - } - return sprintf("is equal to '%s'", $this->value); - } - return sprintf('is equal to %s', $this->exporter()->export($this->value)); + $this->path = $path; + $this->prefix = $prefix; + $this->suffix = $suffix; + $this->phpVersion = $phpVersion; + $this->phpVersionOperator = $phpVersionOperator; + } + public function path(): string + { + return $this->path; + } + public function prefix(): string + { + return $this->prefix; + } + public function suffix(): string + { + return $this->suffix; + } + public function phpVersion(): string + { + return $this->phpVersion; + } + public function phpVersionOperator(): VersionComparisonOperator + { + return $this->phpVersionOperator; } } */ -final class IsEqualWithDelta extends \PHPUnit\Framework\Constraint\Constraint +final class TestSuiteCollectionIterator implements Countable, Iterator { /** - * @var mixed + * @var TestSuite[] */ - private $value; + private $testSuites; /** - * @var float + * @var int */ - private $delta; - public function __construct($value, float $delta) + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection $testSuites) { - $this->value = $value; - $this->delta = $delta; + $this->testSuites = $testSuites->asArray(); } - /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws ExpectationFailedException - */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool + public function count(): int { - // If $this->value and $other are identical, they are also equal. - // This is the most common path and will allow us to skip - // initialization of all the comparators. - if ($this->value === $other) { - return \true; - } - $comparatorFactory = ComparatorFactory::getInstance(); - try { - $comparator = $comparatorFactory->getComparatorFor($this->value, $other); - $comparator->assertEquals($this->value, $other, $this->delta); - } catch (ComparisonFailure $f) { - if ($returnResult) { - return \false; - } - throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); - } - return \true; + return iterator_count($this); } - /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function toString() : string + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->testSuites); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\TestSuite + { + return $this->testSuites[$this->position]; + } + public function next(): void { - return sprintf('is equal to %s with delta <%F>>', $this->exporter()->export($this->value), $this->delta); + $this->position++; } } className = $className; - } + private $path; /** - * Returns a string representation of the constraint. + * @var string */ - public function toString() : string - { - return sprintf('exception of type "%s"', $this->className); - } + private $phpVersion; /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @var VersionComparisonOperator */ - protected function matches($other) : bool + private $phpVersionOperator; + public function __construct(string $path, string $phpVersion, VersionComparisonOperator $phpVersionOperator) { - return $other instanceof $this->className; + $this->path = $path; + $this->phpVersion = $phpVersion; + $this->phpVersionOperator = $phpVersionOperator; } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function path(): string { - if ($other !== null) { - $message = ''; - if ($other instanceof Throwable) { - $message = '. Message was: "' . $other->getMessage() . '" at' . "\n" . Filter::getFilteredStacktrace($other); - } - return sprintf('exception of type "%s" matches expected exception "%s"%s', get_class($other), $this->className, $message); - } - return sprintf('exception of type "%s" is thrown', $this->className); + return $this->path; + } + public function phpVersion(): string + { + return $this->phpVersion; + } + public function phpVersionOperator(): VersionComparisonOperator + { + return $this->phpVersionOperator; } } */ -final class ExceptionCode extends \PHPUnit\Framework\Constraint\Constraint +final class TestDirectoryCollectionIterator implements Countable, Iterator { /** - * @var int|string + * @var TestDirectory[] */ - private $expectedCode; + private $directories; /** - * @param int|string $expected + * @var int */ - public function __construct($expected) + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection $directories) { - $this->expectedCode = $expected; + $this->directories = $directories->asArray(); } - public function toString() : string + public function count(): int { - return 'exception code is '; + return iterator_count($this); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param Throwable $other - */ - protected function matches($other) : bool + public function rewind(): void { - return (string) $other->getCode() === (string) $this->expectedCode; + $this->position = 0; } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - protected function failureDescription($other) : string + public function valid(): bool { - return sprintf('%s is equal to expected exception code %s', $this->exporter()->export($other->getCode()), $this->exporter()->export($this->expectedCode)); + return $this->position < count($this->directories); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\TestDirectory + { + return $this->directories[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class ExceptionMessage extends \PHPUnit\Framework\Constraint\Constraint +final class TestDirectoryCollection implements Countable, IteratorAggregate { /** - * @var string + * @var TestDirectory[] */ - private $expectedMessage; - public function __construct(string $expected) + private $directories; + /** + * @param TestDirectory[] $directories + */ + public static function fromArray(array $directories): self { - $this->expectedMessage = $expected; + return new self(...$directories); } - public function toString() : string + private function __construct(\PHPUnit\TextUI\XmlConfiguration\TestDirectory ...$directories) { - if ($this->expectedMessage === '') { - return 'exception message is empty'; - } - return 'exception message contains '; + $this->directories = $directories; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param Throwable $other + * @return TestDirectory[] */ - protected function matches($other) : bool + public function asArray(): array { - if ($this->expectedMessage === '') { - return $other->getMessage() === ''; - } - return strpos((string) $other->getMessage(), $this->expectedMessage) !== \false; + return $this->directories; } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function count(): int { - if ($this->expectedMessage === '') { - return sprintf("exception message is empty but is '%s'", $other->getMessage()); - } - return sprintf("exception message '%s' contains '%s'", $other->getMessage(), $this->expectedMessage); + return count($this->directories); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollectionIterator($this); + } + public function isEmpty(): bool + { + return $this->count() === 0; } } expectedMessageRegExp = $expected; - } - public function toString() : string - { - return 'exception message matches '; - } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param \PHPUnit\Framework\Exception $other - * - * @throws \PHPUnit\Framework\Exception - * @throws Exception - */ - protected function matches($other) : bool + private $path; + public function __construct(string $path) { - $match = RegularExpressionUtil::safeMatch($this->expectedMessageRegExp, $other->getMessage()); - if ($match === \false) { - throw new \PHPUnit\Framework\Exception("Invalid expected exception message regex given: '{$this->expectedMessageRegExp}'"); - } - return $match === 1; + $this->path = $path; } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function path(): string { - return sprintf("exception message '%s' matches '%s'", $other->getMessage(), $this->expectedMessageRegExp); + return $this->path; } } path = $path; + } + public function path(): string { - return sprintf('directory "%s" exists', $other); + return $this->path; } } */ -final class FileExists extends \PHPUnit\Framework\Constraint\Constraint +final class FileCollectionIterator implements Countable, Iterator { /** - * Returns a string representation of the constraint. + * @var File[] */ - public function toString() : string - { - return 'file exists'; - } + private $files; /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @var int */ - protected function matches($other) : bool + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\FileCollection $files) { - return file_exists($other); + $this->files = $files->asArray(); } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function count(): int { - return sprintf('file "%s" exists', $other); + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->files); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\File + { + return $this->files[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class IsReadable extends \PHPUnit\Framework\Constraint\Constraint +final class FileCollection implements Countable, IteratorAggregate { /** - * Returns a string representation of the constraint. + * @var File[] */ - public function toString() : string - { - return 'is readable'; - } + private $files; /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @param File[] $files */ - protected function matches($other) : bool + public static function fromArray(array $files): self { - return is_readable($other); + return new self(...$files); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\File ...$files) + { + $this->files = $files; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object + * @return File[] */ - protected function failureDescription($other) : string + public function asArray(): array { - return sprintf('"%s" is readable', $other); + return $this->files; + } + public function count(): int + { + return count($this->files); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\FileCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\FileCollectionIterator($this); + } + public function isEmpty(): bool + { + return $this->count() === 0; } } */ -final class IsWritable extends \PHPUnit\Framework\Constraint\Constraint +final class DirectoryCollectionIterator implements Countable, Iterator { /** - * Returns a string representation of the constraint. + * @var Directory[] */ - public function toString() : string - { - return 'is writable'; - } + private $directories; /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @var int */ - protected function matches($other) : bool + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection $directories) { - return is_writable($other); + $this->directories = $directories->asArray(); } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function count(): int { - return sprintf('"%s" is writable', $other); + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->directories); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\Directory + { + return $this->directories[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class IsAnything extends \PHPUnit\Framework\Constraint\Constraint +final class DirectoryCollection implements Countable, IteratorAggregate { /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws ExpectationFailedException + * @var Directory[] */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool - { - return $returnResult ? \true : null; - } + private $directories; /** - * Returns a string representation of the constraint. + * @param Directory[] $directories */ - public function toString() : string + public static function fromArray(array $directories): self { - return 'is anything'; + return new self(...$directories); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\Directory ...$directories) + { + $this->directories = $directories; } /** - * Counts the number of constraint elements. + * @return Directory[] */ - public function count() : int + public function asArray(): array { - return 0; + return $this->directories; + } + public function count(): int + { + return count($this->directories); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\DirectoryCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\DirectoryCollectionIterator($this); + } + public function isEmpty(): bool + { + return $this->count() === 0; } } value = $value; - } + private $filename; /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @var ValidationResult */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool - { - $success = $this->value === $other; - if ($returnResult) { - return $success; - } - if (!$success) { - $f = null; - // if both values are strings, make sure a diff is generated - if (is_string($this->value) && is_string($other)) { - $f = new ComparisonFailure($this->value, $other, sprintf("'%s'", $this->value), sprintf("'%s'", $other)); - } - // if both values are array, make sure a diff is generated - if (is_array($this->value) && is_array($other)) { - $f = new ComparisonFailure($this->value, $other, $this->exporter()->export($this->value), $this->exporter()->export($other)); - } - $this->fail($other, $description, $f); - } - return null; - } + private $validationResult; /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var ExtensionCollection */ - public function toString() : string - { - if (is_object($this->value)) { - return 'is identical to an object of class "' . get_class($this->value) . '"'; - } - return 'is identical to ' . $this->exporter()->export($this->value); - } + private $extensions; /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var CodeCoverage + */ + private $codeCoverage; + /** + * @var Groups */ - protected function failureDescription($other) : string + private $groups; + /** + * @var Groups + */ + private $testdoxGroups; + /** + * @var ExtensionCollection + */ + private $listeners; + /** + * @var Logging + */ + private $logging; + /** + * @var Php + */ + private $php; + /** + * @var PHPUnit + */ + private $phpunit; + /** + * @var TestSuiteCollection + */ + private $testSuite; + public function __construct(string $filename, ValidationResult $validationResult, \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection $extensions, CodeCoverage $codeCoverage, \PHPUnit\TextUI\XmlConfiguration\Groups $groups, \PHPUnit\TextUI\XmlConfiguration\Groups $testdoxGroups, \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection $listeners, Logging $logging, \PHPUnit\TextUI\XmlConfiguration\Php $php, \PHPUnit\TextUI\XmlConfiguration\PHPUnit $phpunit, \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection $testSuite) { - if (is_object($this->value) && is_object($other)) { - return 'two variables reference the same object'; - } - if (is_string($this->value) && is_string($other)) { - return 'two strings are identical'; - } - if (is_array($this->value) && is_array($other)) { - return 'two arrays are identical'; - } - return parent::failureDescription($other); + $this->filename = $filename; + $this->validationResult = $validationResult; + $this->extensions = $extensions; + $this->codeCoverage = $codeCoverage; + $this->groups = $groups; + $this->testdoxGroups = $testdoxGroups; + $this->listeners = $listeners; + $this->logging = $logging; + $this->php = $php; + $this->phpunit = $phpunit; + $this->testSuite = $testSuite; + } + public function filename(): string + { + return $this->filename; + } + public function hasValidationErrors(): bool + { + return $this->validationResult->hasValidationErrors(); + } + public function validationErrors(): string + { + return $this->validationResult->asString(); + } + public function extensions(): \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection + { + return $this->extensions; + } + public function codeCoverage(): CodeCoverage + { + return $this->codeCoverage; + } + public function groups(): \PHPUnit\TextUI\XmlConfiguration\Groups + { + return $this->groups; + } + public function testdoxGroups(): \PHPUnit\TextUI\XmlConfiguration\Groups + { + return $this->testdoxGroups; + } + public function listeners(): \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection + { + return $this->listeners; + } + public function logging(): Logging + { + return $this->logging; + } + public function php(): \PHPUnit\TextUI\XmlConfiguration\Php + { + return $this->php; + } + public function phpunit(): \PHPUnit\TextUI\XmlConfiguration\PHPUnit + { + return $this->phpunit; + } + public function testSuite(): \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection + { + return $this->testSuite; } } value = $value; - } + private $name; /** - * Returns a string representation of the object. + * @var mixed */ - public function toString() : string + private $value; + public function __construct(string $name, $value) { - return sprintf('matches JSON string "%s"', $this->value); + $this->name = $name; + $this->value = $value; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * This method can be overridden to implement the evaluation algorithm. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function name(): string { - [$error, $recodedOther] = Json::canonicalize($other); - if ($error) { - return \false; - } - [$error, $recodedValue] = Json::canonicalize($this->value); - if ($error) { - return \false; - } - return $recodedOther == $recodedValue; + return $this->name; } - /** - * Throws an exception for the given compared value and test description. - * - * @param mixed $other evaluated value or object - * @param string $description Additional information about the test - * @param ComparisonFailure $comparisonFailure - * - * @throws \PHPUnit\Framework\Exception - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * - * @psalm-return never-return - */ - protected function fail($other, $description, ComparisonFailure $comparisonFailure = null) : void + public function value() { - if ($comparisonFailure === null) { - [$error, $recodedOther] = Json::canonicalize($other); - if ($error) { - parent::fail($other, $description); - } - [$error, $recodedValue] = Json::canonicalize($this->value); - if ($error) { - parent::fail($other, $description); - } - $comparisonFailure = new ComparisonFailure(json_decode($this->value), json_decode($other), Json::prettify($recodedValue), Json::prettify($recodedOther), \false, 'Failed asserting that two json values are equal.'); - } - parent::fail($other, $description, $comparisonFailure); + return $this->value; } } handleIncludePaths($configuration->includePaths()); + $this->handleIniSettings($configuration->iniSettings()); + $this->handleConstants($configuration->constants()); + $this->handleGlobalVariables($configuration->globalVariables()); + $this->handleServerVariables($configuration->serverVariables()); + $this->handleEnvVariables($configuration->envVariables()); + $this->handleVariables('_POST', $configuration->postVariables()); + $this->handleVariables('_GET', $configuration->getVariables()); + $this->handleVariables('_COOKIE', $configuration->cookieVariables()); + $this->handleVariables('_FILES', $configuration->filesVariables()); + $this->handleVariables('_REQUEST', $configuration->requestVariables()); + } + private function handleIncludePaths(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection $includePaths): void + { + if (!$includePaths->isEmpty()) { + $includePathsAsStrings = []; + foreach ($includePaths as $includePath) { + $includePathsAsStrings[] = $includePath->path(); + } + ini_set('include_path', implode(PATH_SEPARATOR, $includePathsAsStrings) . PATH_SEPARATOR . ini_get('include_path')); + } + } + private function handleIniSettings(\PHPUnit\TextUI\XmlConfiguration\IniSettingCollection $iniSettings): void + { + foreach ($iniSettings as $iniSetting) { + $value = $iniSetting->value(); + if (defined($value)) { + $value = (string) constant($value); + } + ini_set($iniSetting->name(), $value); + } + } + private function handleConstants(\PHPUnit\TextUI\XmlConfiguration\ConstantCollection $constants): void + { + foreach ($constants as $constant) { + if (!defined($constant->name())) { + define($constant->name(), $constant->value()); + } } } - /** - * Translates a given type to a human readable message prefix. - */ - public static function translateTypeToPrefix(string $type) : string + private function handleGlobalVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables): void { - switch (strtolower($type)) { - case 'expected': - $prefix = 'Expected value JSON decode error - '; - break; - case 'actual': - $prefix = 'Actual value JSON decode error - '; - break; - default: - $prefix = ''; - break; + foreach ($variables as $variable) { + $GLOBALS[$variable->name()] = $variable->value(); } - return $prefix; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function is_finite; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class IsFinite extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + private function handleServerVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables): void { - return 'is finite'; + foreach ($variables as $variable) { + $_SERVER[$variable->name()] = $variable->value(); + } } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + private function handleVariables(string $target, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables): void { - return is_finite($other); + foreach ($variables as $variable) { + $GLOBALS[$target][$variable->name()] = $variable->value(); + } + } + private function handleEnvVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables): void + { + foreach ($variables as $variable) { + $name = $variable->name(); + $value = $variable->value(); + $force = $variable->force(); + if ($force || getenv($name) === \false) { + putenv("{$name}={$value}"); + } + $value = getenv($name); + if ($force || !isset($_ENV[$name])) { + $_ENV[$name] = $value; + } + } } } name = $name; + $this->value = $value; + $this->force = $force; + } + public function name(): string + { + return $this->name; + } + public function value() + { + return $this->value; + } + public function force(): bool + { + return $this->force; } } */ -final class IsNan extends \PHPUnit\Framework\Constraint\Constraint +final class VariableCollection implements Countable, IteratorAggregate { /** - * Returns a string representation of the constraint. + * @var Variable[] + */ + private $variables; + /** + * @param Variable[] $variables */ - public function toString() : string + public static function fromArray(array $variables): self { - return 'is nan'; + return new self(...$variables); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\Variable ...$variables) + { + $this->variables = $variables; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @return Variable[] */ - protected function matches($other) : bool + public function asArray(): array { - return is_nan($other); + return $this->variables; + } + public function count(): int + { + return count($this->variables); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\VariableCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\VariableCollectionIterator($this); } } */ -class ClassHasAttribute extends \PHPUnit\Framework\Constraint\Constraint +final class VariableCollectionIterator implements Countable, Iterator { /** - * @var string + * @var Variable[] */ - private $attributeName; - public function __construct(string $attributeName) - { - $this->attributeName = $attributeName; - } + private $variables; /** - * Returns a string representation of the constraint. + * @var int */ - public function toString() : string + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables) { - return sprintf('has attribute "%s"', $this->attributeName); + $this->variables = $variables->asArray(); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function count(): int { - try { - return (new ReflectionClass($other))->hasProperty($this->attributeName); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd + return iterator_count($this); } - /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - */ - protected function failureDescription($other) : string + public function rewind(): void { - return sprintf('%sclass "%s" %s', is_object($other) ? 'object of ' : '', is_object($other) ? get_class($other) : $other, $this->toString()); + $this->position = 0; } - protected function attributeName() : string + public function valid(): bool { - return $this->attributeName; + return $this->position < count($this->variables); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\Variable + { + return $this->variables[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class ClassHasStaticAttribute extends \PHPUnit\Framework\Constraint\ClassHasAttribute +final class ConstantCollection implements Countable, IteratorAggregate { /** - * Returns a string representation of the constraint. + * @var Constant[] + */ + private $constants; + /** + * @param Constant[] $constants */ - public function toString() : string + public static function fromArray(array $constants): self { - return sprintf('has static attribute "%s"', $this->attributeName()); + return new self(...$constants); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\Constant ...$constants) + { + $this->constants = $constants; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @return Constant[] */ - protected function matches($other) : bool + public function asArray(): array { - try { - $class = new ReflectionClass($other); - if ($class->hasProperty($this->attributeName())) { - return $class->getProperty($this->attributeName())->isStatic(); - } - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - return \false; + return $this->constants; + } + public function count(): int + { + return count($this->constants); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\ConstantCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\ConstantCollectionIterator($this); } } */ -final class ObjectEquals extends \PHPUnit\Framework\Constraint\Constraint +final class IniSettingCollection implements Countable, IteratorAggregate { /** - * @var object + * @var IniSetting[] */ - private $expected; + private $iniSettings; /** - * @var string + * @param IniSetting[] $iniSettings */ - private $method; - public function __construct(object $object, string $method = 'equals') + public static function fromArray(array $iniSettings): self { - $this->expected = $object; - $this->method = $method; + return new self(...$iniSettings); } - public function toString() : string + private function __construct(\PHPUnit\TextUI\XmlConfiguration\IniSetting ...$iniSettings) { - return 'two objects are equal'; + $this->iniSettings = $iniSettings; } /** - * @throws ActualValueIsNotAnObjectException - * @throws ComparisonMethodDoesNotAcceptParameterTypeException - * @throws ComparisonMethodDoesNotDeclareBoolReturnTypeException - * @throws ComparisonMethodDoesNotDeclareExactlyOneParameterException - * @throws ComparisonMethodDoesNotDeclareParameterTypeException - * @throws ComparisonMethodDoesNotExistException + * @return IniSetting[] */ - protected function matches($other) : bool + public function asArray(): array { - if (!is_object($other)) { - throw new ActualValueIsNotAnObjectException(); - } - $object = new ReflectionObject($other); - if (!$object->hasMethod($this->method)) { - throw new ComparisonMethodDoesNotExistException(get_class($other), $this->method); - } - /** @noinspection PhpUnhandledExceptionInspection */ - $method = $object->getMethod($this->method); - if (!$method->hasReturnType()) { - throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); - } - $returnType = $method->getReturnType(); - if (!$returnType instanceof ReflectionNamedType) { - throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); - } - if ($returnType->allowsNull()) { - throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); - } - if ($returnType->getName() !== 'bool') { - throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); - } - if ($method->getNumberOfParameters() !== 1 || $method->getNumberOfRequiredParameters() !== 1) { - throw new ComparisonMethodDoesNotDeclareExactlyOneParameterException(get_class($other), $this->method); - } - $parameter = $method->getParameters()[0]; - if (!$parameter->hasType()) { - throw new ComparisonMethodDoesNotDeclareParameterTypeException(get_class($other), $this->method); - } - $type = $parameter->getType(); - if (!$type instanceof ReflectionNamedType) { - throw new ComparisonMethodDoesNotDeclareParameterTypeException(get_class($other), $this->method); - } - $typeName = $type->getName(); - if ($typeName === 'self') { - $typeName = get_class($other); - } - if (!$this->expected instanceof $typeName) { - throw new ComparisonMethodDoesNotAcceptParameterTypeException(get_class($other), $this->method, get_class($this->expected)); - } - return $other->{$this->method}($this->expected); + return $this->iniSettings; } - protected function failureDescription($other) : string + public function count(): int { - return $this->toString(); + return count($this->iniSettings); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\IniSettingCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\IniSettingCollectionIterator($this); } } */ -final class ObjectHasAttribute extends \PHPUnit\Framework\Constraint\ClassHasAttribute +final class ConstantCollectionIterator implements Countable, Iterator { /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @var Constant[] */ - protected function matches($other) : bool + private $constants; + /** + * @var int + */ + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\ConstantCollection $constants) { - return (new ReflectionObject($other))->hasProperty($this->attributeName()); + $this->constants = $constants->asArray(); + } + public function count(): int + { + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->constants); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\Constant + { + return $this->constants[$this->position]; + } + public function next(): void + { + $this->position++; } } constraints = $constraints; - return $constraint; - } + private $includePaths; /** - * @param mixed[] $constraints + * @var IniSettingCollection */ - public function setConstraints(array $constraints) : void - { - $this->constraints = array_map(function ($constraint) : \PHPUnit\Framework\Constraint\Constraint { - return $this->checkConstraint($constraint); - }, array_values($constraints)); - } + private $iniSettings; /** - * Returns the number of operands (constraints). + * @var ConstantCollection */ - public final function arity() : int - { - return count($this->constraints); - } + private $constants; /** - * Returns a string representation of the constraint. + * @var VariableCollection */ - public function toString() : string - { - $reduced = $this->reduce(); - if ($reduced !== $this) { - return $reduced->toString(); - } - $text = ''; - foreach ($this->constraints as $key => $constraint) { - $constraint = $constraint->reduce(); - $text .= $this->constraintToString($constraint, $key); - } - return $text; - } + private $globalVariables; /** - * Counts the number of constraint elements. + * @var VariableCollection + */ + private $envVariables; + /** + * @var VariableCollection */ - public function count() : int + private $postVariables; + /** + * @var VariableCollection + */ + private $getVariables; + /** + * @var VariableCollection + */ + private $cookieVariables; + /** + * @var VariableCollection + */ + private $serverVariables; + /** + * @var VariableCollection + */ + private $filesVariables; + /** + * @var VariableCollection + */ + private $requestVariables; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection $includePaths, \PHPUnit\TextUI\XmlConfiguration\IniSettingCollection $iniSettings, \PHPUnit\TextUI\XmlConfiguration\ConstantCollection $constants, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $globalVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $envVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $postVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $getVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $cookieVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $serverVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $filesVariables, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $requestVariables) + { + $this->includePaths = $includePaths; + $this->iniSettings = $iniSettings; + $this->constants = $constants; + $this->globalVariables = $globalVariables; + $this->envVariables = $envVariables; + $this->postVariables = $postVariables; + $this->getVariables = $getVariables; + $this->cookieVariables = $cookieVariables; + $this->serverVariables = $serverVariables; + $this->filesVariables = $filesVariables; + $this->requestVariables = $requestVariables; + } + public function includePaths(): \PHPUnit\TextUI\XmlConfiguration\DirectoryCollection + { + return $this->includePaths; + } + public function iniSettings(): \PHPUnit\TextUI\XmlConfiguration\IniSettingCollection + { + return $this->iniSettings; + } + public function constants(): \PHPUnit\TextUI\XmlConfiguration\ConstantCollection + { + return $this->constants; + } + public function globalVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->globalVariables; + } + public function envVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->envVariables; + } + public function postVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->postVariables; + } + public function getVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->getVariables; + } + public function cookieVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->cookieVariables; + } + public function serverVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->serverVariables; + } + public function filesVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection + { + return $this->filesVariables; + } + public function requestVariables(): \PHPUnit\TextUI\XmlConfiguration\VariableCollection { - $count = 0; - foreach ($this->constraints as $constraint) { - $count += count($constraint); - } - return $count; + return $this->requestVariables; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\XmlConfiguration; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @psalm-immutable + */ +final class IniSetting +{ /** - * Returns the nested constraints. + * @var string */ - protected final function constraints() : array - { - return $this->constraints; - } + private $name; /** - * Returns true if the $constraint needs to be wrapped with braces. + * @var string */ - protected final function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint) : bool + private $value; + public function __construct(string $name, string $value) { - return $this->arity() > 1 && parent::constraintNeedsParentheses($constraint); + $this->name = $name; + $this->value = $value; } - /** - * Reduces the sub-expression starting at $this by skipping degenerate - * sub-expression and returns first descendant constraint that starts - * a non-reducible sub-expression. - * - * See Constraint::reduce() for more. - */ - protected function reduce() : \PHPUnit\Framework\Constraint\Constraint + public function name(): string { - if ($this->arity() === 1 && $this->constraints[0] instanceof \PHPUnit\Framework\Constraint\Operator) { - return $this->constraints[0]->reduce(); - } - return parent::reduce(); + return $this->name; } - /** - * Returns string representation of given operand in context of this operator. - * - * @param Constraint $constraint operand constraint - * @param int $position position of $constraint in this expression - */ - private function constraintToString(\PHPUnit\Framework\Constraint\Constraint $constraint, int $position) : string + public function value(): string { - $prefix = ''; - if ($position > 0) { - $prefix = ' ' . $this->operator() . ' '; - } - if ($this->constraintNeedsParentheses($constraint)) { - return $prefix . '( ' . $constraint->toString() . ' )'; - } - $string = $constraint->toStringInContext($this, $position); - if ($string === '') { - $string = $constraint->toString(); - } - return $prefix . $string; + return $this->value; } } */ -final class LogicalAnd extends \PHPUnit\Framework\Constraint\BinaryOperator +final class IniSettingCollectionIterator implements Countable, Iterator { /** - * Returns the name of this operator. + * @var IniSetting[] */ - public function operator() : string - { - return 'and'; - } + private $iniSettings; /** - * Returns this operator's precedence. - * - * @see https://www.php.net/manual/en/language.operators.precedence.php + * @var int */ - public function precedence() : int + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\IniSettingCollection $iniSettings) { - return 22; + $this->iniSettings = $iniSettings->asArray(); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function count(): int { - foreach ($this->constraints() as $constraint) { - if (!$constraint->evaluate($other, '', \true)) { - return \false; - } - } - return [] !== $this->constraints(); + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->iniSettings); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\IniSetting + { + return $this->iniSettings[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -final class LogicalNot extends \PHPUnit\Framework\Constraint\UnaryOperator +final class ExtensionCollection implements IteratorAggregate { - public static function negate(string $string) : string - { - $positives = ['contains ', 'exists', 'has ', 'is ', 'are ', 'matches ', 'starts with ', 'ends with ', 'reference ', 'not not ']; - $negatives = ['does not contain ', 'does not exist', 'does not have ', 'is not ', 'are not ', 'does not match ', 'starts not with ', 'ends not with ', 'don\'t reference ', 'not ']; - preg_match('/(\'[\\w\\W]*\')([\\w\\W]*)("[\\w\\W]*")/i', $string, $matches); - $positives = array_map(static function (string $s) { - return '/\\b' . preg_quote($s, '/') . '/'; - }, $positives); - if (count($matches) > 0) { - $nonInput = $matches[2]; - $negatedString = preg_replace('/' . preg_quote($nonInput, '/') . '/', preg_replace($positives, $negatives, $nonInput), $string); - } else { - $negatedString = preg_replace($positives, $negatives, $string); - } - return $negatedString; - } /** - * Returns the name of this operator. + * @var Extension[] */ - public function operator() : string - { - return 'not'; - } + private $extensions; /** - * Returns this operator's precedence. - * - * @see https://www.php.net/manual/en/language.operators.precedence.php + * @param Extension[] $extensions */ - public function precedence() : int + public static function fromArray(array $extensions): self { - return 5; + return new self(...$extensions); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + private function __construct(\PHPUnit\TextUI\XmlConfiguration\Extension ...$extensions) { - return !$this->constraint()->evaluate($other, '', \true); + $this->extensions = $extensions; } /** - * Applies additional transformation to strings returned by toString() or - * failureDescription(). + * @return Extension[] */ - protected function transformString(string $string) : string + public function asArray(): array { - return self::negate($string); + return $this->extensions; } - /** - * Reduces the sub-expression starting at $this by skipping degenerate - * sub-expression and returns first descendant constraint that starts - * a non-reducible sub-expression. - * - * See Constraint::reduce() for more. - */ - protected function reduce() : \PHPUnit\Framework\Constraint\Constraint + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\ExtensionCollectionIterator { - $constraint = $this->constraint(); - if ($constraint instanceof self) { - return $constraint->constraint()->reduce(); - } - return parent::reduce(); + return new \PHPUnit\TextUI\XmlConfiguration\ExtensionCollectionIterator($this); } } cacheResult = $cacheResult; + $this->cacheResultFile = $cacheResultFile; + $this->columns = $columns; + $this->colors = $colors; + $this->stderr = $stderr; + $this->noInteraction = $noInteraction; + $this->verbose = $verbose; + $this->reverseDefectList = $reverseDefectList; + $this->convertDeprecationsToExceptions = $convertDeprecationsToExceptions; + $this->convertErrorsToExceptions = $convertErrorsToExceptions; + $this->convertNoticesToExceptions = $convertNoticesToExceptions; + $this->convertWarningsToExceptions = $convertWarningsToExceptions; + $this->forceCoversAnnotation = $forceCoversAnnotation; + $this->bootstrap = $bootstrap; + $this->processIsolation = $processIsolation; + $this->failOnEmptyTestSuite = $failOnEmptyTestSuite; + $this->failOnIncomplete = $failOnIncomplete; + $this->failOnRisky = $failOnRisky; + $this->failOnSkipped = $failOnSkipped; + $this->failOnWarning = $failOnWarning; + $this->stopOnDefect = $stopOnDefect; + $this->stopOnError = $stopOnError; + $this->stopOnFailure = $stopOnFailure; + $this->stopOnWarning = $stopOnWarning; + $this->stopOnIncomplete = $stopOnIncomplete; + $this->stopOnRisky = $stopOnRisky; + $this->stopOnSkipped = $stopOnSkipped; + $this->extensionsDirectory = $extensionsDirectory; + $this->testSuiteLoaderClass = $testSuiteLoaderClass; + $this->testSuiteLoaderFile = $testSuiteLoaderFile; + $this->printerClass = $printerClass; + $this->printerFile = $printerFile; + $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; + $this->beStrictAboutOutputDuringTests = $beStrictAboutOutputDuringTests; + $this->beStrictAboutResourceUsageDuringSmallTests = $beStrictAboutResourceUsageDuringSmallTests; + $this->beStrictAboutTestsThatDoNotTestAnything = $beStrictAboutTestsThatDoNotTestAnything; + $this->beStrictAboutTodoAnnotatedTests = $beStrictAboutTodoAnnotatedTests; + $this->beStrictAboutCoversAnnotation = $beStrictAboutCoversAnnotation; + $this->enforceTimeLimit = $enforceTimeLimit; + $this->defaultTimeLimit = $defaultTimeLimit; + $this->timeoutForSmallTests = $timeoutForSmallTests; + $this->timeoutForMediumTests = $timeoutForMediumTests; + $this->timeoutForLargeTests = $timeoutForLargeTests; + $this->defaultTestSuite = $defaultTestSuite; + $this->executionOrder = $executionOrder; + $this->resolveDependencies = $resolveDependencies; + $this->defectsFirst = $defectsFirst; + $this->backupGlobals = $backupGlobals; + $this->backupStaticAttributes = $backupStaticAttributes; + $this->registerMockObjectsFromTestArgumentsRecursively = $registerMockObjectsFromTestArgumentsRecursively; + $this->conflictBetweenPrinterClassAndTestdox = $conflictBetweenPrinterClassAndTestdox; + } + public function cacheResult(): bool + { + return $this->cacheResult; } /** - * Returns this operator's precedence. - * - * @see https://www.php.net/manual/en/language.operators.precedence.php + * @psalm-assert-if-true !null $this->cacheResultFile */ - public function precedence() : int + public function hasCacheResultFile(): bool { - return 24; + return $this->cacheResultFile !== null; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @throws Exception */ - public function matches($other) : bool + public function cacheResultFile(): string { - foreach ($this->constraints() as $constraint) { - if ($constraint->evaluate($other, '', \true)) { - return \true; - } + if (!$this->hasCacheResultFile()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Cache result file is not configured'); } - return \false; + return (string) $this->cacheResultFile; + } + public function columns() + { + return $this->columns; + } + public function colors(): string + { + return $this->colors; + } + public function stderr(): bool + { + return $this->stderr; + } + public function noInteraction(): bool + { + return $this->noInteraction; + } + public function verbose(): bool + { + return $this->verbose; + } + public function reverseDefectList(): bool + { + return $this->reverseDefectList; + } + public function convertDeprecationsToExceptions(): bool + { + return $this->convertDeprecationsToExceptions; + } + public function convertErrorsToExceptions(): bool + { + return $this->convertErrorsToExceptions; + } + public function convertNoticesToExceptions(): bool + { + return $this->convertNoticesToExceptions; + } + public function convertWarningsToExceptions(): bool + { + return $this->convertWarningsToExceptions; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function array_reduce; -use function array_shift; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class LogicalXor extends \PHPUnit\Framework\Constraint\BinaryOperator -{ - /** - * Returns the name of this operator. - */ - public function operator() : string + public function forceCoversAnnotation(): bool { - return 'xor'; + return $this->forceCoversAnnotation; } /** - * Returns this operator's precedence. - * - * @see https://www.php.net/manual/en/language.operators.precedence.php. + * @psalm-assert-if-true !null $this->bootstrap */ - public function precedence() : int + public function hasBootstrap(): bool { - return 23; + return $this->bootstrap !== null; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @throws Exception */ - public function matches($other) : bool + public function bootstrap(): string { - $constraints = $this->constraints(); - $initial = array_shift($constraints); - if ($initial === null) { - return \false; + if (!$this->hasBootstrap()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Bootstrap script is not configured'); } - return array_reduce($constraints, static function (bool $matches, \PHPUnit\Framework\Constraint\Constraint $constraint) use($other) : bool { - return $matches xor $constraint->evaluate($other, '', \true); - }, $initial->evaluate($other, '', \true)); + return (string) $this->bootstrap; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -abstract class Operator extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * Returns the name of this operator. - */ - public abstract function operator() : string; - /** - * Returns this operator's precedence. - * - * @see https://www.php.net/manual/en/language.operators.precedence.php - */ - public abstract function precedence() : int; - /** - * Returns the number of operands. - */ - public abstract function arity() : int; - /** - * Validates $constraint argument. - */ - protected function checkConstraint($constraint) : \PHPUnit\Framework\Constraint\Constraint + public function processIsolation(): bool { - if (!$constraint instanceof \PHPUnit\Framework\Constraint\Constraint) { - return new \PHPUnit\Framework\Constraint\IsEqual($constraint); - } - return $constraint; + return $this->processIsolation; } - /** - * Returns true if the $constraint needs to be wrapped with braces. - */ - protected function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint) : bool + public function failOnEmptyTestSuite(): bool { - return $constraint instanceof self && $constraint->arity() > 1 && $this->precedence() <= $constraint->precedence(); + return $this->failOnEmptyTestSuite; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function count; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -abstract class UnaryOperator extends \PHPUnit\Framework\Constraint\Operator -{ - /** - * @var Constraint - */ - private $constraint; - /** - * @param Constraint|mixed $constraint - */ - public function __construct($constraint) + public function failOnIncomplete(): bool { - $this->constraint = $this->checkConstraint($constraint); + return $this->failOnIncomplete; + } + public function failOnRisky(): bool + { + return $this->failOnRisky; + } + public function failOnSkipped(): bool + { + return $this->failOnSkipped; + } + public function failOnWarning(): bool + { + return $this->failOnWarning; + } + public function stopOnDefect(): bool + { + return $this->stopOnDefect; + } + public function stopOnError(): bool + { + return $this->stopOnError; + } + public function stopOnFailure(): bool + { + return $this->stopOnFailure; + } + public function stopOnWarning(): bool + { + return $this->stopOnWarning; + } + public function stopOnIncomplete(): bool + { + return $this->stopOnIncomplete; + } + public function stopOnRisky(): bool + { + return $this->stopOnRisky; + } + public function stopOnSkipped(): bool + { + return $this->stopOnSkipped; } /** - * Returns the number of operands (constraints). + * @psalm-assert-if-true !null $this->extensionsDirectory */ - public function arity() : int + public function hasExtensionsDirectory(): bool { - return 1; + return $this->extensionsDirectory !== null; } /** - * Returns a string representation of the constraint. + * @throws Exception */ - public function toString() : string + public function extensionsDirectory(): string { - $reduced = $this->reduce(); - if ($reduced !== $this) { - return $reduced->toString(); - } - $constraint = $this->constraint->reduce(); - if ($this->constraintNeedsParentheses($constraint)) { - return $this->operator() . '( ' . $constraint->toString() . ' )'; - } - $string = $constraint->toStringInContext($this, 0); - if ($string === '') { - return $this->transformString($constraint->toString()); + if (!$this->hasExtensionsDirectory()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Extensions directory is not configured'); } - return $string; + return (string) $this->extensionsDirectory; } /** - * Counts the number of constraint elements. + * @psalm-assert-if-true !null $this->testSuiteLoaderClass + * + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 */ - public function count() : int + public function hasTestSuiteLoaderClass(): bool { - return count($this->constraint); + return $this->testSuiteLoaderClass !== null; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object + * @throws Exception * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 */ - protected function failureDescription($other) : string + public function testSuiteLoaderClass(): string { - $reduced = $this->reduce(); - if ($reduced !== $this) { - return $reduced->failureDescription($other); - } - $constraint = $this->constraint->reduce(); - if ($this->constraintNeedsParentheses($constraint)) { - return $this->operator() . '( ' . $constraint->failureDescription($other) . ' )'; - } - $string = $constraint->failureDescriptionInContext($this, 0, $other); - if ($string === '') { - return $this->transformString($constraint->failureDescription($other)); + if (!$this->hasTestSuiteLoaderClass()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('TestSuiteLoader class is not configured'); } - return $string; + return (string) $this->testSuiteLoaderClass; } /** - * Transforms string returned by the memeber constraint's toString() or - * failureDescription() such that it reflects constraint's participation in - * this expression. - * - * The method may be overwritten in a subclass to apply default - * transformation in case the operand constraint does not provide its own - * custom strings via toStringInContext() or failureDescriptionInContext(). + * @psalm-assert-if-true !null $this->testSuiteLoaderFile * - * @param string $string the string to be transformed + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 */ - protected function transformString(string $string) : string + public function hasTestSuiteLoaderFile(): bool { - return $string; + return $this->testSuiteLoaderFile !== null; } /** - * Provides access to $this->constraint for subclasses. + * @throws Exception + * + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 */ - protected final function constraint() : \PHPUnit\Framework\Constraint\Constraint + public function testSuiteLoaderFile(): string { - return $this->constraint; + if (!$this->hasTestSuiteLoaderFile()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('TestSuiteLoader sourcecode file is not configured'); + } + return (string) $this->testSuiteLoaderFile; } /** - * Returns true if the $constraint needs to be wrapped with parentheses. + * @psalm-assert-if-true !null $this->printerClass */ - protected function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint) : bool + public function hasPrinterClass(): bool { - $constraint = $constraint->reduce(); - return $constraint instanceof self || parent::constraintNeedsParentheses($constraint); + return $this->printerClass !== null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function json_decode; -use function json_last_error; -use function sprintf; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class IsJson extends \PHPUnit\Framework\Constraint\Constraint -{ /** - * Returns a string representation of the constraint. + * @throws Exception */ - public function toString() : string + public function printerClass(): string { - return 'is valid JSON'; + if (!$this->hasPrinterClass()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('ResultPrinter class is not configured'); + } + return (string) $this->printerClass; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @psalm-assert-if-true !null $this->printerFile */ - protected function matches($other) : bool + public function hasPrinterFile(): bool { - if ($other === '') { - return \false; - } - json_decode($other); - if (json_last_error()) { - return \false; - } - return \true; + return $this->printerFile !== null; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - protected function failureDescription($other) : string + public function printerFile(): string { - if ($other === '') { - return 'an empty string is valid JSON'; + if (!$this->hasPrinterFile()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('ResultPrinter sourcecode file is not configured'); } - json_decode($other); - $error = (string) \PHPUnit\Framework\Constraint\JsonMatchesErrorMessageProvider::determineJsonError((string) json_last_error()); - return sprintf('%s is valid JSON (%s)', $this->exporter()->shortenedExport($other), $error); + return (string) $this->printerFile; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function preg_match; -use function sprintf; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -class RegularExpression extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * @var string - */ - private $pattern; - public function __construct(string $pattern) + public function beStrictAboutChangesToGlobalState(): bool { - $this->pattern = $pattern; + return $this->beStrictAboutChangesToGlobalState; } - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + public function beStrictAboutOutputDuringTests(): bool { - return sprintf('matches PCRE pattern "%s"', $this->pattern); + return $this->beStrictAboutOutputDuringTests; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function beStrictAboutResourceUsageDuringSmallTests(): bool { - return preg_match($this->pattern, $other) > 0; + return $this->beStrictAboutResourceUsageDuringSmallTests; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function mb_stripos; -use function mb_strtolower; -use function sprintf; -use function strpos; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class StringContains extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * @var string - */ - private $string; - /** - * @var bool - */ - private $ignoreCase; - public function __construct(string $string, bool $ignoreCase = \false) + public function beStrictAboutTestsThatDoNotTestAnything(): bool { - $this->string = $string; - $this->ignoreCase = $ignoreCase; + return $this->beStrictAboutTestsThatDoNotTestAnything; } - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + public function beStrictAboutTodoAnnotatedTests(): bool { - if ($this->ignoreCase) { - $string = mb_strtolower($this->string, 'UTF-8'); - } else { - $string = $this->string; - } - return sprintf('contains "%s"', $string); + return $this->beStrictAboutTodoAnnotatedTests; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function beStrictAboutCoversAnnotation(): bool { - if ('' === $this->string) { - return \true; - } - if ($this->ignoreCase) { - /* - * We must use the multi byte safe version so we can accurately compare non latin upper characters with - * their lowercase equivalents. - */ - return mb_stripos($other, $this->string, 0, 'UTF-8') !== \false; - } - /* - * Use the non multi byte safe functions to see if the string is contained in $other. - * - * This function is very fast and we don't care about the character position in the string. - * - * Additionally, we want this method to be binary safe so we can check if some binary data is in other binary - * data. - */ - return strpos($other, $this->string) !== \false; + return $this->beStrictAboutCoversAnnotation; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function strlen; -use function substr; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class StringEndsWith extends \PHPUnit\Framework\Constraint\Constraint -{ - /** - * @var string - */ - private $suffix; - public function __construct(string $suffix) + public function enforceTimeLimit(): bool { - $this->suffix = $suffix; + return $this->enforceTimeLimit; } - /** - * Returns a string representation of the constraint. - */ - public function toString() : string + public function defaultTimeLimit(): int { - return 'ends with "' . $this->suffix . '"'; + return $this->defaultTimeLimit; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function timeoutForSmallTests(): int { - return substr($other, 0 - strlen($this->suffix)) === $this->suffix; + return $this->timeoutForSmallTests; + } + public function timeoutForMediumTests(): int + { + return $this->timeoutForMediumTests; + } + public function timeoutForLargeTests(): int + { + return $this->timeoutForLargeTests; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use const DIRECTORY_SEPARATOR; -use function explode; -use function implode; -use function preg_match; -use function preg_quote; -use function preg_replace; -use function strtr; -use PHPUnit\SebastianBergmann\Diff\Differ; -use PHPUnit\SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class StringMatchesFormatDescription extends \PHPUnit\Framework\Constraint\RegularExpression -{ /** - * @var string + * @psalm-assert-if-true !null $this->defaultTestSuite */ - private $string; - public function __construct(string $string) + public function hasDefaultTestSuite(): bool { - parent::__construct($this->createPatternFromFormat($this->convertNewlines($string))); - $this->string = $string; + return $this->defaultTestSuite !== null; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @throws Exception */ - protected function matches($other) : bool + public function defaultTestSuite(): string { - return parent::matches($this->convertNewlines($other)); + if (!$this->hasDefaultTestSuite()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Default test suite is not configured'); + } + return (string) $this->defaultTestSuite; } - protected function failureDescription($other) : string + public function executionOrder(): int { - return 'string matches format description'; + return $this->executionOrder; } - protected function additionalFailureDescription($other) : string + public function resolveDependencies(): bool { - $from = explode("\n", $this->string); - $to = explode("\n", $this->convertNewlines($other)); - foreach ($from as $index => $line) { - if (isset($to[$index]) && $line !== $to[$index]) { - $line = $this->createPatternFromFormat($line); - if (preg_match($line, $to[$index]) > 0) { - $from[$index] = $to[$index]; - } - } - } - $this->string = implode("\n", $from); - $other = implode("\n", $to); - return (new Differ(new UnifiedDiffOutputBuilder("--- Expected\n+++ Actual\n")))->diff($this->string, $other); + return $this->resolveDependencies; + } + public function defectsFirst(): bool + { + return $this->defectsFirst; + } + public function backupGlobals(): bool + { + return $this->backupGlobals; + } + public function backupStaticAttributes(): bool + { + return $this->backupStaticAttributes; } - private function createPatternFromFormat(string $string) : string + public function registerMockObjectsFromTestArgumentsRecursively(): bool { - $string = strtr(preg_quote($string, '/'), ['%%' => '%', '%e' => '\\' . DIRECTORY_SEPARATOR, '%s' => '[^\\r\\n]+', '%S' => '[^\\r\\n]*', '%a' => '.+', '%A' => '.*', '%w' => '\\s*', '%i' => '[+-]?\\d+', '%d' => '\\d+', '%x' => '[0-9a-fA-F]+', '%f' => '[+-]?\\.?\\d+\\.?\\d*(?:[Ee][+-]?\\d+)?', '%c' => '.']); - return '/^' . $string . '$/s'; + return $this->registerMockObjectsFromTestArgumentsRecursively; } - private function convertNewlines(string $text) : string + public function conflictBetweenPrinterClassAndTestdox(): bool { - return preg_replace('/\\r\\n/', "\n", $text); + return $this->conflictBetweenPrinterClassAndTestdox; } } */ -final class StringStartsWith extends \PHPUnit\Framework\Constraint\Constraint +final class ExtensionCollectionIterator implements Countable, Iterator { /** - * @var string + * @var Extension[] */ - private $prefix; - public function __construct(string $prefix) - { - if (strlen($prefix) === 0) { - throw InvalidArgumentException::create(1, 'non-empty string'); - } - $this->prefix = $prefix; - } + private $extensions; /** - * Returns a string representation of the constraint. + * @var int */ - public function toString() : string + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\ExtensionCollection $extensions) { - return 'starts with "' . $this->prefix . '"'; + $this->extensions = $extensions->asArray(); } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function count(): int { - return strpos((string) $other, $this->prefix) === 0; + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->extensions); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\Extension + { + return $this->extensions[$this->position]; + } + public function next(): void + { + $this->position++; } } key = $key; - } + private $sourceFile; /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var array */ - public function toString() : string - { - return 'has the key ' . $this->exporter()->export($this->key); - } + private $arguments; /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @psalm-param class-string $className */ - protected function matches($other) : bool + public function __construct(string $className, string $sourceFile, array $arguments) { - if (is_array($other)) { - return array_key_exists($this->key, $other); - } - if ($other instanceof ArrayAccess) { - return $other->offsetExists($this->key); - } - return \false; + $this->className = $className; + $this->sourceFile = $sourceFile; + $this->arguments = $arguments; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @psalm-return class-string */ - protected function failureDescription($other) : string + public function className(): string { - return 'an array ' . $this->toString(); + return $this->className; + } + public function hasSourceFile(): bool + { + return $this->sourceFile !== ''; + } + public function sourceFile(): string + { + return $this->sourceFile; + } + public function hasArguments(): bool + { + return !empty($this->arguments); + } + public function arguments(): array + { + return $this->arguments; } } value = $value; + $this->cacheDirectory = $cacheDirectory; + $this->directories = $directories; + $this->files = $files; + $this->excludeDirectories = $excludeDirectories; + $this->excludeFiles = $excludeFiles; + $this->pathCoverage = $pathCoverage; + $this->includeUncoveredFiles = $includeUncoveredFiles; + $this->processUncoveredFiles = $processUncoveredFiles; + $this->ignoreDeprecatedCodeUnits = $ignoreDeprecatedCodeUnits; + $this->disableCodeCoverageIgnore = $disableCodeCoverageIgnore; + $this->clover = $clover; + $this->cobertura = $cobertura; + $this->crap4j = $crap4j; + $this->html = $html; + $this->php = $php; + $this->text = $text; + $this->xml = $xml; } /** - * Returns a string representation of the constraint. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @psalm-assert-if-true !null $this->cacheDirectory */ - public function toString() : string + public function hasCacheDirectory(): bool { - return 'contains ' . $this->exporter()->export($this->value); + return $this->cacheDirectory !== null; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - protected function failureDescription($other) : string + public function cacheDirectory(): Directory { - return sprintf('%s %s', is_array($other) ? 'an array' : 'a traversable', $this->toString()); + if (!$this->hasCacheDirectory()) { + throw new Exception('No cache directory has been configured'); + } + return $this->cacheDirectory; } - protected function value() + public function hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport(): bool { - return $this->value; + return count($this->directories) > 0 || count($this->files) > 0; + } + public function directories(): DirectoryCollection + { + return $this->directories; + } + public function files(): FileCollection + { + return $this->files; + } + public function excludeDirectories(): DirectoryCollection + { + return $this->excludeDirectories; + } + public function excludeFiles(): FileCollection + { + return $this->excludeFiles; + } + public function pathCoverage(): bool + { + return $this->pathCoverage; + } + public function includeUncoveredFiles(): bool + { + return $this->includeUncoveredFiles; + } + public function ignoreDeprecatedCodeUnits(): bool + { + return $this->ignoreDeprecatedCodeUnits; + } + public function disableCodeCoverageIgnore(): bool + { + return $this->disableCodeCoverageIgnore; + } + public function processUncoveredFiles(): bool + { + return $this->processUncoveredFiles; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use SplObjectStorage; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class TraversableContainsEqual extends \PHPUnit\Framework\Constraint\TraversableContains -{ /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @psalm-assert-if-true !null $this->clover */ - protected function matches($other) : bool + public function hasClover(): bool { - if ($other instanceof SplObjectStorage) { - return $other->contains($this->value()); - } - foreach ($other as $element) { - /* @noinspection TypeUnsafeComparisonInspection */ - if ($this->value() == $element) { - return \true; - } - } - return \false; + return $this->clover !== null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use SplObjectStorage; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class TraversableContainsIdentical extends \PHPUnit\Framework\Constraint\TraversableContains -{ /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @throws Exception */ - protected function matches($other) : bool + public function clover(): Clover { - if ($other instanceof SplObjectStorage) { - return $other->contains($this->value()); - } - foreach ($other as $element) { - if ($this->value() === $element) { - return \true; - } + if (!$this->hasClover()) { + throw new Exception('Code Coverage report "Clover XML" has not been configured'); } - return \false; + return $this->clover; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use PHPUnit\Framework\ExpectationFailedException; -use Traversable; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class TraversableContainsOnly extends \PHPUnit\Framework\Constraint\Constraint -{ /** - * @var Constraint + * @psalm-assert-if-true !null $this->cobertura */ - private $constraint; + public function hasCobertura(): bool + { + return $this->cobertura !== null; + } /** - * @var string + * @throws Exception */ - private $type; + public function cobertura(): Cobertura + { + if (!$this->hasCobertura()) { + throw new Exception('Code Coverage report "Cobertura XML" has not been configured'); + } + return $this->cobertura; + } /** - * @throws \PHPUnit\Framework\Exception + * @psalm-assert-if-true !null $this->crap4j */ - public function __construct(string $type, bool $isNativeType = \true) + public function hasCrap4j(): bool { - if ($isNativeType) { - $this->constraint = new \PHPUnit\Framework\Constraint\IsType($type); - } else { - $this->constraint = new \PHPUnit\Framework\Constraint\IsInstanceOf($type); - } - $this->type = $type; + return $this->crap4j !== null; } /** - * Evaluates the constraint for parameter $other. - * - * If $returnResult is set to false (the default), an exception is thrown - * in case of a failure. null is returned otherwise. - * - * If $returnResult is true, the result of the evaluation is returned as - * a boolean value instead: true in case of success, false in case of a - * failure. - * - * @param mixed|Traversable $other - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @throws Exception */ - public function evaluate($other, string $description = '', bool $returnResult = \false) : ?bool + public function crap4j(): Crap4j { - $success = \true; - foreach ($other as $item) { - if (!$this->constraint->evaluate($item, '', \true)) { - $success = \false; - break; - } - } - if ($returnResult) { - return $success; + if (!$this->hasCrap4j()) { + throw new Exception('Code Coverage report "Crap4J" has not been configured'); } - if (!$success) { - $this->fail($other, $description); + return $this->crap4j; + } + /** + * @psalm-assert-if-true !null $this->html + */ + public function hasHtml(): bool + { + return $this->html !== null; + } + /** + * @throws Exception + */ + public function html(): Html + { + if (!$this->hasHtml()) { + throw new Exception('Code Coverage report "HTML" has not been configured'); } - return null; + return $this->html; } /** - * Returns a string representation of the constraint. + * @psalm-assert-if-true !null $this->php */ - public function toString() : string + public function hasPhp(): bool { - return 'contains only values of type "' . $this->type . '"'; + return $this->php !== null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\Constraint; - -use function sprintf; -use ReflectionClass; -use ReflectionException; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -final class IsInstanceOf extends \PHPUnit\Framework\Constraint\Constraint -{ /** - * @var string + * @throws Exception */ - private $className; - public function __construct(string $className) + public function php(): Php { - $this->className = $className; + if (!$this->hasPhp()) { + throw new Exception('Code Coverage report "PHP" has not been configured'); + } + return $this->php; } /** - * Returns a string representation of the constraint. + * @psalm-assert-if-true !null $this->text */ - public function toString() : string + public function hasText(): bool { - return sprintf('is instance of %s "%s"', $this->getType(), $this->className); + return $this->text !== null; } /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate + * @throws Exception */ - protected function matches($other) : bool + public function text(): Text { - return $other instanceof $this->className; + if (!$this->hasText()) { + throw new Exception('Code Coverage report "Text" has not been configured'); + } + return $this->text; } /** - * Returns the description of the failure. - * - * The beginning of failure messages is "Failed asserting that" in most - * cases. This method should return the second part of that sentence. - * - * @param mixed $other evaluated value or object - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @psalm-assert-if-true !null $this->xml */ - protected function failureDescription($other) : string + public function hasXml(): bool { - return sprintf('%s is an instance of %s "%s"', $this->exporter()->shortenedExport($other), $this->getType(), $this->className); + return $this->xml !== null; } - private function getType() : string + /** + * @throws Exception + */ + public function xml(): Xml { - try { - $reflection = new ReflectionClass($this->className); - if ($reflection->isInterface()) { - return 'interface'; - } - } catch (ReflectionException $e) { + if (!$this->hasXml()) { + throw new Exception('Code Coverage report "XML" has not been configured'); } - return 'class'; + return $this->xml; } } target = $target; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function target(): File { - return $other === null; + return $this->target; } } - */ - private const KNOWN_TYPES = ['array' => \true, 'boolean' => \true, 'bool' => \true, 'double' => \true, 'float' => \true, 'integer' => \true, 'int' => \true, 'null' => \true, 'numeric' => \true, 'object' => \true, 'real' => \true, 'resource' => \true, 'resource (closed)' => \true, 'string' => \true, 'scalar' => \true, 'callable' => \true, 'iterable' => \true]; - /** - * @var string - */ - private $type; - /** - * @throws \PHPUnit\Framework\Exception - */ - public function __construct(string $type) - { - if (!isset(self::KNOWN_TYPES[$type])) { - throw new \PHPUnit\Framework\Exception(sprintf('Type specified for PHPUnit\\Framework\\Constraint\\IsType <%s> ' . 'is not a valid type.', $type)); - } - $this->type = $type; - } - /** - * Returns a string representation of the constraint. + * @var File */ - public function toString() : string + private $target; + public function __construct(File $target) { - return sprintf('is of type "%s"', $this->type); + $this->target = $target; } - /** - * Evaluates the constraint for parameter $other. Returns true if the - * constraint is met, false otherwise. - * - * @param mixed $other value or object to evaluate - */ - protected function matches($other) : bool + public function target(): File { - switch ($this->type) { - case 'numeric': - return is_numeric($other); - case 'integer': - case 'int': - return is_int($other); - case 'double': - case 'float': - case 'real': - return is_float($other); - case 'string': - return is_string($other); - case 'boolean': - case 'bool': - return is_bool($other); - case 'null': - return null === $other; - case 'array': - return is_array($other); - case 'object': - return is_object($other); - case 'resource': - $type = gettype($other); - return $type === 'resource' || $type === 'resource (closed)'; - case 'resource (closed)': - return gettype($other) === 'resource (closed)'; - case 'scalar': - return is_scalar($other); - case 'callable': - return is_callable($other); - case 'iterable': - return is_iterable($other); - default: - return \false; - } + return $this->target; } } - */ - private $dependencies = []; - /** - * @param list $dependencies - */ - public function setDependencies(array $dependencies) : void - { - $this->dependencies = $dependencies; - foreach ($this->tests as $test) { - if (!$test instanceof \PHPUnit\Framework\TestCase) { - // @codeCoverageIgnoreStart - continue; - // @codeCoverageIgnoreStart - } - $test->setDependencies($dependencies); - } - } - /** - * @return list - */ - public function provides() : array - { - if ($this->providedTests === null) { - $this->providedTests = [new \PHPUnit\Framework\ExecutionOrderDependency($this->getName())]; - } - return $this->providedTests; - } - /** - * @return list + * @var Directory */ - public function requires() : array + private $target; + public function __construct(Directory $target) { - // A DataProviderTestSuite does not have to traverse its child tests - // as these are inherited and cannot reference dataProvider rows directly - return $this->dependencies; + $this->target = $target; } - /** - * Returns the size of the each test created using the data provider(s). - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function getSize() : int + public function target(): Directory { - [$className, $methodName] = explode('::', $this->getName()); - return TestUtil::getSize($className, $methodName); + return $this->target; } } target = $target; + $this->lowUpperBound = $lowUpperBound; + $this->highLowerBound = $highLowerBound; + } + public function target(): Directory + { + return $this->target; + } + public function lowUpperBound(): int + { + return $this->lowUpperBound; + } + public function highLowerBound(): int + { + return $this->highLowerBound; + } } file = $file; - $this->line = $line; + $this->target = $target; + } + public function target(): File + { + return $this->target; } } target = $target; + $this->showUncoveredFiles = $showUncoveredFiles; + $this->showOnlySummary = $showOnlySummary; + } + public function target(): File + { + return $this->target; + } + public function showUncoveredFiles(): bool + { + return $this->showUncoveredFiles; + } + public function showOnlySummary(): bool + { + return $this->showOnlySummary; + } } target = $target; + $this->threshold = $threshold; + } + public function target(): File + { + return $this->target; + } + public function threshold(): int + { + return $this->threshold; + } } message = $message; - parent::__construct('Error'); + $this->path = $path; + $this->prefix = $prefix; + $this->suffix = $suffix; + $this->group = $group; } - public function getMessage() : string + public function path(): string { - return $this->message; + return $this->path; } - /** - * Returns a string representation of the test case. - */ - public function toString() : string + public function prefix(): string { - return 'Error'; + return $this->prefix; } - /** - * @throws Exception - * - * @psalm-return never-return - */ - protected function runTest() : void + public function suffix(): string { - throw new \PHPUnit\Framework\Error($this->message); + return $this->suffix; + } + public function group(): string + { + return $this->group; } } */ -final class ActualValueIsNotAnObjectException extends \PHPUnit\Framework\Exception +final class DirectoryCollectionIterator implements Countable, Iterator { - public function __construct() + /** + * @var Directory[] + */ + private $directories; + /** + * @var int + */ + private $position; + public function __construct(\PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollection $directories) { - parent::__construct('Actual value is not an object', 0, null); + $this->directories = $directories->asArray(); } - public function __toString() : string + public function count(): int { - return $this->getMessage() . PHP_EOL; + return iterator_count($this); + } + public function rewind(): void + { + $this->position = 0; + } + public function valid(): bool + { + return $this->position < count($this->directories); + } + public function key(): int + { + return $this->position; + } + public function current(): \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\Directory + { + return $this->directories[$this->position]; + } + public function next(): void + { + $this->position++; } } */ -class AssertionFailedError extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\SelfDescribing +final class DirectoryCollection implements Countable, IteratorAggregate { /** - * Wrapper for getMessage() which is declared as final. + * @var Directory[] + */ + private $directories; + /** + * @param Directory[] $directories */ - public function toString() : string + public static function fromArray(array $directories): self { - return $this->getMessage(); + return new self(...$directories); + } + private function __construct(\PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\Directory ...$directories) + { + $this->directories = $directories; + } + /** + * @return Directory[] + */ + public function asArray(): array + { + return $this->directories; + } + public function count(): int + { + return count($this->directories); + } + public function getIterator(): \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollectionIterator + { + return new \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollectionIterator($this); } } directories() as $directory) { + $filter->includeDirectory($directory->path(), $directory->suffix(), $directory->prefix()); + } + foreach ($configuration->files() as $file) { + $filter->includeFile($file->path()); + } + foreach ($configuration->excludeDirectories() as $directory) { + $filter->excludeDirectory($directory->path(), $directory->suffix(), $directory->prefix()); + } + foreach ($configuration->excludeFiles() as $file) { + $filter->excludeFile($file->path()); + } + } } + + + + {tests_directory} + + -use const PHP_EOL; -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ComparisonMethodDoesNotAcceptParameterTypeException extends \PHPUnit\Framework\Exception -{ - public function __construct(string $className, string $methodName, string $type) - { - parent::__construct(sprintf('%s is not an accepted argument type for comparison method %s::%s().', $type, $className, $methodName), 0, null); - } - public function __toString() : string + + + {src_directory} + + + + +EOT; + public function generateDefaultConfiguration(string $phpunitVersion, string $bootstrapScript, string $testsDirectory, string $srcDirectory, string $cacheDirectory): string { - return $this->getMessage() . PHP_EOL; + return str_replace(['{phpunit_version}', '{bootstrap_script}', '{tests_directory}', '{src_directory}', '{cache_directory}'], [$phpunitVersion, $bootstrapScript, $testsDirectory, $srcDirectory, $cacheDirectory], self::TEMPLATE); } } getMessage() . PHP_EOL; - } } getMessage() . PHP_EOL; - } } getMessage() . PHP_EOL; + $crap4j = $logNode->ownerDocument->createElement('crap4j'); + $crap4j->setAttribute('outputFile', $logNode->getAttribute('target')); + $this->migrateAttributes($logNode, $crap4j, ['threshold']); + return $crap4j; } } getMessage() . PHP_EOL; + $logging = $document->getElementsByTagName('logging')->item(0); + if (!$logging instanceof DOMElement) { + return; + } + $types = ['junit' => 'junit', 'teamcity' => 'teamcity', 'testdox-html' => 'testdoxHtml', 'testdox-text' => 'testdoxText', 'testdox-xml' => 'testdoxXml', 'plain' => 'text']; + $logNodes = []; + foreach ($logging->getElementsByTagName('log') as $logNode) { + if (!isset($types[$logNode->getAttribute('type')])) { + continue; + } + $logNodes[] = $logNode; + } + foreach ($logNodes as $oldNode) { + $newLogNode = $document->createElement($types[$oldNode->getAttribute('type')]); + $newLogNode->setAttribute('outputFile', $oldNode->getAttribute('target')); + $logging->replaceChild($newLogNode, $oldNode); + } } } getElementsByTagName('logging')->item(0); + if (!$logging instanceof DOMElement) { + return; + } + foreach (SnapshotNodeList::fromNodeList($logging->getElementsByTagName('log')) as $logNode) { + assert($logNode instanceof DOMElement); + switch ($logNode->getAttribute('type')) { + case 'json': + case 'tap': + $logging->removeChild($logNode); + } + } + } } getMessage(); + $document->documentElement->setAttributeNS('http://www.w3.org/2001/XMLSchema-instance', 'xsi:noNamespaceSchemaLocation', 'https://schema.phpunit.de/9.3/phpunit.xsd'); } } serializableTrace = $this->getTrace(); - foreach (array_keys($this->serializableTrace) as $key) { - unset($this->serializableTrace[$key]['args']); + $whitelist = $document->getElementsByTagName('whitelist')->item(0); + if (!$whitelist) { + return; } - } - public function __toString() : string - { - $string = \PHPUnit\Framework\TestFailure::exceptionToString($this); - if ($trace = Filter::getFilteredStacktrace($this)) { - $string .= "\n" . $trace; + $coverage = $document->getElementsByTagName('coverage')->item(0); + if (!$coverage instanceof DOMElement) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + $map = ['addUncoveredFilesFromWhitelist' => 'includeUncoveredFiles', 'processUncoveredFilesFromWhitelist' => 'processUncoveredFiles']; + foreach ($map as $old => $new) { + if (!$whitelist->hasAttribute($old)) { + continue; + } + $coverage->setAttribute($new, $whitelist->getAttribute($old)); + $whitelist->removeAttribute($old); } - return $string; - } - public function __sleep() : array - { - return array_keys(get_object_vars($this)); - } - /** - * Returns the serializable trace (without 'args'). - */ - public function getSerializableTrace() : array - { - return $this->serializableTrace; } } comparisonFailure = $comparisonFailure; - parent::__construct($message, 0, $previous); - } - public function getComparisonFailure() : ?ComparisonFailure + public function migrate(DOMDocument $document): void { - return $this->comparisonFailure; + $whitelist = $document->getElementsByTagName('whitelist')->item(0); + if ($whitelist === null) { + return; + } + $excludeNodes = SnapshotNodeList::fromNodeList($whitelist->getElementsByTagName('exclude')); + if ($excludeNodes->count() === 0) { + return; + } + $coverage = $document->getElementsByTagName('coverage')->item(0); + if (!$coverage instanceof DOMElement) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + $targetExclude = $coverage->getElementsByTagName('exclude')->item(0); + if ($targetExclude === null) { + $targetExclude = $coverage->appendChild($document->createElement('exclude')); + } + foreach ($excludeNodes as $excludeNode) { + assert($excludeNode instanceof DOMElement); + foreach (SnapshotNodeList::fromNodeList($excludeNode->childNodes) as $child) { + if (!$child instanceof DOMElement || !in_array($child->nodeName, ['directory', 'file'], \true)) { + continue; + } + $targetExclude->appendChild($child); + } + if ($excludeNode->getElementsByTagName('*')->count() !== 0) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Dangling child elements in exclude found.'); + } + $whitelist->removeChild($excludeNode); + } } } documentElement; + if ($root->hasAttribute('cacheTokens')) { + $root->removeAttribute('cacheTokens'); + } + } } ownerDocument->createElement('php'); + $php->setAttribute('outputFile', $logNode->getAttribute('target')); + return $php; } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; +namespace PHPUnit\TextUI\XmlConfiguration; +use DOMDocument; +use DOMElement; +use PHPUnit\Util\Xml\SnapshotNodeList; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ -final class InvalidDataProviderException extends \PHPUnit\Framework\Exception +final class MoveWhitelistIncludesToCoverage implements \PHPUnit\TextUI\XmlConfiguration\Migration { + /** + * @throws MigrationException + */ + public function migrate(DOMDocument $document): void + { + $whitelist = $document->getElementsByTagName('whitelist')->item(0); + if ($whitelist === null) { + return; + } + $coverage = $document->getElementsByTagName('coverage')->item(0); + if (!$coverage instanceof DOMElement) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + $include = $document->createElement('include'); + $coverage->appendChild($include); + foreach (SnapshotNodeList::fromNodeList($whitelist->childNodes) as $child) { + if (!$child instanceof DOMElement) { + continue; + } + if (!($child->nodeName === 'directory' || $child->nodeName === 'file')) { + continue; + } + $include->appendChild($child); + } + } } getElementsByTagName('whitelist')->item(0); + if ($whitelist instanceof DOMElement) { + $this->ensureEmpty($whitelist); + $whitelist->parentNode->removeChild($whitelist); + } + $filter = $document->getElementsByTagName('filter')->item(0); + if ($filter instanceof DOMElement) { + $this->ensureEmpty($filter); + $filter->parentNode->removeChild($filter); + } + } + /** + * @throws MigrationException + */ + private function ensureEmpty(DOMElement $element): void + { + if ($element->attributes->length > 0) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException(sprintf('%s element has unexpected attributes', $element->nodeName)); + } + if ($element->getElementsByTagName('*')->length > 0) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException(sprintf('%s element has unexpected children', $element->nodeName)); + } + } } getElementsByTagName('coverage')->item(0); + if (!$coverage instanceof DOMElement) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + $logNode = $this->findLogNode($document); + if ($logNode === null) { + return; + } + $reportChild = $this->toReportFormat($logNode); + $report = $coverage->getElementsByTagName('report')->item(0); + if ($report === null) { + $report = $coverage->appendChild($document->createElement('report')); + } + $report->appendChild($reportChild); + $logNode->parentNode->removeChild($logNode); + } + protected function migrateAttributes(DOMElement $src, DOMElement $dest, array $attributes): void + { + foreach ($attributes as $attr) { + if (!$src->hasAttribute($attr)) { + continue; + } + $dest->setAttribute($attr, $src->getAttribute($attr)); + $src->removeAttribute($attr); + } + } + abstract protected function forType(): string; + abstract protected function toReportFormat(DOMElement $logNode): DOMElement; + private function findLogNode(DOMDocument $document): ?DOMElement + { + $logNode = (new DOMXPath($document))->query(sprintf('//logging/log[@type="%s"]', $this->forType()))->item(0); + if (!$logNode instanceof DOMElement) { + return null; + } + return $logNode; + } } 'disableCodeCoverageIgnore', 'ignoreDeprecatedCodeUnitsFromCodeCoverage' => 'ignoreDeprecatedCodeUnits']; + $root = $document->documentElement; + $coverage = $document->getElementsByTagName('coverage')->item(0); + if (!$coverage instanceof DOMElement) { + throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + foreach ($map as $old => $new) { + if (!$root->hasAttribute($old)) { + continue; + } + $coverage->setAttribute($new, $root->getAttribute($old)); + $root->removeAttribute($old); + } + } } diff = $diff; + return 'coverage-xml'; } - public function getDiff() : string + protected function toReportFormat(DOMElement $logNode): DOMElement { - return $this->diff; + $xml = $logNode->ownerDocument->createElement('xml'); + $xml->setAttribute('outputDirectory', $logNode->getAttribute('target')); + return $xml; } } ownerDocument->createElement('html'); + $html->setAttribute('outputDirectory', $logNode->getAttribute('target')); + $this->migrateAttributes($logNode, $html, ['lowUpperBound', 'highLowerBound']); + return $html; + } } createElement('coverage'); + $document->documentElement->insertBefore($coverage, $document->documentElement->firstChild); + } } ownerDocument->createElement('text'); + $text->setAttribute('outputFile', $logNode->getAttribute('target')); + $this->migrateAttributes($logNode, $text, ['showUncoveredFiles', 'showOnlySummary']); + return $text; + } } syntheticFile = $file; - $this->syntheticLine = $line; - $this->syntheticTrace = $trace; - } - public function getSyntheticFile() : string - { - return $this->syntheticFile; - } - public function getSyntheticLine() : int + */ +final class CoverageCloverToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration +{ + protected function forType(): string { - return $this->syntheticLine; + return 'coverage-clover'; } - public function getSyntheticTrace() : array + protected function toReportFormat(DOMElement $logNode): DOMElement { - return $this->syntheticTrace; + $clover = $logNode->ownerDocument->createElement('clover'); + $clover->setAttribute('outputFile', $logNode->getAttribute('target')); + return $clover; } } getMessage(); + $origin = (new SchemaDetector())->detect($filename); + if (!$origin->detected()) { + throw new \PHPUnit\TextUI\XmlConfiguration\Exception(sprintf('"%s" is not a valid PHPUnit XML configuration file that can be migrated', $filename)); + } + $configurationDocument = (new XmlLoader())->loadFile($filename, \false, \true, \true); + foreach ((new \PHPUnit\TextUI\XmlConfiguration\MigrationBuilder())->build($origin->version()) as $migration) { + $migration->migrate($configurationDocument); + } + $configurationDocument->formatOutput = \true; + $configurationDocument->preserveWhiteSpace = \false; + return $configurationDocument->saveXML(); } } [\PHPUnit\TextUI\XmlConfiguration\RemoveLogTypes::class], '9.2' => [\PHPUnit\TextUI\XmlConfiguration\RemoveCacheTokensAttribute::class, \PHPUnit\TextUI\XmlConfiguration\IntroduceCoverageElement::class, \PHPUnit\TextUI\XmlConfiguration\MoveAttributesFromRootToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveAttributesFromFilterWhitelistToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveWhitelistIncludesToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveWhitelistExcludesToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\RemoveEmptyFilter::class, \PHPUnit\TextUI\XmlConfiguration\CoverageCloverToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageCrap4jToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageHtmlToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoveragePhpToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageTextToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageXmlToReport::class, \PHPUnit\TextUI\XmlConfiguration\ConvertLogTypes::class, \PHPUnit\TextUI\XmlConfiguration\UpdateSchemaLocationTo93::class]]; /** - * @var string - */ - protected $className; - /** - * @var null|ExceptionWrapper - */ - protected $previous; - /** - * @var null|WeakReference - */ - private $originalException; - public function __construct(Throwable $t) - { - // PDOException::getCode() is a string. - // @see https://php.net/manual/en/class.pdoexception.php#95812 - parent::__construct($t->getMessage(), (int) $t->getCode()); - $this->setOriginalException($t); - } - public function __toString() : string - { - $string = \PHPUnit\Framework\TestFailure::exceptionToString($this); - if ($trace = Filter::getFilteredStacktrace($this)) { - $string .= "\n" . $trace; - } - if ($this->previous) { - $string .= "\nCaused by\n" . $this->previous; - } - return $string; - } - public function getClassName() : string - { - return $this->className; - } - public function getPreviousWrapped() : ?self - { - return $this->previous; - } - public function setClassName(string $className) : void - { - $this->className = $className; - } - public function setOriginalException(Throwable $t) : void - { - $this->originalException($t); - $this->className = get_class($t); - $this->file = $t->getFile(); - $this->line = $t->getLine(); - $this->serializableTrace = $t->getTrace(); - foreach (array_keys($this->serializableTrace) as $key) { - unset($this->serializableTrace[$key]['args']); - } - if ($t->getPrevious()) { - $this->previous = new self($t->getPrevious()); - } - } - public function getOriginalException() : ?Throwable - { - return $this->originalException(); - } - /** - * Method to contain static originalException to exclude it from stacktrace to prevent the stacktrace contents, - * which can be quite big, from being garbage-collected, thus blocking memory until shutdown. - * - * Approach works both for var_dump() and var_export() and print_r(). + * @throws MigrationBuilderException */ - private function originalException(Throwable $exceptionToStore = null) : ?Throwable + public function build(string $fromVersion): array { - // drop once PHP 7.3 support is removed - if (PHP_VERSION_ID < 70400) { - static $originalExceptions; - $instanceId = spl_object_hash($this); - if ($exceptionToStore) { - $originalExceptions[$instanceId] = $exceptionToStore; + $stack = []; + foreach (self::AVAILABLE_MIGRATIONS as $version => $migrations) { + if (version_compare($version, $fromVersion, '<')) { + continue; + } + foreach ($migrations as $migration) { + $stack[] = new $migration(); } - return $originalExceptions[$instanceId] ?? null; - } - if ($exceptionToStore) { - $this->originalException = WeakReference::create($exceptionToStore); } - return $this->originalException !== null ? $this->originalException->get() : null; + return $stack; } } $dependencies - * - * @psalm-return list - */ - public static function filterInvalid(array $dependencies) : array - { - return array_values(array_filter($dependencies, static function (self $d) { - return $d->isValid(); - })); - } - /** - * @psalm-param list $existing - * @psalm-param list $additional - * - * @psalm-return list - */ - public static function mergeUnique(array $existing, array $additional) : array - { - $existingTargets = array_map(static function ($dependency) { - return $dependency->getTarget(); - }, $existing); - foreach ($additional as $dependency) { - if (in_array($dependency->getTarget(), $existingTargets, \true)) { - continue; - } - $existingTargets[] = $dependency->getTarget(); - $existing[] = $dependency; - } - return $existing; - } - /** - * @psalm-param list $left - * @psalm-param list $right - * - * @psalm-return list + * @var File */ - public static function diff(array $left, array $right) : array - { - if ($right === []) { - return $left; - } - if ($left === []) { - return []; - } - $diff = []; - $rightTargets = array_map(static function ($dependency) { - return $dependency->getTarget(); - }, $right); - foreach ($left as $dependency) { - if (in_array($dependency->getTarget(), $rightTargets, \true)) { - continue; - } - $diff[] = $dependency; - } - return $diff; - } - public function __construct(string $classOrCallableName, ?string $methodName = null, ?string $option = null) - { - if ($classOrCallableName === '') { - return; - } - if (strpos($classOrCallableName, '::') !== \false) { - [$this->className, $this->methodName] = explode('::', $classOrCallableName); - } else { - $this->className = $classOrCallableName; - $this->methodName = !empty($methodName) ? $methodName : 'class'; - } - if ($option === 'clone') { - $this->useDeepClone = \true; - } elseif ($option === 'shallowClone') { - $this->useShallowClone = \true; - } - } - public function __toString() : string - { - return $this->getTarget(); - } - public function isValid() : bool - { - // Invalid dependencies can be declared and are skipped by the runner - return $this->className !== '' && $this->methodName !== ''; - } - public function useShallowClone() : bool - { - return $this->useShallowClone; - } - public function useDeepClone() : bool - { - return $this->useDeepClone; - } - public function targetIsClass() : bool - { - return $this->methodName === 'class'; - } - public function getTarget() : string + private $target; + public function __construct(File $target) { - return $this->isValid() ? $this->className . '::' . $this->methodName : ''; + $this->target = $target; } - public function getTargetClassName() : string + public function target(): File { - return $this->className; + return $this->target; } } target = $target; + } + public function target(): File + { + return $this->target; + } } message = $message; + $this->target = $target; } - public function getMessage() : string + public function target(): File { - return $this->message; + return $this->target; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\TextUI\XmlConfiguration\Logging\TestDox; + +use PHPUnit\TextUI\XmlConfiguration\File; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @psalm-immutable + */ +final class Text +{ /** - * Returns a string representation of the test case. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @var File */ - public function toString() : string + private $target; + public function __construct(File $target) { - return $this->getName(); + $this->target = $target; } - /** - * @throws Exception - */ - protected function runTest() : void + public function target(): File { - $this->markTestIncomplete($this->message); + return $this->target; } } target = $target; + } + public function target(): File + { + return $this->target; + } } junit = $junit; + $this->text = $text; + $this->teamCity = $teamCity; + $this->testDoxHtml = $testDoxHtml; + $this->testDoxText = $testDoxText; + $this->testDoxXml = $testDoxXml; + } + public function hasJunit(): bool + { + return $this->junit !== null; + } + public function junit(): \PHPUnit\TextUI\XmlConfiguration\Logging\Junit + { + if ($this->junit === null) { + throw new Exception('Logger "JUnit XML" is not configured'); } - static::$__phpunit_configurableMethods = $configurableMethods; + return $this->junit; } - /** @noinspection MagicMethodsValidityInspection */ - public function __phpunit_setOriginalObject($originalObject) : void + public function hasText(): bool { - $this->__phpunit_originalObject = $originalObject; + return $this->text !== null; } - /** @noinspection MagicMethodsValidityInspection */ - public function __phpunit_setReturnValueGeneration(bool $returnValueGeneration) : void + public function text(): \PHPUnit\TextUI\XmlConfiguration\Logging\Text { - $this->__phpunit_returnValueGeneration = $returnValueGeneration; + if ($this->text === null) { + throw new Exception('Logger "Text" is not configured'); + } + return $this->text; } - /** @noinspection MagicMethodsValidityInspection */ - public function __phpunit_getInvocationHandler() : \PHPUnit\Framework\MockObject\InvocationHandler + public function hasTeamCity(): bool { - if ($this->__phpunit_invocationMocker === null) { - $this->__phpunit_invocationMocker = new \PHPUnit\Framework\MockObject\InvocationHandler(static::$__phpunit_configurableMethods, $this->__phpunit_returnValueGeneration); + return $this->teamCity !== null; + } + public function teamCity(): \PHPUnit\TextUI\XmlConfiguration\Logging\TeamCity + { + if ($this->teamCity === null) { + throw new Exception('Logger "Team City" is not configured'); } - return $this->__phpunit_invocationMocker; + return $this->teamCity; } - /** @noinspection MagicMethodsValidityInspection */ - public function __phpunit_hasMatchers() : bool + public function hasTestDoxHtml(): bool { - return $this->__phpunit_getInvocationHandler()->hasMatchers(); + return $this->testDoxHtml !== null; } - /** @noinspection MagicMethodsValidityInspection */ - public function __phpunit_verify(bool $unsetInvocationMocker = \true) : void + public function testDoxHtml(): TestDoxHtml { - $this->__phpunit_getInvocationHandler()->verify(); - if ($unsetInvocationMocker) { - $this->__phpunit_invocationMocker = null; + if ($this->testDoxHtml === null) { + throw new Exception('Logger "TestDox HTML" is not configured'); } + return $this->testDoxHtml; } - public function expects(InvocationOrder $matcher) : InvocationMockerBuilder + public function hasTestDoxText(): bool { - return $this->__phpunit_getInvocationHandler()->expects($matcher); + return $this->testDoxText !== null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use function call_user_func_array; -use function func_get_args; -use PHPUnit\Framework\MockObject\Rule\AnyInvokedCount; -/** - * @internal This trait is not covered by the backward compatibility promise for PHPUnit - */ -trait Method -{ - public function method() + public function testDoxText(): TestDoxText { - $expects = $this->expects(new AnyInvokedCount()); - return call_user_func_array([$expects, 'method'], func_get_args()); + if ($this->testDoxText === null) { + throw new Exception('Logger "TestDox Text" is not configured'); + } + return $this->testDoxText; + } + public function hasTestDoxXml(): bool + { + return $this->testDoxXml !== null; + } + public function testDoxXml(): TestDoxXml + { + if ($this->testDoxXml === null) { + throw new Exception('Logger "TestDox XML" is not configured'); + } + return $this->testDoxXml; } } target = $target; + } + public function target(): File + { + return $this->target; + } } */ - private $invocationHandler; + protected $arguments = []; /** - * @var Matcher + * @var array */ - private $matcher; + protected $longOptions = []; /** - * @var ConfigurableMethod[] + * @var bool */ - private $configurableMethods; - public function __construct(InvocationHandler $handler, Matcher $matcher, ConfigurableMethod ...$configurableMethods) + private $versionStringPrinted = \false; + /** + * @psalm-var list + */ + private $warnings = []; + /** + * @throws Exception + */ + public static function main(bool $exit = \true): int { - $this->invocationHandler = $handler; - $this->matcher = $matcher; - $this->configurableMethods = $configurableMethods; + try { + return (new static())->run($_SERVER['argv'], $exit); + } catch (Throwable $t) { + throw new \PHPUnit\TextUI\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); + } } /** - * @throws MatcherAlreadyRegisteredException - * - * @return $this + * @throws Exception */ - public function id($id) : self + public function run(array $argv, bool $exit = \true): int { - $this->invocationHandler->registerMatcher($id, $this->matcher); - return $this; + $this->handleArguments($argv); + $runner = $this->createRunner(); + if ($this->arguments['test'] instanceof TestSuite) { + $suite = $this->arguments['test']; + } else { + $suite = $runner->getTest($this->arguments['test'], $this->arguments['testSuffixes']); + } + if ($this->arguments['listGroups']) { + return $this->handleListGroups($suite, $exit); + } + if ($this->arguments['listSuites']) { + return $this->handleListSuites($exit); + } + if ($this->arguments['listTests']) { + return $this->handleListTests($suite, $exit); + } + if ($this->arguments['listTestsXml']) { + return $this->handleListTestsXml($suite, $this->arguments['listTestsXml'], $exit); + } + unset($this->arguments['test'], $this->arguments['testFile']); + try { + $result = $runner->run($suite, $this->arguments, $this->warnings, $exit); + } catch (Throwable $t) { + print $t->getMessage() . PHP_EOL; + } + $return = \PHPUnit\TextUI\TestRunner::FAILURE_EXIT; + if (isset($result) && $result->wasSuccessful()) { + $return = \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; + } elseif (!isset($result) || $result->errorCount() > 0) { + $return = \PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT; + } + if ($exit) { + exit($return); + } + return $return; } /** - * @return $this + * Create a TestRunner, override in subclasses. */ - public function will(Stub $stub) : \PHPUnit\Framework\MockObject\Builder\Identity + protected function createRunner(): \PHPUnit\TextUI\TestRunner { - $this->matcher->setStub($stub); - return $this; + return new \PHPUnit\TextUI\TestRunner($this->arguments['loader']); } /** - * @param mixed $value - * @param mixed[] $nextValues + * Handles the command-line arguments. * - * @throws IncompatibleReturnValueException + * A child class of PHPUnit\TextUI\Command can hook into the argument + * parsing by adding the switch(es) to the $longOptions array and point to a + * callback method that handles the switch(es) in the child class like this + * + * + * longOptions['my-switch'] = 'myHandler'; + * // my-secondswitch will accept a value - note the equals sign + * $this->longOptions['my-secondswitch='] = 'myOtherHandler'; + * } + * + * // --my-switch -> myHandler() + * protected function myHandler() + * { + * } + * + * // --my-secondswitch foo -> myOtherHandler('foo') + * protected function myOtherHandler ($value) + * { + * } + * + * // You will also need this - the static keyword in the + * // PHPUnit\TextUI\Command will mean that it'll be + * // PHPUnit\TextUI\Command that gets instantiated, + * // not MyCommand + * public static function main($exit = true) + * { + * $command = new static; + * + * return $command->run($_SERVER['argv'], $exit); + * } + * + * } + * + * + * @throws Exception */ - public function willReturn($value, ...$nextValues) : self + protected function handleArguments(array $argv): void { - if (count($nextValues) === 0) { - $this->ensureTypeOfReturnValues([$value]); - $stub = $value instanceof Stub ? $value : new ReturnStub($value); - } else { - $values = array_merge([$value], $nextValues); - $this->ensureTypeOfReturnValues($values); - $stub = new ConsecutiveCalls($values); + try { + $arguments = (new Builder())->fromParameters($argv, array_keys($this->longOptions)); + } catch (ArgumentsException $e) { + $this->exitWithErrorMessage($e->getMessage()); + } + assert(isset($arguments) && $arguments instanceof Configuration); + if ($arguments->hasGenerateConfiguration() && $arguments->generateConfiguration()) { + $this->generateConfiguration(); + } + if ($arguments->hasAtLeastVersion()) { + if (version_compare(Version::id(), $arguments->atLeastVersion(), '>=')) { + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); + } + if ($arguments->hasVersion() && $arguments->version()) { + $this->printVersionString(); + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + if ($arguments->hasCheckVersion() && $arguments->checkVersion()) { + $this->handleVersionCheck(); + } + if ($arguments->hasHelp()) { + $this->showHelp(); + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + if ($arguments->hasUnrecognizedOrderBy()) { + $this->exitWithErrorMessage(sprintf('unrecognized --order-by option: %s', $arguments->unrecognizedOrderBy())); + } + if ($arguments->hasIniSettings()) { + foreach ($arguments->iniSettings() as $name => $value) { + ini_set($name, $value); + } + } + if ($arguments->hasIncludePath()) { + ini_set('include_path', $arguments->includePath() . PATH_SEPARATOR . ini_get('include_path')); + } + $this->arguments = (new Mapper())->mapToLegacyArray($arguments); + $this->handleCustomOptions($arguments->unrecognizedOptions()); + $this->handleCustomTestSuite(); + if (!isset($this->arguments['testSuffixes'])) { + $this->arguments['testSuffixes'] = ['Test.php', '.phpt']; + } + if (!isset($this->arguments['test']) && $arguments->hasArgument()) { + $this->arguments['test'] = realpath($arguments->argument()); + if ($this->arguments['test'] === \false) { + $this->exitWithErrorMessage(sprintf('Cannot open file "%s".', $arguments->argument())); + } + } + if ($this->arguments['loader'] !== null) { + $this->arguments['loader'] = $this->handleLoader($this->arguments['loader']); + } + if (isset($this->arguments['configuration'])) { + if (is_dir($this->arguments['configuration'])) { + $candidate = $this->configurationFileInDirectory($this->arguments['configuration']); + if ($candidate !== null) { + $this->arguments['configuration'] = $candidate; + } + } + } elseif ($this->arguments['useDefaultConfiguration']) { + $candidate = $this->configurationFileInDirectory(getcwd()); + if ($candidate !== null) { + $this->arguments['configuration'] = $candidate; + } + } + if ($arguments->hasMigrateConfiguration() && $arguments->migrateConfiguration()) { + if (!isset($this->arguments['configuration'])) { + print 'No configuration file found to migrate.' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + $this->migrateConfiguration(realpath($this->arguments['configuration'])); + } + if (isset($this->arguments['configuration'])) { + try { + $this->arguments['configurationObject'] = (new Loader())->load($this->arguments['configuration']); + } catch (Throwable $e) { + print $e->getMessage() . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); + } + $phpunitConfiguration = $this->arguments['configurationObject']->phpunit(); + (new PhpHandler())->handle($this->arguments['configurationObject']->php()); + if (isset($this->arguments['bootstrap'])) { + $this->handleBootstrap($this->arguments['bootstrap']); + } elseif ($phpunitConfiguration->hasBootstrap()) { + $this->handleBootstrap($phpunitConfiguration->bootstrap()); + } + if (!isset($this->arguments['stderr'])) { + $this->arguments['stderr'] = $phpunitConfiguration->stderr(); + } + if (!isset($this->arguments['noExtensions']) && $phpunitConfiguration->hasExtensionsDirectory() && extension_loaded('phar')) { + $result = (new PharLoader())->loadPharExtensionsInDirectory($phpunitConfiguration->extensionsDirectory()); + $this->arguments['loadedExtensions'] = $result['loadedExtensions']; + $this->arguments['notLoadedExtensions'] = $result['notLoadedExtensions']; + unset($result); + } + if (!isset($this->arguments['columns'])) { + $this->arguments['columns'] = $phpunitConfiguration->columns(); + } + if (!isset($this->arguments['printer']) && $phpunitConfiguration->hasPrinterClass()) { + $file = $phpunitConfiguration->hasPrinterFile() ? $phpunitConfiguration->printerFile() : ''; + $this->arguments['printer'] = $this->handlePrinter($phpunitConfiguration->printerClass(), $file); + } + if ($phpunitConfiguration->hasTestSuiteLoaderClass()) { + $file = $phpunitConfiguration->hasTestSuiteLoaderFile() ? $phpunitConfiguration->testSuiteLoaderFile() : ''; + $this->arguments['loader'] = $this->handleLoader($phpunitConfiguration->testSuiteLoaderClass(), $file); + } + if (!isset($this->arguments['testsuite']) && $phpunitConfiguration->hasDefaultTestSuite()) { + $this->arguments['testsuite'] = $phpunitConfiguration->defaultTestSuite(); + } + if (!isset($this->arguments['test'])) { + try { + $this->arguments['test'] = (new \PHPUnit\TextUI\TestSuiteMapper())->map($this->arguments['configurationObject']->testSuite(), $this->arguments['testsuite'] ?? ''); + } catch (\PHPUnit\TextUI\Exception $e) { + $this->printVersionString(); + print $e->getMessage() . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + } + } elseif (isset($this->arguments['bootstrap'])) { + $this->handleBootstrap($this->arguments['bootstrap']); + } + if (isset($this->arguments['printer']) && is_string($this->arguments['printer'])) { + $this->arguments['printer'] = $this->handlePrinter($this->arguments['printer']); + } + if (isset($this->arguments['configurationObject'], $this->arguments['warmCoverageCache'])) { + $this->handleWarmCoverageCache($this->arguments['configurationObject']); + } + if (!isset($this->arguments['test'])) { + $this->showHelp(); + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); } - return $this->will($stub); } - public function willReturnReference(&$reference) : self + /** + * Handles the loading of the PHPUnit\Runner\TestSuiteLoader implementation. + * + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + */ + protected function handleLoader(string $loaderClass, string $loaderFile = ''): ?TestSuiteLoader { - $stub = new ReturnReference($reference); - return $this->will($stub); + $this->warnings[] = 'Using a custom test suite loader is deprecated'; + if (!class_exists($loaderClass, \false)) { + if ($loaderFile == '') { + $loaderFile = Filesystem::classNameToFilename($loaderClass); + } + $loaderFile = stream_resolve_include_path($loaderFile); + if ($loaderFile) { + /** + * @noinspection PhpIncludeInspection + * + * @psalm-suppress UnresolvableInclude + */ + require $loaderFile; + } + } + if (class_exists($loaderClass, \false)) { + try { + $class = new ReflectionClass($loaderClass); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\TextUI\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($class->implementsInterface(TestSuiteLoader::class) && $class->isInstantiable()) { + $object = $class->newInstance(); + assert($object instanceof TestSuiteLoader); + return $object; + } + } + if ($loaderClass == StandardTestSuiteLoader::class) { + return null; + } + $this->exitWithErrorMessage(sprintf('Could not use "%s" as loader.', $loaderClass)); + return null; } - public function willReturnMap(array $valueMap) : self + /** + * Handles the loading of the PHPUnit\Util\Printer implementation. + * + * @return null|Printer|string + */ + protected function handlePrinter(string $printerClass, string $printerFile = '') { - $stub = new ReturnValueMap($valueMap); - return $this->will($stub); + if (!class_exists($printerClass, \false)) { + if ($printerFile === '') { + $printerFile = Filesystem::classNameToFilename($printerClass); + } + $printerFile = stream_resolve_include_path($printerFile); + if ($printerFile) { + /** + * @noinspection PhpIncludeInspection + * + * @psalm-suppress UnresolvableInclude + */ + require $printerFile; + } + } + if (!class_exists($printerClass)) { + $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class does not exist', $printerClass)); + } + try { + $class = new ReflectionClass($printerClass); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\TextUI\ReflectionException($e->getMessage(), $e->getCode(), $e); + // @codeCoverageIgnoreEnd + } + if (!$class->implementsInterface(\PHPUnit\TextUI\ResultPrinter::class)) { + $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class does not implement %s', $printerClass, \PHPUnit\TextUI\ResultPrinter::class)); + } + if (!$class->isInstantiable()) { + $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class cannot be instantiated', $printerClass)); + } + if ($class->isSubclassOf(\PHPUnit\TextUI\ResultPrinter::class)) { + return $printerClass; + } + $outputStream = isset($this->arguments['stderr']) ? 'php://stderr' : null; + return $class->newInstance($outputStream); } - public function willReturnArgument($argumentIndex) : self + /** + * Loads a bootstrap file. + */ + protected function handleBootstrap(string $filename): void { - $stub = new ReturnArgument($argumentIndex); - return $this->will($stub); + try { + FileLoader::checkAndLoad($filename); + } catch (Throwable $t) { + if ($t instanceof \PHPUnit\Exception) { + $this->exitWithErrorMessage($t->getMessage()); + } + $message = sprintf('Error in bootstrap script: %s:%s%s%s%s', get_class($t), PHP_EOL, $t->getMessage(), PHP_EOL, $t->getTraceAsString()); + while ($t = $t->getPrevious()) { + $message .= sprintf('%s%sPrevious error: %s:%s%s%s%s', PHP_EOL, PHP_EOL, get_class($t), PHP_EOL, $t->getMessage(), PHP_EOL, $t->getTraceAsString()); + } + $this->exitWithErrorMessage($message); + } } - public function willReturnCallback($callback) : self + protected function handleVersionCheck(): void { - $stub = new ReturnCallback($callback); - return $this->will($stub); + $this->printVersionString(); + $latestVersion = file_get_contents('https://phar.phpunit.de/latest-version-of/phpunit'); + $latestCompatibleVersion = file_get_contents('https://phar.phpunit.de/latest-version-of/phpunit-' . explode('.', Version::series())[0]); + $notLatest = version_compare($latestVersion, Version::id(), '>'); + $notLatestCompatible = version_compare($latestCompatibleVersion, Version::id(), '>'); + if ($notLatest || $notLatestCompatible) { + print 'You are not using the latest version of PHPUnit.' . PHP_EOL; + } else { + print 'You are using the latest version of PHPUnit.' . PHP_EOL; + } + if ($notLatestCompatible) { + printf('The latest version compatible with PHPUnit %s is PHPUnit %s.' . PHP_EOL, Version::id(), $latestCompatibleVersion); + } + if ($notLatest) { + printf('The latest version is PHPUnit %s.' . PHP_EOL, $latestVersion); + } + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); } - public function willReturnSelf() : self + /** + * Show the help message. + */ + protected function showHelp(): void { - $stub = new ReturnSelf(); - return $this->will($stub); + $this->printVersionString(); + (new \PHPUnit\TextUI\Help())->writeToConsole(); } - public function willReturnOnConsecutiveCalls(...$values) : self + /** + * Custom callback for test suite discovery. + */ + protected function handleCustomTestSuite(): void { - $stub = new ConsecutiveCalls($values); - return $this->will($stub); } - public function willThrowException(Throwable $exception) : self + private function printVersionString(): void { - $stub = new Exception($exception); - return $this->will($stub); + if ($this->versionStringPrinted) { + return; + } + print Version::getVersionString() . PHP_EOL . PHP_EOL; + $this->versionStringPrinted = \true; } - /** - * @return $this - */ - public function after($id) : self + private function exitWithErrorMessage(string $message): void { - $this->matcher->setAfterMatchBuilderId($id); - return $this; + $this->printVersionString(); + print $message . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); } - /** - * @param mixed[] $arguments - * - * @throws \PHPUnit\Framework\Exception - * @throws MethodNameNotConfiguredException - * @throws MethodParametersAlreadyConfiguredException - * - * @return $this - */ - public function with(...$arguments) : self + private function handleListGroups(TestSuite $suite, bool $exit): int { - $this->ensureParametersCanBeConfigured(); - $this->matcher->setParametersRule(new Rule\Parameters($arguments)); - return $this; + $this->printVersionString(); + $this->warnAboutConflictingOptions('listGroups', ['filter', 'groups', 'excludeGroups', 'testsuite']); + print 'Available test group(s):' . PHP_EOL; + $groups = $suite->getGroups(); + sort($groups); + foreach ($groups as $group) { + if (strpos($group, '__phpunit_') === 0) { + continue; + } + printf(' - %s' . PHP_EOL, $group); + } + if ($exit) { + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; } /** - * @param array ...$arguments - * * @throws \PHPUnit\Framework\Exception - * @throws MethodNameNotConfiguredException - * @throws MethodParametersAlreadyConfiguredException - * - * @return $this + * @throws XmlConfiguration\Exception */ - public function withConsecutive(...$arguments) : self + private function handleListSuites(bool $exit): int { - $this->ensureParametersCanBeConfigured(); - $this->matcher->setParametersRule(new Rule\ConsecutiveParameters($arguments)); - return $this; + $this->printVersionString(); + $this->warnAboutConflictingOptions('listSuites', ['filter', 'groups', 'excludeGroups', 'testsuite']); + print 'Available test suite(s):' . PHP_EOL; + foreach ($this->arguments['configurationObject']->testSuite() as $testSuite) { + printf(' - %s' . PHP_EOL, $testSuite->name()); + } + if ($exit) { + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; } /** - * @throws MethodNameNotConfiguredException - * @throws MethodParametersAlreadyConfiguredException - * - * @return $this + * @throws InvalidArgumentException */ - public function withAnyParameters() : self + private function handleListTests(TestSuite $suite, bool $exit): int { - $this->ensureParametersCanBeConfigured(); - $this->matcher->setParametersRule(new Rule\AnyParameters()); - return $this; + $this->printVersionString(); + $this->warnAboutConflictingOptions('listTests', ['filter', 'groups', 'excludeGroups']); + $renderer = new TextTestListRenderer(); + print $renderer->render($suite); + if ($exit) { + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; } /** - * @param Constraint|string $constraint - * - * @throws \PHPUnit\Framework\InvalidArgumentException - * @throws MethodCannotBeConfiguredException - * @throws MethodNameAlreadyConfiguredException - * - * @return $this + * @throws InvalidArgumentException */ - public function method($constraint) : self + private function handleListTestsXml(TestSuite $suite, string $target, bool $exit): int { - if ($this->matcher->hasMethodNameRule()) { - throw new MethodNameAlreadyConfiguredException(); + $this->printVersionString(); + $this->warnAboutConflictingOptions('listTestsXml', ['filter', 'groups', 'excludeGroups']); + $renderer = new XmlTestListRenderer(); + file_put_contents($target, $renderer->render($suite)); + printf('Wrote list of tests that would have been run to %s' . PHP_EOL, $target); + if ($exit) { + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); } - $configurableMethodNames = array_map(static function (ConfigurableMethod $configurable) { - return strtolower($configurable->getName()); - }, $this->configurableMethods); - if (is_string($constraint) && !in_array(strtolower($constraint), $configurableMethodNames, \true)) { - throw new MethodCannotBeConfiguredException($constraint); + return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; + } + private function generateConfiguration(): void + { + $this->printVersionString(); + print 'Generating phpunit.xml in ' . getcwd() . PHP_EOL . PHP_EOL; + print 'Bootstrap script (relative to path shown above; default: vendor/autoload.php): '; + $bootstrapScript = trim(fgets(STDIN)); + print 'Tests directory (relative to path shown above; default: tests): '; + $testsDirectory = trim(fgets(STDIN)); + print 'Source directory (relative to path shown above; default: src): '; + $src = trim(fgets(STDIN)); + print 'Cache directory (relative to path shown above; default: .phpunit.cache): '; + $cacheDirectory = trim(fgets(STDIN)); + if ($bootstrapScript === '') { + $bootstrapScript = 'vendor/autoload.php'; } - $this->matcher->setMethodNameRule(new Rule\MethodName($constraint)); - return $this; + if ($testsDirectory === '') { + $testsDirectory = 'tests'; + } + if ($src === '') { + $src = 'src'; + } + if ($cacheDirectory === '') { + $cacheDirectory = '.phpunit.cache'; + } + $generator = new Generator(); + file_put_contents('phpunit.xml', $generator->generateDefaultConfiguration(Version::series(), $bootstrapScript, $testsDirectory, $src, $cacheDirectory)); + print PHP_EOL . 'Generated phpunit.xml in ' . getcwd() . '.' . PHP_EOL; + print 'Make sure to exclude the ' . $cacheDirectory . ' directory from version control.' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); } - /** - * @throws MethodNameNotConfiguredException - * @throws MethodParametersAlreadyConfiguredException - */ - private function ensureParametersCanBeConfigured() : void + private function migrateConfiguration(string $filename): void { - if (!$this->matcher->hasMethodNameRule()) { - throw new MethodNameNotConfiguredException(); + $this->printVersionString(); + $result = (new SchemaDetector())->detect($filename); + if (!$result->detected()) { + print $filename . ' does not validate against any known schema.' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); } - if ($this->matcher->hasParametersRule()) { - throw new MethodParametersAlreadyConfiguredException(); + /** @psalm-suppress MissingThrowsDocblock */ + if ($result->version() === Version::series()) { + print $filename . ' does not need to be migrated.' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + copy($filename, $filename . '.bak'); + print 'Created backup: ' . $filename . '.bak' . PHP_EOL; + try { + file_put_contents($filename, (new Migrator())->migrate($filename)); + print 'Migrated configuration: ' . $filename . PHP_EOL; + } catch (Throwable $t) { + print 'Migration failed: ' . $t->getMessage() . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); } + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); } - private function getConfiguredMethod() : ?ConfigurableMethod + private function handleCustomOptions(array $unrecognizedOptions): void { - $configuredMethod = null; - foreach ($this->configurableMethods as $configurableMethod) { - if ($this->matcher->getMethodNameRule()->matchesName($configurableMethod->getName())) { - if ($configuredMethod !== null) { - return null; - } - $configuredMethod = $configurableMethod; + foreach ($unrecognizedOptions as $name => $value) { + if (isset($this->longOptions[$name])) { + $handler = $this->longOptions[$name]; + } + $name .= '='; + if (isset($this->longOptions[$name])) { + $handler = $this->longOptions[$name]; + } + if (isset($handler) && is_callable([$this, $handler])) { + $this->{$handler}($value); + unset($handler); } } - return $configuredMethod; + } + private function handleWarmCoverageCache(\PHPUnit\TextUI\XmlConfiguration\Configuration $configuration): void + { + $this->printVersionString(); + if (isset($this->arguments['coverageCacheDirectory'])) { + $cacheDirectory = $this->arguments['coverageCacheDirectory']; + } elseif ($configuration->codeCoverage()->hasCacheDirectory()) { + $cacheDirectory = $configuration->codeCoverage()->cacheDirectory()->path(); + } else { + print 'Cache for static analysis has not been configured' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + $filter = new Filter(); + if ($configuration->codeCoverage()->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { + (new FilterMapper())->map($filter, $configuration->codeCoverage()); + } elseif (isset($this->arguments['coverageFilter'])) { + if (!is_array($this->arguments['coverageFilter'])) { + $coverageFilterDirectories = [$this->arguments['coverageFilter']]; + } else { + $coverageFilterDirectories = $this->arguments['coverageFilter']; + } + foreach ($coverageFilterDirectories as $coverageFilterDirectory) { + $filter->includeDirectory($coverageFilterDirectory); + } + } else { + print 'Filter for code coverage has not been configured' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + $timer = new Timer(); + $timer->start(); + print 'Warming cache for static analysis ... '; + (new CacheWarmer())->warmCache($cacheDirectory, !$configuration->codeCoverage()->disableCodeCoverageIgnore(), $configuration->codeCoverage()->ignoreDeprecatedCodeUnits(), $filter); + print 'done [' . $timer->stop()->asString() . ']' . PHP_EOL; + exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + } + private function configurationFileInDirectory(string $directory): ?string + { + $candidates = [$directory . '/phpunit.xml', $directory . '/phpunit.xml.dist']; + foreach ($candidates as $candidate) { + if (is_file($candidate)) { + return realpath($candidate); + } + } + return null; } /** - * @throws IncompatibleReturnValueException + * @psalm-param "listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite" $key + * @psalm-param list<"listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite"> $keys */ - private function ensureTypeOfReturnValues(array $values) : void + private function warnAboutConflictingOptions(string $key, array $keys): void { - $configuredMethod = $this->getConfiguredMethod(); - if ($configuredMethod === null) { - return; - } - foreach ($values as $value) { - if (!$configuredMethod->mayReturn($value)) { - throw new IncompatibleReturnValueException($configuredMethod, $value); + $warningPrinted = \false; + foreach ($keys as $_key) { + if (!empty($this->arguments[$_key])) { + printf('The %s and %s options cannot be combined, %s is ignored' . PHP_EOL, $this->mapKeyToOptionForWarning($_key), $this->mapKeyToOptionForWarning($key), $this->mapKeyToOptionForWarning($_key)); + $warningPrinted = \true; } } + if ($warningPrinted) { + print PHP_EOL; + } + } + /** + * @psalm-param "listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite" $key + */ + private function mapKeyToOptionForWarning(string $key): string + { + switch ($key) { + case 'listGroups': + return '--list-groups'; + case 'listSuites': + return '--list-suites'; + case 'listTests': + return '--list-tests'; + case 'listTestsXml': + return '--list-tests-xml'; + case 'filter': + return '--filter'; + case 'groups': + return '--group'; + case 'excludeGroups': + return '--exclude-group'; + case 'testsuite': + return '--testsuite'; + } } } > $valueMap - * - * @return self + * @var int */ - public function willReturnMap(array $valueMap); + protected $maxColumn; /** - * @param int $argumentIndex - * - * @return self + * @var bool */ - public function willReturnArgument($argumentIndex); + protected $lastTestFailed = \false; /** - * @param callable $callback - * - * @return self + * @var int */ - public function willReturnCallback($callback); - /** @return self */ - public function willReturnSelf(); + protected $numAssertions = 0; /** - * @param mixed $values - * - * @return self + * @var int */ - public function willReturnOnConsecutiveCalls(...$values); - /** @return self */ - public function willThrowException(Throwable $exception); -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Builder; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface MethodNameMatch extends \PHPUnit\Framework\MockObject\Builder\ParametersMatch -{ + protected $numTests = -1; /** - * Adds a new method name match and returns the parameter match object for - * further matching possibilities. - * - * @param \PHPUnit\Framework\Constraint\Constraint $constraint Constraint for matching method, if a string is passed it will use the PHPUnit_Framework_Constraint_IsEqual - * - * @return ParametersMatch + * @var int */ - public function method($constraint); -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Builder; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface ParametersMatch extends \PHPUnit\Framework\MockObject\Builder\Stub -{ + protected $numTestsRun = 0; /** - * Defines the expectation which must occur before the current is valid. - * - * @param string $id the identification of the expectation that should - * occur before this one - * - * @return Stub + * @var int */ - public function after($id); + protected $numTestsWidth; /** - * Sets the parameters to match for, each parameter to this function will - * be part of match. To perform specific matches or constraints create a - * new PHPUnit\Framework\Constraint\Constraint and use it for the parameter. - * If the parameter value is not a constraint it will use the - * PHPUnit\Framework\Constraint\IsEqual for the value. - * - * Some examples: - * - * // match first parameter with value 2 - * $b->with(2); - * // match first parameter with value 'smock' and second identical to 42 - * $b->with('smock', new PHPUnit\Framework\Constraint\IsEqual(42)); - * - * - * @return ParametersMatch + * @var bool */ - public function with(...$arguments); + protected $colors = \false; /** - * Sets a rule which allows any kind of parameters. + * @var bool + */ + protected $debug = \false; + /** + * @var bool + */ + protected $verbose = \false; + /** + * @var int + */ + private $numberOfColumns; + /** + * @var bool + */ + private $reverse; + /** + * @var bool + */ + private $defectListPrinted = \false; + /** + * @var Timer + */ + private $timer; + /** + * Constructor. * - * Some examples: - * - * // match any number of parameters - * $b->withAnyParameters(); - * + * @param null|resource|string $out + * @param int|string $numberOfColumns * - * @return ParametersMatch + * @throws Exception */ - public function withAnyParameters(); -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Builder; - -use PHPUnit\Framework\MockObject\Stub\Stub as BaseStub; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface Stub extends \PHPUnit\Framework\MockObject\Builder\Identity -{ + public function __construct($out = null, bool $verbose = \false, string $colors = self::COLOR_DEFAULT, bool $debug = \false, $numberOfColumns = 80, bool $reverse = \false) + { + parent::__construct($out); + if (!in_array($colors, self::AVAILABLE_COLORS, \true)) { + throw InvalidArgumentException::create(3, vsprintf('value from "%s", "%s" or "%s"', self::AVAILABLE_COLORS)); + } + if (!is_int($numberOfColumns) && $numberOfColumns !== 'max') { + throw InvalidArgumentException::create(5, 'integer or "max"'); + } + $console = new Console(); + $maxNumberOfColumns = $console->getNumberOfColumns(); + if ($numberOfColumns === 'max' || $numberOfColumns !== 80 && $numberOfColumns > $maxNumberOfColumns) { + $numberOfColumns = $maxNumberOfColumns; + } + $this->numberOfColumns = $numberOfColumns; + $this->verbose = $verbose; + $this->debug = $debug; + $this->reverse = $reverse; + if ($colors === self::COLOR_AUTO && $console->hasColorSupport()) { + $this->colors = \true; + } else { + $this->colors = self::COLOR_ALWAYS === $colors; + } + $this->timer = new Timer(); + $this->timer->start(); + } + public function printResult(TestResult $result): void + { + $this->printHeader($result); + $this->printErrors($result); + $this->printWarnings($result); + $this->printFailures($result); + $this->printRisky($result); + if ($this->verbose) { + $this->printIncompletes($result); + $this->printSkipped($result); + } + $this->printFooter($result); + } /** - * Stubs the matching method with the stub object $stub. Any invocations of - * the matched method will now be handled by the stub instead. + * An error occurred. */ - public function will(BaseStub $stub) : \PHPUnit\Framework\MockObject\Builder\Identity; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use PHPUnit\SebastianBergmann\Type\Type; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ConfigurableMethod -{ + public function addError(Test $test, Throwable $t, float $time): void + { + $this->writeProgressWithColor('fg-red, bold', 'E'); + $this->lastTestFailed = \true; + } + /** + * A failure occurred. + */ + public function addFailure(Test $test, AssertionFailedError $e, float $time): void + { + $this->writeProgressWithColor('bg-red, fg-white', 'F'); + $this->lastTestFailed = \true; + } + /** + * A warning occurred. + */ + public function addWarning(Test $test, Warning $e, float $time): void + { + $this->writeProgressWithColor('fg-yellow, bold', 'W'); + $this->lastTestFailed = \true; + } + /** + * Incomplete test. + */ + public function addIncompleteTest(Test $test, Throwable $t, float $time): void + { + $this->writeProgressWithColor('fg-yellow, bold', 'I'); + $this->lastTestFailed = \true; + } + /** + * Risky test. + */ + public function addRiskyTest(Test $test, Throwable $t, float $time): void + { + $this->writeProgressWithColor('fg-yellow, bold', 'R'); + $this->lastTestFailed = \true; + } + /** + * Skipped test. + */ + public function addSkippedTest(Test $test, Throwable $t, float $time): void + { + $this->writeProgressWithColor('fg-cyan, bold', 'S'); + $this->lastTestFailed = \true; + } /** - * @var string + * A testsuite started. */ - private $name; + public function startTestSuite(TestSuite $suite): void + { + if ($this->numTests == -1) { + $this->numTests = count($suite); + $this->numTestsWidth = strlen((string) $this->numTests); + $this->maxColumn = $this->numberOfColumns - strlen(' / (XXX%)') - 2 * $this->numTestsWidth; + } + } /** - * @var Type + * A testsuite ended. */ - private $returnType; - public function __construct(string $name, Type $returnType) + public function endTestSuite(TestSuite $suite): void { - $this->name = $name; - $this->returnType = $returnType; } - public function getName() : string + /** + * A test started. + */ + public function startTest(Test $test): void { - return $this->name; + if ($this->debug) { + $this->write(sprintf("Test '%s' started\n", \PHPUnit\Util\Test::describeAsString($test))); + } } - public function mayReturn($value) : bool + /** + * A test ended. + */ + public function endTest(Test $test, float $time): void { - if ($value === null && $this->returnType->allowsNull()) { - return \true; + if ($this->debug) { + $this->write(sprintf("Test '%s' ended\n", \PHPUnit\Util\Test::describeAsString($test))); + } + if (!$this->lastTestFailed) { + $this->writeProgress('.'); + } + if ($test instanceof TestCase) { + $this->numAssertions += $test->getNumAssertions(); + } elseif ($test instanceof PhptTestCase) { + $this->numAssertions++; + } + $this->lastTestFailed = \false; + if ($test instanceof TestCase && !$test->hasExpectationOnOutput()) { + $this->write($test->getActualOutput()); } - return $this->returnType->isAssignable(Type::fromValue($value, \false)); } - public function getReturnTypeDeclaration() : string + protected function printDefects(array $defects, string $type): void { - return $this->returnType->asString(); + $count = count($defects); + if ($count == 0) { + return; + } + if ($this->defectListPrinted) { + $this->write("\n--\n\n"); + } + $this->write(sprintf("There %s %d %s%s:\n", $count == 1 ? 'was' : 'were', $count, $type, $count == 1 ? '' : 's')); + $i = 1; + if ($this->reverse) { + $defects = array_reverse($defects); + } + foreach ($defects as $defect) { + $this->printDefect($defect, $i++); + } + $this->defectListPrinted = \true; + } + protected function printDefect(TestFailure $defect, int $count): void + { + $this->printDefectHeader($defect, $count); + $this->printDefectTrace($defect); + } + protected function printDefectHeader(TestFailure $defect, int $count): void + { + $this->write(sprintf("\n%d) %s\n", $count, $defect->getTestName())); + } + protected function printDefectTrace(TestFailure $defect): void + { + $e = $defect->thrownException(); + $this->write((string) $e); + while ($e = $e->getPrevious()) { + $this->write("\nCaused by\n" . trim((string) $e) . "\n"); + } + } + protected function printErrors(TestResult $result): void + { + $this->printDefects($result->errors(), 'error'); + } + protected function printFailures(TestResult $result): void + { + $this->printDefects($result->failures(), 'failure'); + } + protected function printWarnings(TestResult $result): void + { + $this->printDefects($result->warnings(), 'warning'); + } + protected function printIncompletes(TestResult $result): void + { + $this->printDefects($result->notImplemented(), 'incomplete test'); + } + protected function printRisky(TestResult $result): void + { + $this->printDefects($result->risky(), 'risky test'); + } + protected function printSkipped(TestResult $result): void + { + $this->printDefects($result->skipped(), 'skipped test'); + } + protected function printHeader(TestResult $result): void + { + if (count($result) > 0) { + $this->write(PHP_EOL . PHP_EOL . (new ResourceUsageFormatter())->resourceUsage($this->timer->stop()) . PHP_EOL . PHP_EOL); + } + } + protected function printFooter(TestResult $result): void + { + if (count($result) === 0) { + $this->writeWithColor('fg-black, bg-yellow', 'No tests executed!'); + return; + } + if ($result->wasSuccessfulAndNoTestIsRiskyOrSkippedOrIncomplete()) { + $this->writeWithColor('fg-black, bg-green', sprintf('OK (%d test%s, %d assertion%s)', count($result), count($result) === 1 ? '' : 's', $this->numAssertions, $this->numAssertions === 1 ? '' : 's')); + return; + } + $color = 'fg-black, bg-yellow'; + if ($result->wasSuccessful()) { + if ($this->verbose || !$result->allHarmless()) { + $this->write("\n"); + } + $this->writeWithColor($color, 'OK, but incomplete, skipped, or risky tests!'); + } else { + $this->write("\n"); + if ($result->errorCount()) { + $color = 'fg-white, bg-red'; + $this->writeWithColor($color, 'ERRORS!'); + } elseif ($result->failureCount()) { + $color = 'fg-white, bg-red'; + $this->writeWithColor($color, 'FAILURES!'); + } elseif ($result->warningCount()) { + $color = 'fg-black, bg-yellow'; + $this->writeWithColor($color, 'WARNINGS!'); + } + } + $this->writeCountString(count($result), 'Tests', $color, \true); + $this->writeCountString($this->numAssertions, 'Assertions', $color, \true); + $this->writeCountString($result->errorCount(), 'Errors', $color); + $this->writeCountString($result->failureCount(), 'Failures', $color); + $this->writeCountString($result->warningCount(), 'Warnings', $color); + $this->writeCountString($result->skippedCount(), 'Skipped', $color); + $this->writeCountString($result->notImplementedCount(), 'Incomplete', $color); + $this->writeCountString($result->riskyCount(), 'Risky', $color); + $this->writeWithColor($color, '.'); + } + protected function writeProgress(string $progress): void + { + if ($this->debug) { + return; + } + $this->write($progress); + $this->column++; + $this->numTestsRun++; + if ($this->column == $this->maxColumn || $this->numTestsRun == $this->numTests) { + if ($this->numTestsRun == $this->numTests) { + $this->write(str_repeat(' ', $this->maxColumn - $this->column)); + } + $this->write(sprintf(' %' . $this->numTestsWidth . 'd / %' . $this->numTestsWidth . 'd (%3s%%)', $this->numTestsRun, $this->numTests, floor($this->numTestsRun / $this->numTests * 100))); + if ($this->column == $this->maxColumn) { + $this->writeNewLine(); + } + } + } + protected function writeNewLine(): void + { + $this->column = 0; + $this->write("\n"); + } + /** + * Formats a buffer with a specified ANSI color sequence if colors are + * enabled. + */ + protected function colorizeTextBox(string $color, string $buffer): string + { + if (!$this->colors) { + return $buffer; + } + $lines = preg_split('/\r\n|\r|\n/', $buffer); + $padding = max(array_map('\strlen', $lines)); + $styledLines = []; + foreach ($lines as $line) { + $styledLines[] = Color::colorize($color, str_pad($line, $padding)); + } + return implode(PHP_EOL, $styledLines); + } + /** + * Writes a buffer out with a color sequence if colors are enabled. + */ + protected function writeWithColor(string $color, string $buffer, bool $lf = \true): void + { + $this->write($this->colorizeTextBox($color, $buffer)); + if ($lf) { + $this->write(PHP_EOL); + } + } + /** + * Writes progress with a color sequence if colors are enabled. + */ + protected function writeProgressWithColor(string $color, string $buffer): void + { + $buffer = $this->colorizeTextBox($color, $buffer); + $this->writeProgress($buffer); + } + private function writeCountString(int $count, string $name, string $color, bool $always = \false): void + { + static $first = \true; + if ($always || $count > 0) { + $this->writeWithColor($color, sprintf('%s%s: %d', !$first ? ', ' : '', $name, $count), \false); + $first = \false; + } } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; +namespace PHPUnit\TextUI; -use function sprintf; +use RuntimeException; /** - * @internal This class is not covered by the backward compatibility promise for PHPUnit + * @internal This interface is not covered by the backward compatibility promise for PHPUnit */ -final class CannotUseAddMethodsException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +final class ReflectionException extends RuntimeException implements \PHPUnit\TextUI\Exception { - public function __construct(string $type, string $methodName) - { - parent::__construct(sprintf('Trying to configure method "%s" with addMethods(), but it exists in class "%s". Use onlyMethods() for methods that exist in the class', $methodName, $type)); - } } $methods + * @return false|int */ - public function __construct(array $methods) + public static function safeMatch(string $pattern, string $subject) { - parent::__construct(sprintf('Cannot double using a method list that contains duplicates: "%s" (duplicate: "%s")', implode(', ', $methods), implode(', ', array_unique(array_diff_assoc($methods, array_unique($methods)))))); + return \PHPUnit\Util\ErrorHandler::invokeIgnoringWarnings(static function () use ($pattern, $subject) { + return preg_match($pattern, $subject); + }); } } getName(), is_object($value) ? get_class($value) : gettype($value), $method->getReturnTypeDeclaration())); + $decodedJson = json_decode($json, \false); + if (json_last_error()) { + throw new Exception('Cannot prettify invalid json'); + } + return json_encode($decodedJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); + } + /** + * To allow comparison of JSON strings, first process them into a consistent + * format so that they can be compared as strings. + * + * @return array ($error, $canonicalized_json) The $error parameter is used + * to indicate an error decoding the json. This is used to avoid ambiguity + * with JSON strings consisting entirely of 'null' or 'false'. + */ + public static function canonicalize(string $json): array + { + $decodedJson = json_decode($json); + if (json_last_error()) { + return [\true, null]; + } + self::recursiveSort($decodedJson); + $reencodedJson = json_encode($decodedJson); + return [\false, $reencodedJson]; + } + /** + * JSON object keys are unordered while PHP array keys are ordered. + * + * Sort all array keys to ensure both the expected and actual values have + * their keys in the same order. + */ + private static function recursiveSort(&$json): void + { + if (!is_array($json)) { + // If the object is not empty, change it to an associative array + // so we can sort the keys (and we will still re-encode it + // correctly, since PHP encodes associative arrays as JSON objects.) + // But EMPTY objects MUST remain empty objects. (Otherwise we will + // re-encode it as a JSON array rather than a JSON object.) + // See #2919. + if (is_object($json) && count((array) $json) > 0) { + $json = (array) $json; + } else { + return; + } + } + ksort($json); + foreach ($json as $key => &$value) { + self::recursiveSort($value); + } } } Foo/Bar/Baz.php + * - Namespace: Foo\Bar\Baz -> Foo/Bar/Baz.php + */ + public static function classNameToFilename(string $className): string { - parent::__construct(sprintf('No builder found for match builder identification <%s>', $id)); + return str_replace(['_', '\\'], DIRECTORY_SEPARATOR, $className) . '.php'; + } + public static function createDirectory(string $directory): bool + { + return !(!is_dir($directory) && !@mkdir($directory, 0777, \true) && !is_dir($directory)); } } is already registered', $id)); + \PHPUnit\Util\ExcludeList::addDirectory($directory); + } + /** + * @throws Exception + * + * @return string[] + */ + public function getBlacklistedDirectories(): array + { + return (new \PHPUnit\Util\ExcludeList())->getExcludedDirectories(); + } + /** + * @throws Exception + */ + public function isBlacklisted(string $file): bool + { + return (new \PHPUnit\Util\ExcludeList())->isExcluded($file); } } + */ + public function publicMethodsInTestClass(ReflectionClass $class): array { - parent::__construct(sprintf('Trying to configure method "%s" which cannot be configured because it does not exist, has not been specified, is final, or is static', $method)); + return $this->filterMethods($class, ReflectionMethod::IS_PUBLIC); + } + /** + * @psalm-return list + */ + public function methodsInTestClass(ReflectionClass $class): array + { + return $this->filterMethods($class, null); + } + /** + * @psalm-return list + */ + private function filterMethods(ReflectionClass $class, ?int $filter): array + { + $methods = []; + // PHP <7.3.5 throw error when null is passed + // to ReflectionClass::getMethods() when strict_types is enabled. + $classMethods = $filter === null ? $class->getMethods() : $class->getMethods($filter); + foreach ($classMethods as $method) { + if ($method->getDeclaringClass()->getName() === TestCase::class) { + continue; + } + if ($method->getDeclaringClass()->getName() === Assert::class) { + continue; + } + $methods[] = $method; + } + return $methods; } } importNode($element, \true); + } + /** + * @deprecated Only used by assertEqualXMLStructure() + */ + public static function removeCharacterDataNodes(DOMNode $node): void + { + if ($node->hasChildNodes()) { + for ($i = $node->childNodes->length - 1; $i >= 0; $i--) { + if (($child = $node->childNodes->item($i)) instanceof DOMCharacterData) { + $node->removeChild($child); + } + } + } + } + /** + * Escapes a string for the use in XML documents. + * + * Any Unicode character is allowed, excluding the surrogate blocks, FFFE, + * and FFFF (not even as character reference). + * + * @see https://www.w3.org/TR/xml/#charsets + */ + public static function prepareString(string $string): string + { + return preg_replace('/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]/', '', htmlspecialchars(self::convertToUtf8($string), ENT_QUOTES)); + } + /** + * "Convert" a DOMElement object into a PHP variable. + */ + public static function xmlToVariable(DOMElement $element) + { + $variable = null; + switch ($element->tagName) { + case 'array': + $variable = []; + foreach ($element->childNodes as $entry) { + if (!$entry instanceof DOMElement || $entry->tagName !== 'element') { + continue; + } + $item = $entry->childNodes->item(0); + if ($item instanceof DOMText) { + $item = $entry->childNodes->item(1); + } + $value = self::xmlToVariable($item); + if ($entry->hasAttribute('key')) { + $variable[(string) $entry->getAttribute('key')] = $value; + } else { + $variable[] = $value; + } + } + break; + case 'object': + $className = $element->getAttribute('class'); + if ($element->hasChildNodes()) { + $arguments = $element->childNodes->item(0)->childNodes; + $constructorArgs = []; + foreach ($arguments as $argument) { + if ($argument instanceof DOMElement) { + $constructorArgs[] = self::xmlToVariable($argument); + } + } + try { + assert(class_exists($className)); + $variable = (new ReflectionClass($className))->newInstanceArgs($constructorArgs); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Util\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } else { + $variable = new $className(); + } + break; + case 'boolean': + $variable = $element->textContent === 'true'; + break; + case 'integer': + case 'double': + case 'string': + $variable = $element->textContent; + settype($variable, $element->tagName); + break; + } + return $variable; + } + private static function convertToUtf8(string $string): string + { + if (!self::isUtf8($string)) { + $string = mb_convert_encoding($string, 'UTF-8'); + } + return $string; + } + private static function isUtf8(string $string): bool + { + $length = strlen($string); + for ($i = 0; $i < $length; $i++) { + if (ord($string[$i]) < 0x80) { + $n = 0; + } elseif ((ord($string[$i]) & 0xe0) === 0xc0) { + $n = 1; + } elseif ((ord($string[$i]) & 0xf0) === 0xe0) { + $n = 2; + } elseif ((ord($string[$i]) & 0xf0) === 0xf0) { + $n = 3; + } else { + return \false; + } + for ($j = 0; $j < $n; $j++) { + if (++$i === $length || (ord($string[$i]) & 0xc0) !== 0x80) { + return \false; + } + } + } + return \true; } } indexed by class name */ + private $classDocBlocks = []; + /** @var array> indexed by class name and method name */ + private $methodDocBlocks = []; + public static function getInstance(): self { - parent::__construct('Method name is not configured'); + return self::$instance ?? self::$instance = new self(); + } + private function __construct() + { + } + /** + * @throws Exception + * + * @psalm-param class-string $class + */ + public function forClassName(string $class): \PHPUnit\Util\Annotation\DocBlock + { + if (array_key_exists($class, $this->classDocBlocks)) { + return $this->classDocBlocks[$class]; + } + try { + $reflection = new ReflectionClass($class); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + return $this->classDocBlocks[$class] = \PHPUnit\Util\Annotation\DocBlock::ofClass($reflection); + } + /** + * @throws Exception + * + * @psalm-param class-string $classInHierarchy + */ + public function forMethod(string $classInHierarchy, string $method): \PHPUnit\Util\Annotation\DocBlock + { + if (isset($this->methodDocBlocks[$classInHierarchy][$method])) { + return $this->methodDocBlocks[$classInHierarchy][$method]; + } + try { + $reflection = new ReflectionMethod($classInHierarchy, $method); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + return $this->methodDocBlocks[$classInHierarchy][$method] = \PHPUnit\Util\Annotation\DocBlock::ofMethod($reflection, $classInHierarchy); } } PHP(?:Unit)?)\s+(?P[<>=!]{0,2})\s*(?P[\d\.-]+(dev|(RC|alpha|beta)[\d\.])?)[ \t]*\r?$/m'; + private const REGEX_REQUIRES_VERSION_CONSTRAINT = '/@requires\s+(?PPHP(?:Unit)?)\s+(?P[\d\t \-.|~^]+)[ \t]*\r?$/m'; + private const REGEX_REQUIRES_OS = '/@requires\s+(?POS(?:FAMILY)?)\s+(?P.+?)[ \t]*\r?$/m'; + private const REGEX_REQUIRES_SETTING = '/@requires\s+(?Psetting)\s+(?P([^ ]+?))\s*(?P[\w\.-]+[\w\.]?)?[ \t]*\r?$/m'; + private const REGEX_REQUIRES = '/@requires\s+(?Pfunction|extension)\s+(?P([^\s<>=!]+))\s*(?P[<>=!]{0,2})\s*(?P[\d\.-]+[\d\.]?)?[ \t]*\r?$/m'; + private const REGEX_TEST_WITH = '/@testWith\s+/'; + /** @var string */ + private $docComment; + /** @var bool */ + private $isMethod; + /** @var array> pre-parsed annotations indexed by name and occurrence index */ + private $symbolAnnotations; + /** + * @var null|array + * + * @psalm-var null|(array{ + * __OFFSET: array&array{__FILE: string}, + * setting?: array, + * extension_versions?: array + * }&array< + * string, + * string|array{version: string, operator: string}|array{constraint: string}|array + * >) + */ + private $parsedRequirements; + /** @var int */ + private $startLine; + /** @var int */ + private $endLine; + /** @var string */ + private $fileName; + /** @var string */ + private $name; + /** + * @var string + * + * @psalm-var class-string + */ + private $className; + public static function ofClass(ReflectionClass $class): self { - parent::__construct('Method parameters already configured'); + $className = $class->getName(); + return new self((string) $class->getDocComment(), \false, self::extractAnnotationsFromReflector($class), $class->getStartLine(), $class->getEndLine(), $class->getFileName(), $className, $className); + } + /** + * @psalm-param class-string $classNameInHierarchy + */ + public static function ofMethod(ReflectionMethod $method, string $classNameInHierarchy): self + { + return new self((string) $method->getDocComment(), \true, self::extractAnnotationsFromReflector($method), $method->getStartLine(), $method->getEndLine(), $method->getFileName(), $method->getName(), $classNameInHierarchy); + } + /** + * Note: we do not preserve an instance of the reflection object, since it cannot be safely (de-)serialized. + * + * @param array> $symbolAnnotations + * + * @psalm-param class-string $className + */ + private function __construct(string $docComment, bool $isMethod, array $symbolAnnotations, int $startLine, int $endLine, string $fileName, string $name, string $className) + { + $this->docComment = $docComment; + $this->isMethod = $isMethod; + $this->symbolAnnotations = $symbolAnnotations; + $this->startLine = $startLine; + $this->endLine = $endLine; + $this->fileName = $fileName; + $this->name = $name; + $this->className = $className; + } + /** + * @psalm-return array{ + * __OFFSET: array&array{__FILE: string}, + * setting?: array, + * extension_versions?: array + * }&array< + * string, + * string|array{version: string, operator: string}|array{constraint: string}|array + * > + * + * @throws Warning if the requirements version constraint is not well-formed + */ + public function requirements(): array + { + if ($this->parsedRequirements !== null) { + return $this->parsedRequirements; + } + $offset = $this->startLine; + $requires = []; + $recordedSettings = []; + $extensionVersions = []; + $recordedOffsets = ['__FILE' => realpath($this->fileName)]; + // Trim docblock markers, split it into lines and rewind offset to start of docblock + $lines = preg_replace(['#^/\*{2}#', '#\*/$#'], '', preg_split('/\r\n|\r|\n/', $this->docComment)); + $offset -= count($lines); + foreach ($lines as $line) { + if (preg_match(self::REGEX_REQUIRES_OS, $line, $matches)) { + $requires[$matches['name']] = $matches['value']; + $recordedOffsets[$matches['name']] = $offset; + } + if (preg_match(self::REGEX_REQUIRES_VERSION, $line, $matches)) { + $requires[$matches['name']] = ['version' => $matches['version'], 'operator' => $matches['operator']]; + $recordedOffsets[$matches['name']] = $offset; + } + if (preg_match(self::REGEX_REQUIRES_VERSION_CONSTRAINT, $line, $matches)) { + if (!empty($requires[$matches['name']])) { + $offset++; + continue; + } + try { + $versionConstraintParser = new VersionConstraintParser(); + $requires[$matches['name'] . '_constraint'] = ['constraint' => $versionConstraintParser->parse(trim($matches['constraint']))]; + $recordedOffsets[$matches['name'] . '_constraint'] = $offset; + } catch (\PHPUnitPHAR\PharIo\Version\Exception $e) { + throw new Warning($e->getMessage(), $e->getCode(), $e); + } + } + if (preg_match(self::REGEX_REQUIRES_SETTING, $line, $matches)) { + $recordedSettings[$matches['setting']] = $matches['value']; + $recordedOffsets['__SETTING_' . $matches['setting']] = $offset; + } + if (preg_match(self::REGEX_REQUIRES, $line, $matches)) { + $name = $matches['name'] . 's'; + if (!isset($requires[$name])) { + $requires[$name] = []; + } + $requires[$name][] = $matches['value']; + $recordedOffsets[$matches['name'] . '_' . $matches['value']] = $offset; + if ($name === 'extensions' && !empty($matches['version'])) { + $extensionVersions[$matches['value']] = ['version' => $matches['version'], 'operator' => $matches['operator']]; + } + } + $offset++; + } + return $this->parsedRequirements = array_merge($requires, ['__OFFSET' => $recordedOffsets], array_filter(['setting' => $recordedSettings, 'extension_versions' => $extensionVersions])); + } + /** + * Returns the provided data for a method. + * + * @throws Exception + */ + public function getProvidedData(): ?array + { + /** @noinspection SuspiciousBinaryOperationInspection */ + $data = $this->getDataFromDataProviderAnnotation($this->docComment) ?? $this->getDataFromTestWithAnnotation($this->docComment); + if ($data === null) { + return null; + } + if ($data === []) { + throw new SkippedTestError(); + } + foreach ($data as $key => $value) { + if (!is_array($value)) { + throw new InvalidDataSetException(sprintf('Data set %s is invalid.', is_int($key) ? '#' . $key : '"' . $key . '"')); + } + } + return $data; + } + /** + * @psalm-return array + */ + public function getInlineAnnotations(): array + { + $code = file($this->fileName); + $lineNumber = $this->startLine; + $startLine = $this->startLine - 1; + $endLine = $this->endLine - 1; + $codeLines = array_slice($code, $startLine, $endLine - $startLine + 1); + $annotations = []; + foreach ($codeLines as $line) { + if (preg_match('#/\*\*?\s*@(?P[A-Za-z_-]+)(?:[ \t]+(?P.*?))?[ \t]*\r?\*/$#m', $line, $matches)) { + $annotations[strtolower($matches['name'])] = ['line' => $lineNumber, 'value' => $matches['value']]; + } + $lineNumber++; + } + return $annotations; + } + public function symbolAnnotations(): array + { + return $this->symbolAnnotations; + } + public function isHookToBeExecutedBeforeClass(): bool + { + return $this->isMethod && \false !== strpos($this->docComment, '@beforeClass'); + } + public function isHookToBeExecutedAfterClass(): bool + { + return $this->isMethod && \false !== strpos($this->docComment, '@afterClass'); + } + public function isToBeExecutedBeforeTest(): bool + { + return 1 === preg_match('/@before\b/', $this->docComment); + } + public function isToBeExecutedAfterTest(): bool + { + return 1 === preg_match('/@after\b/', $this->docComment); + } + public function isToBeExecutedAsPreCondition(): bool + { + return 1 === preg_match('/@preCondition\b/', $this->docComment); + } + public function isToBeExecutedAsPostCondition(): bool + { + return 1 === preg_match('/@postCondition\b/', $this->docComment); + } + private function getDataFromDataProviderAnnotation(string $docComment): ?array + { + $methodName = null; + $className = $this->className; + if ($this->isMethod) { + $methodName = $this->name; + } + if (!preg_match_all(self::REGEX_DATA_PROVIDER, $docComment, $matches)) { + return null; + } + $result = []; + foreach ($matches[1] as $match) { + $dataProviderMethodNameNamespace = explode('\\', $match); + $leaf = explode('::', array_pop($dataProviderMethodNameNamespace)); + $dataProviderMethodName = array_pop($leaf); + if (empty($dataProviderMethodNameNamespace)) { + $dataProviderMethodNameNamespace = ''; + } else { + $dataProviderMethodNameNamespace = implode('\\', $dataProviderMethodNameNamespace) . '\\'; + } + if (empty($leaf)) { + $dataProviderClassName = $className; + } else { + /** @psalm-var class-string $dataProviderClassName */ + $dataProviderClassName = $dataProviderMethodNameNamespace . array_pop($leaf); + } + try { + $dataProviderClass = new ReflectionClass($dataProviderClassName); + $dataProviderMethod = $dataProviderClass->getMethod($dataProviderMethodName); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + // @codeCoverageIgnoreEnd + } + if ($dataProviderMethod->isStatic()) { + $object = null; + } else { + $object = $dataProviderClass->newInstance(); + } + if ($dataProviderMethod->getNumberOfParameters() === 0) { + $data = $dataProviderMethod->invoke($object); + } else { + $data = $dataProviderMethod->invoke($object, $methodName); + } + if ($data instanceof Traversable) { + $origData = $data; + $data = []; + foreach ($origData as $key => $value) { + if (is_int($key)) { + $data[] = $value; + } elseif (array_key_exists($key, $data)) { + throw new InvalidDataProviderException(sprintf('The key "%s" has already been defined in the data provider "%s".', $key, $match)); + } else { + $data[$key] = $value; + } + } + } + if (is_array($data)) { + $result = array_merge($result, $data); + } + } + return $result; + } + /** + * @throws Exception + */ + private function getDataFromTestWithAnnotation(string $docComment): ?array + { + $docComment = $this->cleanUpMultiLineAnnotation($docComment); + if (!preg_match(self::REGEX_TEST_WITH, $docComment, $matches, PREG_OFFSET_CAPTURE)) { + return null; + } + $offset = strlen($matches[0][0]) + $matches[0][1]; + $annotationContent = substr($docComment, $offset); + $data = []; + foreach (explode("\n", $annotationContent) as $candidateRow) { + $candidateRow = trim($candidateRow); + if ($candidateRow[0] !== '[') { + break; + } + $dataSet = json_decode($candidateRow, \true); + if (json_last_error() !== JSON_ERROR_NONE) { + throw new Exception('The data set for the @testWith annotation cannot be parsed: ' . json_last_error_msg()); + } + $data[] = $dataSet; + } + if (!$data) { + throw new Exception('The data set for the @testWith annotation cannot be parsed.'); + } + return $data; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class OriginalConstructorInvocationRequiredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception -{ - public function __construct() + private function cleanUpMultiLineAnnotation(string $docComment): string { - parent::__construct('Proxying to original methods requires invoking the original constructor'); + // removing initial ' * ' for docComment + $docComment = str_replace("\r\n", "\n", $docComment); + $docComment = preg_replace('/\n\s*\*\s?/', "\n", $docComment); + $docComment = (string) substr($docComment, 0, -1); + return rtrim($docComment, "\n"); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReflectionException extends RuntimeException implements \PHPUnit\Framework\MockObject\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnValueNotConfiguredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception -{ - public function __construct(\PHPUnit\Framework\MockObject\Invocation $invocation) + /** @return array> */ + private static function parseDocBlock(string $docBlock): array { - parent::__construct(sprintf('Return value inference disabled and no expectation set up for %s::%s()', $invocation->getClassName(), $invocation->getMethodName())); + // Strip away the docblock header and footer to ease parsing of one line annotations + $docBlock = (string) substr($docBlock, 3, -2); + $annotations = []; + if (preg_match_all('/@(?P[A-Za-z_-]+)(?:[ \t]+(?P.*?))?[ \t]*\r?$/m', $docBlock, $matches)) { + $numMatches = count($matches[0]); + for ($i = 0; $i < $numMatches; $i++) { + $annotations[$matches['name'][$i]][] = (string) $matches['value'][$i]; + } + } + return $annotations; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class RuntimeException extends \RuntimeException implements \PHPUnit\Framework\MockObject\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class SoapExtensionNotAvailableException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception -{ - public function __construct() + /** @param ReflectionClass|ReflectionFunctionAbstract $reflector */ + private static function extractAnnotationsFromReflector(Reflector $reflector): array { - parent::__construct('The SOAP extension is required to generate a test double from WSDL'); + $annotations = []; + if ($reflector instanceof ReflectionClass) { + $annotations = array_merge($annotations, ...array_map(static function (ReflectionClass $trait): array { + return self::parseDocBlock((string) $trait->getDocComment()); + }, array_values($reflector->getTraits()))); + } + return array_merge($annotations, self::parseDocBlock((string) $reflector->getDocComment())); } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class UnknownTraitException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception -{ - public function __construct(string $traitName) + /** + * @throws Exception + */ + protected function getHandles(): array { - parent::__construct(sprintf('Trait "%s" does not exist', $traitName)); + if (\false === $stdout_handle = tmpfile()) { + throw new Exception('A temporary file could not be created; verify that your TEMP environment variable is writable'); + } + return [1 => $stdout_handle]; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use function sprintf; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class UnknownTypeException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception -{ - public function __construct(string $type) + protected function useTemporaryFile(): bool { - parent::__construct(sprintf('Class or interface "%s" does not exist', $type)); + return \true; } } __phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); - } -} -EOT; - private const MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT' -namespace PHPUnit\Framework\MockObject; - -trait MockedCloneMethodWithoutReturnType +abstract class AbstractPhpProcess { - public function __clone() + /** + * @var Runtime + */ + protected $runtime; + /** + * @var bool + */ + protected $stderrRedirection = \false; + /** + * @var string + */ + protected $stdin = ''; + /** + * @var string + */ + protected $args = ''; + /** + * @var array + */ + protected $env = []; + /** + * @var int + */ + protected $timeout = 0; + public static function factory(): self { - $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); + if (DIRECTORY_SEPARATOR === '\\') { + return new \PHPUnit\Util\PHP\WindowsPhpProcess(); + } + return new \PHPUnit\Util\PHP\DefaultPhpProcess(); } -} -EOT; - private const UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT = <<<'EOT' -namespace PHPUnit\Framework\MockObject; - -trait UnmockedCloneMethodWithVoidReturnType -{ - public function __clone(): void + public function __construct() { - $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); - - parent::__clone(); + $this->runtime = new Runtime(); } -} -EOT; - private const UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT' -namespace PHPUnit\Framework\MockObject; - -trait UnmockedCloneMethodWithoutReturnType -{ - public function __clone() + /** + * Defines if should use STDERR redirection or not. + * + * Then $stderrRedirection is TRUE, STDERR is redirected to STDOUT. + */ + public function setUseStderrRedirection(bool $stderrRedirection): void { - $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); - - parent::__clone(); + $this->stderrRedirection = $stderrRedirection; } -} -EOT; /** - * @var array + * Returns TRUE if uses STDERR redirection or FALSE if not. */ - private const EXCLUDED_METHOD_NAMES = ['__CLASS__' => \true, '__DIR__' => \true, '__FILE__' => \true, '__FUNCTION__' => \true, '__LINE__' => \true, '__METHOD__' => \true, '__NAMESPACE__' => \true, '__TRAIT__' => \true, '__clone' => \true, '__halt_compiler' => \true]; + public function useStderrRedirection(): bool + { + return $this->stderrRedirection; + } /** - * @var array + * Sets the input string to be sent via STDIN. */ - private static $cache = []; + public function setStdin(string $stdin): void + { + $this->stdin = $stdin; + } /** - * @var Template[] + * Returns the input string to be sent via STDIN. */ - private static $templates = []; + public function getStdin(): string + { + return $this->stdin; + } /** - * Returns a mock object for the specified class. - * - * @param null|array $methods - * - * @throws \PHPUnit\Framework\InvalidArgumentException - * @throws ClassAlreadyExistsException - * @throws ClassIsFinalException - * @throws DuplicateMethodException - * @throws InvalidMethodNameException - * @throws OriginalConstructorInvocationRequiredException - * @throws ReflectionException - * @throws RuntimeException - * @throws UnknownTypeException + * Sets the string of arguments to pass to the php job. */ - public function getMock(string $type, $methods = [], array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \true, bool $callOriginalMethods = \false, object $proxyTarget = null, bool $allowMockingUnknownTypes = \true, bool $returnValueGeneration = \true) : \PHPUnit\Framework\MockObject\MockObject + public function setArgs(string $args): void { - if (!is_array($methods) && null !== $methods) { - throw InvalidArgumentException::create(2, 'array'); - } - if ($type === 'Traversable' || $type === '\\Traversable') { - $type = 'Iterator'; - } - if (!$allowMockingUnknownTypes && !class_exists($type, $callAutoload) && !interface_exists($type, $callAutoload)) { - throw new \PHPUnit\Framework\MockObject\UnknownTypeException($type); - } - if (null !== $methods) { - foreach ($methods as $method) { - if (!preg_match('~[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*~', (string) $method)) { - throw new \PHPUnit\Framework\MockObject\InvalidMethodNameException((string) $method); - } - } - if ($methods !== array_unique($methods)) { - throw new \PHPUnit\Framework\MockObject\DuplicateMethodException($methods); - } - } - if ($mockClassName !== '' && class_exists($mockClassName, \false)) { - try { - $reflector = new ReflectionClass($mockClassName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if (!$reflector->implementsInterface(\PHPUnit\Framework\MockObject\MockObject::class)) { - throw new \PHPUnit\Framework\MockObject\ClassAlreadyExistsException($mockClassName); - } - } - if (!$callOriginalConstructor && $callOriginalMethods) { - throw new \PHPUnit\Framework\MockObject\OriginalConstructorInvocationRequiredException(); - } - $mock = $this->generate($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); - return $this->getObject($mock, $type, $callOriginalConstructor, $callAutoload, $arguments, $callOriginalMethods, $proxyTarget, $returnValueGeneration); + $this->args = $args; } /** - * @psalm-param list $interfaces - * - * @throws RuntimeException - * @throws UnknownTypeException + * Returns the string of arguments to pass to the php job. */ - public function getMockForInterfaces(array $interfaces, bool $callAutoload = \true) : \PHPUnit\Framework\MockObject\MockObject + public function getArgs(): string { - if (count($interfaces) < 2) { - throw new \PHPUnit\Framework\MockObject\RuntimeException('At least two interfaces must be specified'); - } - foreach ($interfaces as $interface) { - if (!interface_exists($interface, $callAutoload)) { - throw new \PHPUnit\Framework\MockObject\UnknownTypeException($interface); - } - } - sort($interfaces); - $methods = []; - foreach ($interfaces as $interface) { - $methods = array_merge($methods, $this->getClassMethods($interface)); - } - if (count(array_unique($methods)) < count($methods)) { - throw new \PHPUnit\Framework\MockObject\RuntimeException('Interfaces must not declare the same method'); - } - $unqualifiedNames = []; - foreach ($interfaces as $interface) { - $parts = explode('\\', $interface); - $unqualifiedNames[] = array_pop($parts); - } - sort($unqualifiedNames); - do { - $intersectionName = sprintf('Intersection_%s_%s', implode('_', $unqualifiedNames), substr(md5((string) mt_rand()), 0, 8)); - } while (interface_exists($intersectionName, \false)); - $template = $this->getTemplate('intersection.tpl'); - $template->setVar(['intersection' => $intersectionName, 'interfaces' => implode(', ', $interfaces)]); - eval($template->render()); - return $this->getMock($intersectionName); + return $this->args; } /** - * Returns a mock object for the specified abstract class with all abstract - * methods of the class mocked. - * - * Concrete methods to mock can be specified with the $mockedMethods parameter. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName - * - * @psalm-return MockObject&RealInstanceType + * Sets the array of environment variables to start the child process with. * - * @throws \PHPUnit\Framework\InvalidArgumentException - * @throws ClassAlreadyExistsException - * @throws ClassIsFinalException - * @throws DuplicateMethodException - * @throws InvalidMethodNameException - * @throws OriginalConstructorInvocationRequiredException - * @throws ReflectionException - * @throws RuntimeException - * @throws UnknownClassException - * @throws UnknownTypeException + * @param array $env */ - public function getMockForAbstractClass(string $originalClassName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = null, bool $cloneArguments = \true) : \PHPUnit\Framework\MockObject\MockObject + public function setEnv(array $env): void { - if (class_exists($originalClassName, $callAutoload) || interface_exists($originalClassName, $callAutoload)) { - try { - $reflector = new ReflectionClass($originalClassName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methods = $mockedMethods; - foreach ($reflector->getMethods() as $method) { - if ($method->isAbstract() && !in_array($method->getName(), $methods ?? [], \true)) { - $methods[] = $method->getName(); - } - } - if (empty($methods)) { - $methods = null; - } - return $this->getMock($originalClassName, $methods, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $cloneArguments); - } - throw new \PHPUnit\Framework\MockObject\UnknownClassException($originalClassName); + $this->env = $env; } /** - * Returns a mock object for the specified trait with all abstract methods - * of the trait mocked. Concrete methods to mock can be specified with the - * `$mockedMethods` parameter. - * - * @psalm-param trait-string $traitName - * - * @throws \PHPUnit\Framework\InvalidArgumentException - * @throws ClassAlreadyExistsException - * @throws ClassIsFinalException - * @throws DuplicateMethodException - * @throws InvalidMethodNameException - * @throws OriginalConstructorInvocationRequiredException - * @throws ReflectionException - * @throws RuntimeException - * @throws UnknownClassException - * @throws UnknownTraitException - * @throws UnknownTypeException + * Returns the array of environment variables to start the child process with. */ - public function getMockForTrait(string $traitName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = null, bool $cloneArguments = \true) : \PHPUnit\Framework\MockObject\MockObject + public function getEnv(): array { - if (!trait_exists($traitName, $callAutoload)) { - throw new \PHPUnit\Framework\MockObject\UnknownTraitException($traitName); - } - $className = $this->generateClassName($traitName, '', 'Trait_'); - $classTemplate = $this->getTemplate('trait_class.tpl'); - $classTemplate->setVar(['prologue' => 'abstract ', 'class_name' => $className['className'], 'trait_name' => $traitName]); - $mockTrait = new \PHPUnit\Framework\MockObject\MockTrait($classTemplate->render(), $className['className']); - $mockTrait->generate(); - return $this->getMockForAbstractClass($className['className'], $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); + return $this->env; } /** - * Returns an object for the specified trait. - * - * @psalm-param trait-string $traitName - * - * @throws ReflectionException - * @throws RuntimeException - * @throws UnknownTraitException + * Sets the amount of seconds to wait before timing out. */ - public function getObjectForTrait(string $traitName, string $traitClassName = '', bool $callAutoload = \true, bool $callOriginalConstructor = \false, array $arguments = []) : object + public function setTimeout(int $timeout): void { - if (!trait_exists($traitName, $callAutoload)) { - throw new \PHPUnit\Framework\MockObject\UnknownTraitException($traitName); - } - $className = $this->generateClassName($traitName, $traitClassName, 'Trait_'); - $classTemplate = $this->getTemplate('trait_class.tpl'); - $classTemplate->setVar(['prologue' => '', 'class_name' => $className['className'], 'trait_name' => $traitName]); - return $this->getObject(new \PHPUnit\Framework\MockObject\MockTrait($classTemplate->render(), $className['className']), '', $callOriginalConstructor, $callAutoload, $arguments); + $this->timeout = $timeout; } /** - * @throws ClassIsFinalException - * @throws ReflectionException - * @throws RuntimeException + * Returns the amount of seconds to wait before timing out. */ - public function generate(string $type, array $methods = null, string $mockClassName = '', bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \true, bool $callOriginalMethods = \false) : \PHPUnit\Framework\MockObject\MockClass + public function getTimeout(): int { - if ($mockClassName !== '') { - return $this->generateMock($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); - } - $key = md5($type . serialize($methods) . serialize($callOriginalClone) . serialize($cloneArguments) . serialize($callOriginalMethods)); - if (!isset(self::$cache[$key])) { - self::$cache[$key] = $this->generateMock($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); + return $this->timeout; + } + /** + * Runs a single test in a separate PHP process. + * + * @throws InvalidArgumentException + */ + public function runTestJob(string $job, Test $test, TestResult $result, string $processResultFile): void + { + $result->startTest($test); + $processResult = ''; + $_result = $this->runJob($job); + if (file_exists($processResultFile)) { + $processResult = file_get_contents($processResultFile); + @unlink($processResultFile); } - return self::$cache[$key]; + $this->processChildResult($test, $result, $processResult, $_result['stderr']); } /** - * @throws RuntimeException - * @throws SoapExtensionNotAvailableException + * Returns the command based into the configurations. */ - public function generateClassFromWsdl(string $wsdlFile, string $className, array $methods = [], array $options = []) : string + public function getCommand(array $settings, ?string $file = null): string { - if (!extension_loaded('soap')) { - throw new \PHPUnit\Framework\MockObject\SoapExtensionNotAvailableException(); + $command = $this->runtime->getBinary(); + if ($this->runtime->hasPCOV()) { + $settings = array_merge($settings, $this->runtime->getCurrentSettings(array_keys(ini_get_all('pcov')))); + } elseif ($this->runtime->hasXdebug()) { + $settings = array_merge($settings, $this->runtime->getCurrentSettings(array_keys(ini_get_all('xdebug')))); } - $options = array_merge($options, ['cache_wsdl' => WSDL_CACHE_NONE]); - try { - $client = new SoapClient($wsdlFile, $options); - $_methods = array_unique($client->__getFunctions()); - unset($client); - } catch (SoapFault $e) { - throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), (int) $e->getCode(), $e); + $command .= $this->settingsToParameters($settings); + if (PHP_SAPI === 'phpdbg') { + $command .= ' -qrr'; + if (!$file) { + $command .= 's='; + } } - sort($_methods); - $methodTemplate = $this->getTemplate('wsdl_method.tpl'); - $methodsBuffer = ''; - foreach ($_methods as $method) { - preg_match_all('/[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*\\(/', $method, $matches, PREG_OFFSET_CAPTURE); - $lastFunction = array_pop($matches[0]); - $nameStart = $lastFunction[1]; - $nameEnd = $nameStart + strlen($lastFunction[0]) - 1; - $name = str_replace('(', '', $lastFunction[0]); - if (empty($methods) || in_array($name, $methods, \true)) { - $args = explode(',', str_replace(')', '', substr($method, $nameEnd + 1))); - foreach (range(0, count($args) - 1) as $i) { - $parameterStart = strpos($args[$i], '$'); - if (!$parameterStart) { - continue; - } - $args[$i] = substr($args[$i], $parameterStart); - } - $methodTemplate->setVar(['method_name' => $name, 'arguments' => implode(', ', $args)]); - $methodsBuffer .= $methodTemplate->render(); + if ($file) { + $command .= ' ' . escapeshellarg($file); + } + if ($this->args) { + if (!$file) { + $command .= ' --'; } + $command .= ' ' . $this->args; } - $optionsBuffer = '['; - foreach ($options as $key => $value) { - $optionsBuffer .= $key . ' => ' . $value; + if ($this->stderrRedirection) { + $command .= ' 2>&1'; } - $optionsBuffer .= ']'; - $classTemplate = $this->getTemplate('wsdl_class.tpl'); - $namespace = ''; - if (strpos($className, '\\') !== \false) { - $parts = explode('\\', $className); - $className = array_pop($parts); - $namespace = 'namespace ' . implode('\\', $parts) . ';' . "\n\n"; + return $command; + } + /** + * Runs a single job (PHP code) using a separate PHP process. + */ + abstract public function runJob(string $job, array $settings = []): array; + protected function settingsToParameters(array $settings): string + { + $buffer = ''; + foreach ($settings as $setting) { + $buffer .= ' -d ' . escapeshellarg($setting); } - $classTemplate->setVar(['namespace' => $namespace, 'class_name' => $className, 'wsdl' => $wsdlFile, 'options' => $optionsBuffer, 'methods' => $methodsBuffer]); - return $classTemplate->render(); + return $buffer; } /** - * @throws ReflectionException + * Processes the TestResult object from an isolated process. * - * @return string[] + * @throws InvalidArgumentException */ - public function getClassMethods(string $className) : array + private function processChildResult(Test $test, TestResult $result, string $stdout, string $stderr): void { - try { - $class = new ReflectionClass($className); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methods = []; - foreach ($class->getMethods() as $method) { - if ($method->isPublic() || $method->isAbstract()) { - $methods[] = $method->getName(); + $time = 0; + if (!empty($stderr)) { + $result->addError($test, new Exception(trim($stderr)), $time); + } else { + set_error_handler( + /** + * @throws ErrorException + */ + static function ($errno, $errstr, $errfile, $errline): void { + throw new ErrorException($errstr, $errno, $errno, $errfile, $errline); + } + ); + try { + if (strpos($stdout, "#!/usr/bin/env php\n") === 0) { + $stdout = substr($stdout, 19); + } + $childResult = unserialize(str_replace("#!/usr/bin/env php\n", '', $stdout)); + restore_error_handler(); + if ($childResult === \false) { + $result->addFailure($test, new AssertionFailedError('Test was run in child process and ended unexpectedly'), $time); + } + } catch (ErrorException $e) { + restore_error_handler(); + $childResult = \false; + $result->addError($test, new Exception(trim($stdout), 0, $e), $time); + } + if ($childResult !== \false) { + if (!empty($childResult['output'])) { + $output = $childResult['output']; + } + /* @var TestCase $test */ + $test->setResult($childResult['testResult']); + $test->addToAssertionCount($childResult['numAssertions']); + $childResult = $childResult['result']; + assert($childResult instanceof TestResult); + if ($result->getCollectCodeCoverageInformation()) { + $result->getCodeCoverage()->merge($childResult->getCodeCoverage()); + } + $time = $childResult->time(); + $notImplemented = $childResult->notImplemented(); + $risky = $childResult->risky(); + $skipped = $childResult->skipped(); + $errors = $childResult->errors(); + $warnings = $childResult->warnings(); + $failures = $childResult->failures(); + if (!empty($notImplemented)) { + $result->addError($test, $this->getException($notImplemented[0]), $time); + } elseif (!empty($risky)) { + $result->addError($test, $this->getException($risky[0]), $time); + } elseif (!empty($skipped)) { + $result->addError($test, $this->getException($skipped[0]), $time); + } elseif (!empty($errors)) { + $result->addError($test, $this->getException($errors[0]), $time); + } elseif (!empty($warnings)) { + $result->addWarning($test, $this->getException($warnings[0]), $time); + } elseif (!empty($failures)) { + $result->addFailure($test, $this->getException($failures[0]), $time); + } } } - return $methods; + $result->endTest($test, $time); + if (!empty($output)) { + print $output; + } } /** - * @throws ReflectionException + * Gets the thrown exception from a PHPUnit\Framework\TestFailure. * - * @return MockMethod[] + * @see https://github.com/sebastianbergmann/phpunit/issues/74 */ - public function mockClassMethods(string $className, bool $callOriginalMethods, bool $cloneArguments) : array + private function getException(TestFailure $error): Exception { - try { - $class = new ReflectionClass($className); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methods = []; - foreach ($class->getMethods() as $method) { - if (($method->isPublic() || $method->isAbstract()) && $this->canMockMethod($method)) { - $methods[] = \PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments); + $exception = $error->thrownException(); + if ($exception instanceof __PHP_Incomplete_Class) { + $exceptionArray = []; + foreach ((array) $exception as $key => $value) { + $key = substr($key, strrpos($key, "\x00") + 1); + $exceptionArray[$key] = $value; } + $exception = new SyntheticError(sprintf('%s: %s', $exceptionArray['_PHP_Incomplete_Class_Name'], $exceptionArray['message']), $exceptionArray['code'], $exceptionArray['file'], $exceptionArray['line'], $exceptionArray['trace']); + } + return $exception; + } +} +{driverMethod}($filter), + $filter + ); + + if ({cachesStaticAnalysis}) { + $codeCoverage->cacheStaticAnalysis(unserialize('{codeCoverageCacheDirectory}')); + } + + $result->setCodeCoverage($codeCoverage); + } + + $result->beStrictAboutTestsThatDoNotTestAnything({isStrictAboutTestsThatDoNotTestAnything}); + $result->beStrictAboutOutputDuringTests({isStrictAboutOutputDuringTests}); + $result->enforceTimeLimit({enforcesTimeLimit}); + $result->beStrictAboutTodoAnnotatedTests({isStrictAboutTodoAnnotatedTests}); + $result->beStrictAboutResourceUsageDuringSmallTests({isStrictAboutResourceUsageDuringSmallTests}); + + $test = new {className}('{methodName}', unserialize('{data}'), '{dataName}'); + \assert($test instanceof TestCase); + + $test->setDependencyInput(unserialize('{dependencyInput}')); + $test->setInIsolation(true); + + ob_end_clean(); + $test->run($result); + $output = ''; + if (!$test->hasExpectationOnOutput()) { + $output = $test->getActualOutput(); + } + + ini_set('xdebug.scream', '0'); + + @rewind(STDOUT); /* @ as not every STDOUT target stream is rewindable */ + if ($stdout = @stream_get_contents(STDOUT)) { + $output = $stdout . $output; + $streamMetaData = stream_get_meta_data(STDOUT); + if (!empty($streamMetaData['stream_type']) && 'STDIO' === $streamMetaData['stream_type']) { + @ftruncate(STDOUT, 0); + @rewind(STDOUT); + } + } + + file_put_contents( + '{processResultFile}', + serialize( + [ + 'testResult' => $test->getResult(), + 'numAssertions' => $test->getNumAssertions(), + 'result' => $result, + 'output' => $output + ] + ) + ); +} + +$configurationFilePath = '{configurationFilePath}'; + +if ('' !== $configurationFilePath) { + $configuration = (new Loader)->load($configurationFilePath); + + (new PhpHandler)->handle($configuration->php()); + + unset($configuration); +} + +function __phpunit_error_handler($errno, $errstr, $errfile, $errline) +{ + return true; +} + +set_error_handler('__phpunit_error_handler'); + +{constants} +{included_files} +{globals} + +restore_error_handler(); + +if (isset($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { + require_once $GLOBALS['__PHPUNIT_BOOTSTRAP']; + unset($GLOBALS['__PHPUNIT_BOOTSTRAP']); +} + +__phpunit_run_isolated_test(); +{driverMethod}($filter), + $filter + ); + + if ({codeCoverageCacheDirectory}) { + $coverage->cacheStaticAnalysis({codeCoverageCacheDirectory}); + } + + $coverage->start(__FILE__); +} + +register_shutdown_function( + function() use ($coverage) { + $output = null; + + if ($coverage) { + $output = $coverage->stop(); + } + + file_put_contents('{coverageFile}', serialize($output)); + } +); + +ob_end_clean(); + +require '{job}'; +{driverMethod}($filter), + $filter + ); + + if ({cachesStaticAnalysis}) { + $codeCoverage->cacheStaticAnalysis(unserialize('{codeCoverageCacheDirectory}')); + } + + $result->setCodeCoverage($codeCoverage); + } + + $result->beStrictAboutTestsThatDoNotTestAnything({isStrictAboutTestsThatDoNotTestAnything}); + $result->beStrictAboutOutputDuringTests({isStrictAboutOutputDuringTests}); + $result->enforceTimeLimit({enforcesTimeLimit}); + $result->beStrictAboutTodoAnnotatedTests({isStrictAboutTodoAnnotatedTests}); + $result->beStrictAboutResourceUsageDuringSmallTests({isStrictAboutResourceUsageDuringSmallTests}); + + $test = new {className}('{name}', unserialize('{data}'), '{dataName}'); + $test->setDependencyInput(unserialize('{dependencyInput}')); + $test->setInIsolation(true); + + ob_end_clean(); + $test->run($result); + $output = ''; + if (!$test->hasExpectationOnOutput()) { + $output = $test->getActualOutput(); + } + + ini_set('xdebug.scream', '0'); + + @rewind(STDOUT); /* @ as not every STDOUT target stream is rewindable */ + if ($stdout = @stream_get_contents(STDOUT)) { + $output = $stdout . $output; + $streamMetaData = stream_get_meta_data(STDOUT); + if (!empty($streamMetaData['stream_type']) && 'STDIO' === $streamMetaData['stream_type']) { + @ftruncate(STDOUT, 0); + @rewind(STDOUT); } - return $methods; } + + file_put_contents( + '{processResultFile}', + serialize( + [ + 'testResult' => $test->getResult(), + 'numAssertions' => $test->getNumAssertions(), + 'result' => $result, + 'output' => $output + ] + ) + ); +} + +$configurationFilePath = '{configurationFilePath}'; + +if ('' !== $configurationFilePath) { + $configuration = (new Loader)->load($configurationFilePath); + + (new PhpHandler)->handle($configuration->php()); + + unset($configuration); +} + +function __phpunit_error_handler($errno, $errstr, $errfile, $errline) +{ + return true; +} + +set_error_handler('__phpunit_error_handler'); + +{constants} +{included_files} +{globals} + +restore_error_handler(); + +if (isset($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { + require_once $GLOBALS['__PHPUNIT_BOOTSTRAP']; + unset($GLOBALS['__PHPUNIT_BOOTSTRAP']); +} + +__phpunit_run_isolated_test(); + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\PHP; + +use function array_merge; +use function fclose; +use function file_put_contents; +use function fread; +use function fwrite; +use function is_array; +use function is_resource; +use function proc_close; +use function proc_open; +use function proc_terminate; +use function rewind; +use function sprintf; +use function stream_get_contents; +use function stream_select; +use function sys_get_temp_dir; +use function tempnam; +use function unlink; +use PHPUnit\Framework\Exception; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +class DefaultPhpProcess extends \PHPUnit\Util\PHP\AbstractPhpProcess +{ /** - * @throws ReflectionException + * @var string + */ + protected $tempFile; + /** + * Runs a single job (PHP code) using a separate PHP process. * - * @return MockMethod[] + * @throws Exception */ - public function mockInterfaceMethods(string $interfaceName, bool $cloneArguments) : array + public function runJob(string $job, array $settings = []): array { - try { - $class = new ReflectionClass($interfaceName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methods = []; - foreach ($class->getMethods() as $method) { - $methods[] = \PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, \false, $cloneArguments); + if ($this->stdin || $this->useTemporaryFile()) { + if (!($this->tempFile = tempnam(sys_get_temp_dir(), 'PHPUnit')) || file_put_contents($this->tempFile, $job) === \false) { + throw new Exception('Unable to write temporary file'); + } + $job = $this->stdin; } - return $methods; + return $this->runProcess($job, $settings); } /** - * @psalm-param class-string $interfaceName - * - * @throws ReflectionException - * - * @return ReflectionMethod[] + * Returns an array of file handles to be used in place of pipes. */ - private function userDefinedInterfaceMethods(string $interfaceName) : array + protected function getHandles(): array { - try { - // @codeCoverageIgnoreStart - $interface = new ReflectionClass($interfaceName); - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methods = []; - foreach ($interface->getMethods() as $method) { - if (!$method->isUserDefined()) { - continue; - } - $methods[] = $method; - } - return $methods; + return []; } /** - * @throws ReflectionException - * @throws RuntimeException + * Handles creating the child process and returning the STDOUT and STDERR. + * + * @throws Exception */ - private function getObject(\PHPUnit\Framework\MockObject\MockType $mockClass, $type = '', bool $callOriginalConstructor = \false, bool $callAutoload = \false, array $arguments = [], bool $callOriginalMethods = \false, object $proxyTarget = null, bool $returnValueGeneration = \true) + protected function runProcess(string $job, array $settings): array { - $className = $mockClass->generate(); - if ($callOriginalConstructor) { - if (count($arguments) === 0) { - $object = new $className(); - } else { - try { - $class = new ReflectionClass($className); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $object = $class->newInstanceArgs($arguments); - } - } else { - try { - $object = (new Instantiator())->instantiate($className); - } catch (InstantiatorException $e) { - throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage()); - } - } - if ($callOriginalMethods) { - if (!is_object($proxyTarget)) { - if (count($arguments) === 0) { - $proxyTarget = new $type(); - } else { - try { - $class = new ReflectionClass($type); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $proxyTarget = $class->newInstanceArgs($arguments); + $handles = $this->getHandles(); + $env = null; + if ($this->env) { + $env = $_SERVER ?? []; + unset($env['argv'], $env['argc']); + $env = array_merge($env, $this->env); + foreach ($env as $envKey => $envVar) { + if (is_array($envVar)) { + unset($env[$envKey]); } } - $object->__phpunit_setOriginalObject($proxyTarget); } - if ($object instanceof \PHPUnit\Framework\MockObject\MockObject) { - $object->__phpunit_setReturnValueGeneration($returnValueGeneration); + $pipeSpec = [0 => $handles[0] ?? ['pipe', 'r'], 1 => $handles[1] ?? ['pipe', 'w'], 2 => $handles[2] ?? ['pipe', 'w']]; + $process = proc_open($this->getCommand($settings, $this->tempFile), $pipeSpec, $pipes, null, $env); + if (!is_resource($process)) { + throw new Exception('Unable to spawn worker process'); } - return $object; - } - /** - * @throws ClassIsFinalException - * @throws ReflectionException - * @throws RuntimeException - */ - private function generateMock(string $type, ?array $explicitMethods, string $mockClassName, bool $callOriginalClone, bool $callAutoload, bool $cloneArguments, bool $callOriginalMethods) : \PHPUnit\Framework\MockObject\MockClass - { - $classTemplate = $this->getTemplate('mocked_class.tpl'); - $additionalInterfaces = []; - $mockedCloneMethod = \false; - $unmockedCloneMethod = \false; - $isClass = \false; - $isInterface = \false; - $class = null; - $mockMethods = new \PHPUnit\Framework\MockObject\MockMethodSet(); - $_mockClassName = $this->generateClassName($type, $mockClassName, 'Mock_'); - if (class_exists($_mockClassName['fullClassName'], $callAutoload)) { - $isClass = \true; - } elseif (interface_exists($_mockClassName['fullClassName'], $callAutoload)) { - $isInterface = \true; + if ($job) { + $this->process($pipes[0], $job); } - if (!$isClass && !$isInterface) { - $prologue = 'class ' . $_mockClassName['originalClassName'] . "\n{\n}\n\n"; - if (!empty($_mockClassName['namespaceName'])) { - $prologue = 'namespace ' . $_mockClassName['namespaceName'] . " {\n\n" . $prologue . "}\n\n" . "namespace {\n\n"; - $epilogue = "\n\n}"; - } - $mockedCloneMethod = \true; - } else { - try { - $class = new ReflectionClass($_mockClassName['fullClassName']); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($class->isFinal()) { - throw new \PHPUnit\Framework\MockObject\ClassIsFinalException($_mockClassName['fullClassName']); - } - // @see https://github.com/sebastianbergmann/phpunit/issues/2995 - if ($isInterface && $class->implementsInterface(Throwable::class)) { - $actualClassName = Exception::class; - $additionalInterfaces[] = $class->getName(); - $isInterface = \false; - try { - $class = new ReflectionClass($actualClassName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + fclose($pipes[0]); + $stderr = $stdout = ''; + if ($this->timeout) { + unset($pipes[0]); + while (\true) { + $r = $pipes; + $w = null; + $e = null; + $n = @stream_select($r, $w, $e, $this->timeout); + if ($n === \false) { + break; } - // @codeCoverageIgnoreEnd - foreach ($this->userDefinedInterfaceMethods($_mockClassName['fullClassName']) as $method) { - $methodName = $method->getName(); - if ($class->hasMethod($methodName)) { - try { - $classMethod = $class->getMethod($methodName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + if ($n === 0) { + proc_terminate($process, 9); + throw new Exception(sprintf('Job execution aborted after %d seconds', $this->timeout)); + } + if ($n > 0) { + foreach ($r as $pipe) { + $pipeOffset = 0; + foreach ($pipes as $i => $origPipe) { + if ($pipe === $origPipe) { + $pipeOffset = $i; + break; + } } - // @codeCoverageIgnoreEnd - if (!$this->canMockMethod($classMethod)) { - continue; + if (!$pipeOffset) { + break; + } + $line = fread($pipe, 8192); + if ($line === '' || $line === \false) { + fclose($pipes[$pipeOffset]); + unset($pipes[$pipeOffset]); + } elseif ($pipeOffset === 1) { + $stdout .= $line; + } else { + $stderr .= $line; } } - $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments)); - } - $_mockClassName = $this->generateClassName($actualClassName, $_mockClassName['className'], 'Mock_'); - } - // @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/103 - if ($isInterface && $class->implementsInterface(Traversable::class) && !$class->implementsInterface(Iterator::class) && !$class->implementsInterface(IteratorAggregate::class)) { - $additionalInterfaces[] = Iterator::class; - $mockMethods->addMethods(...$this->mockClassMethods(Iterator::class, $callOriginalMethods, $cloneArguments)); - } - if ($class->hasMethod('__clone')) { - try { - $cloneMethod = $class->getMethod('__clone'); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if (!$cloneMethod->isFinal()) { - if ($callOriginalClone && !$isInterface) { - $unmockedCloneMethod = \true; - } else { - $mockedCloneMethod = \true; + if (empty($pipes)) { + break; } } - } else { - $mockedCloneMethod = \true; } - } - if ($isClass && $explicitMethods === []) { - $mockMethods->addMethods(...$this->mockClassMethods($_mockClassName['fullClassName'], $callOriginalMethods, $cloneArguments)); - } - if ($isInterface && ($explicitMethods === [] || $explicitMethods === null)) { - $mockMethods->addMethods(...$this->mockInterfaceMethods($_mockClassName['fullClassName'], $cloneArguments)); - } - if (is_array($explicitMethods)) { - foreach ($explicitMethods as $methodName) { - if ($class !== null && $class->hasMethod($methodName)) { - try { - $method = $class->getMethod($methodName); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($this->canMockMethod($method)) { - $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments)); - } - } else { - $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromName($_mockClassName['fullClassName'], $methodName, $cloneArguments)); - } + } else { + if (isset($pipes[1])) { + $stdout = stream_get_contents($pipes[1]); + fclose($pipes[1]); + } + if (isset($pipes[2])) { + $stderr = stream_get_contents($pipes[2]); + fclose($pipes[2]); } } - $mockedMethods = ''; - $configurable = []; - foreach ($mockMethods->asArray() as $mockMethod) { - $mockedMethods .= $mockMethod->generateCode(); - $configurable[] = new \PHPUnit\Framework\MockObject\ConfigurableMethod($mockMethod->getName(), $mockMethod->getReturnType()); - } - $method = ''; - if (!$mockMethods->hasMethod('method') && (!isset($class) || !$class->hasMethod('method'))) { - $method = PHP_EOL . ' use \\PHPUnit\\Framework\\MockObject\\Method;'; - } - $cloneTrait = ''; - if ($mockedCloneMethod) { - $cloneTrait = $this->mockedCloneMethod(); + if (isset($handles[1])) { + rewind($handles[1]); + $stdout = stream_get_contents($handles[1]); + fclose($handles[1]); } - if ($unmockedCloneMethod) { - $cloneTrait = $this->unmockedCloneMethod(); + if (isset($handles[2])) { + rewind($handles[2]); + $stderr = stream_get_contents($handles[2]); + fclose($handles[2]); } - $classTemplate->setVar(['prologue' => $prologue ?? '', 'epilogue' => $epilogue ?? '', 'class_declaration' => $this->generateMockClassDeclaration($_mockClassName, $isInterface, $additionalInterfaces), 'clone' => $cloneTrait, 'mock_class_name' => $_mockClassName['className'], 'mocked_methods' => $mockedMethods, 'method' => $method]); - return new \PHPUnit\Framework\MockObject\MockClass($classTemplate->render(), $_mockClassName['className'], $configurable); + proc_close($process); + $this->cleanup(); + return ['stdout' => $stdout, 'stderr' => $stderr]; } - private function generateClassName(string $type, string $className, string $prefix) : array + /** + * @param resource $pipe + */ + protected function process($pipe, string $job): void { - if ($type[0] === '\\') { - $type = substr($type, 1); - } - $classNameParts = explode('\\', $type); - if (count($classNameParts) > 1) { - $type = array_pop($classNameParts); - $namespaceName = implode('\\', $classNameParts); - $fullClassName = $namespaceName . '\\' . $type; - } else { - $namespaceName = ''; - $fullClassName = $type; - } - if ($className === '') { - do { - $className = $prefix . $type . '_' . substr(md5((string) mt_rand()), 0, 8); - } while (class_exists($className, \false)); - } - return ['className' => $className, 'originalClassName' => $type, 'fullClassName' => $fullClassName, 'namespaceName' => $namespaceName]; + fwrite($pipe, $job); } - private function generateMockClassDeclaration(array $mockClassName, bool $isInterface, array $additionalInterfaces = []) : string + protected function cleanup(): void { - $buffer = 'class '; - $additionalInterfaces[] = \PHPUnit\Framework\MockObject\MockObject::class; - $interfaces = implode(', ', $additionalInterfaces); - if ($isInterface) { - $buffer .= sprintf('%s implements %s', $mockClassName['className'], $interfaces); - if (!in_array($mockClassName['originalClassName'], $additionalInterfaces, \true)) { - $buffer .= ', '; - if (!empty($mockClassName['namespaceName'])) { - $buffer .= $mockClassName['namespaceName'] . '\\'; - } - $buffer .= $mockClassName['originalClassName']; - } - } else { - $buffer .= sprintf('%s extends %s%s implements %s', $mockClassName['className'], !empty($mockClassName['namespaceName']) ? $mockClassName['namespaceName'] . '\\' : '', $mockClassName['originalClassName'], $interfaces); + if ($this->tempFile) { + unlink($this->tempFile); } - return $buffer; - } - private function canMockMethod(ReflectionMethod $method) : bool - { - return !($this->isConstructor($method) || $method->isFinal() || $method->isPrivate() || $this->isMethodNameExcluded($method->getName())); } - private function isMethodNameExcluded(string $name) : bool + protected function useTemporaryFile(): bool { - return isset(self::EXCLUDED_METHOD_NAMES[$name]); + return \false; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +use function chdir; +use function dirname; +use function error_reporting; +use function file_get_contents; +use function getcwd; +use function libxml_get_errors; +use function libxml_use_internal_errors; +use function sprintf; +use DOMDocument; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Loader +{ /** - * @throws RuntimeException + * @throws Exception */ - private function getTemplate(string $template) : Template + public function loadFile(string $filename, bool $isHtml = \false, bool $xinclude = \false, bool $strict = \false): DOMDocument { - $filename = __DIR__ . DIRECTORY_SEPARATOR . 'Generator' . DIRECTORY_SEPARATOR . $template; - if (!isset(self::$templates[$filename])) { - try { - self::$templates[$filename] = new Template($filename); - } catch (TemplateException $e) { - throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), (int) $e->getCode(), $e); - } + $reporting = error_reporting(0); + $contents = file_get_contents($filename); + error_reporting($reporting); + if ($contents === \false) { + throw new \PHPUnit\Util\Xml\Exception(sprintf('Could not read "%s".', $filename)); } - return self::$templates[$filename]; + return $this->load($contents, $isHtml, $filename, $xinclude, $strict); } /** - * @see https://github.com/sebastianbergmann/phpunit/issues/4139#issuecomment-605409765 + * @throws Exception */ - private function isConstructor(ReflectionMethod $method) : bool + public function load(string $actual, bool $isHtml = \false, string $filename = '', bool $xinclude = \false, bool $strict = \false): DOMDocument { - $methodName = strtolower($method->getName()); - if ($methodName === '__construct') { - return \true; - } - if (PHP_MAJOR_VERSION >= 8) { - return \false; + if ($actual === '') { + throw new \PHPUnit\Util\Xml\Exception('Could not load XML from empty string'); } - $className = strtolower($method->getDeclaringClass()->getName()); - return $methodName === $className; - } - private function mockedCloneMethod() : string - { - if (PHP_MAJOR_VERSION >= 8) { - if (!trait_exists('\\PHPUnit\\Framework\\MockObject\\MockedCloneMethodWithVoidReturnType')) { - eval(self::MOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT); - } - return PHP_EOL . ' use \\PHPUnit\\Framework\\MockObject\\MockedCloneMethodWithVoidReturnType;'; + // Required for XInclude on Windows. + if ($xinclude) { + $cwd = getcwd(); + @chdir(dirname($filename)); } - if (!trait_exists('\\PHPUnit\\Framework\\MockObject\\MockedCloneMethodWithoutReturnType')) { - eval(self::MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT); + $document = new DOMDocument(); + $document->preserveWhiteSpace = \false; + $internal = libxml_use_internal_errors(\true); + $message = ''; + $reporting = error_reporting(0); + if ($filename !== '') { + // Required for XInclude + $document->documentURI = $filename; } - return PHP_EOL . ' use \\PHPUnit\\Framework\\MockObject\\MockedCloneMethodWithoutReturnType;'; - } - private function unmockedCloneMethod() : string - { - if (PHP_MAJOR_VERSION >= 8) { - if (!trait_exists('\\PHPUnit\\Framework\\MockObject\\UnmockedCloneMethodWithVoidReturnType')) { - eval(self::UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT); - } - return PHP_EOL . ' use \\PHPUnit\\Framework\\MockObject\\UnmockedCloneMethodWithVoidReturnType;'; + if ($isHtml) { + $loaded = $document->loadHTML($actual); + } else { + $loaded = $document->loadXML($actual); } - if (!trait_exists('\\PHPUnit\\Framework\\MockObject\\UnmockedCloneMethodWithoutReturnType')) { - eval(self::UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT); + if (!$isHtml && $xinclude) { + $document->xinclude(); } - return PHP_EOL . ' use \\PHPUnit\\Framework\\MockObject\\UnmockedCloneMethodWithoutReturnType;'; - } -} - - @trigger_error({deprecation}, E_USER_DEPRECATED); -declare(strict_types=1); - -interface {intersection} extends {interfaces} -{ -} -declare(strict_types=1); - -{prologue}{class_declaration} -{ - use \PHPUnit\Framework\MockObject\Api;{method}{clone} -{mocked_methods}}{epilogue} - - {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} - {{deprecation} - $__phpunit_arguments = [{arguments_call}]; - $__phpunit_count = func_num_args(); - - if ($__phpunit_count > {arguments_count}) { - $__phpunit_arguments_tmp = func_get_args(); - - for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { - $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; - } + foreach (libxml_get_errors() as $error) { + $message .= "\n" . $error->message; } - - $__phpunit_result = $this->__phpunit_getInvocationHandler()->invoke( - new \PHPUnit\Framework\MockObject\Invocation( - '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments} - ) - ); - - return $__phpunit_result; - } - - {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} - {{deprecation} - $__phpunit_arguments = [{arguments_call}]; - $__phpunit_count = func_num_args(); - - if ($__phpunit_count > {arguments_count}) { - $__phpunit_arguments_tmp = func_get_args(); - - for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { - $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; - } + libxml_use_internal_errors($internal); + error_reporting($reporting); + if (isset($cwd)) { + @chdir($cwd); } - - $this->__phpunit_getInvocationHandler()->invoke( - new \PHPUnit\Framework\MockObject\Invocation( - '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments} - ) - ); - } - - {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} - { - throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); - } - - {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} - { - $__phpunit_arguments = [{arguments_call}]; - $__phpunit_count = func_num_args(); - - if ($__phpunit_count > {arguments_count}) { - $__phpunit_arguments_tmp = func_get_args(); - - for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { - $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; + if ($loaded === \false || $strict && $message !== '') { + if ($filename !== '') { + throw new \PHPUnit\Util\Xml\Exception(sprintf('Could not load "%s".%s', $filename, $message !== '' ? "\n" . $message : '')); } - } - - $this->__phpunit_getInvocationHandler()->invoke( - new \PHPUnit\Framework\MockObject\Invocation( - '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments}, true - ) - ); - - return call_user_func_array(array($this->__phpunit_originalObject, "{method_name}"), $__phpunit_arguments); - } - - {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} - { - $__phpunit_arguments = [{arguments_call}]; - $__phpunit_count = func_num_args(); - - if ($__phpunit_count > {arguments_count}) { - $__phpunit_arguments_tmp = func_get_args(); - - for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { - $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; + if ($message === '') { + $message = 'Could not load XML for unknown reason'; } + throw new \PHPUnit\Util\Xml\Exception($message); } - - $this->__phpunit_getInvocationHandler()->invoke( - new \PHPUnit\Framework\MockObject\Invocation( - '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments}, true - ) - ); - - call_user_func_array(array($this->__phpunit_originalObject, "{method_name}"), $__phpunit_arguments); + return $document; } -declare(strict_types=1); - -{prologue}class {class_name} -{ - use {trait_name}; } -declare(strict_types=1); + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; - public function {method_name}({arguments}) +use function file_get_contents; +use function libxml_clear_errors; +use function libxml_get_errors; +use function libxml_use_internal_errors; +use DOMDocument; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Validator +{ + public function validate(DOMDocument $document, string $xsdFilename): \PHPUnit\Util\Xml\ValidationResult { + $originalErrorHandling = libxml_use_internal_errors(\true); + $document->schemaValidateSource(file_get_contents($xsdFilename)); + $errors = libxml_get_errors(); + libxml_clear_errors(); + libxml_use_internal_errors($originalErrorHandling); + return \PHPUnit\Util\Xml\ValidationResult::fromArray($errors); } +} > */ - private $object; - public function __construct(string $className, string $methodName, array $parameters, string $returnType, object $object, bool $cloneObjects = \false, bool $proxiedCall = \false) - { - $this->className = $className; - $this->methodName = $methodName; - $this->parameters = $parameters; - $this->object = $object; - $this->proxiedCall = $proxiedCall; - if (strtolower($methodName) === '__tostring') { - $returnType = 'string'; - } - if (strpos($returnType, '?') === 0) { - $returnType = substr($returnType, 1); - $this->isReturnTypeNullable = \true; - } - $this->returnType = $returnType; - if (!$cloneObjects) { - return; - } - foreach ($this->parameters as $key => $value) { - if (is_object($value)) { - $this->parameters[$key] = Cloner::clone($value); - } - } - } - public function getClassName() : string - { - return $this->className; - } - public function getMethodName() : string - { - return $this->methodName; - } - public function getParameters() : array - { - return $this->parameters; - } + private $validationErrors = []; /** - * @throws RuntimeException - * - * @return mixed Mocked return value + * @psalm-param array $errors */ - public function generateReturnValue() + public static function fromArray(array $errors): self { - if ($this->isReturnTypeNullable || $this->proxiedCall) { - return null; - } - $intersection = \false; - $union = \false; - $unionContainsIntersections = \false; - if (strpos($this->returnType, '|') !== \false) { - $types = explode('|', $this->returnType); - $union = \true; - if (strpos($this->returnType, '(') !== \false) { - $unionContainsIntersections = \true; - } - } elseif (strpos($this->returnType, '&') !== \false) { - $types = explode('&', $this->returnType); - $intersection = \true; - } else { - $types = [$this->returnType]; - } - $types = array_map('strtolower', $types); - if (!$intersection && !$unionContainsIntersections) { - if (in_array('', $types, \true) || in_array('null', $types, \true) || in_array('mixed', $types, \true) || in_array('void', $types, \true)) { - return null; - } - if (in_array('true', $types, \true)) { - return \true; - } - if (in_array('false', $types, \true) || in_array('bool', $types, \true)) { - return \false; - } - if (in_array('float', $types, \true)) { - return 0.0; - } - if (in_array('int', $types, \true)) { - return 0; - } - if (in_array('string', $types, \true)) { - return ''; - } - if (in_array('array', $types, \true)) { - return []; - } - if (in_array('static', $types, \true)) { - try { - return (new Instantiator())->instantiate(get_class($this->object)); - } catch (Throwable $t) { - throw new \PHPUnit\Framework\MockObject\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); - } - } - if (in_array('object', $types, \true)) { - return new stdClass(); - } - if (in_array('callable', $types, \true) || in_array('closure', $types, \true)) { - return static function () : void { - }; - } - if (in_array('traversable', $types, \true) || in_array('generator', $types, \true) || in_array('iterable', $types, \true)) { - $generator = static function () : \Generator { - yield from []; - }; - return $generator(); - } - if (!$union) { - try { - return (new \PHPUnit\Framework\MockObject\Generator())->getMock($this->returnType, [], [], '', \false); - } catch (Throwable $t) { - if ($t instanceof \PHPUnit\Framework\MockObject\Exception) { - throw $t; - } - throw new \PHPUnit\Framework\MockObject\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); - } - } - } - if ($intersection && $this->onlyInterfaces($types)) { - try { - return (new \PHPUnit\Framework\MockObject\Generator())->getMockForInterfaces($types); - } catch (Throwable $t) { - throw new \PHPUnit\Framework\MockObject\RuntimeException(sprintf('Return value for %s::%s() cannot be generated: %s', $this->className, $this->methodName, $t->getMessage()), (int) $t->getCode()); + $validationErrors = []; + foreach ($errors as $error) { + if (!isset($validationErrors[$error->line])) { + $validationErrors[$error->line] = []; } + $validationErrors[$error->line][] = trim($error->message); } - $reason = ''; - if ($union) { - $reason = ' because the declared return type is a union'; - } elseif ($intersection) { - $reason = ' because the declared return type is an intersection'; - } - throw new \PHPUnit\Framework\MockObject\RuntimeException(sprintf('Return value for %s::%s() cannot be generated%s, please configure a return value for this method', $this->className, $this->methodName, $reason)); + return new self($validationErrors); } - public function toString() : string + private function __construct(array $validationErrors) { - $exporter = new Exporter(); - return sprintf('%s::%s(%s)%s', $this->className, $this->methodName, implode(', ', array_map([$exporter, 'shortenedExport'], $this->parameters)), $this->returnType ? sprintf(': %s', $this->returnType) : ''); + $this->validationErrors = $validationErrors; } - public function getObject() : object + public function hasValidationErrors(): bool { - return $this->object; + return !empty($this->validationErrors); } - /** - * @psalm-param non-empty-list $types - */ - private function onlyInterfaces(array $types) : bool + public function asString(): string { - foreach ($types as $type) { - if (!interface_exists($type)) { - return \false; + $buffer = ''; + foreach ($this->validationErrors as $line => $validationErrorsOnLine) { + $buffer .= sprintf(PHP_EOL . ' Line %d:' . PHP_EOL, $line); + foreach ($validationErrorsOnLine as $validationError) { + $buffer .= sprintf(' - %s' . PHP_EOL, $validationError); } } - return \true; + return $buffer; } } configurableMethods = $configurableMethods; - $this->returnValueGeneration = $returnValueGeneration; - } - public function hasMatchers() : bool + public function detected(): bool { - foreach ($this->matchers as $matcher) { - if ($matcher->hasMatchers()) { - return \true; - } - } return \false; } /** - * Looks up the match builder with identification $id and returns it. - * - * @param string $id The identification of the match builder + * @throws Exception */ - public function lookupMatcher(string $id) : ?\PHPUnit\Framework\MockObject\Matcher + public function version(): string { - if (isset($this->matcherMap[$id])) { - return $this->matcherMap[$id]; - } - return null; + throw new \PHPUnit\Util\Xml\Exception('No supported schema was detected'); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @psalm-immutable + */ +final class SuccessfulSchemaDetectionResult extends \PHPUnit\Util\Xml\SchemaDetectionResult +{ /** - * Registers a matcher with the identification $id. The matcher can later be - * looked up using lookupMatcher() to figure out if it has been invoked. - * - * @param string $id The identification of the matcher - * @param Matcher $matcher The builder which is being registered - * - * @throws MatcherAlreadyRegisteredException + * @psalm-var non-empty-string */ - public function registerMatcher(string $id, \PHPUnit\Framework\MockObject\Matcher $matcher) : void - { - if (isset($this->matcherMap[$id])) { - throw new \PHPUnit\Framework\MockObject\MatcherAlreadyRegisteredException($id); - } - $this->matcherMap[$id] = $matcher; - } - public function expects(InvocationOrder $rule) : InvocationMocker - { - $matcher = new \PHPUnit\Framework\MockObject\Matcher($rule); - $this->addMatcher($matcher); - return new InvocationMocker($this, $matcher, ...$this->configurableMethods); - } + private $version; /** - * @throws Exception - * @throws RuntimeException + * @psalm-param non-empty-string $version */ - public function invoke(\PHPUnit\Framework\MockObject\Invocation $invocation) + public function __construct(string $version) { - $exception = null; - $hasReturnValue = \false; - $returnValue = null; - foreach ($this->matchers as $match) { - try { - if ($match->matches($invocation)) { - $value = $match->invoked($invocation); - if (!$hasReturnValue) { - $returnValue = $value; - $hasReturnValue = \true; - } - } - } catch (Exception $e) { - $exception = $e; - } - } - if ($exception !== null) { - throw $exception; - } - if ($hasReturnValue) { - return $returnValue; - } - if (!$this->returnValueGeneration) { - $exception = new \PHPUnit\Framework\MockObject\ReturnValueNotConfiguredException($invocation); - if (strtolower($invocation->getMethodName()) === '__tostring') { - $this->deferredError = $exception; - return ''; - } - throw $exception; - } - return $invocation->generateReturnValue(); + $this->version = $version; } - public function matches(\PHPUnit\Framework\MockObject\Invocation $invocation) : bool + /** + * @psalm-assert-if-true SuccessfulSchemaDetectionResult $this + */ + public function detected(): bool { - foreach ($this->matchers as $matcher) { - if (!$matcher->matches($invocation)) { - return \false; - } - } return \true; } /** - * @throws Throwable + * @psalm-return non-empty-string */ - public function verify() : void - { - foreach ($this->matchers as $matcher) { - $matcher->verify(); - } - if ($this->deferredError) { - throw $this->deferredError; - } - } - private function addMatcher(\PHPUnit\Framework\MockObject\Matcher $matcher) : void + public function version(): string { - $this->matchers[] = $matcher; + return $this->version; } } */ -final class Matcher +final class SnapshotNodeList implements Countable, IteratorAggregate { /** - * @var InvocationOrder - */ - private $invocationRule; - /** - * @var mixed - */ - private $afterMatchBuilderId; - /** - * @var bool - */ - private $afterMatchBuilderIsInvoked = \false; - /** - * @var MethodName - */ - private $methodNameRule; - /** - * @var ParametersRule - */ - private $parametersRule; - /** - * @var Stub + * @var DOMNode[] */ - private $stub; - public function __construct(InvocationOrder $rule) - { - $this->invocationRule = $rule; - } - public function hasMatchers() : bool - { - return !$this->invocationRule instanceof AnyInvokedCount; - } - public function hasMethodNameRule() : bool - { - return $this->methodNameRule !== null; - } - public function getMethodNameRule() : MethodName - { - return $this->methodNameRule; - } - public function setMethodNameRule(MethodName $rule) : void - { - $this->methodNameRule = $rule; - } - public function hasParametersRule() : bool - { - return $this->parametersRule !== null; - } - public function setParametersRule(ParametersRule $rule) : void + private $nodes = []; + public static function fromNodeList(DOMNodeList $list): self { - $this->parametersRule = $rule; + $snapshot = new self(); + foreach ($list as $node) { + $snapshot->nodes[] = $node; + } + return $snapshot; } - public function setStub(Stub $stub) : void + public function count(): int { - $this->stub = $stub; + return count($this->nodes); } - public function setAfterMatchBuilderId(string $id) : void + public function getIterator(): ArrayIterator { - $this->afterMatchBuilderId = $id; + return new ArrayIterator($this->nodes); } - /** - * @throws ExpectationFailedException - * @throws MatchBuilderNotFoundException - * @throws MethodNameNotConfiguredException - * @throws RuntimeException +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @psalm-immutable + */ +final class FailedSchemaDetectionResult extends \PHPUnit\Util\Xml\SchemaDetectionResult +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +use function assert; +use function defined; +use function is_file; +use function rsort; +use function sprintf; +use DirectoryIterator; +use PHPUnit\Runner\Version; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class SchemaFinder +{ + /** + * @psalm-return non-empty-list */ - public function invoked(\PHPUnit\Framework\MockObject\Invocation $invocation) + public function available(): array { - if ($this->methodNameRule === null) { - throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); - } - if ($this->afterMatchBuilderId !== null) { - $matcher = $invocation->getObject()->__phpunit_getInvocationHandler()->lookupMatcher($this->afterMatchBuilderId); - if (!$matcher) { - throw new \PHPUnit\Framework\MockObject\MatchBuilderNotFoundException($this->afterMatchBuilderId); - } - assert($matcher instanceof self); - if ($matcher->invocationRule->hasBeenInvoked()) { - $this->afterMatchBuilderIsInvoked = \true; - } - } - $this->invocationRule->invoked($invocation); - try { - if ($this->parametersRule !== null) { - $this->parametersRule->apply($invocation); + $result = [Version::series()]; + foreach (new DirectoryIterator($this->path() . 'schema') as $file) { + if ($file->isDot()) { + continue; } - } catch (ExpectationFailedException $e) { - throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), $e->getMessage()), $e->getComparisonFailure()); + $version = $file->getBasename('.xsd'); + assert(!empty($version)); + $result[] = $version; } - if ($this->stub) { - return $this->stub->invoke($invocation); - } - return $invocation->generateReturnValue(); + rsort($result); + return $result; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * @throws MatchBuilderNotFoundException - * @throws MethodNameNotConfiguredException - * @throws RuntimeException + * @throws Exception */ - public function matches(\PHPUnit\Framework\MockObject\Invocation $invocation) : bool + public function find(string $version): string { - if ($this->afterMatchBuilderId !== null) { - $matcher = $invocation->getObject()->__phpunit_getInvocationHandler()->lookupMatcher($this->afterMatchBuilderId); - if (!$matcher) { - throw new \PHPUnit\Framework\MockObject\MatchBuilderNotFoundException($this->afterMatchBuilderId); - } - assert($matcher instanceof self); - if (!$matcher->invocationRule->hasBeenInvoked()) { - return \false; - } - } - if ($this->methodNameRule === null) { - throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); + if ($version === Version::series()) { + $filename = $this->path() . 'phpunit.xsd'; + } else { + $filename = $this->path() . 'schema/' . $version . '.xsd'; } - if (!$this->invocationRule->matches($invocation)) { - return \false; + if (!is_file($filename)) { + throw new \PHPUnit\Util\Xml\Exception(sprintf('Schema for PHPUnit %s is not available', $version)); } - try { - if (!$this->methodNameRule->matches($invocation)) { - return \false; - } - } catch (ExpectationFailedException $e) { - throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), $e->getMessage()), $e->getComparisonFailure()); + return $filename; + } + private function path(): string + { + if (defined('__PHPUNIT_PHAR_ROOT__')) { + return __PHPUNIT_PHAR_ROOT__ . '/'; } - return \true; + return __DIR__ . '/../../../'; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +use RuntimeException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Exception extends RuntimeException implements \PHPUnit\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util\Xml; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class SchemaDetector +{ /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - * @throws MethodNameNotConfiguredException + * @throws Exception */ - public function verify() : void + public function detect(string $filename): \PHPUnit\Util\Xml\SchemaDetectionResult { - if ($this->methodNameRule === null) { - throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); - } - try { - $this->invocationRule->verify(); - if ($this->parametersRule === null) { - $this->parametersRule = new AnyParameters(); - } - $invocationIsAny = $this->invocationRule instanceof AnyInvokedCount; - $invocationIsNever = $this->invocationRule instanceof InvokedCount && $this->invocationRule->isNever(); - $invocationIsAtMost = $this->invocationRule instanceof InvokedAtMostCount; - if (!$invocationIsAny && !$invocationIsNever && !$invocationIsAtMost) { - $this->parametersRule->verify(); + $document = (new \PHPUnit\Util\Xml\Loader())->loadFile($filename, \false, \true, \true); + $schemaFinder = new \PHPUnit\Util\Xml\SchemaFinder(); + foreach ($schemaFinder->available() as $candidate) { + $schema = (new \PHPUnit\Util\Xml\SchemaFinder())->find($candidate); + if (!(new \PHPUnit\Util\Xml\Validator())->validate($document, $schema)->hasValidationErrors()) { + return new \PHPUnit\Util\Xml\SuccessfulSchemaDetectionResult($candidate); } - } catch (ExpectationFailedException $e) { - throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s.\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), TestFailure::exceptionToString($e))); } + return new \PHPUnit\Util\Xml\FailedSchemaDetectionResult(); } - public function toString() : string +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util; + +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Cloner +{ + /** + * @psalm-template OriginalType + * + * @psalm-param OriginalType $original + * + * @psalm-return OriginalType + */ + public static function clone(object $original): object { - $list = []; - if ($this->invocationRule !== null) { - $list[] = $this->invocationRule->toString(); - } - if ($this->methodNameRule !== null) { - $list[] = 'where ' . $this->methodNameRule->toString(); - } - if ($this->parametersRule !== null) { - $list[] = 'and ' . $this->parametersRule->toString(); - } - if ($this->afterMatchBuilderId !== null) { - $list[] = 'after ' . $this->afterMatchBuilderId; - } - if ($this->stub !== null) { - $list[] = 'will ' . $this->stub->toString(); + try { + return clone $original; + } catch (Throwable $t) { + return $original; } - return implode(' ', $list); } } '|'gt'|'>='|'ge'|'=='|'='|'eq'|'!='|'<>'|'ne' */ - private $methodName; - public function __construct(string $methodName) + private $operator; + public function __construct(string $operator) { - $this->methodName = $methodName; + $this->ensureOperatorIsValid($operator); + $this->operator = $operator; } - public function toString() : string + /** + * @return '!='|'<'|'<='|'<>'|'='|'=='|'>'|'>='|'eq'|'ge'|'gt'|'le'|'lt'|'ne' + */ + public function asString(): string { - return sprintf('is "%s"', $this->methodName); + return $this->operator; } - protected function matches($other) : bool + /** + * @throws Exception + * + * @psalm-assert '<'|'lt'|'<='|'le'|'>'|'gt'|'>='|'ge'|'=='|'='|'eq'|'!='|'<>'|'ne' $operator + */ + private function ensureOperatorIsValid(string $operator): void { - if (!is_string($other)) { - return \false; + if (!in_array($operator, ['<', 'lt', '<=', 'le', '>', 'gt', '>=', 'ge', '==', '=', 'eq', '!=', '<>', 'ne'], \true)) { + throw new \PHPUnit\Util\Exception(sprintf('"%s" is not a valid version_compare() operator', $operator)); } - return strtolower($this->methodName) === strtolower($other); } } getName()]; + } + if ($test instanceof SelfDescribing) { + return ['', $test->toString()]; + } + return ['', get_class($test)]; + } + public static function describeAsString(\PHPUnit\Framework\Test $test): string + { + if ($test instanceof SelfDescribing) { + return $test->toString(); + } + return get_class($test); + } /** - * @var bool + * @throws CodeCoverageException + * + * @return array|bool + * + * @psalm-param class-string $className */ - private $returnValueGeneration = \true; + public static function getLinesToBeCovered(string $className, string $methodName) + { + $annotations = self::parseTestMethodAnnotations($className, $methodName); + if (!self::shouldCoversAnnotationBeUsed($annotations)) { + return \false; + } + return self::getLinesToBeCoveredOrUsed($className, $methodName, 'covers'); + } /** - * @var Generator + * Returns lines of code specified with the @uses annotation. + * + * @throws CodeCoverageException + * + * @psalm-param class-string $className */ - private $generator; + public static function getLinesToBeUsed(string $className, string $methodName): array + { + return self::getLinesToBeCoveredOrUsed($className, $methodName, 'uses'); + } + public static function requiresCodeCoverageDataCollection(TestCase $test): bool + { + $annotations = self::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); + // If there is no @covers annotation but a @coversNothing annotation on + // the test method then code coverage data does not need to be collected + if (isset($annotations['method']['coversNothing'])) { + // @see https://github.com/sebastianbergmann/phpunit/issues/4947#issuecomment-1084480950 + // return false; + } + // If there is at least one @covers annotation then + // code coverage data needs to be collected + if (isset($annotations['method']['covers'])) { + return \true; + } + // If there is no @covers annotation but a @coversNothing annotation + // then code coverage data does not need to be collected + if (isset($annotations['class']['coversNothing'])) { + // @see https://github.com/sebastianbergmann/phpunit/issues/4947#issuecomment-1084480950 + // return false; + } + // If there is no @coversNothing annotation then + // code coverage data may be collected + return \true; + } /** - * @param string|string[] $type + * @throws Exception * - * @psalm-param class-string|string|string[] $type + * @psalm-param class-string $className */ - public function __construct(TestCase $testCase, $type) + public static function getRequirements(string $className, string $methodName): array { - $this->testCase = $testCase; - $this->type = $type; - $this->generator = new \PHPUnit\Framework\MockObject\Generator(); + return self::mergeArraysRecursively(Registry::getInstance()->forClassName($className)->requirements(), Registry::getInstance()->forMethod($className, $methodName)->requirements()); } /** - * Creates a mock object using a fluent interface. + * Returns the missing requirements for a test. * - * @throws \PHPUnit\Framework\InvalidArgumentException - * @throws ClassAlreadyExistsException - * @throws ClassIsFinalException - * @throws DuplicateMethodException - * @throws InvalidMethodNameException - * @throws OriginalConstructorInvocationRequiredException - * @throws ReflectionException - * @throws RuntimeException - * @throws UnknownTypeException + * @throws Exception + * @throws Warning * - * @psalm-return MockObject&MockedType + * @psalm-param class-string $className */ - public function getMock() : \PHPUnit\Framework\MockObject\MockObject + public static function getMissingRequirements(string $className, string $methodName): array { - $object = $this->generator->getMock($this->type, !$this->emptyMethodsArray ? $this->methods : null, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->cloneArguments, $this->callOriginalMethods, $this->proxyTarget, $this->allowMockingUnknownTypes, $this->returnValueGeneration); - $this->testCase->registerMockObject($object); - return $object; + $required = self::getRequirements($className, $methodName); + $missing = []; + $hint = null; + if (!empty($required['PHP'])) { + $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($required['PHP']['operator']) ? '>=' : $required['PHP']['operator']); + if (!version_compare(PHP_VERSION, $required['PHP']['version'], $operator->asString())) { + $missing[] = sprintf('PHP %s %s is required.', $operator->asString(), $required['PHP']['version']); + $hint = 'PHP'; + } + } elseif (!empty($required['PHP_constraint'])) { + $version = new \PHPUnitPHAR\PharIo\Version\Version(self::sanitizeVersionNumber(PHP_VERSION)); + if (!$required['PHP_constraint']['constraint']->complies($version)) { + $missing[] = sprintf('PHP version does not match the required constraint %s.', $required['PHP_constraint']['constraint']->asString()); + $hint = 'PHP_constraint'; + } + } + if (!empty($required['PHPUnit'])) { + $phpunitVersion = Version::id(); + $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($required['PHPUnit']['operator']) ? '>=' : $required['PHPUnit']['operator']); + if (!version_compare($phpunitVersion, $required['PHPUnit']['version'], $operator->asString())) { + $missing[] = sprintf('PHPUnit %s %s is required.', $operator->asString(), $required['PHPUnit']['version']); + $hint = $hint ?? 'PHPUnit'; + } + } elseif (!empty($required['PHPUnit_constraint'])) { + $phpunitVersion = new \PHPUnitPHAR\PharIo\Version\Version(self::sanitizeVersionNumber(Version::id())); + if (!$required['PHPUnit_constraint']['constraint']->complies($phpunitVersion)) { + $missing[] = sprintf('PHPUnit version does not match the required constraint %s.', $required['PHPUnit_constraint']['constraint']->asString()); + $hint = $hint ?? 'PHPUnit_constraint'; + } + } + if (!empty($required['OSFAMILY']) && $required['OSFAMILY'] !== (new OperatingSystem())->getFamily()) { + $missing[] = sprintf('Operating system %s is required.', $required['OSFAMILY']); + $hint = $hint ?? 'OSFAMILY'; + } + if (!empty($required['OS'])) { + $requiredOsPattern = sprintf('/%s/i', addcslashes($required['OS'], '/')); + if (!preg_match($requiredOsPattern, PHP_OS)) { + $missing[] = sprintf('Operating system matching %s is required.', $requiredOsPattern); + $hint = $hint ?? 'OS'; + } + } + if (!empty($required['functions'])) { + foreach ($required['functions'] as $function) { + $pieces = explode('::', $function); + if (count($pieces) === 2 && class_exists($pieces[0]) && method_exists($pieces[0], $pieces[1])) { + continue; + } + if (function_exists($function)) { + continue; + } + $missing[] = sprintf('Function %s is required.', $function); + $hint = $hint ?? 'function_' . $function; + } + } + if (!empty($required['setting'])) { + foreach ($required['setting'] as $setting => $value) { + if (ini_get($setting) !== $value) { + $missing[] = sprintf('Setting "%s" must be "%s".', $setting, $value); + $hint = $hint ?? '__SETTING_' . $setting; + } + } + } + if (!empty($required['extensions'])) { + foreach ($required['extensions'] as $extension) { + if (isset($required['extension_versions'][$extension])) { + continue; + } + if (!extension_loaded($extension)) { + $missing[] = sprintf('Extension %s is required.', $extension); + $hint = $hint ?? 'extension_' . $extension; + } + } + } + if (!empty($required['extension_versions'])) { + foreach ($required['extension_versions'] as $extension => $req) { + $actualVersion = phpversion($extension); + $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($req['operator']) ? '>=' : $req['operator']); + if ($actualVersion === \false || !version_compare($actualVersion, $req['version'], $operator->asString())) { + $missing[] = sprintf('Extension %s %s %s is required.', $extension, $operator->asString(), $req['version']); + $hint = $hint ?? 'extension_' . $extension; + } + } + } + if ($hint && isset($required['__OFFSET'])) { + array_unshift($missing, '__OFFSET_FILE=' . $required['__OFFSET']['__FILE']); + array_unshift($missing, '__OFFSET_LINE=' . ($required['__OFFSET'][$hint] ?? 1)); + } + return $missing; } /** - * Creates a mock object for an abstract class using a fluent interface. + * Returns the provided data for a method. * - * @psalm-return MockObject&MockedType + * @throws Exception * - * @throws \PHPUnit\Framework\Exception - * @throws ReflectionException - * @throws RuntimeException + * @psalm-param class-string $className */ - public function getMockForAbstractClass() : \PHPUnit\Framework\MockObject\MockObject + public static function getProvidedData(string $className, string $methodName): ?array { - $object = $this->generator->getMockForAbstractClass($this->type, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->methods, $this->cloneArguments); - $this->testCase->registerMockObject($object); - return $object; + return Registry::getInstance()->forMethod($className, $methodName)->getProvidedData(); } /** - * Creates a mock object for a trait using a fluent interface. - * - * @psalm-return MockObject&MockedType - * - * @throws \PHPUnit\Framework\Exception - * @throws ReflectionException - * @throws RuntimeException + * @psalm-param class-string $className + */ + public static function parseTestMethodAnnotations(string $className, ?string $methodName = null): array + { + $registry = Registry::getInstance(); + if ($methodName !== null) { + try { + return ['method' => $registry->forMethod($className, $methodName)->symbolAnnotations(), 'class' => $registry->forClassName($className)->symbolAnnotations()]; + } catch (\PHPUnit\Util\Exception $methodNotFound) { + // ignored + } + } + return ['method' => null, 'class' => $registry->forClassName($className)->symbolAnnotations()]; + } + /** + * @psalm-param class-string $className */ - public function getMockForTrait() : \PHPUnit\Framework\MockObject\MockObject + public static function getInlineAnnotations(string $className, string $methodName): array { - $object = $this->generator->getMockForTrait($this->type, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->methods, $this->cloneArguments); - $this->testCase->registerMockObject($object); - return $object; + return Registry::getInstance()->forMethod($className, $methodName)->getInlineAnnotations(); + } + /** @psalm-param class-string $className */ + public static function getBackupSettings(string $className, string $methodName): array + { + return ['backupGlobals' => self::getBooleanAnnotationSetting($className, $methodName, 'backupGlobals'), 'backupStaticAttributes' => self::getBooleanAnnotationSetting($className, $methodName, 'backupStaticAttributes')]; } /** - * Specifies the subset of methods to mock. Default is to mock none of them. - * - * @deprecated https://github.com/sebastianbergmann/phpunit/pull/3687 + * @psalm-param class-string $className * - * @return $this + * @return ExecutionOrderDependency[] */ - public function setMethods(?array $methods = null) : self + public static function getDependencies(string $className, string $methodName): array { - if ($methods === null) { - $this->methods = $methods; - } else { - $this->methods = array_merge($this->methods ?? [], $methods); + $annotations = self::parseTestMethodAnnotations($className, $methodName); + $dependsAnnotations = $annotations['class']['depends'] ?? []; + if (isset($annotations['method']['depends'])) { + $dependsAnnotations = array_merge($dependsAnnotations, $annotations['method']['depends']); } - return $this; + // Normalize dependency name to className::methodName + $dependencies = []; + foreach ($dependsAnnotations as $value) { + $dependencies[] = ExecutionOrderDependency::createFromDependsAnnotation($className, $value); + } + return array_unique($dependencies); } - /** - * Specifies the subset of methods to mock, requiring each to exist in the class. - * - * @param string[] $methods - * - * @throws CannotUseOnlyMethodsException - * @throws ReflectionException - * - * @return $this - */ - public function onlyMethods(array $methods) : self + /** @psalm-param class-string $className */ + public static function getGroups(string $className, ?string $methodName = ''): array { - if (empty($methods)) { - $this->emptyMethodsArray = \true; - return $this; + $annotations = self::parseTestMethodAnnotations($className, $methodName); + $groups = []; + if (isset($annotations['method']['author'])) { + $groups[] = $annotations['method']['author']; + } elseif (isset($annotations['class']['author'])) { + $groups[] = $annotations['class']['author']; } - try { - $reflector = new ReflectionClass($this->type); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + if (isset($annotations['class']['group'])) { + $groups[] = $annotations['class']['group']; } - // @codeCoverageIgnoreEnd - foreach ($methods as $method) { - if (!$reflector->hasMethod($method)) { - throw new \PHPUnit\Framework\MockObject\CannotUseOnlyMethodsException($this->type, $method); + if (isset($annotations['method']['group'])) { + $groups[] = $annotations['method']['group']; + } + if (isset($annotations['class']['ticket'])) { + $groups[] = $annotations['class']['ticket']; + } + if (isset($annotations['method']['ticket'])) { + $groups[] = $annotations['method']['ticket']; + } + foreach (['method', 'class'] as $element) { + foreach (['small', 'medium', 'large'] as $size) { + if (isset($annotations[$element][$size])) { + $groups[] = [$size]; + break 2; + } } } - $this->methods = array_merge($this->methods ?? [], $methods); - return $this; + foreach (['method', 'class'] as $element) { + if (isset($annotations[$element]['covers'])) { + foreach ($annotations[$element]['covers'] as $coversTarget) { + $groups[] = ['__phpunit_covers_' . self::canonicalizeName($coversTarget)]; + } + } + if (isset($annotations[$element]['uses'])) { + foreach ($annotations[$element]['uses'] as $usesTarget) { + $groups[] = ['__phpunit_uses_' . self::canonicalizeName($usesTarget)]; + } + } + } + return array_unique(array_merge([], ...$groups)); } - /** - * Specifies methods that don't exist in the class which you want to mock. - * - * @param string[] $methods - * - * @throws CannotUseAddMethodsException - * @throws ReflectionException - * @throws RuntimeException - * - * @return $this - */ - public function addMethods(array $methods) : self + /** @psalm-param class-string $className */ + public static function getSize(string $className, ?string $methodName): int { - if (empty($methods)) { - $this->emptyMethodsArray = \true; - return $this; + $groups = array_flip(self::getGroups($className, $methodName)); + if (isset($groups['large'])) { + return self::LARGE; } - try { - $reflector = new ReflectionClass($this->type); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + if (isset($groups['medium'])) { + return self::MEDIUM; } - // @codeCoverageIgnoreEnd - foreach ($methods as $method) { - if ($reflector->hasMethod($method)) { - throw new \PHPUnit\Framework\MockObject\CannotUseAddMethodsException($this->type, $method); + if (isset($groups['small'])) { + return self::SMALL; + } + return self::UNKNOWN; + } + /** @psalm-param class-string $className */ + public static function getProcessIsolationSettings(string $className, string $methodName): bool + { + $annotations = self::parseTestMethodAnnotations($className, $methodName); + return isset($annotations['class']['runTestsInSeparateProcesses']) || isset($annotations['method']['runInSeparateProcess']); + } + /** @psalm-param class-string $className */ + public static function getClassProcessIsolationSettings(string $className, string $methodName): bool + { + $annotations = self::parseTestMethodAnnotations($className, $methodName); + return isset($annotations['class']['runClassInSeparateProcess']); + } + /** @psalm-param class-string $className */ + public static function getPreserveGlobalStateSettings(string $className, string $methodName): ?bool + { + return self::getBooleanAnnotationSetting($className, $methodName, 'preserveGlobalState'); + } + /** @psalm-param class-string $className */ + public static function getHookMethods(string $className): array + { + if (!class_exists($className, \false)) { + return self::emptyHookMethodsArray(); + } + if (!isset(self::$hookMethods[$className])) { + self::$hookMethods[$className] = self::emptyHookMethodsArray(); + try { + foreach ((new \PHPUnit\Util\Reflection())->methodsInTestClass(new ReflectionClass($className)) as $method) { + $docBlock = Registry::getInstance()->forMethod($className, $method->getName()); + if ($method->isStatic()) { + if ($docBlock->isHookToBeExecutedBeforeClass()) { + array_unshift(self::$hookMethods[$className]['beforeClass'], $method->getName()); + } + if ($docBlock->isHookToBeExecutedAfterClass()) { + self::$hookMethods[$className]['afterClass'][] = $method->getName(); + } + } + if ($docBlock->isToBeExecutedBeforeTest()) { + array_unshift(self::$hookMethods[$className]['before'], $method->getName()); + } + if ($docBlock->isToBeExecutedAsPreCondition()) { + array_unshift(self::$hookMethods[$className]['preCondition'], $method->getName()); + } + if ($docBlock->isToBeExecutedAsPostCondition()) { + self::$hookMethods[$className]['postCondition'][] = $method->getName(); + } + if ($docBlock->isToBeExecutedAfterTest()) { + self::$hookMethods[$className]['after'][] = $method->getName(); + } + } + } catch (ReflectionException $e) { } } - $this->methods = array_merge($this->methods ?? [], $methods); - return $this; + return self::$hookMethods[$className]; } - /** - * Specifies the subset of methods to not mock. Default is to mock all of them. - * - * @deprecated https://github.com/sebastianbergmann/phpunit/pull/3687 - * - * @throws ReflectionException - */ - public function setMethodsExcept(array $methods = []) : self + public static function isTestMethod(ReflectionMethod $method): bool { - return $this->setMethods(array_diff($this->generator->getClassMethods($this->type), $methods)); + if (!$method->isPublic()) { + return \false; + } + if (strpos($method->getName(), 'test') === 0) { + return \true; + } + return array_key_exists('test', Registry::getInstance()->forMethod($method->getDeclaringClass()->getName(), $method->getName())->symbolAnnotations()); } /** - * Specifies the arguments for the constructor. + * @throws CodeCoverageException * - * @return $this + * @psalm-param class-string $className */ - public function setConstructorArgs(array $args) : self + private static function getLinesToBeCoveredOrUsed(string $className, string $methodName, string $mode): array { - $this->constructorArgs = $args; - return $this; + $annotations = self::parseTestMethodAnnotations($className, $methodName); + $classShortcut = null; + if (!empty($annotations['class'][$mode . 'DefaultClass'])) { + if (count($annotations['class'][$mode . 'DefaultClass']) > 1) { + throw new CodeCoverageException(sprintf('More than one @%sClass annotation in class or interface "%s".', $mode, $className)); + } + $classShortcut = $annotations['class'][$mode . 'DefaultClass'][0]; + } + $list = $annotations['class'][$mode] ?? []; + if (isset($annotations['method'][$mode])) { + $list = array_merge($list, $annotations['method'][$mode]); + } + $codeUnits = CodeUnitCollection::fromArray([]); + $mapper = new Mapper(); + foreach (array_unique($list) as $element) { + if ($classShortcut && strncmp($element, '::', 2) === 0) { + $element = $classShortcut . $element; + } + $element = preg_replace('/[\s()]+$/', '', $element); + $element = explode(' ', $element); + $element = $element[0]; + if ($mode === 'covers' && interface_exists($element)) { + throw new InvalidCoversTargetException(sprintf('Trying to @cover interface "%s".', $element)); + } + try { + $codeUnits = $codeUnits->mergeWith($mapper->stringToCodeUnits($element)); + } catch (InvalidCodeUnitException $e) { + throw new InvalidCoversTargetException(sprintf('"@%s %s" is invalid', $mode, $element), $e->getCode(), $e); + } + } + return $mapper->codeUnitsToSourceLines($codeUnits); } - /** - * Specifies the name for the mock class. - * - * @return $this - */ - public function setMockClassName(string $name) : self + private static function emptyHookMethodsArray(): array { - $this->mockClassName = $name; - return $this; + return ['beforeClass' => ['setUpBeforeClass'], 'before' => ['setUp'], 'preCondition' => ['assertPreConditions'], 'postCondition' => ['assertPostConditions'], 'after' => ['tearDown'], 'afterClass' => ['tearDownAfterClass']]; } - /** - * Disables the invocation of the original constructor. - * - * @return $this - */ - public function disableOriginalConstructor() : self + /** @psalm-param class-string $className */ + private static function getBooleanAnnotationSetting(string $className, ?string $methodName, string $settingName): ?bool { - $this->originalConstructor = \false; - return $this; + $annotations = self::parseTestMethodAnnotations($className, $methodName); + if (isset($annotations['method'][$settingName])) { + if ($annotations['method'][$settingName][0] === 'enabled') { + return \true; + } + if ($annotations['method'][$settingName][0] === 'disabled') { + return \false; + } + } + if (isset($annotations['class'][$settingName])) { + if ($annotations['class'][$settingName][0] === 'enabled') { + return \true; + } + if ($annotations['class'][$settingName][0] === 'disabled') { + return \false; + } + } + return null; } /** - * Enables the invocation of the original constructor. - * - * @return $this + * Trims any extensions from version string that follows after + * the .[.] format. */ - public function enableOriginalConstructor() : self + private static function sanitizeVersionNumber(string $version) { - $this->originalConstructor = \true; - return $this; + return preg_replace('/^(\d+\.\d+(?:.\d+)?).*$/', '$1', $version); } - /** - * Disables the invocation of the original clone constructor. - * - * @return $this - */ - public function disableOriginalClone() : self + private static function shouldCoversAnnotationBeUsed(array $annotations): bool { - $this->originalClone = \false; - return $this; + if (isset($annotations['method']['coversNothing'])) { + return \false; + } + if (isset($annotations['method']['covers'])) { + return \true; + } + if (isset($annotations['class']['coversNothing'])) { + return \false; + } + return \true; } /** - * Enables the invocation of the original clone constructor. + * Merge two arrays together. * - * @return $this + * If an integer key exists in both arrays and preserveNumericKeys is false, the value + * from the second array will be appended to the first array. If both values are arrays, they + * are merged together, else the value of the second array overwrites the one of the first array. + * + * This implementation is copied from https://github.com/zendframework/zend-stdlib/blob/76b653c5e99b40eccf5966e3122c90615134ae46/src/ArrayUtils.php + * + * Zend Framework (http://framework.zend.com/) + * + * @see http://github.com/zendframework/zf2 for the canonical source repository + * + * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License */ - public function enableOriginalClone() : self + private static function mergeArraysRecursively(array $a, array $b): array { - $this->originalClone = \true; - return $this; + foreach ($b as $key => $value) { + if (array_key_exists($key, $a)) { + if (is_int($key)) { + $a[] = $value; + } elseif (is_array($value) && is_array($a[$key])) { + $a[$key] = self::mergeArraysRecursively($a[$key], $value); + } else { + $a[$key] = $value; + } + } else { + $a[$key] = $value; + } + } + return $a; } - /** - * Disables the use of class autoloading while creating the mock object. - * - * @return $this - */ - public function disableAutoload() : self + private static function canonicalizeName(string $name): string { - $this->autoload = \false; - return $this; + return strtolower(trim($name, '\\')); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util; + +use const PHP_MAJOR_VERSION; +use const PHP_MINOR_VERSION; +use function array_keys; +use function array_reverse; +use function array_shift; +use function defined; +use function get_defined_constants; +use function get_included_files; +use function in_array; +use function ini_get_all; +use function is_array; +use function is_file; +use function is_scalar; +use function preg_match; +use function serialize; +use function sprintf; +use function strpos; +use function strtr; +use function substr; +use function var_export; +use Closure; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class GlobalState +{ /** - * Enables the use of class autoloading while creating the mock object. - * - * @return $this + * @var string[] */ - public function enableAutoload() : self - { - $this->autoload = \true; - return $this; - } + private const SUPER_GLOBAL_ARRAYS = ['_ENV', '_POST', '_GET', '_COOKIE', '_SERVER', '_FILES', '_REQUEST']; /** - * Disables the cloning of arguments passed to mocked methods. - * - * @return $this + * @psalm-var array> */ - public function disableArgumentCloning() : self - { - $this->cloneArguments = \false; - return $this; - } + private const DEPRECATED_INI_SETTINGS = ['7.3' => ['iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.func_overload' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true, 'string.strip_tags' => \true], '7.4' => ['iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.func_overload' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true, 'pdo_odbc.db2_instance_name' => \true, 'string.strip_tags' => \true], '8.0' => ['iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true], '8.1' => ['auto_detect_line_endings' => \true, 'filter.default' => \true, 'iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true, 'oci8.old_oci_close_semantics' => \true], '8.2' => ['auto_detect_line_endings' => \true, 'filter.default' => \true, 'iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true, 'oci8.old_oci_close_semantics' => \true], '8.3' => ['auto_detect_line_endings' => \true, 'filter.default' => \true, 'iconv.input_encoding' => \true, 'iconv.output_encoding' => \true, 'iconv.internal_encoding' => \true, 'mbstring.http_input' => \true, 'mbstring.http_output' => \true, 'mbstring.internal_encoding' => \true, 'oci8.old_oci_close_semantics' => \true]]; /** - * Enables the cloning of arguments passed to mocked methods. - * - * @return $this + * @throws Exception */ - public function enableArgumentCloning() : self + public static function getIncludedFilesAsString(): string { - $this->cloneArguments = \true; - return $this; + return self::processIncludedFilesAsString(get_included_files()); } /** - * Enables the invocation of the original methods. + * @param string[] $files * - * @return $this + * @throws Exception */ - public function enableProxyingToOriginalMethods() : self + public static function processIncludedFilesAsString(array $files): string { - $this->callOriginalMethods = \true; - return $this; + $excludeList = new \PHPUnit\Util\ExcludeList(); + $prefix = \false; + $result = ''; + if (defined('__PHPUNIT_PHAR__')) { + $prefix = 'phar://' . __PHPUNIT_PHAR__ . '/'; + } + // Do not process bootstrap script + array_shift($files); + // If bootstrap script was a Composer bin proxy, skip the second entry as well + if (substr(strtr($files[0], '\\', '/'), -24) === '/phpunit/phpunit/phpunit') { + array_shift($files); + } + foreach (array_reverse($files) as $file) { + if (!empty($GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST']) && in_array($file, $GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'], \true)) { + continue; + } + if ($prefix !== \false && strpos($file, $prefix) === 0) { + continue; + } + // Skip virtual file system protocols + if (preg_match('/^(vfs|phpvfs[a-z0-9]+):/', $file)) { + continue; + } + if (!$excludeList->isExcluded($file) && is_file($file)) { + $result = 'require_once \'' . $file . "';\n" . $result; + } + } + return $result; } - /** - * Disables the invocation of the original methods. - * - * @return $this - */ - public function disableProxyingToOriginalMethods() : self + public static function getIniSettingsAsString(): string { - $this->callOriginalMethods = \false; - $this->proxyTarget = null; - return $this; + $result = ''; + foreach (ini_get_all(null, \false) as $key => $value) { + if (self::isIniSettingDeprecated($key)) { + continue; + } + $result .= sprintf('@ini_set(%s, %s);' . "\n", self::exportVariable($key), self::exportVariable((string) $value)); + } + return $result; } - /** - * Sets the proxy target. - * - * @return $this - */ - public function setProxyTarget(object $object) : self + public static function getConstantsAsString(): string { - $this->proxyTarget = $object; - return $this; + $constants = get_defined_constants(\true); + $result = ''; + if (isset($constants['user'])) { + foreach ($constants['user'] as $name => $value) { + $result .= sprintf('if (!defined(\'%s\')) define(\'%s\', %s);' . "\n", $name, $name, self::exportVariable($value)); + } + } + return $result; } - /** - * @return $this - */ - public function allowMockingUnknownTypes() : self + public static function getGlobalsAsString(): string { - $this->allowMockingUnknownTypes = \true; - return $this; + $result = ''; + foreach (self::SUPER_GLOBAL_ARRAYS as $superGlobalArray) { + if (isset($GLOBALS[$superGlobalArray]) && is_array($GLOBALS[$superGlobalArray])) { + foreach (array_keys($GLOBALS[$superGlobalArray]) as $key) { + if ($GLOBALS[$superGlobalArray][$key] instanceof Closure) { + continue; + } + $result .= sprintf('$GLOBALS[\'%s\'][\'%s\'] = %s;' . "\n", $superGlobalArray, $key, self::exportVariable($GLOBALS[$superGlobalArray][$key])); + } + } + } + $excludeList = self::SUPER_GLOBAL_ARRAYS; + $excludeList[] = 'GLOBALS'; + foreach (array_keys($GLOBALS) as $key) { + if (!$GLOBALS[$key] instanceof Closure && !in_array($key, $excludeList, \true)) { + $result .= sprintf('$GLOBALS[\'%s\'] = %s;' . "\n", $key, self::exportVariable($GLOBALS[$key])); + } + } + return $result; } - /** - * @return $this - */ - public function disallowMockingUnknownTypes() : self + private static function exportVariable($variable): string { - $this->allowMockingUnknownTypes = \false; - return $this; + if (is_scalar($variable) || $variable === null || is_array($variable) && self::arrayOnlyContainsScalars($variable)) { + return var_export($variable, \true); + } + return 'unserialize(' . var_export(serialize($variable), \true) . ')'; } - /** - * @return $this - */ - public function enableAutoReturnValueGeneration() : self + private static function arrayOnlyContainsScalars(array $array): bool { - $this->returnValueGeneration = \true; - return $this; + $result = \true; + foreach ($array as $element) { + if (is_array($element)) { + $result = self::arrayOnlyContainsScalars($element); + } elseif (!is_scalar($element) && $element !== null) { + $result = \false; + } + if (!$result) { + break; + } + } + return $result; } - /** - * @return $this - */ - public function disableAutoReturnValueGeneration() : self + private static function isIniSettingDeprecated(string $iniSetting): bool { - $this->returnValueGeneration = \false; - return $this; + return isset(self::DEPRECATED_INI_SETTINGS[PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION][$iniSetting]); } } */ - private $mockName; + private const WHITESPACE_MAP = [' ' => '·', "\t" => '⇥']; /** - * @var ConfigurableMethod[] + * @var array */ - private $configurableMethods; + private const WHITESPACE_EOL_MAP = [' ' => '·', "\t" => '⇥', "\n" => '↵', "\r" => '⟵']; /** - * @psalm-param class-string $mockName + * @var array */ - public function __construct(string $classCode, string $mockName, array $configurableMethods) + private static $ansiCodes = ['reset' => '0', 'bold' => '1', 'dim' => '2', 'dim-reset' => '22', 'underlined' => '4', 'fg-default' => '39', 'fg-black' => '30', 'fg-red' => '31', 'fg-green' => '32', 'fg-yellow' => '33', 'fg-blue' => '34', 'fg-magenta' => '35', 'fg-cyan' => '36', 'fg-white' => '37', 'bg-default' => '49', 'bg-black' => '40', 'bg-red' => '41', 'bg-green' => '42', 'bg-yellow' => '43', 'bg-blue' => '44', 'bg-magenta' => '45', 'bg-cyan' => '46', 'bg-white' => '47']; + public static function colorize(string $color, string $buffer): string { - $this->classCode = $classCode; - $this->mockName = $mockName; - $this->configurableMethods = $configurableMethods; + if (trim($buffer) === '') { + return $buffer; + } + $codes = array_map('\trim', explode(',', $color)); + $styles = []; + foreach ($codes as $code) { + if (isset(self::$ansiCodes[$code])) { + $styles[] = self::$ansiCodes[$code] ?? ''; + } + } + if (empty($styles)) { + return $buffer; + } + return self::optimizeColor(sprintf("\x1b[%sm", implode(';', $styles)) . $buffer . "\x1b[0m"); } - /** - * @psalm-return class-string - */ - public function generate() : string + public static function colorizePath(string $path, ?string $prevPath = null, bool $colorizeFilename = \false): string { - if (!class_exists($this->mockName, \false)) { - eval($this->classCode); - call_user_func([$this->mockName, '__phpunit_initConfigurableMethods'], ...$this->configurableMethods); + if ($prevPath === null) { + $prevPath = ''; } - return $this->mockName; + $path = explode(DIRECTORY_SEPARATOR, $path); + $prevPath = explode(DIRECTORY_SEPARATOR, $prevPath); + for ($i = 0; $i < min(count($path), count($prevPath)); $i++) { + if ($path[$i] == $prevPath[$i]) { + $path[$i] = self::dim($path[$i]); + } + } + if ($colorizeFilename) { + $last = count($path) - 1; + $path[$last] = preg_replace_callback('/([\-_\.]+|phpt$)/', static function ($matches) { + return self::dim($matches[0]); + }, $path[$last]); + } + return self::optimizeColor(implode(self::dim(DIRECTORY_SEPARATOR), $path)); } - public function getClassCode() : string + public static function dim(string $buffer): string { - return $this->classCode; + if (trim($buffer) === '') { + return $buffer; + } + return "\x1b[2m{$buffer}\x1b[22m"; + } + public static function visualizeWhitespace(string $buffer, bool $visualizeEOL = \false): string + { + $replaceMap = $visualizeEOL ? self::WHITESPACE_EOL_MAP : self::WHITESPACE_MAP; + return preg_replace_callback('/\s+/', static function ($matches) use ($replaceMap) { + return self::dim(strtr($matches[0], $replaceMap)); + }, $buffer); + } + private static function optimizeColor(string $buffer): string + { + $patterns = ["/\x1b\\[22m\x1b\\[2m/" => '', "/\x1b\\[([^m]*)m\x1b\\[([1-9][0-9;]*)m/" => "\x1b[\$1;\$2m", "/(\x1b\\[[^m]*m)+(\x1b\\[0m)/" => '$2']; + return preg_replace(array_keys($patterns), array_values($patterns), $buffer); } } isPrivate()) { - $modifier = 'private'; - } elseif ($method->isProtected()) { - $modifier = 'protected'; - } else { - $modifier = 'public'; - } - if ($method->isStatic()) { - $modifier .= ' static'; - } - if ($method->returnsReference()) { - $reference = '&'; - } else { - $reference = ''; - } - $docComment = $method->getDocComment(); - if (is_string($docComment) && preg_match('#\\*[ \\t]*+@deprecated[ \\t]*+(.*?)\\r?+\\n[ \\t]*+\\*(?:[ \\t]*+@|/$)#s', $docComment, $deprecation)) { - $deprecation = trim(preg_replace('#[ \\t]*\\r?\\n[ \\t]*+\\*[ \\t]*+#', ' ', $deprecation[1])); - } else { - $deprecation = null; - } - return new self($method->getDeclaringClass()->getName(), $method->getName(), $cloneArguments, $modifier, self::getMethodParametersForDeclaration($method), self::getMethodParametersForCall($method), (new ReflectionMapper())->fromReturnType($method), $reference, $callOriginalMethod, $method->isStatic(), $deprecation); + parent::__construct($out); + $this->groups = $groups; + $this->excludeGroups = $excludeGroups; + $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier(); + $this->startRun(); } - public static function fromName(string $fullClassName, string $methodName, bool $cloneArguments) : self + /** + * Flush buffer and close output. + */ + public function flush(): void { - return new self($fullClassName, $methodName, $cloneArguments, 'public', '', '', new UnknownType(), '', \false, \false, null); + $this->doEndClass(); + $this->endRun(); + parent::flush(); } - public function __construct(string $className, string $methodName, bool $cloneArguments, string $modifier, string $argumentsForDeclaration, string $argumentsForCall, Type $returnType, string $reference, bool $callOriginalMethod, bool $static, ?string $deprecation) + /** + * An error occurred. + */ + public function addError(Test $test, Throwable $t, float $time): void { - $this->className = $className; - $this->methodName = $methodName; - $this->cloneArguments = $cloneArguments; - $this->modifier = $modifier; - $this->argumentsForDeclaration = $argumentsForDeclaration; - $this->argumentsForCall = $argumentsForCall; - $this->returnType = $returnType; - $this->reference = $reference; - $this->callOriginalMethod = $callOriginalMethod; - $this->static = $static; - $this->deprecation = $deprecation; + if (!$this->isOfInterest($test)) { + return; + } + $this->testStatus = BaseTestRunner::STATUS_ERROR; + $this->failed++; } - public function getName() : string + /** + * A warning occurred. + */ + public function addWarning(Test $test, Warning $e, float $time): void { - return $this->methodName; + if (!$this->isOfInterest($test)) { + return; + } + $this->testStatus = BaseTestRunner::STATUS_WARNING; + $this->warned++; } /** - * @throws RuntimeException + * A failure occurred. */ - public function generateCode() : string + public function addFailure(Test $test, AssertionFailedError $e, float $time): void { - if ($this->static) { - $templateFile = 'mocked_static_method.tpl'; - } elseif ($this->returnType->isNever() || $this->returnType->isVoid()) { - $templateFile = sprintf('%s_method_never_or_void.tpl', $this->callOriginalMethod ? 'proxied' : 'mocked'); - } else { - $templateFile = sprintf('%s_method.tpl', $this->callOriginalMethod ? 'proxied' : 'mocked'); - } - $deprecation = $this->deprecation; - if (null !== $this->deprecation) { - $deprecation = "The {$this->className}::{$this->methodName} method is deprecated ({$this->deprecation})."; - $deprecationTemplate = $this->getTemplate('deprecation.tpl'); - $deprecationTemplate->setVar(['deprecation' => var_export($deprecation, \true)]); - $deprecation = $deprecationTemplate->render(); + if (!$this->isOfInterest($test)) { + return; } - $template = $this->getTemplate($templateFile); - $template->setVar(['arguments_decl' => $this->argumentsForDeclaration, 'arguments_call' => $this->argumentsForCall, 'return_declaration' => !empty($this->returnType->asString()) ? ': ' . $this->returnType->asString() : '', 'return_type' => $this->returnType->asString(), 'arguments_count' => !empty($this->argumentsForCall) ? substr_count($this->argumentsForCall, ',') + 1 : 0, 'class_name' => $this->className, 'method_name' => $this->methodName, 'modifier' => $this->modifier, 'reference' => $this->reference, 'clone_arguments' => $this->cloneArguments ? 'true' : 'false', 'deprecation' => $deprecation]); - return $template->render(); + $this->testStatus = BaseTestRunner::STATUS_FAILURE; + $this->failed++; } - public function getReturnType() : Type + /** + * Incomplete test. + */ + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - return $this->returnType; + if (!$this->isOfInterest($test)) { + return; + } + $this->testStatus = BaseTestRunner::STATUS_INCOMPLETE; + $this->incomplete++; } /** - * @throws RuntimeException + * Risky test. */ - private function getTemplate(string $template) : Template + public function addRiskyTest(Test $test, Throwable $t, float $time): void { - $filename = __DIR__ . DIRECTORY_SEPARATOR . 'Generator' . DIRECTORY_SEPARATOR . $template; - if (!isset(self::$templates[$filename])) { - try { - self::$templates[$filename] = new Template($filename); - } catch (TemplateException $e) { - throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), (int) $e->getCode(), $e); - } + if (!$this->isOfInterest($test)) { + return; } - return self::$templates[$filename]; + $this->testStatus = BaseTestRunner::STATUS_RISKY; + $this->risky++; } /** - * Returns the parameters of a function or method. - * - * @throws RuntimeException + * Skipped test. */ - private static function getMethodParametersForDeclaration(ReflectionMethod $method) : string + public function addSkippedTest(Test $test, Throwable $t, float $time): void { - $parameters = []; - $types = (new ReflectionMapper())->fromParameterTypes($method); - foreach ($method->getParameters() as $i => $parameter) { - $name = '$' . $parameter->getName(); - /* Note: PHP extensions may use empty names for reference arguments - * or "..." for methods taking a variable number of arguments. - */ - if ($name === '$' || $name === '$...') { - $name = '$arg' . $i; - } - $default = ''; - $reference = ''; - $typeDeclaration = ''; - if (!$types[$i]->type()->isUnknown()) { - $typeDeclaration = $types[$i]->type()->asString() . ' '; - } - if ($parameter->isPassedByReference()) { - $reference = '&'; - } - if ($parameter->isVariadic()) { - $name = '...' . $name; - } elseif ($parameter->isDefaultValueAvailable()) { - $default = ' = ' . self::exportDefaultValue($parameter); - } elseif ($parameter->isOptional()) { - $default = ' = null'; - } - $parameters[] = $typeDeclaration . $reference . $name . $default; + if (!$this->isOfInterest($test)) { + return; } - return implode(', ', $parameters); + $this->testStatus = BaseTestRunner::STATUS_SKIPPED; + $this->skipped++; } /** - * Returns the parameters of a function or method. + * A testsuite started. + */ + public function startTestSuite(TestSuite $suite): void + { + } + /** + * A testsuite ended. + */ + public function endTestSuite(TestSuite $suite): void + { + } + /** + * A test started. * - * @throws ReflectionException + * @throws InvalidArgumentException */ - private static function getMethodParametersForCall(ReflectionMethod $method) : string + public function startTest(Test $test): void { - $parameters = []; - foreach ($method->getParameters() as $i => $parameter) { - $name = '$' . $parameter->getName(); - /* Note: PHP extensions may use empty names for reference arguments - * or "..." for methods taking a variable number of arguments. - */ - if ($name === '$' || $name === '$...') { - $name = '$arg' . $i; - } - if ($parameter->isVariadic()) { - continue; - } - if ($parameter->isPassedByReference()) { - $parameters[] = '&' . $name; - } else { - $parameters[] = $name; + if (!$this->isOfInterest($test)) { + return; + } + $class = get_class($test); + if ($this->testClass !== $class) { + if ($this->testClass !== '') { + $this->doEndClass(); } + $this->currentTestClassPrettified = $this->prettifier->prettifyTestClass($class); + $this->testClass = $class; + $this->tests = []; + $this->startClass($class); } - return implode(', ', $parameters); + if ($test instanceof TestCase) { + $this->currentTestMethodPrettified = $this->prettifier->prettifyTestCase($test); + } + $this->testStatus = BaseTestRunner::STATUS_PASSED; } /** - * @throws ReflectionException + * A test ended. */ - private static function exportDefaultValue(ReflectionParameter $parameter) : string + public function endTest(Test $test, float $time): void { - try { - $defaultValue = $parameter->getDefaultValue(); - if (!is_object($defaultValue)) { - return (string) var_export($defaultValue, \true); - } - $parameterAsString = $parameter->__toString(); - return (string) explode(' = ', substr(substr($parameterAsString, strpos($parameterAsString, ' ') + strlen(' ')), 0, -2))[1]; - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); + if (!$this->isOfInterest($test)) { + return; } - // @codeCoverageIgnoreEnd + $this->tests[] = [$this->currentTestMethodPrettified, $this->testStatus]; + $this->currentTestClassPrettified = null; + $this->currentTestMethodPrettified = null; + } + protected function doEndClass(): void + { + foreach ($this->tests as $test) { + $this->onTest($test[0], $test[1] === BaseTestRunner::STATUS_PASSED); + } + $this->endClass($this->testClass); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -use function array_key_exists; -use function array_values; -use function strtolower; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MockMethodSet -{ /** - * @var MockMethod[] + * Handler for 'start run' event. */ - private $methods = []; - public function addMethods(\PHPUnit\Framework\MockObject\MockMethod ...$methods) : void + protected function startRun(): void { - foreach ($methods as $method) { - $this->methods[strtolower($method->getName())] = $method; - } } /** - * @return MockMethod[] + * Handler for 'start class' event. */ - public function asArray() : array + protected function startClass(string $name): void { - return array_values($this->methods); } - public function hasMethod(string $methodName) : bool + /** + * Handler for 'on test' event. + */ + protected function onTest(string $name, bool $success = \true): void { - return array_key_exists(strtolower($methodName), $this->methods); + } + /** + * Handler for 'end class' event. + */ + protected function endClass(string $name): void + { + } + /** + * Handler for 'end run' event. + */ + protected function endRun(): void + { + } + private function isOfInterest(Test $test): bool + { + if (!$test instanceof TestCase) { + return \false; + } + if ($test instanceof ErrorTestCase || $test instanceof WarningTestCase) { + return \false; + } + if (!empty($this->groups)) { + foreach ($test->getGroups() as $group) { + if (in_array($group, $this->groups, \true)) { + return \true; + } + } + return \false; + } + if (!empty($this->excludeGroups)) { + foreach ($test->getGroups() as $group) { + if (in_array($group, $this->excludeGroups, \true)) { + return \false; + } + } + return \true; + } + return \true; } } + + + + Test Documentation + + + +EOT; + /** + * @var string + */ + private const CLASS_HEADER = <<<'EOT' -use function class_exists; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MockTrait implements \PHPUnit\Framework\MockObject\MockType -{ +

      %s

      +
        + +EOT; /** * @var string */ - private $classCode; + private const CLASS_FOOTER = <<<'EOT' +
      +EOT; /** - * @var class-string + * @var string */ - private $mockName; + private const PAGE_FOOTER = <<<'EOT' + + + +EOT; + public function printResult(TestResult $result): void + { + } /** - * @psalm-param class-string $mockName + * Handler for 'start run' event. */ - public function __construct(string $classCode, string $mockName) + protected function startRun(): void { - $this->classCode = $classCode; - $this->mockName = $mockName; + $this->write(self::PAGE_HEADER); } /** - * @psalm-return class-string + * Handler for 'start class' event. */ - public function generate() : string + protected function startClass(string $name): void { - if (!class_exists($this->mockName, \false)) { - eval($this->classCode); - } - return $this->mockName; + $this->write(sprintf(self::CLASS_HEADER, $this->currentTestClassPrettified)); } - public function getClassCode() : string + /** + * Handler for 'on test' event. + */ + protected function onTest(string $name, bool $success = \true): void { - return $this->classCode; + $this->write(sprintf("
    • %s
    • \n", $success ? 'success' : 'defect', $name)); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface MockType -{ /** - * @psalm-return class-string + * Handler for 'end class' event. + */ + protected function endClass(string $name): void + { + $this->write(self::CLASS_FOOTER); + } + /** + * Handler for 'end run' event. */ - public function generate() : string; + protected function endRun(): void + { + $this->write(self::PAGE_FOOTER); + } } write($this->currentTestClassPrettified . "\n"); } - public function matches(BaseInvocation $invocation) : bool + /** + * Handler for 'on test' event. + */ + protected function onTest(string $name, bool $success = \true): void { - return \true; + if ($success) { + $this->write(' [x] '); + } else { + $this->write(' [ ] '); + } + $this->write($name . "\n"); } - protected function invokedDo(BaseInvocation $invocation) : void + /** + * Handler for 'end class' event. + */ + protected function endClass(string $name): void { + $this->write("\n"); } } document = new DOMDocument('1.0', 'UTF-8'); + $this->document->formatOutput = \true; + $this->root = $this->document->createElement('tests'); + $this->document->appendChild($this->root); + $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier(); + parent::__construct($out); } - public function apply(BaseInvocation $invocation) : void + /** + * Flush buffer and close output. + */ + public function flush(): void { + $this->write($this->document->saveXML()); + parent::flush(); } - public function verify() : void + /** + * An error occurred. + */ + public function addError(Test $test, Throwable $t, float $time): void { + $this->exception = $t; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Rule; - -use function count; -use function gettype; -use function is_iterable; -use function sprintf; -use PHPUnit\Framework\Constraint\Constraint; -use PHPUnit\Framework\Constraint\IsEqual; -use PHPUnit\Framework\ExpectationFailedException; -use PHPUnit\Framework\InvalidParameterGroupException; -use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ConsecutiveParameters implements \PHPUnit\Framework\MockObject\Rule\ParametersRule -{ /** - * @var array + * A warning occurred. */ - private $parameterGroups = []; + public function addWarning(Test $test, Warning $e, float $time): void + { + } /** - * @var array + * A failure occurred. */ - private $invocations = []; + public function addFailure(Test $test, AssertionFailedError $e, float $time): void + { + $this->exception = $e; + } /** - * @throws \PHPUnit\Framework\Exception + * Incomplete test. */ - public function __construct(array $parameterGroups) + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - foreach ($parameterGroups as $index => $parameters) { - if (!is_iterable($parameters)) { - throw new InvalidParameterGroupException(sprintf('Parameter group #%d must be an array or Traversable, got %s', $index, gettype($parameters))); - } - foreach ($parameters as $parameter) { - if (!$parameter instanceof Constraint) { - $parameter = new IsEqual($parameter); - } - $this->parameterGroups[$index][] = $parameter; - } - } } - public function toString() : string + /** + * Risky test. + */ + public function addRiskyTest(Test $test, Throwable $t, float $time): void { - return 'with consecutive parameters'; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * Skipped test. */ - public function apply(BaseInvocation $invocation) : void + public function addSkippedTest(Test $test, Throwable $t, float $time): void { - $this->invocations[] = $invocation; - $callIndex = count($this->invocations) - 1; - $this->verifyInvocation($invocation, $callIndex); } /** - * @throws \PHPUnit\Framework\ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * A test suite started. */ - public function verify() : void + public function startTestSuite(TestSuite $suite): void { - foreach ($this->invocations as $callIndex => $invocation) { - $this->verifyInvocation($invocation, $callIndex); - } } /** - * Verify a single invocation. - * - * @param int $callIndex + * A test suite ended. + */ + public function endTestSuite(TestSuite $suite): void + { + } + /** + * A test started. + */ + public function startTest(Test $test): void + { + $this->exception = null; + } + /** + * A test ended. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - private function verifyInvocation(BaseInvocation $invocation, $callIndex) : void + public function endTest(Test $test, float $time): void { - if (!isset($this->parameterGroups[$callIndex])) { - // no parameter assertion for this call index + if (!$test instanceof TestCase || $test instanceof WarningTestCase) { return; } - $parameters = $this->parameterGroups[$callIndex]; - if (count($invocation->getParameters()) < count($parameters)) { - throw new ExpectationFailedException(sprintf('Parameter count for invocation %s is too low.', $invocation->toString())); + $groups = array_filter($test->getGroups(), static function ($group) { + return !($group === 'small' || $group === 'medium' || $group === 'large' || strpos($group, '__phpunit_') === 0); + }); + $testNode = $this->document->createElement('test'); + $testNode->setAttribute('className', get_class($test)); + $testNode->setAttribute('methodName', $test->getName()); + $testNode->setAttribute('prettifiedClassName', $this->prettifier->prettifyTestClass(get_class($test))); + $testNode->setAttribute('prettifiedMethodName', $this->prettifier->prettifyTestCase($test)); + $testNode->setAttribute('status', (string) $test->getStatus()); + $testNode->setAttribute('time', (string) $time); + $testNode->setAttribute('size', (string) $test->getSize()); + $testNode->setAttribute('groups', implode(',', $groups)); + foreach ($groups as $group) { + $groupNode = $this->document->createElement('group'); + $groupNode->setAttribute('name', $group); + $testNode->appendChild($groupNode); } - foreach ($parameters as $i => $parameter) { - $parameter->evaluate($invocation->getParameters()[$i], sprintf('Parameter %s for invocation #%d %s does not match expected ' . 'value.', $i, $callIndex, $invocation->toString())); + $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); + foreach (['class', 'method'] as $type) { + foreach ($annotations[$type] as $annotation => $values) { + if ($annotation !== 'covers' && $annotation !== 'uses') { + continue; + } + foreach ($values as $value) { + $coversNode = $this->document->createElement($annotation); + $coversNode->setAttribute('target', $value); + $testNode->appendChild($coversNode); + } + } + } + foreach ($test->doubledTypes() as $doubledType) { + $testDoubleNode = $this->document->createElement('testDouble'); + $testDoubleNode->setAttribute('type', $doubledType); + $testNode->appendChild($testDoubleNode); + } + $inlineAnnotations = TestUtil::getInlineAnnotations(get_class($test), $test->getName(\false)); + if (isset($inlineAnnotations['given'], $inlineAnnotations['when'], $inlineAnnotations['then'])) { + $testNode->setAttribute('given', $inlineAnnotations['given']['value']); + $testNode->setAttribute('givenStartLine', (string) $inlineAnnotations['given']['line']); + $testNode->setAttribute('when', $inlineAnnotations['when']['value']); + $testNode->setAttribute('whenStartLine', (string) $inlineAnnotations['when']['line']); + $testNode->setAttribute('then', $inlineAnnotations['then']['value']); + $testNode->setAttribute('thenStartLine', (string) $inlineAnnotations['then']['line']); + } + if ($this->exception !== null) { + if ($this->exception instanceof Exception) { + $steps = $this->exception->getSerializableTrace(); + } else { + $steps = $this->exception->getTrace(); + } + try { + $file = (new ReflectionClass($test))->getFileName(); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + foreach ($steps as $step) { + if (isset($step['file']) && $step['file'] === $file) { + $testNode->setAttribute('exceptionLine', (string) $step['line']); + break; + } + } + $testNode->setAttribute('exceptionMessage', $this->exception->getMessage()); } + $this->root->appendChild($testNode); } } '│', 'start' => '│', 'message' => '│', 'diff' => '│', 'trace' => '│', 'last' => '│']; + /** + * Colored Testdox use box-drawing for a more textured map of the message. + */ + private const PREFIX_DECORATED = ['default' => '│', 'start' => 'â”', 'message' => '├', 'diff' => '┊', 'trace' => '╵', 'last' => 'â”´']; + private const SPINNER_ICONS = [" \x1b[36mâ—\x1b[0m running tests", " \x1b[36mâ—“\x1b[0m running tests", " \x1b[36mâ—‘\x1b[0m running tests", " \x1b[36mâ—’\x1b[0m running tests"]; + private const STATUS_STYLES = [BaseTestRunner::STATUS_PASSED => ['symbol' => '✔', 'color' => 'fg-green'], BaseTestRunner::STATUS_ERROR => ['symbol' => '✘', 'color' => 'fg-yellow', 'message' => 'bg-yellow,fg-black'], BaseTestRunner::STATUS_FAILURE => ['symbol' => '✘', 'color' => 'fg-red', 'message' => 'bg-red,fg-white'], BaseTestRunner::STATUS_SKIPPED => ['symbol' => '↩', 'color' => 'fg-cyan', 'message' => 'fg-cyan'], BaseTestRunner::STATUS_RISKY => ['symbol' => '☢', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_INCOMPLETE => ['symbol' => '∅', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_WARNING => ['symbol' => 'âš ', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_UNKNOWN => ['symbol' => '?', 'color' => 'fg-blue', 'message' => 'fg-white,bg-blue']]; + /** + * @var int[] + */ + private $nonSuccessfulTestResults = []; + /** + * @var Timer + */ + private $timer; + /** + * @param null|resource|string $out + * @param int|string $numberOfColumns + * + * @throws Exception + */ + public function __construct($out = null, bool $verbose = \false, string $colors = self::COLOR_DEFAULT, bool $debug = \false, $numberOfColumns = 80, bool $reverse = \false) { - return count($this->invocations); + parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); + $this->timer = new Timer(); + $this->timer->start(); + } + public function printResult(TestResult $result): void + { + $this->printHeader($result); + $this->printNonSuccessfulTestsSummary($result->count()); + $this->printFooter($result); + } + protected function printHeader(TestResult $result): void + { + $this->write("\n" . (new ResourceUsageFormatter())->resourceUsage($this->timer->stop()) . "\n\n"); + } + protected function formatClassName(Test $test): string + { + if ($test instanceof TestCase) { + return $this->prettifier->prettifyTestClass(get_class($test)); + } + return get_class($test); + } + /** + * @throws InvalidArgumentException + */ + protected function registerTestResult(Test $test, ?Throwable $t, int $status, float $time, bool $verbose): void + { + if ($status !== BaseTestRunner::STATUS_PASSED) { + $this->nonSuccessfulTestResults[] = $this->testIndex; + } + parent::registerTestResult($test, $t, $status, $time, $verbose); + } + /** + * @throws InvalidArgumentException + */ + protected function formatTestName(Test $test): string + { + if ($test instanceof TestCase) { + return $this->prettifier->prettifyTestCase($test); + } + return parent::formatTestName($test); + } + protected function writeTestResult(array $prevResult, array $result): void + { + // spacer line for new suite headers and after verbose messages + if ($prevResult['testName'] !== '' && (!empty($prevResult['message']) || $prevResult['className'] !== $result['className'])) { + $this->write(PHP_EOL); + } + // suite header + if ($prevResult['className'] !== $result['className']) { + $this->write($this->colorizeTextBox('underlined', $result['className']) . PHP_EOL); + } + // test result line + if ($this->colors && $result['className'] === PhptTestCase::class) { + $testName = Color::colorizePath($result['testName'], $prevResult['testName'], \true); + } else { + $testName = $result['testMethod']; + } + $style = self::STATUS_STYLES[$result['status']]; + $line = sprintf(' %s %s%s' . PHP_EOL, $this->colorizeTextBox($style['color'], $style['symbol']), $testName, $this->verbose ? ' ' . $this->formatRuntime($result['time'], $style['color']) : ''); + $this->write($line); + // additional information when verbose + $this->write($result['message']); + } + protected function formatThrowable(Throwable $t, ?int $status = null): string + { + return trim(TestFailure::exceptionToString($t)); + } + protected function colorizeMessageAndDiff(string $style, string $buffer): array + { + $lines = $buffer ? array_map('\rtrim', explode(PHP_EOL, $buffer)) : []; + $message = []; + $diff = []; + $insideDiff = \false; + foreach ($lines as $line) { + if ($line === '--- Expected') { + $insideDiff = \true; + } + if (!$insideDiff) { + $message[] = $line; + } else { + if (strpos($line, '-') === 0) { + $line = Color::colorize('fg-red', Color::visualizeWhitespace($line, \true)); + } elseif (strpos($line, '+') === 0) { + $line = Color::colorize('fg-green', Color::visualizeWhitespace($line, \true)); + } elseif ($line === '@@ @@') { + $line = Color::colorize('fg-cyan', $line); + } + $diff[] = $line; + } + } + $diff = implode(PHP_EOL, $diff); + if (!empty($message)) { + $message = $this->colorizeTextBox($style, implode(PHP_EOL, $message)); + } + return [$message, $diff]; + } + protected function formatStacktrace(Throwable $t): string + { + $trace = Filter::getFilteredStacktrace($t); + if (!$this->colors) { + return $trace; + } + $lines = []; + $prevPath = ''; + foreach (explode(PHP_EOL, $trace) as $line) { + if (preg_match('/^(.*):(\d+)$/', $line, $matches)) { + $lines[] = Color::colorizePath($matches[1], $prevPath) . Color::dim(':') . Color::colorize('fg-blue', $matches[2]) . "\n"; + $prevPath = $matches[1]; + } else { + $lines[] = $line; + $prevPath = ''; + } + } + return implode('', $lines); + } + protected function formatTestResultMessage(Throwable $t, array $result, ?string $prefix = null): string + { + $message = $this->formatThrowable($t, $result['status']); + $diff = ''; + if (!($this->verbose || $result['verbose'])) { + return ''; + } + if ($message && $this->colors) { + $style = self::STATUS_STYLES[$result['status']]['message'] ?? ''; + [$message, $diff] = $this->colorizeMessageAndDiff($style, $message); + } + if ($prefix === null || !$this->colors) { + $prefix = self::PREFIX_SIMPLE; + } + if ($this->colors) { + $color = self::STATUS_STYLES[$result['status']]['color'] ?? ''; + $prefix = array_map(static function ($p) use ($color) { + return Color::colorize($color, $p); + }, self::PREFIX_DECORATED); + } + $trace = $this->formatStacktrace($t); + $out = $this->prefixLines($prefix['start'], PHP_EOL) . PHP_EOL; + if ($message) { + $out .= $this->prefixLines($prefix['message'], $message . PHP_EOL) . PHP_EOL; + } + if ($diff) { + $out .= $this->prefixLines($prefix['diff'], $diff . PHP_EOL) . PHP_EOL; + } + if ($trace) { + if ($message || $diff) { + $out .= $this->prefixLines($prefix['default'], PHP_EOL) . PHP_EOL; + } + $out .= $this->prefixLines($prefix['trace'], $trace . PHP_EOL) . PHP_EOL; + } + $out .= $this->prefixLines($prefix['last'], PHP_EOL) . PHP_EOL; + return $out; + } + protected function drawSpinner(): void + { + if ($this->colors) { + $id = $this->spinState % count(self::SPINNER_ICONS); + $this->write(self::SPINNER_ICONS[$id]); + } + } + protected function undrawSpinner(): void + { + if ($this->colors) { + $id = $this->spinState % count(self::SPINNER_ICONS); + $this->write("\x1b[1K\x1b[" . strlen(self::SPINNER_ICONS[$id]) . 'D'); + } } - public function hasBeenInvoked() : bool + private function formatRuntime(float $time, string $color = ''): string { - return count($this->invocations) > 0; + if (!$this->colors) { + return sprintf('[%.2f ms]', $time * 1000); + } + if ($time > 1) { + $color = 'fg-magenta'; + } + return Color::colorize($color, ' ' . (int) ceil($time * 1000) . ' ' . Color::dim('ms')); } - public final function invoked(BaseInvocation $invocation) + private function printNonSuccessfulTestsSummary(int $numberOfExecutedTests): void { - $this->invocations[] = $invocation; - return $this->invokedDo($invocation); + if (empty($this->nonSuccessfulTestResults)) { + return; + } + if (count($this->nonSuccessfulTestResults) / $numberOfExecutedTests >= 0.7) { + return; + } + $this->write("Summary of non-successful tests:\n\n"); + $prevResult = $this->getEmptyTestResult(); + foreach ($this->nonSuccessfulTestResults as $testIndex) { + $result = $this->testResults[$testIndex]; + $this->writeTestResult($prevResult, $result); + $prevResult = $result; + } } - public abstract function matches(BaseInvocation $invocation) : bool; - protected abstract function invokedDo(BaseInvocation $invocation); } useColor = $useColor; + } /** - * @param int $sequenceIndex + * Prettifies the name of a test class. + * + * @psalm-param class-string $className */ - public function __construct($sequenceIndex) + public function prettifyTestClass(string $className): string { - $this->sequenceIndex = $sequenceIndex; + try { + $annotations = Test::parseTestMethodAnnotations($className); + if (isset($annotations['class']['testdox'][0])) { + return $annotations['class']['testdox'][0]; + } + } catch (UtilException $e) { + // ignore, determine className by parsing the provided name + } + $parts = explode('\\', $className); + $className = array_pop($parts); + if (substr($className, -1 * strlen('Test')) === 'Test') { + $className = substr($className, 0, strlen($className) - strlen('Test')); + } + if (strpos($className, 'Tests') === 0) { + $className = substr($className, strlen('Tests')); + } elseif (strpos($className, 'Test') === 0) { + $className = substr($className, strlen('Test')); + } + if (empty($className)) { + $className = 'UnnamedTests'; + } + if (!empty($parts)) { + $parts[] = $className; + $fullyQualifiedName = implode('\\', $parts); + } else { + $fullyQualifiedName = $className; + } + $result = preg_replace('/(?<=[[:lower:]])(?=[[:upper:]])/u', ' ', $className); + if ($fullyQualifiedName !== $className) { + return $result . ' (' . $fullyQualifiedName . ')'; + } + return $result; } - public function toString() : string + /** + * @throws InvalidArgumentException + */ + public function prettifyTestCase(TestCase $test): string { - return 'invoked at sequence index ' . $this->sequenceIndex; + $annotations = Test::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); + $annotationWithPlaceholders = \false; + $callback = static function (string $variable): string { + return sprintf('/%s(?=\b)/', preg_quote($variable, '/')); + }; + if (isset($annotations['method']['testdox'][0])) { + $result = $annotations['method']['testdox'][0]; + if (strpos($result, '$') !== \false) { + $annotation = $annotations['method']['testdox'][0]; + $providedData = $this->mapTestMethodParameterNamesToProvidedDataValues($test); + $variables = array_map($callback, array_keys($providedData)); + $result = trim(preg_replace($variables, $providedData, $annotation)); + $annotationWithPlaceholders = \true; + } + } else { + $result = $this->prettifyTestMethod($test->getName(\false)); + } + if (!$annotationWithPlaceholders && $test->usesDataProvider()) { + $result .= $this->prettifyDataSet($test); + } + return $result; } - public function matches(BaseInvocation $invocation) : bool + public function prettifyDataSet(TestCase $test): string { - $this->currentIndex++; - return $this->currentIndex == $this->sequenceIndex; + if (!$this->useColor) { + return $test->getDataSetAsString(\false); + } + if (is_int($test->dataName())) { + $data = Color::dim(' with data set ') . Color::colorize('fg-cyan', (string) $test->dataName()); + } else { + $data = Color::dim(' with ') . Color::colorize('fg-cyan', Color::visualizeWhitespace((string) $test->dataName())); + } + return $data; } /** - * Verifies that the current expectation is valid. If everything is OK the - * code should just return, if not it must throw an exception. - * - * @throws ExpectationFailedException + * Prettifies the name of a test method. */ - public function verify() : void + public function prettifyTestMethod(string $name): string { - if ($this->currentIndex < $this->sequenceIndex) { - throw new ExpectationFailedException(sprintf('The expected invocation at index %s was never reached.', $this->sequenceIndex)); + $buffer = ''; + if ($name === '') { + return $buffer; + } + $string = (string) preg_replace('#\d+$#', '', $name, -1, $count); + if (in_array($string, $this->strings, \true)) { + $name = $string; + } elseif ($count === 0) { + $this->strings[] = $string; + } + if (strpos($name, 'test_') === 0) { + $name = substr($name, 5); + } elseif (strpos($name, 'test') === 0) { + $name = substr($name, 4); + } + if ($name === '') { + return $buffer; + } + $name[0] = strtoupper($name[0]); + if (strpos($name, '_') !== \false) { + return trim(str_replace('_', ' ', $name)); + } + $wasNumeric = \false; + foreach (range(0, strlen($name) - 1) as $i) { + if ($i > 0 && ord($name[$i]) >= 65 && ord($name[$i]) <= 90) { + $buffer .= ' ' . strtolower($name[$i]); + } else { + $isNumeric = is_numeric($name[$i]); + if (!$wasNumeric && $isNumeric) { + $buffer .= ' '; + $wasNumeric = \true; + } + if ($wasNumeric && !$isNumeric) { + $wasNumeric = \false; + } + $buffer .= $name[$i]; + } } + return $buffer; } - protected function invokedDo(BaseInvocation $invocation) : void + /** + * @throws InvalidArgumentException + */ + private function mapTestMethodParameterNamesToProvidedDataValues(TestCase $test): array { + try { + $reflector = new ReflectionMethod(get_class($test), $test->getName(\false)); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new UtilException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + $providedData = []; + $providedDataValues = array_values($test->getProvidedData()); + $i = 0; + $providedData['$_dataName'] = $test->dataName(); + foreach ($reflector->getParameters() as $parameter) { + if (!array_key_exists($i, $providedDataValues) && $parameter->isDefaultValueAvailable()) { + try { + $providedDataValues[$i] = $parameter->getDefaultValue(); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new UtilException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } + $value = $providedDataValues[$i++] ?? null; + if (is_object($value)) { + $reflector = new ReflectionObject($value); + if ($reflector->hasMethod('__toString')) { + $value = (string) $value; + } else { + $value = get_class($value); + } + } + if (!is_scalar($value)) { + $value = gettype($value); + } + if (is_bool($value) || is_int($value) || is_float($value)) { + $value = (new Exporter())->export($value); + } + if (is_string($value) && $value === '') { + if ($this->useColor) { + $value = Color::colorize('dim,underlined', 'empty'); + } else { + $value = "''"; + } + } + $providedData['$' . $parameter->getName()] = $value; + } + if ($this->useColor) { + $providedData = array_map(static function ($value) { + return Color::colorize('fg-cyan', Color::visualizeWhitespace((string) $value, \true)); + }, $providedData); + } + return $providedData; } } Buffer for test results + */ + protected $testResults = []; + /** + * @var array Lookup table for testname to testResults[index] + */ + protected $testNameResultIndex = []; + /** + * @var bool + */ + protected $enableOutputBuffer = \false; + /** + * @var array array + */ + protected $originalExecutionOrder = []; /** * @var int */ - private $requiredInvocations; + protected $spinState = 0; /** - * @param int $requiredInvocations + * @var bool */ - public function __construct($requiredInvocations) - { - $this->requiredInvocations = $requiredInvocations; - } - public function toString() : string - { - return 'invoked at least ' . $this->requiredInvocations . ' times'; - } + protected $showProgress = \true; /** - * Verifies that the current expectation is valid. If everything is OK the - * code should just return, if not it must throw an exception. + * @param null|resource|string $out + * @param int|string $numberOfColumns * - * @throws ExpectationFailedException + * @throws Exception */ - public function verify() : void + public function __construct($out = null, bool $verbose = \false, string $colors = self::COLOR_DEFAULT, bool $debug = \false, $numberOfColumns = 80, bool $reverse = \false) { - $count = $this->getInvocationCount(); - if ($count < $this->requiredInvocations) { - throw new ExpectationFailedException('Expected invocation at least ' . $this->requiredInvocations . ' times but it occurred ' . $count . ' time(s).'); - } + parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); + $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier($this->colors); } - public function matches(BaseInvocation $invocation) : bool + public function setOriginalExecutionOrder(array $order): void { - return \true; + $this->originalExecutionOrder = $order; + $this->enableOutputBuffer = !empty($order); } - protected function invokedDo(BaseInvocation $invocation) : void + public function setShowProgressAnimation(bool $showProgress): void { + $this->showProgress = $showProgress; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Rule; - -use PHPUnit\Framework\ExpectationFailedException; -use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class InvokedAtLeastOnce extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder -{ - public function toString() : string + public function printResult(TestResult $result): void { - return 'invoked at least once'; } /** - * Verifies that the current expectation is valid. If everything is OK the - * code should just return, if not it must throw an exception. - * - * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function verify() : void + public function endTest(Test $test, float $time): void { - $count = $this->getInvocationCount(); - if ($count < 1) { - throw new ExpectationFailedException('Expected invocation at least once but it never occurred.'); + if (!$test instanceof TestCase && !$test instanceof PhptTestCase && !$test instanceof TestSuite) { + return; + } + if ($this->testHasPassed()) { + $this->registerTestResult($test, null, BaseTestRunner::STATUS_PASSED, $time, \false); + } + if ($test instanceof TestCase || $test instanceof PhptTestCase) { + $this->testIndex++; } + parent::endTest($test, $time); } - public function matches(BaseInvocation $invocation) : bool + /** + * @throws InvalidArgumentException + */ + public function addError(Test $test, Throwable $t, float $time): void { - return \true; + $this->registerTestResult($test, $t, BaseTestRunner::STATUS_ERROR, $time, \true); } - protected function invokedDo(BaseInvocation $invocation) : void + /** + * @throws InvalidArgumentException + */ + public function addWarning(Test $test, Warning $e, float $time): void { + $this->registerTestResult($test, $e, BaseTestRunner::STATUS_WARNING, $time, \true); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Rule; - -use PHPUnit\Framework\ExpectationFailedException; -use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class InvokedAtMostCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder -{ /** - * @var int + * @throws InvalidArgumentException */ - private $allowedInvocations; + public function addFailure(Test $test, AssertionFailedError $e, float $time): void + { + $this->registerTestResult($test, $e, BaseTestRunner::STATUS_FAILURE, $time, \true); + } /** - * @param int $allowedInvocations + * @throws InvalidArgumentException */ - public function __construct($allowedInvocations) + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - $this->allowedInvocations = $allowedInvocations; + $this->registerTestResult($test, $t, BaseTestRunner::STATUS_INCOMPLETE, $time, \false); } - public function toString() : string + /** + * @throws InvalidArgumentException + */ + public function addRiskyTest(Test $test, Throwable $t, float $time): void { - return 'invoked at most ' . $this->allowedInvocations . ' times'; + $this->registerTestResult($test, $t, BaseTestRunner::STATUS_RISKY, $time, \false); } /** - * Verifies that the current expectation is valid. If everything is OK the - * code should just return, if not it must throw an exception. - * - * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function verify() : void + public function addSkippedTest(Test $test, Throwable $t, float $time): void { - $count = $this->getInvocationCount(); - if ($count > $this->allowedInvocations) { - throw new ExpectationFailedException('Expected invocation at most ' . $this->allowedInvocations . ' times but it occurred ' . $count . ' time(s).'); - } + $this->registerTestResult($test, $t, BaseTestRunner::STATUS_SKIPPED, $time, \false); } - public function matches(BaseInvocation $invocation) : bool + public function writeProgress(string $progress): void { - return \true; + $this->flushOutputBuffer(); } - protected function invokedDo(BaseInvocation $invocation) : void + public function flush(): void { + $this->flushOutputBuffer(\true); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Rule; - -use function sprintf; -use PHPUnit\Framework\ExpectationFailedException; -use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class InvokedCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder -{ - /** - * @var int - */ - private $expectedCount; /** - * @param int $expectedCount + * @throws InvalidArgumentException */ - public function __construct($expectedCount) + protected function registerTestResult(Test $test, ?Throwable $t, int $status, float $time, bool $verbose): void + { + $testName = $test instanceof Reorderable ? $test->sortId() : $test->getName(); + $result = ['className' => $this->formatClassName($test), 'testName' => $testName, 'testMethod' => $this->formatTestName($test), 'message' => '', 'status' => $status, 'time' => $time, 'verbose' => $verbose]; + if ($t !== null) { + $result['message'] = $this->formatTestResultMessage($t, $result); + } + $this->testResults[$this->testIndex] = $result; + $this->testNameResultIndex[$testName] = $this->testIndex; + } + protected function formatTestName(Test $test): string + { + return method_exists($test, 'getName') ? $test->getName() : ''; + } + protected function formatClassName(Test $test): string + { + return get_class($test); + } + protected function testHasPassed(): bool + { + if (!isset($this->testResults[$this->testIndex]['status'])) { + return \true; + } + if ($this->testResults[$this->testIndex]['status'] === BaseTestRunner::STATUS_PASSED) { + return \true; + } + return \false; + } + protected function flushOutputBuffer(bool $forceFlush = \false): void + { + if ($this->testFlushIndex === $this->testIndex) { + return; + } + if ($this->testFlushIndex > 0) { + if ($this->enableOutputBuffer && isset($this->originalExecutionOrder[$this->testFlushIndex - 1])) { + $prevResult = $this->getTestResultByName($this->originalExecutionOrder[$this->testFlushIndex - 1]); + } else { + $prevResult = $this->testResults[$this->testFlushIndex - 1]; + } + } else { + $prevResult = $this->getEmptyTestResult(); + } + if (!$this->enableOutputBuffer) { + $this->writeTestResult($prevResult, $this->testResults[$this->testFlushIndex++]); + } else { + do { + $flushed = \false; + if (!$forceFlush && isset($this->originalExecutionOrder[$this->testFlushIndex])) { + $result = $this->getTestResultByName($this->originalExecutionOrder[$this->testFlushIndex]); + } else { + // This test(name) cannot found in original execution order, + // flush result to output stream right away + $result = $this->testResults[$this->testFlushIndex]; + } + if (!empty($result)) { + $this->hideSpinner(); + $this->writeTestResult($prevResult, $result); + $this->testFlushIndex++; + $prevResult = $result; + $flushed = \true; + } else { + $this->showSpinner(); + } + } while ($flushed && $this->testFlushIndex < $this->testIndex); + } + } + protected function showSpinner(): void { - $this->expectedCount = $expectedCount; + if (!$this->showProgress) { + return; + } + if ($this->spinState) { + $this->undrawSpinner(); + } + $this->spinState++; + $this->drawSpinner(); } - public function isNever() : bool + protected function hideSpinner(): void { - return $this->expectedCount === 0; + if (!$this->showProgress) { + return; + } + if ($this->spinState) { + $this->undrawSpinner(); + } + $this->spinState = 0; } - public function toString() : string + protected function drawSpinner(): void { - return 'invoked ' . $this->expectedCount . ' time(s)'; + // optional for CLI printers: show the user a 'buffering output' spinner } - public function matches(BaseInvocation $invocation) : bool + protected function undrawSpinner(): void { - return \true; + // remove the spinner from the current line } - /** - * Verifies that the current expectation is valid. If everything is OK the - * code should just return, if not it must throw an exception. - * - * @throws ExpectationFailedException - */ - public function verify() : void + protected function writeTestResult(array $prevResult, array $result): void { - $count = $this->getInvocationCount(); - if ($count !== $this->expectedCount) { - throw new ExpectationFailedException(sprintf('Method was expected to be called %d times, ' . 'actually called %d times.', $this->expectedCount, $count)); - } } - /** - * @throws ExpectationFailedException - */ - protected function invokedDo(BaseInvocation $invocation) : void + protected function getEmptyTestResult(): array { - $count = $this->getInvocationCount(); - if ($count > $this->expectedCount) { - $message = $invocation->toString() . ' '; - switch ($this->expectedCount) { - case 0: - $message .= 'was not expected to be called.'; - break; - case 1: - $message .= 'was not expected to be called more than once.'; - break; - default: - $message .= sprintf('was not expected to be called more than %d times.', $this->expectedCount); - } - throw new ExpectationFailedException($message); - } + return ['className' => '', 'testName' => '', 'message' => '', 'failed' => '', 'verbose' => '']; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Rule; - -use function is_string; -use PHPUnit\Framework\Constraint\Constraint; -use PHPUnit\Framework\InvalidArgumentException; -use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; -use PHPUnit\Framework\MockObject\MethodNameConstraint; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MethodName -{ - /** - * @var Constraint - */ - private $constraint; - /** - * @param Constraint|string $constraint - * - * @throws InvalidArgumentException - */ - public function __construct($constraint) + protected function getTestResultByName(?string $testName): array { - if (is_string($constraint)) { - $constraint = new MethodNameConstraint($constraint); + if (isset($this->testNameResultIndex[$testName])) { + return $this->testResults[$this->testNameResultIndex[$testName]]; } - if (!$constraint instanceof Constraint) { - throw InvalidArgumentException::create(1, 'PHPUnit\\Framework\\Constraint\\Constraint object or string'); + return []; + } + protected function formatThrowable(Throwable $t, ?int $status = null): string + { + $message = trim(TestFailure::exceptionToString($t)); + if ($message) { + $message .= PHP_EOL . PHP_EOL . $this->formatStacktrace($t); + } else { + $message = $this->formatStacktrace($t); } - $this->constraint = $constraint; + return $message; } - public function toString() : string + protected function formatStacktrace(Throwable $t): string { - return 'method name ' . $this->constraint->toString(); + return Filter::getFilteredStacktrace($t); } - /** - * @throws \PHPUnit\Framework\ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function matches(BaseInvocation $invocation) : bool + protected function formatTestResultMessage(Throwable $t, array $result, string $prefix = '│'): string { - return $this->matchesName($invocation->getMethodName()); + $message = $this->formatThrowable($t, $result['status']); + if ($message === '') { + return ''; + } + if (!($this->verbose || $result['verbose'])) { + return ''; + } + return $this->prefixLines($prefix, $message); } - /** - * @throws \PHPUnit\Framework\ExpectationFailedException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function matchesName(string $methodName) : bool + protected function prefixLines(string $prefix, string $message): string { - return (bool) $this->constraint->evaluate($methodName, '', \true); + $message = trim($message); + return implode(PHP_EOL, array_map(static function (string $text) use ($prefix) { + return ' ' . $prefix . ($text ? ' ' . $text : ''); + }, preg_split('/\r\n|\r|\n/', $message))); } } getSyntheticTrace(); + $eFile = $t->getSyntheticFile(); + $eLine = $t->getSyntheticLine(); + } elseif ($t instanceof Exception) { + $eTrace = $t->getSerializableTrace(); + $eFile = $t->getFile(); + $eLine = $t->getLine(); + } else { + if ($t->getPrevious()) { + $t = $t->getPrevious(); } - $this->parameters[] = $parameter; + $eTrace = $t->getTrace(); + $eFile = $t->getFile(); + $eLine = $t->getLine(); } - } - public function toString() : string - { - $text = 'with parameter'; - foreach ($this->parameters as $index => $parameter) { - if ($index > 0) { - $text .= ' and'; + if (!self::frameExists($eTrace, $eFile, $eLine)) { + array_unshift($eTrace, ['file' => $eFile, 'line' => $eLine]); + } + $prefix = defined('__PHPUNIT_PHAR_ROOT__') ? __PHPUNIT_PHAR_ROOT__ : \false; + $excludeList = new \PHPUnit\Util\ExcludeList(); + foreach ($eTrace as $frame) { + if (self::shouldPrintFrame($frame, $prefix, $excludeList)) { + $filteredStacktrace .= sprintf("%s:%s\n", $frame['file'], $frame['line'] ?? '?'); } - $text .= ' ' . $index . ' ' . $parameter->toString(); } - return $text; + return $filteredStacktrace; } - /** - * @throws Exception - */ - public function apply(BaseInvocation $invocation) : void + private static function shouldPrintFrame(array $frame, $prefix, \PHPUnit\Util\ExcludeList $excludeList): bool { - $this->invocation = $invocation; - $this->parameterVerificationResult = null; - try { - $this->parameterVerificationResult = $this->doVerify(); - } catch (ExpectationFailedException $e) { - $this->parameterVerificationResult = $e; - throw $this->parameterVerificationResult; + if (!isset($frame['file'])) { + return \false; + } + $file = $frame['file']; + $fileIsNotPrefixed = $prefix === \false || strpos($file, $prefix) !== 0; + // @see https://github.com/sebastianbergmann/phpunit/issues/4033 + if (isset($GLOBALS['_SERVER']['SCRIPT_NAME'])) { + $script = realpath($GLOBALS['_SERVER']['SCRIPT_NAME']); + } else { + $script = ''; } + return is_file($file) && self::fileIsExcluded($file, $excludeList) && $fileIsNotPrefixed && $file !== $script; } - /** - * Checks if the invocation $invocation matches the current rules. If it - * does the rule will get the invoked() method called which should check - * if an expectation is met. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - public function verify() : void + private static function fileIsExcluded(string $file, \PHPUnit\Util\ExcludeList $excludeList): bool { - $this->doVerify(); + return (empty($GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST']) || !in_array($file, $GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'], \true)) && !$excludeList->isExcluded($file); } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws ExpectationFailedException - */ - private function doVerify() : bool + private static function frameExists(array $trace, string $file, int $line): bool { - if (isset($this->parameterVerificationResult)) { - return $this->guardAgainstDuplicateEvaluationOfParameterConstraints(); - } - if ($this->invocation === null) { - throw new ExpectationFailedException('Mocked method does not exist.'); - } - if (count($this->invocation->getParameters()) < count($this->parameters)) { - $message = 'Parameter count for invocation %s is too low.'; - // The user called `->with($this->anything())`, but may have meant - // `->withAnyParameters()`. - // - // @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/199 - if (count($this->parameters) === 1 && get_class($this->parameters[0]) === IsAnything::class) { - $message .= "\nTo allow 0 or more parameters with any value, omit ->with() or use ->withAnyParameters() instead."; + foreach ($trace as $frame) { + if (isset($frame['file'], $frame['line']) && $frame['file'] === $file && $frame['line'] === $line) { + return \true; } - throw new ExpectationFailedException(sprintf($message, $this->invocation->toString())); - } - foreach ($this->parameters as $i => $parameter) { - $parameter->evaluate($this->invocation->getParameters()[$i], sprintf('Parameter %s for invocation %s does not match expected ' . 'value.', $i, $this->invocation->toString())); - } - return \true; - } - /** - * @throws ExpectationFailedException - */ - private function guardAgainstDuplicateEvaluationOfParameterConstraints() : bool - { - if ($this->parameterVerificationResult instanceof ExpectationFailedException) { - throw $this->parameterVerificationResult; } - return (bool) $this->parameterVerificationResult; + return \false; } } openMemory(); + $writer->setIndent(\true); + $writer->startDocument('1.0', 'UTF-8'); + $writer->startElement('tests'); + $currentTestCase = null; + foreach (new RecursiveIteratorIterator($suite->getIterator()) as $test) { + if ($test instanceof TestCase) { + if (get_class($test) !== $currentTestCase) { + if ($currentTestCase !== null) { + $writer->endElement(); + } + $writer->startElement('testCaseClass'); + $writer->writeAttribute('name', get_class($test)); + $currentTestCase = get_class($test); + } + $writer->startElement('testCaseMethod'); + $writer->writeAttribute('name', $test->getName(\false)); + $writer->writeAttribute('groups', implode(',', $test->getGroups())); + if (!empty($test->getDataSetAsString(\false))) { + $writer->writeAttribute('dataSet', str_replace(' with data set ', '', $test->getDataSetAsString(\false))); + } + $writer->endElement(); + } elseif ($test instanceof PhptTestCase) { + if ($currentTestCase !== null) { + $writer->endElement(); + $currentTestCase = null; + } + $writer->startElement('phptFile'); + $writer->writeAttribute('path', $test->getName()); + $writer->endElement(); + } + } + if ($currentTestCase !== null) { + $writer->endElement(); + } + $writer->endElement(); + $writer->endDocument(); + return $writer->outputMemory(); + } } stack = $stack; + $this->printHeader($result); + $this->printFooter($result); } - public function invoke(Invocation $invocation) + /** + * An error occurred. + */ + public function addError(Test $test, Throwable $t, float $time): void { - $this->value = array_shift($this->stack); - if ($this->value instanceof \PHPUnit\Framework\MockObject\Stub\Stub) { - $this->value = $this->value->invoke($invocation); + $this->printEvent('testFailed', ['name' => $test->getName(), 'message' => self::getMessage($t), 'details' => self::getDetails($t), 'duration' => self::toMilliseconds($time)]); + } + /** + * A warning occurred. + */ + public function addWarning(Test $test, Warning $e, float $time): void + { + $this->write(self::getMessage($e) . PHP_EOL); + } + /** + * A failure occurred. + */ + public function addFailure(Test $test, AssertionFailedError $e, float $time): void + { + $parameters = ['name' => $test->getName(), 'message' => self::getMessage($e), 'details' => self::getDetails($e), 'duration' => self::toMilliseconds($time)]; + if ($e instanceof ExpectationFailedException) { + $comparisonFailure = $e->getComparisonFailure(); + if ($comparisonFailure instanceof ComparisonFailure) { + $expectedString = $comparisonFailure->getExpectedAsString(); + if ($expectedString === null || empty($expectedString)) { + $expectedString = self::getPrimitiveValueAsString($comparisonFailure->getExpected()); + } + $actualString = $comparisonFailure->getActualAsString(); + if ($actualString === null || empty($actualString)) { + $actualString = self::getPrimitiveValueAsString($comparisonFailure->getActual()); + } + if ($actualString !== null && $expectedString !== null) { + $parameters['type'] = 'comparisonFailure'; + $parameters['actual'] = $actualString; + $parameters['expected'] = $expectedString; + } + } } - return $this->value; + $this->printEvent('testFailed', $parameters); } - public function toString() : string + /** + * Incomplete test. + */ + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - $exporter = new Exporter(); - return sprintf('return user-specified value %s', $exporter->export($this->value)); + $this->printIgnoredTest($test->getName(), $t, $time); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use function sprintf; -use PHPUnit\Framework\MockObject\Invocation; -use PHPUnit\SebastianBergmann\Exporter\Exporter; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Exception implements \PHPUnit\Framework\MockObject\Stub\Stub -{ - private $exception; - public function __construct(Throwable $exception) + /** + * Risky test. + */ + public function addRiskyTest(Test $test, Throwable $t, float $time): void + { + $this->addError($test, $t, $time); + } + /** + * Skipped test. + */ + public function addSkippedTest(Test $test, Throwable $t, float $time): void + { + $testName = $test->getName(); + if ($this->startedTestName !== $testName) { + $this->startTest($test); + $this->printIgnoredTest($testName, $t, $time); + $this->endTest($test, $time); + } else { + $this->printIgnoredTest($testName, $t, $time); + } + } + public function printIgnoredTest(string $testName, Throwable $t, float $time): void + { + $this->printEvent('testIgnored', ['name' => $testName, 'message' => self::getMessage($t), 'details' => self::getDetails($t), 'duration' => self::toMilliseconds($time)]); + } + /** + * A testsuite started. + */ + public function startTestSuite(TestSuite $suite): void + { + if (stripos(ini_get('disable_functions'), 'getmypid') === \false) { + $this->flowId = getmypid(); + } else { + $this->flowId = \false; + } + if (!$this->isSummaryTestCountPrinted) { + $this->isSummaryTestCountPrinted = \true; + $this->printEvent('testCount', ['count' => count($suite)]); + } + $suiteName = $suite->getName(); + if (empty($suiteName)) { + return; + } + $parameters = ['name' => $suiteName]; + if (class_exists($suiteName, \false)) { + $fileName = self::getFileName($suiteName); + $parameters['locationHint'] = "php_qn://{$fileName}::\\{$suiteName}"; + } else { + $split = explode('::', $suiteName); + if (count($split) === 2 && class_exists($split[0]) && method_exists($split[0], $split[1])) { + $fileName = self::getFileName($split[0]); + $parameters['locationHint'] = "php_qn://{$fileName}::\\{$suiteName}"; + $parameters['name'] = $split[1]; + } + } + $this->printEvent('testSuiteStarted', $parameters); + } + /** + * A testsuite ended. + */ + public function endTestSuite(TestSuite $suite): void + { + $suiteName = $suite->getName(); + if (empty($suiteName)) { + return; + } + $parameters = ['name' => $suiteName]; + if (!class_exists($suiteName, \false)) { + $split = explode('::', $suiteName); + if (count($split) === 2 && class_exists($split[0]) && method_exists($split[0], $split[1])) { + $parameters['name'] = $split[1]; + } + } + $this->printEvent('testSuiteFinished', $parameters); + } + /** + * A test started. + */ + public function startTest(Test $test): void { - $this->exception = $exception; + $testName = $test->getName(); + $this->startedTestName = $testName; + $params = ['name' => $testName]; + if ($test instanceof TestCase) { + $className = get_class($test); + $fileName = self::getFileName($className); + $params['locationHint'] = "php_qn://{$fileName}::\\{$className}::{$testName}"; + } + $this->printEvent('testStarted', $params); } /** - * @throws Throwable + * A test ended. */ - public function invoke(Invocation $invocation) : void + public function endTest(Test $test, float $time): void { - throw $this->exception; + parent::endTest($test, $time); + $this->printEvent('testFinished', ['name' => $test->getName(), 'duration' => self::toMilliseconds($time)]); } - public function toString() : string + protected function writeProgress(string $progress): void { - $exporter = new Exporter(); - return sprintf('raise user-specified exception %s', $exporter->export($this->exception)); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use function sprintf; -use PHPUnit\Framework\MockObject\Invocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnArgument implements \PHPUnit\Framework\MockObject\Stub\Stub -{ - /** - * @var int - */ - private $argumentIndex; - public function __construct($argumentIndex) + private function printEvent(string $eventName, array $params = []): void { - $this->argumentIndex = $argumentIndex; + $this->write("\n##teamcity[{$eventName}"); + if ($this->flowId) { + $params['flowId'] = $this->flowId; + } + foreach ($params as $key => $value) { + $escapedValue = self::escapeValue((string) $value); + $this->write(" {$key}='{$escapedValue}'"); + } + $this->write("]\n"); } - public function invoke(Invocation $invocation) + private static function getMessage(Throwable $t): string { - if (isset($invocation->getParameters()[$this->argumentIndex])) { - return $invocation->getParameters()[$this->argumentIndex]; + $message = ''; + if ($t instanceof ExceptionWrapper) { + if ($t->getClassName() !== '') { + $message .= $t->getClassName(); + } + if ($message !== '' && $t->getMessage() !== '') { + $message .= ' : '; + } } + return $message . $t->getMessage(); } - public function toString() : string + private static function getDetails(Throwable $t): string { - return sprintf('return argument #%d', $this->argumentIndex); + $stackTrace = Filter::getFilteredStacktrace($t); + $previous = $t instanceof ExceptionWrapper ? $t->getPreviousWrapped() : $t->getPrevious(); + while ($previous) { + $stackTrace .= "\nCaused by\n" . TestFailure::exceptionToString($previous) . "\n" . Filter::getFilteredStacktrace($previous); + $previous = $previous instanceof ExceptionWrapper ? $previous->getPreviousWrapped() : $previous->getPrevious(); + } + return ' ' . str_replace("\n", "\n ", $stackTrace); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use function call_user_func_array; -use function get_class; -use function is_array; -use function is_object; -use function sprintf; -use PHPUnit\Framework\MockObject\Invocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnCallback implements \PHPUnit\Framework\MockObject\Stub\Stub -{ - private $callback; - public function __construct($callback) + private static function getPrimitiveValueAsString($value): ?string { - $this->callback = $callback; + if ($value === null) { + return 'null'; + } + if (is_bool($value)) { + return $value ? 'true' : 'false'; + } + if (is_scalar($value)) { + return print_r($value, \true); + } + return null; } - public function invoke(Invocation $invocation) + private static function escapeValue(string $text): string { - return call_user_func_array($this->callback, $invocation->getParameters()); + return str_replace(['|', "'", "\n", "\r", ']', '['], ['||', "|'", '|n', '|r', '|]', '|['], $text); } - public function toString() : string + /** + * @param string $className + */ + private static function getFileName($className): string { - if (is_array($this->callback)) { - if (is_object($this->callback[0])) { - $class = get_class($this->callback[0]); - $type = '->'; - } else { - $class = $this->callback[0]; - $type = '::'; - } - return sprintf('return result of user defined callback %s%s%s() with the ' . 'passed arguments', $class, $type, $this->callback[1]); + try { + return (new ReflectionClass($className))->getFileName(); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); } - return 'return result of user defined callback ' . $this->callback . ' with the passed arguments'; + // @codeCoverageIgnoreEnd + } + /** + * @param float $time microseconds + */ + private static function toMilliseconds(float $time): int + { + return (int) round($time * 1000); } } reference =& $reference; + $this->document = new DOMDocument('1.0', 'UTF-8'); + $this->document->formatOutput = \true; + $this->root = $this->document->createElement('testsuites'); + $this->document->appendChild($this->root); + parent::__construct($out); + $this->reportRiskyTests = $reportRiskyTests; } - public function invoke(Invocation $invocation) + /** + * Flush buffer and close output. + */ + public function flush(): void { - return $this->reference; + $this->write($this->getXML()); + parent::flush(); } - public function toString() : string + /** + * An error occurred. + */ + public function addError(Test $test, Throwable $t, float $time): void { - $exporter = new Exporter(); - return sprintf('return user-specified reference %s', $exporter->export($this->reference)); + $this->doAddFault($test, $t, 'error'); + $this->testSuiteErrors[$this->testSuiteLevel]++; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use PHPUnit\Framework\MockObject\Invocation; -use PHPUnit\Framework\MockObject\RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnSelf implements \PHPUnit\Framework\MockObject\Stub\Stub -{ /** - * @throws RuntimeException + * A warning occurred. */ - public function invoke(Invocation $invocation) + public function addWarning(Test $test, Warning $e, float $time): void { - return $invocation->getObject(); + $this->doAddFault($test, $e, 'warning'); + $this->testSuiteWarnings[$this->testSuiteLevel]++; } - public function toString() : string + /** + * A failure occurred. + */ + public function addFailure(Test $test, AssertionFailedError $e, float $time): void { - return 'return the current object'; + $this->doAddFault($test, $e, 'failure'); + $this->testSuiteFailures[$this->testSuiteLevel]++; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use function sprintf; -use PHPUnit\Framework\MockObject\Invocation; -use PHPUnit\SebastianBergmann\Exporter\Exporter; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnStub implements \PHPUnit\Framework\MockObject\Stub\Stub -{ /** - * @var mixed + * Incomplete test. */ - private $value; - public function __construct($value) + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - $this->value = $value; + $this->doAddSkipped(); } - public function invoke(Invocation $invocation) + /** + * Risky test. + */ + public function addRiskyTest(Test $test, Throwable $t, float $time): void { - return $this->value; + if (!$this->reportRiskyTests) { + return; + } + $this->doAddFault($test, $t, 'error'); + $this->testSuiteErrors[$this->testSuiteLevel]++; } - public function toString() : string + /** + * Skipped test. + */ + public function addSkippedTest(Test $test, Throwable $t, float $time): void { - $exporter = new Exporter(); - return sprintf('return user-specified value %s', $exporter->export($this->value)); + $this->doAddSkipped(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use function array_pop; -use function count; -use function is_array; -use PHPUnit\Framework\MockObject\Invocation; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ReturnValueMap implements \PHPUnit\Framework\MockObject\Stub\Stub -{ /** - * @var array + * A testsuite started. */ - private $valueMap; - public function __construct(array $valueMap) + public function startTestSuite(TestSuite $suite): void { - $this->valueMap = $valueMap; + $testSuite = $this->document->createElement('testsuite'); + $testSuite->setAttribute('name', $suite->getName()); + if (class_exists($suite->getName(), \false)) { + try { + $class = new ReflectionClass($suite->getName()); + $testSuite->setAttribute('file', $class->getFileName()); + } catch (ReflectionException $e) { + } + } + if ($this->testSuiteLevel > 0) { + $this->testSuites[$this->testSuiteLevel]->appendChild($testSuite); + } else { + $this->root->appendChild($testSuite); + } + $this->testSuiteLevel++; + $this->testSuites[$this->testSuiteLevel] = $testSuite; + $this->testSuiteTests[$this->testSuiteLevel] = 0; + $this->testSuiteAssertions[$this->testSuiteLevel] = 0; + $this->testSuiteErrors[$this->testSuiteLevel] = 0; + $this->testSuiteWarnings[$this->testSuiteLevel] = 0; + $this->testSuiteFailures[$this->testSuiteLevel] = 0; + $this->testSuiteSkipped[$this->testSuiteLevel] = 0; + $this->testSuiteTimes[$this->testSuiteLevel] = 0; } - public function invoke(Invocation $invocation) + /** + * A testsuite ended. + */ + public function endTestSuite(TestSuite $suite): void { - $parameterCount = count($invocation->getParameters()); - foreach ($this->valueMap as $map) { - if (!is_array($map) || $parameterCount !== count($map) - 1) { - continue; - } - $return = array_pop($map); - if ($invocation->getParameters() === $map) { - return $return; + $this->testSuites[$this->testSuiteLevel]->setAttribute('tests', (string) $this->testSuiteTests[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('assertions', (string) $this->testSuiteAssertions[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('errors', (string) $this->testSuiteErrors[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('warnings', (string) $this->testSuiteWarnings[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('failures', (string) $this->testSuiteFailures[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('skipped', (string) $this->testSuiteSkipped[$this->testSuiteLevel]); + $this->testSuites[$this->testSuiteLevel]->setAttribute('time', sprintf('%F', $this->testSuiteTimes[$this->testSuiteLevel])); + if ($this->testSuiteLevel > 1) { + $this->testSuiteTests[$this->testSuiteLevel - 1] += $this->testSuiteTests[$this->testSuiteLevel]; + $this->testSuiteAssertions[$this->testSuiteLevel - 1] += $this->testSuiteAssertions[$this->testSuiteLevel]; + $this->testSuiteErrors[$this->testSuiteLevel - 1] += $this->testSuiteErrors[$this->testSuiteLevel]; + $this->testSuiteWarnings[$this->testSuiteLevel - 1] += $this->testSuiteWarnings[$this->testSuiteLevel]; + $this->testSuiteFailures[$this->testSuiteLevel - 1] += $this->testSuiteFailures[$this->testSuiteLevel]; + $this->testSuiteSkipped[$this->testSuiteLevel - 1] += $this->testSuiteSkipped[$this->testSuiteLevel]; + $this->testSuiteTimes[$this->testSuiteLevel - 1] += $this->testSuiteTimes[$this->testSuiteLevel]; + } + $this->testSuiteLevel--; + } + /** + * A test started. + */ + public function startTest(Test $test): void + { + $usesDataprovider = \false; + if (method_exists($test, 'usesDataProvider')) { + $usesDataprovider = $test->usesDataProvider(); + } + $testCase = $this->document->createElement('testcase'); + $testCase->setAttribute('name', $test->getName()); + try { + $class = new ReflectionClass($test); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + $methodName = $test->getName(!$usesDataprovider); + if ($class->hasMethod($methodName)) { + try { + $method = $class->getMethod($methodName); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); } + // @codeCoverageIgnoreEnd + $testCase->setAttribute('class', $class->getName()); + $testCase->setAttribute('classname', str_replace('\\', '.', $class->getName())); + $testCase->setAttribute('file', $class->getFileName()); + $testCase->setAttribute('line', (string) $method->getStartLine()); } + $this->currentTestCase = $testCase; } - public function toString() : string + /** + * A test ended. + */ + public function endTest(Test $test, float $time): void { - return 'return value from a map'; + $numAssertions = 0; + if (method_exists($test, 'getNumAssertions')) { + $numAssertions = $test->getNumAssertions(); + } + $this->testSuiteAssertions[$this->testSuiteLevel] += $numAssertions; + $this->currentTestCase->setAttribute('assertions', (string) $numAssertions); + $this->currentTestCase->setAttribute('time', sprintf('%F', $time)); + $this->testSuites[$this->testSuiteLevel]->appendChild($this->currentTestCase); + $this->testSuiteTests[$this->testSuiteLevel]++; + $this->testSuiteTimes[$this->testSuiteLevel] += $time; + $testOutput = ''; + if (method_exists($test, 'hasOutput') && method_exists($test, 'getActualOutput')) { + $testOutput = $test->hasOutput() ? $test->getActualOutput() : ''; + } + if (!empty($testOutput)) { + $systemOut = $this->document->createElement('system-out', Xml::prepareString($testOutput)); + $this->currentTestCase->appendChild($systemOut); + } + $this->currentTestCase = null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework\MockObject\Stub; - -use PHPUnit\Framework\MockObject\Invocation; -use PHPUnit\Framework\SelfDescribing; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface Stub extends SelfDescribing -{ /** - * Fakes the processing of the invocation $invocation by returning a - * specific value. - * - * @param Invocation $invocation The invocation which was mocked and matched by the current method and argument matchers + * Returns the XML as a string. */ - public function invoke(Invocation $invocation); + public function getXML(): string + { + return $this->document->saveXML(); + } + private function doAddFault(Test $test, Throwable $t, string $type): void + { + if ($this->currentTestCase === null) { + return; + } + if ($test instanceof SelfDescribing) { + $buffer = $test->toString() . "\n"; + } else { + $buffer = ''; + } + $buffer .= trim(TestFailure::exceptionToString($t) . "\n" . Filter::getFilteredStacktrace($t)); + $fault = $this->document->createElement($type, Xml::prepareString($buffer)); + if ($t instanceof ExceptionWrapper) { + $fault->setAttribute('type', $t->getClassName()); + } else { + $fault->setAttribute('type', get_class($t)); + } + $this->currentTestCase->appendChild($fault); + } + private function doAddSkipped(): void + { + if ($this->currentTestCase === null) { + return; + } + $skipped = $this->document->createElement('skipped'); + $this->currentTestCase->appendChild($skipped); + $this->testSuiteSkipped[$this->testSuiteLevel]++; + } } - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface Reorderable -{ - public function sortId() : string; + private $convertDeprecationsToExceptions; /** - * @return list + * @var bool */ - public function provides() : array; + private $convertErrorsToExceptions; /** - * @return list + * @var bool + */ + private $convertNoticesToExceptions; + /** + * @var bool + */ + private $convertWarningsToExceptions; + /** + * @var bool */ - public function requires() : array; + private $registered = \false; + public static function invokeIgnoringWarnings(callable $callable) + { + set_error_handler(static function ($errorNumber, $errorString) { + if ($errorNumber === E_WARNING) { + return; + } + return \false; + }); + $result = $callable(); + restore_error_handler(); + return $result; + } + public function __construct(bool $convertDeprecationsToExceptions, bool $convertErrorsToExceptions, bool $convertNoticesToExceptions, bool $convertWarningsToExceptions) + { + $this->convertDeprecationsToExceptions = $convertDeprecationsToExceptions; + $this->convertErrorsToExceptions = $convertErrorsToExceptions; + $this->convertNoticesToExceptions = $convertNoticesToExceptions; + $this->convertWarningsToExceptions = $convertWarningsToExceptions; + } + public function __invoke(int $errorNumber, string $errorString, string $errorFile, int $errorLine): bool + { + /* + * Do not raise an exception when the error suppression operator (@) was used. + * + * @see https://github.com/sebastianbergmann/phpunit/issues/3739 + */ + if (!($errorNumber & error_reporting())) { + return \false; + } + /** + * E_STRICT is deprecated since PHP 8.4. + * + * @see https://github.com/sebastianbergmann/phpunit/issues/5956 + */ + if (defined('E_STRICT') && $errorNumber === @E_STRICT) { + $errorNumber = E_NOTICE; + } + switch ($errorNumber) { + case E_NOTICE: + case E_USER_NOTICE: + if (!$this->convertNoticesToExceptions) { + return \false; + } + throw new Notice($errorString, $errorNumber, $errorFile, $errorLine); + case E_WARNING: + case E_USER_WARNING: + if (!$this->convertWarningsToExceptions) { + return \false; + } + throw new Warning($errorString, $errorNumber, $errorFile, $errorLine); + case E_DEPRECATED: + case E_USER_DEPRECATED: + if (!$this->convertDeprecationsToExceptions) { + return \false; + } + throw new Deprecated($errorString, $errorNumber, $errorFile, $errorLine); + default: + if (!$this->convertErrorsToExceptions) { + return \false; + } + throw new Error($errorString, $errorNumber, $errorFile, $errorLine); + } + } + public function register(): void + { + if ($this->registered) { + return; + } + $oldErrorHandler = set_error_handler($this); + if ($oldErrorHandler !== null) { + restore_error_handler(); + return; + } + $this->registered = \true; + } + public function unregister(): void + { + if (!$this->registered) { + return; + } + restore_error_handler(); + } } stream = $out; + return; + } + if (!is_string($out)) { + return; + } + if (strpos($out, 'socket://') === 0) { + $tmp = explode(':', str_replace('socket://', '', $out)); + if (count($tmp) !== 2) { + throw new \PHPUnit\Util\Exception(sprintf('"%s" does not match "socket://hostname:port" format', $out)); + } + $this->stream = fsockopen($tmp[0], (int) $tmp[1]); + return; + } + if (strpos($out, 'php://') === \false && !\PHPUnit\Util\Filesystem::createDirectory(dirname($out))) { + throw new \PHPUnit\Util\Exception(sprintf('Directory "%s" was not created', dirname($out))); + } + $this->stream = fopen($out, 'wb'); + $this->isPhpStream = strncmp($out, 'php://', 6) !== 0; + } + public function write(string $buffer): void + { + if ($this->stream) { + assert(is_resource($this->stream)); + fwrite($this->stream, $buffer); + } else { + if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') { + $buffer = htmlspecialchars($buffer, ENT_COMPAT | ENT_SUBSTITUTE); + } + print $buffer; + } + } + public function flush(): void + { + if ($this->stream && $this->isPhpStream) { + assert(is_resource($this->stream)); + fclose($this->stream); + } + } } */ - protected $backupGlobals = \false; + private const EXCLUDED_CLASS_NAMES = [ + // composer + ClassLoader::class => 1, + // doctrine/instantiator + Instantiator::class => 1, + // myclabs/deepcopy + DeepCopy::class => 1, + // nikic/php-parser + Parser::class => 1, + // phar-io/manifest + Manifest::class => 1, + // phar-io/version + PharIoVersion::class => 1, + // phpdocumentor/type-resolver + \PHPUnit\Util\Type::class => 1, + // phpunit/phpunit + TestCase::class => 2, + // phpunit/php-code-coverage + CodeCoverage::class => 1, + // phpunit/php-file-iterator + FileIteratorFacade::class => 1, + // phpunit/php-invoker + Invoker::class => 1, + // phpunit/php-text-template + Template::class => 1, + // phpunit/php-timer + Timer::class => 1, + // sebastian/cli-parser + CliParser::class => 1, + // sebastian/code-unit + CodeUnit::class => 1, + // sebastian/code-unit-reverse-lookup + Wizard::class => 1, + // sebastian/comparator + Comparator::class => 1, + // sebastian/complexity + Calculator::class => 1, + // sebastian/diff + Diff::class => 1, + // sebastian/environment + Runtime::class => 1, + // sebastian/exporter + Exporter::class => 1, + // sebastian/global-state + Snapshot::class => 1, + // sebastian/lines-of-code + Counter::class => 1, + // sebastian/object-enumerator + Enumerator::class => 1, + // sebastian/object-reflector + ObjectReflector::class => 1, + // sebastian/recursion-context + Context::class => 1, + // sebastian/resource-operations + ResourceOperations::class => 1, + // sebastian/type + TypeName::class => 1, + // sebastian/version + Version::class => 1, + // theseer/tokenizer + Tokenizer::class => 1, + ]; /** - * @var bool + * @var string[] */ - protected $backupStaticAttributes = \false; + private static $directories = []; /** * @var bool */ - protected $runTestInSeparateProcess = \false; - /** - * @var string - */ - private $message; - public function __construct(string $className, string $methodName, string $message = '') - { - parent::__construct($className . '::' . $methodName); - $this->message = $message; - } - public function getMessage() : string + private static $initialized = \false; + public static function addDirectory(string $directory): void { - return $this->message; + if (!is_dir($directory)) { + throw new \PHPUnit\Util\Exception(sprintf('"%s" is not a directory', $directory)); + } + self::$directories[] = realpath($directory); } /** - * Returns a string representation of the test case. + * @throws Exception * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @return string[] */ - public function toString() : string + public function getExcludedDirectories(): array { - return $this->getName(); + $this->initialize(); + return self::$directories; } /** * @throws Exception */ - protected function runTest() : void + public function isExcluded(string $file): bool { - $this->markTestSkipped($this->message); + if (defined('PHPUNIT_TESTSUITE')) { + return \false; + } + $this->initialize(); + foreach (self::$directories as $directory) { + if (strpos($file, $directory) === 0) { + return \true; + } + } + return \false; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -use Countable; -/** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -interface Test extends Countable -{ /** - * Runs a test and collects its result in a TestResult instance. + * @throws Exception */ - public function run(\PHPUnit\Framework\TestResult $result = null) : \PHPUnit\Framework\TestResult; + private function initialize(): void + { + if (self::$initialized) { + return; + } + foreach (self::EXCLUDED_CLASS_NAMES as $className => $parent) { + if (!class_exists($className)) { + continue; + } + $directory = (new ReflectionClass($className))->getFileName(); + for ($i = 0; $i < $parent; $i++) { + $directory = dirname($directory); + } + self::$directories[] = $directory; + } + // Hide process isolation workaround on Windows. + if (DIRECTORY_SEPARATOR === '\\') { + // tempnam() prefix is limited to first 3 chars. + // @see https://php.net/manual/en/function.tempnam.php + self::$directories[] = sys_get_temp_dir() . '\PHP'; + } + self::$initialized = \true; + } } getName(); - if (!$theClass->isInstantiable()) { - return new \PHPUnit\Framework\ErrorTestCase(sprintf('Cannot instantiate class "%s".', $className)); - } - $backupSettings = TestUtil::getBackupSettings($className, $methodName); - $preserveGlobalState = TestUtil::getPreserveGlobalStateSettings($className, $methodName); - $runTestInSeparateProcess = TestUtil::getProcessIsolationSettings($className, $methodName); - $runClassInSeparateProcess = TestUtil::getClassProcessIsolationSettings($className, $methodName); - $constructor = $theClass->getConstructor(); - if ($constructor === null) { - throw new \PHPUnit\Framework\Exception('No valid test provided.'); - } - $parameters = $constructor->getParameters(); - // TestCase() or TestCase($name) - if (count($parameters) < 2) { - $test = $this->buildTestWithoutData($className); - } else { - try { - $data = TestUtil::getProvidedData($className, $methodName); - } catch (\PHPUnit\Framework\IncompleteTestError $e) { - $message = sprintf("Test for %s::%s marked incomplete by data provider\n%s", $className, $methodName, $this->throwableToString($e)); - $data = new \PHPUnit\Framework\IncompleteTestCase($className, $methodName, $message); - } catch (\PHPUnit\Framework\SkippedTestError $e) { - $message = sprintf("Test for %s::%s skipped by data provider\n%s", $className, $methodName, $this->throwableToString($e)); - $data = new \PHPUnit\Framework\SkippedTestCase($className, $methodName, $message); - } catch (Throwable $t) { - $message = sprintf("The data provider specified for %s::%s is invalid.\n%s", $className, $methodName, $this->throwableToString($t)); - $data = new \PHPUnit\Framework\ErrorTestCase($message); - } - // Test method with @dataProvider. - if (isset($data)) { - $test = $this->buildDataProviderTestSuite($methodName, $className, $data, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); - } else { - $test = $this->buildTestWithoutData($className); - } - } - if ($test instanceof \PHPUnit\Framework\TestCase) { - $test->setName($methodName); - $this->configureTestCase($test, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); - } - return $test; - } - /** @psalm-param class-string $className */ - private function buildTestWithoutData(string $className) - { - return new $className(); - } - /** @psalm-param class-string $className */ - private function buildDataProviderTestSuite(string $methodName, string $className, $data, bool $runTestInSeparateProcess, ?bool $preserveGlobalState, bool $runClassInSeparateProcess, array $backupSettings) : \PHPUnit\Framework\DataProviderTestSuite + public function generate(FilterConfiguration $filter): string { - $dataProviderTestSuite = new \PHPUnit\Framework\DataProviderTestSuite($className . '::' . $methodName); - $groups = TestUtil::getGroups($className, $methodName); - if ($data instanceof \PHPUnit\Framework\ErrorTestCase || $data instanceof \PHPUnit\Framework\SkippedTestCase || $data instanceof \PHPUnit\Framework\IncompleteTestCase) { - $dataProviderTestSuite->addTest($data, $groups); - } else { - foreach ($data as $_dataName => $_data) { - $_test = new $className($methodName, $_data, $_dataName); - assert($_test instanceof \PHPUnit\Framework\TestCase); - $this->configureTestCase($_test, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); - $dataProviderTestSuite->addTest($_test, $groups); - } - } - return $dataProviderTestSuite; + $files = array_map(static function ($item) { + return sprintf(" '%s'", $item); + }, $this->getItems($filter)); + $files = implode(",\n", $files); + return <<setRunTestInSeparateProcess(\true); - if ($preserveGlobalState !== null) { - $test->setPreserveGlobalState($preserveGlobalState); - } - } - if ($runClassInSeparateProcess) { - $test->setRunClassInSeparateProcess(\true); - if ($preserveGlobalState !== null) { - $test->setPreserveGlobalState($preserveGlobalState); + $files = []; + foreach ($filter->directories() as $directory) { + $path = realpath($directory->path()); + if (is_string($path)) { + $files[] = sprintf(addslashes('%s' . DIRECTORY_SEPARATOR), $path); } } - if ($backupSettings['backupGlobals'] !== null) { - $test->setBackupGlobals($backupSettings['backupGlobals']); - } - if ($backupSettings['backupStaticAttributes'] !== null) { - $test->setBackupStaticAttributes($backupSettings['backupStaticAttributes']); - } + foreach ($filter->files() as $file) { + $files[] = $file->path(); + } + return $files; } - private function throwableToString(Throwable $t) : string +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Util; + +use const PHP_EOL; +use function get_class; +use function sprintf; +use function str_replace; +use PHPUnit\Framework\TestCase; +use PHPUnit\Framework\TestSuite; +use PHPUnit\Runner\PhptTestCase; +use RecursiveIteratorIterator; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TextTestListRenderer +{ + /** + * @throws InvalidArgumentException + */ + public function render(TestSuite $suite): string { - $message = $t->getMessage(); - if (empty(trim($message))) { - $message = ''; - } - if ($t instanceof InvalidDataSetException) { - return sprintf("%s\n%s", $message, Filter::getFilteredStacktrace($t)); + $buffer = 'Available test(s):' . PHP_EOL; + foreach (new RecursiveIteratorIterator($suite->getIterator()) as $test) { + if ($test instanceof TestCase) { + $name = sprintf('%s::%s', get_class($test), str_replace(' with data set ', '', $test->getName())); + } elseif ($test instanceof PhptTestCase) { + $name = $test->getName(); + } else { + continue; + } + $buffer .= sprintf(' - %s' . PHP_EOL, $name); } - return sprintf("%s: %s\n%s", get_class($t), $message, Filter::getFilteredStacktrace($t)); + return $buffer; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + use const PHP_EOL; -use const PHP_URL_PATH; -use function array_filter; -use function array_flip; -use function array_keys; -use function array_merge; -use function array_pop; -use function array_search; -use function array_unique; -use function array_values; -use function basename; -use function call_user_func; -use function chdir; use function class_exists; -use function clearstatcache; use function count; -use function debug_backtrace; -use function defined; -use function explode; +use function extension_loaded; +use function function_exists; use function get_class; -use function get_include_path; -use function getcwd; -use function implode; -use function in_array; -use function ini_set; -use function is_array; -use function is_callable; -use function is_int; -use function is_object; -use function is_string; -use function libxml_clear_errors; -use function method_exists; -use function ob_end_clean; -use function ob_get_contents; -use function ob_get_level; -use function ob_start; -use function parse_url; -use function pathinfo; -use function preg_replace; -use function serialize; -use function setlocale; use function sprintf; -use function strpos; -use function substr; -use function trim; -use function var_export; -use PHPUnit\DeepCopy\DeepCopy; -use PHPUnit\Framework\Constraint\Exception as ExceptionConstraint; -use PHPUnit\Framework\Constraint\ExceptionCode; -use PHPUnit\Framework\Constraint\ExceptionMessage; -use PHPUnit\Framework\Constraint\ExceptionMessageRegularExpression; -use PHPUnit\Framework\Constraint\LogicalOr; -use PHPUnit\Framework\Error\Deprecated; -use PHPUnit\Framework\Error\Error; -use PHPUnit\Framework\Error\Notice; -use PHPUnit\Framework\Error\Warning as WarningError; -use PHPUnit\Framework\MockObject\Generator as MockGenerator; -use PHPUnit\Framework\MockObject\MockBuilder; -use PHPUnit\Framework\MockObject\MockObject; -use PHPUnit\Framework\MockObject\Rule\AnyInvokedCount as AnyInvokedCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtIndex as InvokedAtIndexMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastCount as InvokedAtLeastCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastOnce as InvokedAtLeastOnceMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedAtMostCount as InvokedAtMostCountMatcher; -use PHPUnit\Framework\MockObject\Rule\InvokedCount as InvokedCountMatcher; -use PHPUnit\Framework\MockObject\Stub; -use PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls as ConsecutiveCallsStub; -use PHPUnit\Framework\MockObject\Stub\Exception as ExceptionStub; -use PHPUnit\Framework\MockObject\Stub\ReturnArgument as ReturnArgumentStub; -use PHPUnit\Framework\MockObject\Stub\ReturnCallback as ReturnCallbackStub; -use PHPUnit\Framework\MockObject\Stub\ReturnSelf as ReturnSelfStub; -use PHPUnit\Framework\MockObject\Stub\ReturnStub; -use PHPUnit\Framework\MockObject\Stub\ReturnValueMap as ReturnValueMapStub; -use PHPUnit\Runner\BaseTestRunner; -use PHPUnit\Runner\PhptTestCase; -use PHPUnit\Util\Cloner; -use PHPUnit\Util\Exception as UtilException; -use PHPUnit\Util\GlobalState; -use PHPUnit\Util\PHP\AbstractPhpProcess; +use function xdebug_get_monitored_functions; +use function xdebug_is_debugger_active; +use function xdebug_start_function_monitor; +use function xdebug_stop_function_monitor; +use AssertionError; +use Countable; +use Error; +use PHPUnit\Util\ErrorHandler; +use PHPUnit\Util\ExcludeList; +use PHPUnit\Util\Printer; use PHPUnit\Util\Test as TestUtil; -use Prophecy\Exception\Prediction\PredictionException; -use Prophecy\Prophecy\MethodProphecy; -use Prophecy\Prophecy\ObjectProphecy; -use Prophecy\Prophet; use ReflectionClass; use ReflectionException; -use PHPUnit\SebastianBergmann\Comparator\Comparator; -use PHPUnit\SebastianBergmann\Comparator\Factory as ComparatorFactory; -use PHPUnit\SebastianBergmann\Diff\Differ; -use PHPUnit\SebastianBergmann\Exporter\Exporter; -use PHPUnit\SebastianBergmann\GlobalState\ExcludeList; -use PHPUnit\SebastianBergmann\GlobalState\Restorer; -use PHPUnit\SebastianBergmann\GlobalState\Snapshot; -use PHPUnit\SebastianBergmann\ObjectEnumerator\Enumerator; -use PHPUnit\SebastianBergmann\Template\Template; -use SoapClient; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\CodeCoverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Exception as OriginalCodeCoverageException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException; +use PHPUnitPHAR\SebastianBergmann\Invoker\Invoker; +use PHPUnitPHAR\SebastianBergmann\Invoker\TimeoutException; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +use PHPUnitPHAR\SebastianBergmann\ResourceOperations\ResourceOperations; +use PHPUnitPHAR\SebastianBergmann\Timer\Timer; use Throwable; /** - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * @internal This class is not covered by the backward compatibility promise for PHPUnit */ -abstract class TestCase extends \PHPUnit\Framework\Assert implements \PHPUnit\Framework\Reorderable, \PHPUnit\Framework\SelfDescribing, \PHPUnit\Framework\Test +final class TestResult implements Countable { - private const LOCALE_CATEGORIES = [LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME]; /** - * @var ?bool + * @var array */ - protected $backupGlobals; + private $passed = []; /** - * @var string[] + * @var array */ - protected $backupGlobalsExcludeList = []; + private $passedTestClasses = []; /** - * @var string[] - * - * @deprecated Use $backupGlobalsExcludeList instead + * @var bool */ - protected $backupGlobalsBlacklist = []; + private $currentTestSuiteFailed = \false; /** - * @var bool + * @var TestFailure[] */ - protected $backupStaticAttributes; + private $errors = []; /** - * @var array> + * @var TestFailure[] */ - protected $backupStaticAttributesExcludeList = []; + private $failures = []; /** - * @var array> - * - * @deprecated Use $backupStaticAttributesExcludeList instead + * @var TestFailure[] */ - protected $backupStaticAttributesBlacklist = []; + private $warnings = []; /** - * @var bool + * @var TestFailure[] */ - protected $runTestInSeparateProcess; + private $notImplemented = []; /** - * @var bool + * @var TestFailure[] */ - protected $preserveGlobalState = \true; + private $risky = []; /** - * @var list + * @var TestFailure[] */ - protected $providedTests = []; + private $skipped = []; /** - * @var bool + * @deprecated Use the `TestHook` interfaces instead + * + * @var TestListener[] */ - private $runClassInSeparateProcess; + private $listeners = []; /** - * @var bool + * @var int */ - private $inIsolation = \false; + private $runTests = 0; /** - * @var array + * @var float */ - private $data; + private $time = 0; /** - * @var int|string + * Code Coverage information. + * + * @var CodeCoverage */ - private $dataName; + private $codeCoverage; /** - * @var null|string + * @var bool */ - private $expectedException; + private $convertDeprecationsToExceptions = \false; /** - * @var null|string + * @var bool */ - private $expectedExceptionMessage; + private $convertErrorsToExceptions = \true; /** - * @var null|string + * @var bool */ - private $expectedExceptionMessageRegExp; + private $convertNoticesToExceptions = \true; /** - * @var null|int|string + * @var bool */ - private $expectedExceptionCode; + private $convertWarningsToExceptions = \true; /** - * @var string + * @var bool */ - private $name = ''; + private $stop = \false; /** - * @var list + * @var bool */ - private $dependencies = []; + private $stopOnError = \false; /** - * @var array + * @var bool */ - private $dependencyInput = []; + private $stopOnFailure = \false; /** - * @var array + * @var bool */ - private $iniSettings = []; + private $stopOnWarning = \false; /** - * @var array + * @var bool */ - private $locale = []; + private $beStrictAboutTestsThatDoNotTestAnything = \true; /** - * @var MockObject[] + * @var bool */ - private $mockObjects = []; + private $beStrictAboutOutputDuringTests = \false; /** - * @var MockGenerator + * @var bool */ - private $mockObjectGenerator; + private $beStrictAboutTodoAnnotatedTests = \false; /** - * @var int + * @var bool */ - private $status = BaseTestRunner::STATUS_UNKNOWN; + private $beStrictAboutResourceUsageDuringSmallTests = \false; /** - * @var string + * @var bool */ - private $statusMessage = ''; + private $enforceTimeLimit = \false; /** - * @var int + * @var bool */ - private $numAssertions = 0; + private $forceCoversAnnotation = \false; /** - * @var TestResult + * @var int */ - private $result; + private $timeoutForSmallTests = 1; /** - * @var mixed + * @var int */ - private $testResult; + private $timeoutForMediumTests = 10; /** - * @var string + * @var int */ - private $output = ''; + private $timeoutForLargeTests = 60; /** - * @var ?string + * @var bool */ - private $outputExpectedRegex; + private $stopOnRisky = \false; /** - * @var ?string + * @var bool */ - private $outputExpectedString; + private $stopOnIncomplete = \false; /** - * @var mixed + * @var bool */ - private $outputCallback = \false; + private $stopOnSkipped = \false; /** * @var bool */ - private $outputBufferingActive = \false; + private $lastTestFailed = \false; /** * @var int */ - private $outputBufferingLevel; + private $defaultTimeLimit = 0; /** * @var bool */ - private $outputRetrievedForAssertion = \false; - /** - * @var ?Snapshot - */ - private $snapshot; + private $stopOnDefect = \false; /** - * @var \Prophecy\Prophet + * @var bool */ - private $prophet; + private $registerMockObjectsFromTestArgumentsRecursively = \false; /** - * @var bool + * @deprecated Use the `TestHook` interfaces instead + * + * @codeCoverageIgnore + * + * Registers a TestListener. */ - private $beStrictAboutChangesToGlobalState = \false; + public function addListener(\PHPUnit\Framework\TestListener $listener): void + { + $this->listeners[] = $listener; + } /** - * @var bool + * @deprecated Use the `TestHook` interfaces instead + * + * @codeCoverageIgnore + * + * Unregisters a TestListener. */ - private $registerMockObjectsFromTestArgumentsRecursively = \false; + public function removeListener(\PHPUnit\Framework\TestListener $listener): void + { + foreach ($this->listeners as $key => $_listener) { + if ($listener === $_listener) { + unset($this->listeners[$key]); + } + } + } /** - * @var string[] + * @deprecated Use the `TestHook` interfaces instead + * + * @codeCoverageIgnore + * + * Flushes all flushable TestListeners. */ - private $warnings = []; + public function flushListeners(): void + { + foreach ($this->listeners as $listener) { + if ($listener instanceof Printer) { + $listener->flush(); + } + } + } /** - * @var string[] + * Adds an error to the list of errors. */ - private $groups = []; + public function addError(\PHPUnit\Framework\Test $test, Throwable $t, float $time): void + { + if ($t instanceof \PHPUnit\Framework\RiskyTestError) { + $this->recordRisky($test, $t); + $notifyMethod = 'addRiskyTest'; + if ($test instanceof \PHPUnit\Framework\TestCase) { + $test->markAsRisky(); + } + if ($this->stopOnRisky || $this->stopOnDefect) { + $this->stop(); + } + } elseif ($t instanceof \PHPUnit\Framework\IncompleteTest) { + $this->recordNotImplemented($test, $t); + $notifyMethod = 'addIncompleteTest'; + if ($this->stopOnIncomplete) { + $this->stop(); + } + } elseif ($t instanceof \PHPUnit\Framework\SkippedTest) { + $this->recordSkipped($test, $t); + $notifyMethod = 'addSkippedTest'; + if ($this->stopOnSkipped) { + $this->stop(); + } + } else { + $this->recordError($test, $t); + $notifyMethod = 'addError'; + if ($this->stopOnError || $this->stopOnFailure) { + $this->stop(); + } + } + // @see https://github.com/sebastianbergmann/phpunit/issues/1953 + if ($t instanceof Error) { + $t = new \PHPUnit\Framework\ExceptionWrapper($t); + } + foreach ($this->listeners as $listener) { + $listener->{$notifyMethod}($test, $t, $time); + } + $this->lastTestFailed = \true; + $this->time += $time; + } /** - * @var bool + * Adds a warning to the list of warnings. + * The passed in exception caused the warning. */ - private $doesNotPerformAssertions = \false; + public function addWarning(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\Warning $e, float $time): void + { + if ($this->stopOnWarning || $this->stopOnDefect) { + $this->stop(); + } + $this->recordWarning($test, $e); + foreach ($this->listeners as $listener) { + $listener->addWarning($test, $e, $time); + } + $this->time += $time; + } /** - * @var Comparator[] + * Adds a failure to the list of failures. + * The passed in exception caused the failure. */ - private $customComparators = []; + public function addFailure(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\AssertionFailedError $e, float $time): void + { + if ($e instanceof \PHPUnit\Framework\RiskyTestError || $e instanceof \PHPUnit\Framework\OutputError) { + $this->recordRisky($test, $e); + $notifyMethod = 'addRiskyTest'; + if ($test instanceof \PHPUnit\Framework\TestCase) { + $test->markAsRisky(); + } + if ($this->stopOnRisky || $this->stopOnDefect) { + $this->stop(); + } + } elseif ($e instanceof \PHPUnit\Framework\IncompleteTest) { + $this->recordNotImplemented($test, $e); + $notifyMethod = 'addIncompleteTest'; + if ($this->stopOnIncomplete) { + $this->stop(); + } + } elseif ($e instanceof \PHPUnit\Framework\SkippedTest) { + $this->recordSkipped($test, $e); + $notifyMethod = 'addSkippedTest'; + if ($this->stopOnSkipped) { + $this->stop(); + } + } else { + $this->failures[] = new \PHPUnit\Framework\TestFailure($test, $e); + $notifyMethod = 'addFailure'; + if ($this->stopOnFailure || $this->stopOnDefect) { + $this->stop(); + } + } + foreach ($this->listeners as $listener) { + $listener->{$notifyMethod}($test, $e, $time); + } + $this->lastTestFailed = \true; + $this->time += $time; + } /** - * @var string[] + * Informs the result that a test suite will be started. */ - private $doubledTypes = []; + public function startTestSuite(\PHPUnit\Framework\TestSuite $suite): void + { + $this->currentTestSuiteFailed = \false; + foreach ($this->listeners as $listener) { + $listener->startTestSuite($suite); + } + } /** - * Returns a matcher that matches when the method is executed - * zero or more times. + * Informs the result that a test suite was completed. */ - public static function any() : AnyInvokedCountMatcher + public function endTestSuite(\PHPUnit\Framework\TestSuite $suite): void { - return new AnyInvokedCountMatcher(); + if (!$this->currentTestSuiteFailed) { + $this->passedTestClasses[] = $suite->getName(); + } + foreach ($this->listeners as $listener) { + $listener->endTestSuite($suite); + } } /** - * Returns a matcher that matches when the method is never executed. + * Informs the result that a test will be started. */ - public static function never() : InvokedCountMatcher + public function startTest(\PHPUnit\Framework\Test $test): void { - return new InvokedCountMatcher(0); + $this->lastTestFailed = \false; + $this->runTests += count($test); + foreach ($this->listeners as $listener) { + $listener->startTest($test); + } } /** - * Returns a matcher that matches when the method is executed - * at least N times. + * Informs the result that a test was completed. + * + * @throws InvalidArgumentException */ - public static function atLeast(int $requiredInvocations) : InvokedAtLeastCountMatcher + public function endTest(\PHPUnit\Framework\Test $test, float $time): void { - return new InvokedAtLeastCountMatcher($requiredInvocations); + foreach ($this->listeners as $listener) { + $listener->endTest($test, $time); + } + if (!$this->lastTestFailed && $test instanceof \PHPUnit\Framework\TestCase) { + $class = get_class($test); + $key = $class . '::' . $test->getName(); + $this->passed[$key] = ['result' => $test->getResult(), 'size' => TestUtil::getSize($class, $test->getName(\false))]; + $this->time += $time; + } + if ($this->lastTestFailed && $test instanceof \PHPUnit\Framework\TestCase) { + $this->currentTestSuiteFailed = \true; + } } /** - * Returns a matcher that matches when the method is executed at least once. + * Returns true if no risky test occurred. */ - public static function atLeastOnce() : InvokedAtLeastOnceMatcher + public function allHarmless(): bool { - return new InvokedAtLeastOnceMatcher(); + return $this->riskyCount() === 0; } /** - * Returns a matcher that matches when the method is executed exactly once. + * Gets the number of risky tests. */ - public static function once() : InvokedCountMatcher + public function riskyCount(): int { - return new InvokedCountMatcher(1); + return count($this->risky); } /** - * Returns a matcher that matches when the method is executed - * exactly $count times. + * Returns true if no incomplete test occurred. */ - public static function exactly(int $count) : InvokedCountMatcher + public function allCompletelyImplemented(): bool { - return new InvokedCountMatcher($count); + return $this->notImplementedCount() === 0; } /** - * Returns a matcher that matches when the method is executed - * at most N times. + * Gets the number of incomplete tests. */ - public static function atMost(int $allowedInvocations) : InvokedAtMostCountMatcher + public function notImplementedCount(): int { - return new InvokedAtMostCountMatcher($allowedInvocations); + return count($this->notImplemented); } /** - * Returns a matcher that matches when the method is executed - * at the given index. - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4297 + * Returns an array of TestFailure objects for the risky tests. * - * @codeCoverageIgnore + * @return TestFailure[] */ - public static function at(int $index) : InvokedAtIndexMatcher - { - $stack = debug_backtrace(); - while (!empty($stack)) { - $frame = array_pop($stack); - if (isset($frame['object']) && $frame['object'] instanceof self) { - $frame['object']->addWarning('The at() matcher has been deprecated. It will be removed in PHPUnit 10. Please refactor your test to not rely on the order in which methods are invoked.'); - break; - } - } - return new InvokedAtIndexMatcher($index); - } - public static function returnValue($value) : ReturnStub + public function risky(): array { - return new ReturnStub($value); + return $this->risky; } - public static function returnValueMap(array $valueMap) : ReturnValueMapStub + /** + * Returns an array of TestFailure objects for the incomplete tests. + * + * @return TestFailure[] + */ + public function notImplemented(): array { - return new ReturnValueMapStub($valueMap); + return $this->notImplemented; } - public static function returnArgument(int $argumentIndex) : ReturnArgumentStub + /** + * Returns true if no test has been skipped. + */ + public function noneSkipped(): bool { - return new ReturnArgumentStub($argumentIndex); + return $this->skippedCount() === 0; } - public static function returnCallback($callback) : ReturnCallbackStub + /** + * Gets the number of skipped tests. + */ + public function skippedCount(): int { - return new ReturnCallbackStub($callback); + return count($this->skipped); } /** - * Returns the current object. + * Returns an array of TestFailure objects for the skipped tests. * - * This method is useful when mocking a fluent interface. + * @return TestFailure[] */ - public static function returnSelf() : ReturnSelfStub - { - return new ReturnSelfStub(); - } - public static function throwException(Throwable $exception) : ExceptionStub + public function skipped(): array { - return new ExceptionStub($exception); + return $this->skipped; } - public static function onConsecutiveCalls(...$args) : ConsecutiveCallsStub + /** + * Gets the number of detected errors. + */ + public function errorCount(): int { - return new ConsecutiveCallsStub($args); + return count($this->errors); } /** - * @param int|string $dataName + * Returns an array of TestFailure objects for the errors. * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @return TestFailure[] */ - public function __construct(?string $name = null, array $data = [], $dataName = '') + public function errors(): array { - if ($name !== null) { - $this->setName($name); - } - $this->data = $data; - $this->dataName = $dataName; + return $this->errors; } /** - * This method is called before the first test of this test class is run. + * Gets the number of detected failures. */ - public static function setUpBeforeClass() : void + public function failureCount(): int { + return count($this->failures); } /** - * This method is called after the last test of this test class is run. + * Returns an array of TestFailure objects for the failures. + * + * @return TestFailure[] */ - public static function tearDownAfterClass() : void + public function failures(): array { + return $this->failures; } /** - * This method is called before each test. + * Gets the number of detected warnings. */ - protected function setUp() : void + public function warningCount(): int { + return count($this->warnings); } /** - * Performs assertions shared by all tests of a test case. + * Returns an array of TestFailure objects for the warnings. * - * This method is called between setUp() and test. + * @return TestFailure[] + */ + public function warnings(): array + { + return $this->warnings; + } + /** + * Returns the names of the tests that have passed. */ - protected function assertPreConditions() : void + public function passed(): array { + return $this->passed; } /** - * Performs assertions shared by all tests of a test case. + * Returns the names of the TestSuites that have passed. * - * This method is called between test and tearDown(). + * This enables @depends-annotations for TestClassName::class */ - protected function assertPostConditions() : void + public function passedClasses(): array { + return $this->passedTestClasses; } /** - * This method is called after each test. + * Returns whether code coverage information should be collected. */ - protected function tearDown() : void + public function getCollectCodeCoverageInformation(): bool { + return $this->codeCoverage !== null; } /** - * Returns a string representation of the test case. + * Runs a TestCase. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception + * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException + * @throws CodeCoverageException + * @throws InvalidArgumentException + * @throws UnintentionallyCoveredCodeException */ - public function toString() : string + public function run(\PHPUnit\Framework\Test $test): void { + \PHPUnit\Framework\Assert::resetCount(); + $size = TestUtil::UNKNOWN; + if ($test instanceof \PHPUnit\Framework\TestCase) { + $test->setRegisterMockObjectsFromTestArgumentsRecursively($this->registerMockObjectsFromTestArgumentsRecursively); + $isAnyCoverageRequired = TestUtil::requiresCodeCoverageDataCollection($test); + $size = $test->getSize(); + } + $error = \false; + $failure = \false; + $warning = \false; + $incomplete = \false; + $risky = \false; + $skipped = \false; + $this->startTest($test); + if ($this->convertDeprecationsToExceptions || $this->convertErrorsToExceptions || $this->convertNoticesToExceptions || $this->convertWarningsToExceptions) { + $errorHandler = new ErrorHandler($this->convertDeprecationsToExceptions, $this->convertErrorsToExceptions, $this->convertNoticesToExceptions, $this->convertWarningsToExceptions); + $errorHandler->register(); + } + $collectCodeCoverage = $this->codeCoverage !== null && !$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $isAnyCoverageRequired; + if ($collectCodeCoverage) { + $this->codeCoverage->start($test); + } + $monitorFunctions = $this->beStrictAboutResourceUsageDuringSmallTests && !$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $size === TestUtil::SMALL && function_exists('xdebug_start_function_monitor'); + if ($monitorFunctions) { + /* @noinspection ForgottenDebugOutputInspection */ + xdebug_start_function_monitor(ResourceOperations::getFunctions()); + } + $timer = new Timer(); + $timer->start(); try { - $class = new ReflectionClass($this); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); + $invoker = new Invoker(); + if (!$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $this->shouldTimeLimitBeEnforced($size) && $invoker->canInvokeWithTimeout()) { + switch ($size) { + case TestUtil::SMALL: + $_timeout = $this->timeoutForSmallTests; + break; + case TestUtil::MEDIUM: + $_timeout = $this->timeoutForMediumTests; + break; + case TestUtil::LARGE: + $_timeout = $this->timeoutForLargeTests; + break; + default: + $_timeout = $this->defaultTimeLimit; + } + $invoker->invoke([$test, 'runBare'], [], $_timeout); + } else { + $test->runBare(); + } + } catch (TimeoutException $e) { + $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError($e->getMessage()), $_timeout); + $risky = \true; + } catch (\PHPUnit\Framework\AssertionFailedError $e) { + $failure = \true; + if ($e instanceof \PHPUnit\Framework\RiskyTestError) { + $risky = \true; + } elseif ($e instanceof \PHPUnit\Framework\IncompleteTestError) { + $incomplete = \true; + } elseif ($e instanceof \PHPUnit\Framework\SkippedTestError) { + $skipped = \true; + } + } catch (AssertionError $e) { + $test->addToAssertionCount(1); + $failure = \true; + $frame = $e->getTrace()[0]; + $e = new \PHPUnit\Framework\AssertionFailedError(sprintf('%s in %s:%s', $e->getMessage(), $frame['file'] ?? $e->getFile(), $frame['line'] ?? $e->getLine()), 0, $e); + } catch (\PHPUnit\Framework\Warning $e) { + $warning = \true; + } catch (\PHPUnit\Framework\Exception $e) { + $error = \true; + } catch (Throwable $e) { + $e = new \PHPUnit\Framework\ExceptionWrapper($e); + $error = \true; } - // @codeCoverageIgnoreEnd - $buffer = sprintf('%s::%s', $class->name, $this->getName(\false)); - return $buffer . $this->getDataSetAsString(); - } - public function count() : int - { - return 1; + $time = $timer->stop()->asSeconds(); + $test->addToAssertionCount(\PHPUnit\Framework\Assert::getCount()); + if ($monitorFunctions) { + $excludeList = new ExcludeList(); + /** @noinspection ForgottenDebugOutputInspection */ + $functions = xdebug_get_monitored_functions(); + /* @noinspection ForgottenDebugOutputInspection */ + xdebug_stop_function_monitor(); + foreach ($functions as $function) { + if (!$excludeList->isExcluded($function['filename'])) { + $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf('%s() used in %s:%s', $function['function'], $function['filename'], $function['lineno'])), $time); + } + } + } + if ($this->beStrictAboutTestsThatDoNotTestAnything && !$test->doesNotPerformAssertions() && $test->getNumAssertions() === 0) { + $risky = \true; + } + if ($this->forceCoversAnnotation && !$error && !$failure && !$warning && !$incomplete && !$skipped && !$risky) { + $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); + if (!isset($annotations['class']['covers']) && !isset($annotations['method']['covers']) && !isset($annotations['class']['coversNothing']) && !isset($annotations['method']['coversNothing'])) { + $this->addFailure($test, new \PHPUnit\Framework\MissingCoversAnnotationException('This test does not have a @covers annotation but is expected to have one'), $time); + $risky = \true; + } + } + if ($collectCodeCoverage) { + $append = !$risky && !$incomplete && !$skipped; + $linesToBeCovered = []; + $linesToBeUsed = []; + if ($append && $test instanceof \PHPUnit\Framework\TestCase) { + try { + $linesToBeCovered = TestUtil::getLinesToBeCovered(get_class($test), $test->getName(\false)); + $linesToBeUsed = TestUtil::getLinesToBeUsed(get_class($test), $test->getName(\false)); + } catch (\PHPUnit\Framework\InvalidCoversTargetException $cce) { + $this->addWarning($test, new \PHPUnit\Framework\Warning($cce->getMessage()), $time); + } + } + try { + $this->codeCoverage->stop($append, $linesToBeCovered, $linesToBeUsed); + } catch (UnintentionallyCoveredCodeException $cce) { + $unintentionallyCoveredCodeError = new \PHPUnit\Framework\UnintentionallyCoveredCodeError('This test executed code that is not listed as code to be covered or used:' . PHP_EOL . $cce->getMessage()); + } catch (OriginalCodeCoverageException $cce) { + $error = \true; + $e = $e ?? $cce; + } + } + if (isset($errorHandler)) { + $errorHandler->unregister(); + unset($errorHandler); + } + if ($error) { + $this->addError($test, $e, $time); + } elseif ($failure) { + $this->addFailure($test, $e, $time); + } elseif ($warning) { + $this->addWarning($test, $e, $time); + } elseif (isset($unintentionallyCoveredCodeError)) { + $this->addFailure($test, $unintentionallyCoveredCodeError, $time); + } elseif ($this->beStrictAboutTestsThatDoNotTestAnything && !$test->doesNotPerformAssertions() && $test->getNumAssertions() === 0) { + try { + $reflected = new ReflectionClass($test); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + $name = $test->getName(\false); + if ($name && $reflected->hasMethod($name)) { + try { + $reflected = $reflected->getMethod($name); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } + $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf("This test did not perform any assertions\n\n%s:%d", $reflected->getFileName(), $reflected->getStartLine())), $time); + } elseif ($this->beStrictAboutTestsThatDoNotTestAnything && $test->doesNotPerformAssertions() && $test->getNumAssertions() > 0) { + $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf('This test is annotated with "@doesNotPerformAssertions" but performed %d assertions', $test->getNumAssertions())), $time); + } elseif ($this->beStrictAboutOutputDuringTests && $test->hasOutput()) { + $this->addFailure($test, new \PHPUnit\Framework\OutputError(sprintf('This test printed output: %s', $test->getActualOutput())), $time); + } elseif ($this->beStrictAboutTodoAnnotatedTests && $test instanceof \PHPUnit\Framework\TestCase) { + $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); + if (isset($annotations['method']['todo'])) { + $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError('Test method is annotated with @todo'), $time); + } + } + $this->endTest($test, $time); } - public function getActualOutputForAssertion() : string + /** + * Gets the number of run tests. + */ + public function count(): int { - $this->outputRetrievedForAssertion = \true; - return $this->getActualOutput(); + return $this->runTests; } - public function expectOutputRegex(string $expectedRegex) : void + /** + * Checks whether the test run should stop. + */ + public function shouldStop(): bool { - $this->outputExpectedRegex = $expectedRegex; + return $this->stop; } - public function expectOutputString(string $expectedString) : void + /** + * Marks that the test run should stop. + */ + public function stop(): void { - $this->outputExpectedString = $expectedString; + $this->stop = \true; } /** - * @psalm-param class-string<\Throwable> $exception + * Returns the code coverage object. */ - public function expectException(string $exception) : void + public function getCodeCoverage(): ?CodeCoverage { - // @codeCoverageIgnoreStart - switch ($exception) { - case Deprecated::class: - $this->addWarning('Support for using expectException() with PHPUnit\\Framework\\Error\\Deprecated is deprecated and will be removed in PHPUnit 10. Use expectDeprecation() instead.'); - break; - case Error::class: - $this->addWarning('Support for using expectException() with PHPUnit\\Framework\\Error\\Error is deprecated and will be removed in PHPUnit 10. Use expectError() instead.'); - break; - case Notice::class: - $this->addWarning('Support for using expectException() with PHPUnit\\Framework\\Error\\Notice is deprecated and will be removed in PHPUnit 10. Use expectNotice() instead.'); - break; - case WarningError::class: - $this->addWarning('Support for using expectException() with PHPUnit\\Framework\\Error\\Warning is deprecated and will be removed in PHPUnit 10. Use expectWarning() instead.'); - break; - } - // @codeCoverageIgnoreEnd - $this->expectedException = $exception; + return $this->codeCoverage; } /** - * @param int|string $code + * Sets the code coverage object. */ - public function expectExceptionCode($code) : void + public function setCodeCoverage(CodeCoverage $codeCoverage): void { - $this->expectedExceptionCode = $code; + $this->codeCoverage = $codeCoverage; } - public function expectExceptionMessage(string $message) : void + /** + * Enables or disables the deprecation-to-exception conversion. + */ + public function convertDeprecationsToExceptions(bool $flag): void { - $this->expectedExceptionMessage = $message; + $this->convertDeprecationsToExceptions = $flag; } - public function expectExceptionMessageMatches(string $regularExpression) : void + /** + * Returns the deprecation-to-exception conversion setting. + */ + public function getConvertDeprecationsToExceptions(): bool { - $this->expectedExceptionMessageRegExp = $regularExpression; + return $this->convertDeprecationsToExceptions; } /** - * Sets up an expectation for an exception to be raised by the code under test. - * Information for expected exception class, expected exception message, and - * expected exception code are retrieved from a given Exception object. + * Enables or disables the error-to-exception conversion. */ - public function expectExceptionObject(\Exception $exception) : void + public function convertErrorsToExceptions(bool $flag): void { - $this->expectException(get_class($exception)); - $this->expectExceptionMessage($exception->getMessage()); - $this->expectExceptionCode($exception->getCode()); + $this->convertErrorsToExceptions = $flag; } - public function expectNotToPerformAssertions() : void + /** + * Returns the error-to-exception conversion setting. + */ + public function getConvertErrorsToExceptions(): bool { - $this->doesNotPerformAssertions = \true; + return $this->convertErrorsToExceptions; } - public function expectDeprecation() : void + /** + * Enables or disables the notice-to-exception conversion. + */ + public function convertNoticesToExceptions(bool $flag): void { - $this->expectedException = Deprecated::class; + $this->convertNoticesToExceptions = $flag; } - public function expectDeprecationMessage(string $message) : void + /** + * Returns the notice-to-exception conversion setting. + */ + public function getConvertNoticesToExceptions(): bool { - $this->expectExceptionMessage($message); + return $this->convertNoticesToExceptions; } - public function expectDeprecationMessageMatches(string $regularExpression) : void + /** + * Enables or disables the warning-to-exception conversion. + */ + public function convertWarningsToExceptions(bool $flag): void { - $this->expectExceptionMessageMatches($regularExpression); + $this->convertWarningsToExceptions = $flag; } - public function expectNotice() : void + /** + * Returns the warning-to-exception conversion setting. + */ + public function getConvertWarningsToExceptions(): bool { - $this->expectedException = Notice::class; + return $this->convertWarningsToExceptions; } - public function expectNoticeMessage(string $message) : void + /** + * Enables or disables the stopping when an error occurs. + */ + public function stopOnError(bool $flag): void { - $this->expectExceptionMessage($message); + $this->stopOnError = $flag; } - public function expectNoticeMessageMatches(string $regularExpression) : void + /** + * Enables or disables the stopping when a failure occurs. + */ + public function stopOnFailure(bool $flag): void { - $this->expectExceptionMessageMatches($regularExpression); + $this->stopOnFailure = $flag; } - public function expectWarning() : void + /** + * Enables or disables the stopping when a warning occurs. + */ + public function stopOnWarning(bool $flag): void { - $this->expectedException = WarningError::class; + $this->stopOnWarning = $flag; } - public function expectWarningMessage(string $message) : void + public function beStrictAboutTestsThatDoNotTestAnything(bool $flag): void { - $this->expectExceptionMessage($message); + $this->beStrictAboutTestsThatDoNotTestAnything = $flag; } - public function expectWarningMessageMatches(string $regularExpression) : void + public function isStrictAboutTestsThatDoNotTestAnything(): bool { - $this->expectExceptionMessageMatches($regularExpression); + return $this->beStrictAboutTestsThatDoNotTestAnything; } - public function expectError() : void + public function beStrictAboutOutputDuringTests(bool $flag): void { - $this->expectedException = Error::class; + $this->beStrictAboutOutputDuringTests = $flag; } - public function expectErrorMessage(string $message) : void + public function isStrictAboutOutputDuringTests(): bool { - $this->expectExceptionMessage($message); + return $this->beStrictAboutOutputDuringTests; } - public function expectErrorMessageMatches(string $regularExpression) : void + public function beStrictAboutResourceUsageDuringSmallTests(bool $flag): void { - $this->expectExceptionMessageMatches($regularExpression); + $this->beStrictAboutResourceUsageDuringSmallTests = $flag; } - public function getStatus() : int + public function isStrictAboutResourceUsageDuringSmallTests(): bool { - return $this->status; + return $this->beStrictAboutResourceUsageDuringSmallTests; } - public function markAsRisky() : void + public function enforceTimeLimit(bool $flag): void { - $this->status = BaseTestRunner::STATUS_RISKY; + $this->enforceTimeLimit = $flag; } - public function getStatusMessage() : string + public function enforcesTimeLimit(): bool { - return $this->statusMessage; + return $this->enforceTimeLimit; } - public function hasFailed() : bool + public function beStrictAboutTodoAnnotatedTests(bool $flag): void { - $status = $this->getStatus(); - return $status === BaseTestRunner::STATUS_FAILURE || $status === BaseTestRunner::STATUS_ERROR; + $this->beStrictAboutTodoAnnotatedTests = $flag; } - /** - * Runs the test case and collects the results in a TestResult object. - * If no TestResult object is passed a new one will be created. - * - * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException - * @throws \SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws CodeCoverageException - * @throws UtilException - */ - public function run(\PHPUnit\Framework\TestResult $result = null) : \PHPUnit\Framework\TestResult + public function isStrictAboutTodoAnnotatedTests(): bool { - if ($result === null) { - $result = $this->createResult(); - } - if (!$this instanceof \PHPUnit\Framework\ErrorTestCase && !$this instanceof \PHPUnit\Framework\WarningTestCase) { - $this->setTestResultObject($result); - } - if (!$this instanceof \PHPUnit\Framework\ErrorTestCase && !$this instanceof \PHPUnit\Framework\WarningTestCase && !$this instanceof \PHPUnit\Framework\SkippedTestCase && !$this->handleDependencies()) { - return $result; - } - if ($this->runInSeparateProcess()) { - $runEntireClass = $this->runClassInSeparateProcess && !$this->runTestInSeparateProcess; - try { - $class = new ReflectionClass($this); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($runEntireClass) { - $template = new Template(__DIR__ . '/../Util/PHP/Template/TestCaseClass.tpl'); - } else { - $template = new Template(__DIR__ . '/../Util/PHP/Template/TestCaseMethod.tpl'); - } - if ($this->preserveGlobalState) { - $constants = GlobalState::getConstantsAsString(); - $globals = GlobalState::getGlobalsAsString(); - $includedFiles = GlobalState::getIncludedFilesAsString(); - $iniSettings = GlobalState::getIniSettingsAsString(); - } else { - $constants = ''; - if (!empty($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { - $globals = '$GLOBALS[\'__PHPUNIT_BOOTSTRAP\'] = ' . var_export($GLOBALS['__PHPUNIT_BOOTSTRAP'], \true) . ";\n"; - } else { - $globals = ''; - } - $includedFiles = ''; - $iniSettings = ''; - } - $coverage = $result->getCollectCodeCoverageInformation() ? 'true' : 'false'; - $isStrictAboutTestsThatDoNotTestAnything = $result->isStrictAboutTestsThatDoNotTestAnything() ? 'true' : 'false'; - $isStrictAboutOutputDuringTests = $result->isStrictAboutOutputDuringTests() ? 'true' : 'false'; - $enforcesTimeLimit = $result->enforcesTimeLimit() ? 'true' : 'false'; - $isStrictAboutTodoAnnotatedTests = $result->isStrictAboutTodoAnnotatedTests() ? 'true' : 'false'; - $isStrictAboutResourceUsageDuringSmallTests = $result->isStrictAboutResourceUsageDuringSmallTests() ? 'true' : 'false'; - if (defined('PHPUnit\\PHPUNIT_COMPOSER_INSTALL')) { - $composerAutoload = var_export(PHPUNIT_COMPOSER_INSTALL, \true); - } else { - $composerAutoload = '\'\''; - } - if (defined('__PHPUNIT_PHAR__')) { - $phar = var_export(\__PHPUNIT_PHAR__, \true); - } else { - $phar = '\'\''; - } - $codeCoverage = $result->getCodeCoverage(); - $codeCoverageFilter = null; - $cachesStaticAnalysis = 'false'; - $codeCoverageCacheDirectory = null; - $driverMethod = 'forLineCoverage'; - if ($codeCoverage) { - $codeCoverageFilter = $codeCoverage->filter(); - if ($codeCoverage->collectsBranchAndPathCoverage()) { - $driverMethod = 'forLineAndPathCoverage'; - } - if ($codeCoverage->cachesStaticAnalysis()) { - $cachesStaticAnalysis = 'true'; - $codeCoverageCacheDirectory = $codeCoverage->cacheDirectory(); - } - } - $data = var_export(serialize($this->data), \true); - $dataName = var_export($this->dataName, \true); - $dependencyInput = var_export(serialize($this->dependencyInput), \true); - $includePath = var_export(get_include_path(), \true); - $codeCoverageFilter = var_export(serialize($codeCoverageFilter), \true); - $codeCoverageCacheDirectory = var_export(serialize($codeCoverageCacheDirectory), \true); - // must do these fixes because TestCaseMethod.tpl has unserialize('{data}') in it, and we can't break BC - // the lines above used to use addcslashes() rather than var_export(), which breaks null byte escape sequences - $data = "'." . $data . ".'"; - $dataName = "'.(" . $dataName . ").'"; - $dependencyInput = "'." . $dependencyInput . ".'"; - $includePath = "'." . $includePath . ".'"; - $codeCoverageFilter = "'." . $codeCoverageFilter . ".'"; - $codeCoverageCacheDirectory = "'." . $codeCoverageCacheDirectory . ".'"; - $configurationFilePath = $GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] ?? ''; - $var = ['composerAutoload' => $composerAutoload, 'phar' => $phar, 'filename' => $class->getFileName(), 'className' => $class->getName(), 'collectCodeCoverageInformation' => $coverage, 'cachesStaticAnalysis' => $cachesStaticAnalysis, 'codeCoverageCacheDirectory' => $codeCoverageCacheDirectory, 'driverMethod' => $driverMethod, 'data' => $data, 'dataName' => $dataName, 'dependencyInput' => $dependencyInput, 'constants' => $constants, 'globals' => $globals, 'include_path' => $includePath, 'included_files' => $includedFiles, 'iniSettings' => $iniSettings, 'isStrictAboutTestsThatDoNotTestAnything' => $isStrictAboutTestsThatDoNotTestAnything, 'isStrictAboutOutputDuringTests' => $isStrictAboutOutputDuringTests, 'enforcesTimeLimit' => $enforcesTimeLimit, 'isStrictAboutTodoAnnotatedTests' => $isStrictAboutTodoAnnotatedTests, 'isStrictAboutResourceUsageDuringSmallTests' => $isStrictAboutResourceUsageDuringSmallTests, 'codeCoverageFilter' => $codeCoverageFilter, 'configurationFilePath' => $configurationFilePath, 'name' => $this->getName(\false)]; - if (!$runEntireClass) { - $var['methodName'] = $this->name; - } - $template->setVar($var); - $php = AbstractPhpProcess::factory(); - $php->runTestJob($template->render(), $this, $result); - } else { - $result->run($this); - } - $this->result = null; - return $result; + return $this->beStrictAboutTodoAnnotatedTests; } - /** - * Returns a builder object to create mock objects using a fluent interface. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $className - * - * @psalm-return MockBuilder - */ - public function getMockBuilder(string $className) : MockBuilder + public function forceCoversAnnotation(): void { - $this->recordDoubledType($className); - return new MockBuilder($this, $className); + $this->forceCoversAnnotation = \true; } - public function registerComparator(Comparator $comparator) : void + public function forcesCoversAnnotation(): bool { - ComparatorFactory::getInstance()->register($comparator); - $this->customComparators[] = $comparator; + return $this->forceCoversAnnotation; } /** - * @return string[] - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Enables or disables the stopping for risky tests. */ - public function doubledTypes() : array + public function stopOnRisky(bool $flag): void { - return array_unique($this->doubledTypes); + $this->stopOnRisky = $flag; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Enables or disables the stopping for incomplete tests. */ - public function getGroups() : array + public function stopOnIncomplete(bool $flag): void { - return $this->groups; + $this->stopOnIncomplete = $flag; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Enables or disables the stopping for skipped tests. */ - public function setGroups(array $groups) : void + public function stopOnSkipped(bool $flag): void { - $this->groups = $groups; + $this->stopOnSkipped = $flag; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Enables or disables the stopping for defects: error, failure, warning. */ - public function getName(bool $withDataSet = \true) : string + public function stopOnDefect(bool $flag): void { - if ($withDataSet) { - return $this->name . $this->getDataSetAsString(\false); - } - return $this->name; + $this->stopOnDefect = $flag; } /** - * Returns the size of the test. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Returns the time spent running the tests. */ - public function getSize() : int + public function time(): float { - return TestUtil::getSize(static::class, $this->getName(\false)); + return $this->time; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Returns whether the entire test was successful or not. */ - public function hasSize() : bool + public function wasSuccessful(): bool { - return $this->getSize() !== TestUtil::UNKNOWN; + return $this->wasSuccessfulIgnoringWarnings() && empty($this->warnings); } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function isSmall() : bool + public function wasSuccessfulIgnoringWarnings(): bool { - return $this->getSize() === TestUtil::SMALL; + return empty($this->errors) && empty($this->failures); } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function isMedium() : bool + public function wasSuccessfulAndNoTestIsRiskyOrSkippedOrIncomplete(): bool { - return $this->getSize() === TestUtil::MEDIUM; + return $this->wasSuccessful() && $this->allHarmless() && $this->allCompletelyImplemented() && $this->noneSkipped(); } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Sets the default timeout for tests. */ - public function isLarge() : bool + public function setDefaultTimeLimit(int $timeout): void { - return $this->getSize() === TestUtil::LARGE; + $this->defaultTimeLimit = $timeout; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Sets the timeout for small tests. */ - public function getActualOutput() : string + public function setTimeoutForSmallTests(int $timeout): void { - if (!$this->outputBufferingActive) { - return $this->output; - } - return (string) ob_get_contents(); + $this->timeoutForSmallTests = $timeout; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Sets the timeout for medium tests. */ - public function hasOutput() : bool + public function setTimeoutForMediumTests(int $timeout): void { - if ($this->output === '') { - return \false; - } - if ($this->hasExpectationOnOutput()) { - return \false; - } - return \true; + $this->timeoutForMediumTests = $timeout; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Sets the timeout for large tests. */ - public function doesNotPerformAssertions() : bool + public function setTimeoutForLargeTests(int $timeout): void { - return $this->doesNotPerformAssertions; + $this->timeoutForLargeTests = $timeout; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * Returns the set timeout for large tests. */ - public function hasExpectationOnOutput() : bool + public function getTimeoutForLargeTests(): int { - return is_string($this->outputExpectedString) || is_string($this->outputExpectedRegex) || $this->outputRetrievedForAssertion; + return $this->timeoutForLargeTests; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getExpectedException() : ?string + public function setRegisterMockObjectsFromTestArgumentsRecursively(bool $flag): void { - return $this->expectedException; + $this->registerMockObjectsFromTestArgumentsRecursively = $flag; } - /** - * @return null|int|string - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getExpectedExceptionCode() + private function recordError(\PHPUnit\Framework\Test $test, Throwable $t): void { - return $this->expectedExceptionCode; + $this->errors[] = new \PHPUnit\Framework\TestFailure($test, $t); } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getExpectedExceptionMessage() : ?string + private function recordNotImplemented(\PHPUnit\Framework\Test $test, Throwable $t): void { - return $this->expectedExceptionMessage; + $this->notImplemented[] = new \PHPUnit\Framework\TestFailure($test, $t); } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getExpectedExceptionMessageRegExp() : ?string + private function recordRisky(\PHPUnit\Framework\Test $test, Throwable $t): void { - return $this->expectedExceptionMessageRegExp; + $this->risky[] = new \PHPUnit\Framework\TestFailure($test, $t); } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setRegisterMockObjectsFromTestArgumentsRecursively(bool $flag) : void + private function recordSkipped(\PHPUnit\Framework\Test $test, Throwable $t): void { - $this->registerMockObjectsFromTestArgumentsRecursively = $flag; + $this->skipped[] = new \PHPUnit\Framework\TestFailure($test, $t); } - /** - * @throws Throwable - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function runBare() : void + private function recordWarning(\PHPUnit\Framework\Test $test, Throwable $t): void { - $this->numAssertions = 0; - $this->snapshotGlobalState(); - $this->startOutputBuffering(); - clearstatcache(); - $currentWorkingDirectory = getcwd(); - $hookMethods = TestUtil::getHookMethods(static::class); - $hasMetRequirements = \false; - try { - $this->checkRequirements(); - $hasMetRequirements = \true; - if ($this->inIsolation) { - foreach ($hookMethods['beforeClass'] as $method) { - $this->{$method}(); - } - } - $this->setDoesNotPerformAssertionsFromAnnotation(); - foreach ($hookMethods['before'] as $method) { - $this->{$method}(); - } - foreach ($hookMethods['preCondition'] as $method) { - $this->{$method}(); - } - $this->testResult = $this->runTest(); - $this->verifyMockObjects(); - foreach ($hookMethods['postCondition'] as $method) { - $this->{$method}(); - } - if (!empty($this->warnings)) { - throw new \PHPUnit\Framework\Warning(implode("\n", array_unique($this->warnings))); - } - $this->status = BaseTestRunner::STATUS_PASSED; - } catch (\PHPUnit\Framework\IncompleteTest $e) { - $this->status = BaseTestRunner::STATUS_INCOMPLETE; - $this->statusMessage = $e->getMessage(); - } catch (\PHPUnit\Framework\SkippedTest $e) { - $this->status = BaseTestRunner::STATUS_SKIPPED; - $this->statusMessage = $e->getMessage(); - } catch (\PHPUnit\Framework\Warning $e) { - $this->status = BaseTestRunner::STATUS_WARNING; - $this->statusMessage = $e->getMessage(); - } catch (\PHPUnit\Framework\AssertionFailedError $e) { - $this->status = BaseTestRunner::STATUS_FAILURE; - $this->statusMessage = $e->getMessage(); - } catch (PredictionException $e) { - $this->status = BaseTestRunner::STATUS_FAILURE; - $this->statusMessage = $e->getMessage(); - } catch (Throwable $_e) { - $e = $_e; - $this->status = BaseTestRunner::STATUS_ERROR; - $this->statusMessage = $_e->getMessage(); - } - $this->mockObjects = []; - $this->prophet = null; - // Tear down the fixture. An exception raised in tearDown() will be - // caught and passed on when no exception was raised before. - try { - if ($hasMetRequirements) { - foreach ($hookMethods['after'] as $method) { - $this->{$method}(); - } - if ($this->inIsolation) { - foreach ($hookMethods['afterClass'] as $method) { - $this->{$method}(); - } - } - } - } catch (Throwable $_e) { - $e = $e ?? $_e; - } - try { - $this->stopOutputBuffering(); - } catch (\PHPUnit\Framework\RiskyTestError $_e) { - $e = $e ?? $_e; + $this->warnings[] = new \PHPUnit\Framework\TestFailure($test, $t); + } + private function shouldTimeLimitBeEnforced(int $size): bool + { + if (!$this->enforceTimeLimit) { + return \false; } - if (isset($_e)) { - $this->status = BaseTestRunner::STATUS_ERROR; - $this->statusMessage = $_e->getMessage(); + if (!($this->defaultTimeLimit || $size !== TestUtil::UNKNOWN)) { + return \false; } - clearstatcache(); - if ($currentWorkingDirectory !== getcwd()) { - chdir($currentWorkingDirectory); + if (!extension_loaded('pcntl')) { + return \false; } - $this->restoreGlobalState(); - $this->unregisterCustomComparators(); - $this->cleanupIniSettings(); - $this->cleanupLocaleSettings(); - libxml_clear_errors(); - // Perform assertion on output. - if (!isset($e)) { - try { - if ($this->outputExpectedRegex !== null) { - $this->assertMatchesRegularExpression($this->outputExpectedRegex, $this->output); - } elseif ($this->outputExpectedString !== null) { - $this->assertEquals($this->outputExpectedString, $this->output); - } - } catch (Throwable $_e) { - $e = $_e; - } + if (!class_exists(Invoker::class)) { + return \false; } - // Workaround for missing "finally". - if (isset($e)) { - if ($e instanceof PredictionException) { - $e = new \PHPUnit\Framework\AssertionFailedError($e->getMessage()); - } - $this->onNotSuccessfulTest($e); + if (extension_loaded('xdebug') && xdebug_is_debugger_active()) { + return \false; } + return \true; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function array_filter; +use function array_map; +use function array_values; +use function count; +use function explode; +use function in_array; +use function strpos; +use function trim; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ExecutionOrderDependency +{ /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var string */ - public function setName(string $name) : void - { - $this->name = $name; - if (is_callable($this->sortId(), \true)) { - $this->providedTests = [new \PHPUnit\Framework\ExecutionOrderDependency($this->sortId())]; - } - } + private $className = ''; /** - * @param list $dependencies - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var string */ - public function setDependencies(array $dependencies) : void - { - $this->dependencies = $dependencies; - } + private $methodName = ''; /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var bool */ - public function setDependencyInput(array $dependencyInput) : void - { - $this->dependencyInput = $dependencyInput; - } + private $useShallowClone = \false; /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var bool */ - public function setBeStrictAboutChangesToGlobalState(?bool $beStrictAboutChangesToGlobalState) : void + private $useDeepClone = \false; + public static function createFromDependsAnnotation(string $className, string $annotation): self { - $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; + // Split clone option and target + $parts = explode(' ', trim($annotation), 2); + if (count($parts) === 1) { + $cloneOption = ''; + $target = $parts[0]; + } else { + $cloneOption = $parts[0]; + $target = $parts[1]; + } + // Prefix provided class for targets assumed to be in scope + if ($target !== '' && strpos($target, '::') === \false) { + $target = $className . '::' . $target; + } + return new self($target, null, $cloneOption); } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @psalm-param list $dependencies + * + * @psalm-return list */ - public function setBackupGlobals(?bool $backupGlobals) : void + public static function filterInvalid(array $dependencies): array { - if ($this->backupGlobals === null && $backupGlobals !== null) { - $this->backupGlobals = $backupGlobals; - } + return array_values(array_filter($dependencies, static function (self $d) { + return $d->isValid(); + })); } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @psalm-param list $existing + * @psalm-param list $additional + * + * @psalm-return list */ - public function setBackupStaticAttributes(?bool $backupStaticAttributes) : void + public static function mergeUnique(array $existing, array $additional): array { - if ($this->backupStaticAttributes === null && $backupStaticAttributes !== null) { - $this->backupStaticAttributes = $backupStaticAttributes; + $existingTargets = array_map(static function ($dependency) { + return $dependency->getTarget(); + }, $existing); + foreach ($additional as $dependency) { + if (in_array($dependency->getTarget(), $existingTargets, \true)) { + continue; + } + $existingTargets[] = $dependency->getTarget(); + $existing[] = $dependency; } + return $existing; } /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @psalm-param list $left + * @psalm-param list $right + * + * @psalm-return list */ - public function setRunTestInSeparateProcess(bool $runTestInSeparateProcess) : void + public static function diff(array $left, array $right): array { - if ($this->runTestInSeparateProcess === null) { - $this->runTestInSeparateProcess = $runTestInSeparateProcess; + if ($right === []) { + return $left; + } + if ($left === []) { + return []; + } + $diff = []; + $rightTargets = array_map(static function ($dependency) { + return $dependency->getTarget(); + }, $right); + foreach ($left as $dependency) { + if (in_array($dependency->getTarget(), $rightTargets, \true)) { + continue; + } + $diff[] = $dependency; } + return $diff; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setRunClassInSeparateProcess(bool $runClassInSeparateProcess) : void + public function __construct(string $classOrCallableName, ?string $methodName = null, ?string $option = null) { - if ($this->runClassInSeparateProcess === null) { - $this->runClassInSeparateProcess = $runClassInSeparateProcess; + if ($classOrCallableName === '') { + return; + } + if (strpos($classOrCallableName, '::') !== \false) { + [$this->className, $this->methodName] = explode('::', $classOrCallableName); + } else { + $this->className = $classOrCallableName; + $this->methodName = !empty($methodName) ? $methodName : 'class'; + } + if ($option === 'clone') { + $this->useDeepClone = \true; + } elseif ($option === 'shallowClone') { + $this->useShallowClone = \true; } } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setPreserveGlobalState(bool $preserveGlobalState) : void + public function __toString(): string { - $this->preserveGlobalState = $preserveGlobalState; + return $this->getTarget(); } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setInIsolation(bool $inIsolation) : void + public function isValid(): bool { - $this->inIsolation = $inIsolation; + // Invalid dependencies can be declared and are skipped by the runner + return $this->className !== '' && $this->methodName !== ''; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function isInIsolation() : bool + public function useShallowClone(): bool { - return $this->inIsolation; + return $this->useShallowClone; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getResult() + public function useDeepClone(): bool { - return $this->testResult; + return $this->useDeepClone; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setResult($result) : void + public function targetIsClass(): bool { - $this->testResult = $result; + return $this->methodName === 'class'; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setOutputCallback(callable $callback) : void + public function getTarget(): string { - $this->outputCallback = $callback; + return $this->isValid() ? $this->className . '::' . $this->methodName : ''; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getTestResultObject() : ?\PHPUnit\Framework\TestResult + public function getTargetClassName(): string { - return $this->result; + return $this->className; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function setTestResultObject(\PHPUnit\Framework\TestResult $result) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use Throwable; +/** + * @deprecated The `TestListener` interface is deprecated + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +trait TestListenerDefaultImplementation +{ + public function addError(\PHPUnit\Framework\Test $test, Throwable $t, float $time): void { - $this->result = $result; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function registerMockObject(MockObject $mockObject) : void + public function addWarning(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\Warning $e, float $time): void { - $this->mockObjects[] = $mockObject; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function addToAssertionCount(int $count) : void + public function addFailure(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\AssertionFailedError $e, float $time): void { - $this->numAssertions += $count; } - /** - * Returns the number of assertions performed by this test. - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getNumAssertions() : int + public function addIncompleteTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time): void { - return $this->numAssertions; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function usesDataProvider() : bool + public function addRiskyTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time): void { - return !empty($this->data); } - /** - * @return int|string - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function dataName() + public function addSkippedTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time): void { - return $this->dataName; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function getDataSetAsString(bool $includeData = \true) : string + public function startTestSuite(\PHPUnit\Framework\TestSuite $suite): void + { + } + public function endTestSuite(\PHPUnit\Framework\TestSuite $suite): void + { + } + public function startTest(\PHPUnit\Framework\Test $test): void + { + } + public function endTest(\PHPUnit\Framework\Test $test, float $time): void { - $buffer = ''; - if (!empty($this->data)) { - if (is_int($this->dataName)) { - $buffer .= sprintf(' with data set #%d', $this->dataName); - } else { - $buffer .= sprintf(' with data set "%s"', $this->dataName); - } - if ($includeData) { - $exporter = new Exporter(); - $buffer .= sprintf(' (%s)', $exporter->shortenedRecursiveExport($this->data)); - } - } - return $buffer; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function assert; +use function count; +use RecursiveIterator; +/** + * @template-implements RecursiveIterator + * + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TestSuiteIterator implements RecursiveIterator +{ /** - * Gets the data set of a TestCase. - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var int */ - public function getProvidedData() : array + private $position = 0; + /** + * @var Test[] + */ + private $tests; + public function __construct(\PHPUnit\Framework\TestSuite $testSuite) + { + $this->tests = $testSuite->tests(); + } + public function rewind(): void { - return $this->data; + $this->position = 0; } - /** - * @internal This method is not covered by the backward compatibility promise for PHPUnit - */ - public function addWarning(string $warning) : void + public function valid(): bool { - $this->warnings[] = $warning; + return $this->position < count($this->tests); } - public function sortId() : string + public function key(): int { - $id = $this->name; - if (strpos($id, '::') === \false) { - $id = static::class . '::' . $id; - } - if ($this->usesDataProvider()) { - $id .= $this->getDataSetAsString(\false); - } - return $id; + return $this->position; } - /** - * Returns the normalized test name as class::method. - * - * @return list - */ - public function provides() : array + public function current(): \PHPUnit\Framework\Test { - return $this->providedTests; + return $this->tests[$this->position]; } - /** - * Returns a list of normalized dependency names, class::method. - * - * This list can differ from the raw dependencies as the resolver has - * no need for the [!][shallow]clone prefix that is filtered out - * during normalization. - * - * @return list - */ - public function requires() : array + public function next(): void { - return $this->dependencies; + $this->position++; } /** - * Override to run the test and assert its state. - * - * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException - * @throws AssertionFailedError - * @throws Exception - * @throws ExpectationFailedException - * @throws Throwable + * @throws NoChildTestSuiteException */ - protected function runTest() + public function getChildren(): self { - if (trim($this->name) === '') { - throw new \PHPUnit\Framework\Exception('PHPUnit\\Framework\\TestCase::$name must be a non-blank string.'); - } - $testArguments = array_merge($this->data, $this->dependencyInput); - $this->registerMockObjectsFromTestArguments($testArguments); - try { - $testResult = $this->{$this->name}(...array_values($testArguments)); - } catch (Throwable $exception) { - if (!$this->checkExceptionExpectations($exception)) { - throw $exception; - } - if ($this->expectedException !== null) { - if ($this->expectedException === Error::class) { - $this->assertThat($exception, LogicalOr::fromConstraints(new ExceptionConstraint(Error::class), new ExceptionConstraint(\Error::class))); - } else { - $this->assertThat($exception, new ExceptionConstraint($this->expectedException)); - } - } - if ($this->expectedExceptionMessage !== null) { - $this->assertThat($exception, new ExceptionMessage($this->expectedExceptionMessage)); - } - if ($this->expectedExceptionMessageRegExp !== null) { - $this->assertThat($exception, new ExceptionMessageRegularExpression($this->expectedExceptionMessageRegExp)); - } - if ($this->expectedExceptionCode !== null) { - $this->assertThat($exception, new ExceptionCode($this->expectedExceptionCode)); - } - return; - } - if ($this->expectedException !== null) { - $this->assertThat(null, new ExceptionConstraint($this->expectedException)); - } elseif ($this->expectedExceptionMessage !== null) { - $this->numAssertions++; - throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with message "%s" is thrown', $this->expectedExceptionMessage)); - } elseif ($this->expectedExceptionMessageRegExp !== null) { - $this->numAssertions++; - throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with message matching "%s" is thrown', $this->expectedExceptionMessageRegExp)); - } elseif ($this->expectedExceptionCode !== null) { - $this->numAssertions++; - throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with code "%s" is thrown', $this->expectedExceptionCode)); + if (!$this->hasChildren()) { + throw new \PHPUnit\Framework\NoChildTestSuiteException('The current item is not a TestSuite instance and therefore does not have any children.'); } - return $testResult; + $current = $this->current(); + assert($current instanceof \PHPUnit\Framework\TestSuite); + return new self($current); } - /** - * This method is a wrapper for the ini_set() function that automatically - * resets the modified php.ini setting to its original value after the - * test is run. - * - * @throws Exception - */ - protected function iniSet(string $varName, string $newValue) : void + public function hasChildren(): bool { - $currentValue = ini_set($varName, $newValue); - if ($currentValue !== \false) { - $this->iniSettings[$varName] = $currentValue; - } else { - throw new \PHPUnit\Framework\Exception(sprintf('INI setting "%s" could not be set to "%s".', $varName, $newValue)); - } + return $this->valid() && $this->current() instanceof \PHPUnit\Framework\TestSuite; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use const PHP_EOL; +use function array_keys; +use function array_map; +use function array_merge; +use function array_slice; +use function array_unique; +use function basename; +use function call_user_func; +use function class_exists; +use function count; +use function dirname; +use function get_declared_classes; +use function implode; +use function is_bool; +use function is_callable; +use function is_file; +use function is_object; +use function is_string; +use function method_exists; +use function preg_match; +use function preg_quote; +use function sprintf; +use function strpos; +use function substr; +use Iterator; +use IteratorAggregate; +use PHPUnit\Runner\BaseTestRunner; +use PHPUnit\Runner\Filter\Factory; +use PHPUnit\Runner\PhptTestCase; +use PHPUnit\Util\FileLoader; +use PHPUnit\Util\Reflection; +use PHPUnit\Util\Test as TestUtil; +use ReflectionClass; +use ReflectionException; +use ReflectionMethod; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException; +use Throwable; +/** + * @template-implements IteratorAggregate + * + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +class TestSuite implements IteratorAggregate, \PHPUnit\Framework\Reorderable, \PHPUnit\Framework\SelfDescribing, \PHPUnit\Framework\Test +{ /** - * This method is a wrapper for the setlocale() function that automatically - * resets the locale to its original value after the test is run. + * Enable or disable the backup and restoration of the $GLOBALS array. * - * @throws Exception + * @var bool */ - protected function setLocale(...$args) : void - { - if (count($args) < 2) { - throw new \PHPUnit\Framework\Exception(); - } - [$category, $locale] = $args; - if (!in_array($category, self::LOCALE_CATEGORIES, \true)) { - throw new \PHPUnit\Framework\Exception(); - } - if (!is_array($locale) && !is_string($locale)) { - throw new \PHPUnit\Framework\Exception(); - } - $this->locale[$category] = setlocale($category, 0); - $result = setlocale(...$args); - if ($result === \false) { - throw new \PHPUnit\Framework\Exception('The locale functionality is not implemented on your platform, ' . 'the specified locale does not exist or the category name is ' . 'invalid.'); - } - } + protected $backupGlobals; /** - * Makes configurable stub for the specified class. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName + * Enable or disable the backup and restoration of static attributes. * - * @psalm-return Stub&RealInstanceType + * @var bool */ - protected function createStub(string $originalClassName) : Stub - { - return $this->createMockObject($originalClassName); - } + protected $backupStaticAttributes; /** - * Returns a mock object for the specified class. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName - * - * @psalm-return MockObject&RealInstanceType + * @var bool */ - protected function createMock(string $originalClassName) : MockObject - { - return $this->createMockObject($originalClassName); - } + protected $runTestInSeparateProcess = \false; /** - * Returns a configured mock object for the specified class. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName + * The name of the test suite. * - * @psalm-return MockObject&RealInstanceType + * @var string */ - protected function createConfiguredMock(string $originalClassName, array $configuration) : MockObject - { - $o = $this->createMockObject($originalClassName); - foreach ($configuration as $method => $return) { - $o->method($method)->willReturn($return); - } - return $o; - } + protected $name = ''; /** - * Returns a partial mock object for the specified class. - * - * @param string[] $methods - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName + * The test groups of the test suite. * - * @psalm-return MockObject&RealInstanceType + * @psalm-var array> */ - protected function createPartialMock(string $originalClassName, array $methods) : MockObject - { - try { - $reflector = new ReflectionClass($originalClassName); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $mockedMethodsThatDontExist = array_filter($methods, static function (string $method) use($reflector) { - return !$reflector->hasMethod($method); - }); - if ($mockedMethodsThatDontExist) { - $this->addWarning(sprintf('createPartialMock() called with method(s) %s that do not exist in %s. This will not be allowed in future versions of PHPUnit.', implode(', ', $mockedMethodsThatDontExist), $originalClassName)); - } - return $this->getMockBuilder($originalClassName)->disableOriginalConstructor()->disableOriginalClone()->disableArgumentCloning()->disallowMockingUnknownTypes()->setMethods(empty($methods) ? null : $methods)->getMock(); - } + protected $groups = []; /** - * Returns a test proxy for the specified class. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName + * The tests in the test suite. * - * @psalm-return MockObject&RealInstanceType + * @var Test[] */ - protected function createTestProxy(string $originalClassName, array $constructorArguments = []) : MockObject - { - return $this->getMockBuilder($originalClassName)->setConstructorArgs($constructorArguments)->enableProxyingToOriginalMethods()->getMock(); - } + protected $tests = []; /** - * Mocks the specified class and returns the name of the mocked class. - * - * @param null|array $methods $methods - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string|string $originalClassName + * The number of tests in the test suite. * - * @psalm-return class-string + * @var int */ - protected function getMockClass(string $originalClassName, $methods = [], array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \false, bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \false) : string - { - $this->recordDoubledType($originalClassName); - $mock = $this->getMockObjectGenerator()->getMock($originalClassName, $methods, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $cloneArguments); - return get_class($mock); - } + protected $numTests = -1; /** - * Returns a mock object for the specified abstract class with all abstract - * methods of the class mocked. Concrete methods are not mocked by default. - * To mock concrete methods, use the 7th parameter ($mockedMethods). - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName - * - * @psalm-return MockObject&RealInstanceType + * @var bool */ - protected function getMockForAbstractClass(string $originalClassName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = [], bool $cloneArguments = \false) : MockObject - { - $this->recordDoubledType($originalClassName); - $mockObject = $this->getMockObjectGenerator()->getMockForAbstractClass($originalClassName, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); - $this->registerMockObject($mockObject); - return $mockObject; - } + protected $testCase = \false; /** - * Returns a mock object based on the given WSDL file. - * - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string|string $originalClassName - * - * @psalm-return MockObject&RealInstanceType + * @var string[] */ - protected function getMockFromWsdl(string $wsdlFile, string $originalClassName = '', string $mockClassName = '', array $methods = [], bool $callOriginalConstructor = \true, array $options = []) : MockObject - { - $this->recordDoubledType(SoapClient::class); - if ($originalClassName === '') { - $fileName = pathinfo(basename(parse_url($wsdlFile, PHP_URL_PATH)), PATHINFO_FILENAME); - $originalClassName = preg_replace('/\\W/', '', $fileName); - } - if (!class_exists($originalClassName)) { - eval($this->getMockObjectGenerator()->generateClassFromWsdl($wsdlFile, $originalClassName, $methods, $options)); - } - $mockObject = $this->getMockObjectGenerator()->getMock($originalClassName, $methods, ['', $options], $mockClassName, $callOriginalConstructor, \false, \false); - $this->registerMockObject($mockObject); - return $mockObject; - } + protected $foundClasses = []; /** - * Returns a mock object for the specified trait with all abstract methods - * of the trait mocked. Concrete methods to mock can be specified with the - * `$mockedMethods` parameter. - * - * @psalm-param trait-string $traitName + * @var null|list */ - protected function getMockForTrait(string $traitName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = [], bool $cloneArguments = \false) : MockObject - { - $this->recordDoubledType($traitName); - $mockObject = $this->getMockObjectGenerator()->getMockForTrait($traitName, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); - $this->registerMockObject($mockObject); - return $mockObject; - } + protected $providedTests; /** - * Returns an object for the specified trait. - * - * @psalm-param trait-string $traitName + * @var null|list */ - protected function getObjectForTrait(string $traitName, array $arguments = [], string $traitClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true) : object - { - $this->recordDoubledType($traitName); - return $this->getMockObjectGenerator()->getObjectForTrait($traitName, $traitClassName, $callAutoload, $callOriginalConstructor, $arguments); - } + protected $requiredTests; /** - * @throws \Prophecy\Exception\Doubler\ClassNotFoundException - * @throws \Prophecy\Exception\Doubler\DoubleException - * @throws \Prophecy\Exception\Doubler\InterfaceNotFoundException - * - * @psalm-param class-string|null $classOrInterface - * - * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4141 + * @var bool */ - protected function prophesize(?string $classOrInterface = null) : ObjectProphecy - { - if (!class_exists(Prophet::class)) { - throw new \PHPUnit\Framework\Exception('This test uses TestCase::prophesize(), but phpspec/prophecy is not installed. Please run "composer require --dev phpspec/prophecy".'); - } - $this->addWarning('PHPUnit\\Framework\\TestCase::prophesize() is deprecated and will be removed in PHPUnit 10. Please use the trait provided by phpspec/prophecy-phpunit.'); - if (is_string($classOrInterface)) { - $this->recordDoubledType($classOrInterface); - } - return $this->getProphet()->prophesize($classOrInterface); - } + private $beStrictAboutChangesToGlobalState; /** - * Creates a default TestResult object. - * - * @internal This method is not covered by the backward compatibility promise for PHPUnit + * @var Factory */ - protected function createResult() : \PHPUnit\Framework\TestResult - { - return new \PHPUnit\Framework\TestResult(); - } + private $iteratorFilter; /** - * This method is called when a test method did not execute successfully. - * - * @throws Throwable + * @var int */ - protected function onNotSuccessfulTest(Throwable $t) : void - { - throw $t; - } - protected function recordDoubledType(string $originalClassName) : void - { - $this->doubledTypes[] = $originalClassName; - } + private $declaredClassesPointer; /** - * @throws Throwable + * @psalm-var array + */ + private $warnings = []; + /** + * Constructs a new TestSuite. + * + * - PHPUnit\Framework\TestSuite() constructs an empty TestSuite. + * + * - PHPUnit\Framework\TestSuite(ReflectionClass) constructs a + * TestSuite from the given class. + * + * - PHPUnit\Framework\TestSuite(ReflectionClass, String) + * constructs a TestSuite from the given class with the given + * name. + * + * - PHPUnit\Framework\TestSuite(String) either constructs a + * TestSuite from the given class (if the passed string is the + * name of an existing class) or constructs an empty TestSuite + * with the given name. + * + * @param ReflectionClass|string $theClass + * + * @throws Exception */ - private function verifyMockObjects() : void + public function __construct($theClass = '', string $name = '') { - foreach ($this->mockObjects as $mockObject) { - if ($mockObject->__phpunit_hasMatchers()) { - $this->numAssertions++; - } - $mockObject->__phpunit_verify($this->shouldInvocationMockerBeReset($mockObject)); + if (!is_string($theClass) && !$theClass instanceof ReflectionClass) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'ReflectionClass object or string'); } - if ($this->prophet !== null) { - try { - $this->prophet->checkPredictions(); - } finally { - foreach ($this->prophet->getProphecies() as $objectProphecy) { - foreach ($objectProphecy->getMethodProphecies() as $methodProphecies) { - foreach ($methodProphecies as $methodProphecy) { - /* @var MethodProphecy $methodProphecy */ - $this->numAssertions += count($methodProphecy->getCheckedPredictions()); - } - } + $this->declaredClassesPointer = count(get_declared_classes()); + if (!$theClass instanceof ReflectionClass) { + if (class_exists($theClass, \true)) { + if ($name === '') { + $name = $theClass; + } + try { + $theClass = new ReflectionClass($theClass); + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } + // @codeCoverageIgnoreEnd + } else { + $this->setName($theClass); + return; } } - } - /** - * @throws SkippedTestError - * @throws SyntheticSkippedError - * @throws Warning - */ - private function checkRequirements() : void - { - if (!$this->name || !method_exists($this, $this->name)) { + if (!$theClass->isSubclassOf(\PHPUnit\Framework\TestCase::class)) { + $this->setName((string) $theClass); return; } - $missingRequirements = TestUtil::getMissingRequirements(static::class, $this->name); - if (!empty($missingRequirements)) { - $this->markTestSkipped(implode(PHP_EOL, $missingRequirements)); - } - } - private function handleDependencies() : bool - { - if ([] === $this->dependencies || $this->inIsolation) { - return \true; + if ($name !== '') { + $this->setName($name); + } else { + $this->setName($theClass->getName()); } - $passed = $this->result->passed(); - $passedKeys = array_keys($passed); - $numKeys = count($passedKeys); - for ($i = 0; $i < $numKeys; $i++) { - $pos = strpos($passedKeys[$i], ' with data set'); - if ($pos !== \false) { - $passedKeys[$i] = substr($passedKeys[$i], 0, $pos); - } + $constructor = $theClass->getConstructor(); + if ($constructor !== null && !$constructor->isPublic()) { + $this->addTest(new \PHPUnit\Framework\WarningTestCase(sprintf('Class "%s" has no public constructor.', $theClass->getName()))); + return; } - $passedKeys = array_flip(array_unique($passedKeys)); - foreach ($this->dependencies as $dependency) { - if (!$dependency->isValid()) { - $this->markSkippedForNotSpecifyingDependency(); - return \false; - } - if ($dependency->targetIsClass()) { - $dependencyClassName = $dependency->getTargetClassName(); - if (array_search($dependencyClassName, $this->result->passedClasses(), \true) === \false) { - $this->markSkippedForMissingDependency($dependency); - return \false; - } + foreach ((new Reflection())->publicMethodsInTestClass($theClass) as $method) { + if (!TestUtil::isTestMethod($method)) { continue; } - $dependencyTarget = $dependency->getTarget(); - if (!isset($passedKeys[$dependencyTarget])) { - if (!$this->isCallableTestMethod($dependencyTarget)) { - $this->markWarningForUncallableDependency($dependency); - } else { - $this->markSkippedForMissingDependency($dependency); - } - return \false; - } - if (isset($passed[$dependencyTarget])) { - if ($passed[$dependencyTarget]['size'] != \PHPUnit\Util\Test::UNKNOWN && $this->getSize() != \PHPUnit\Util\Test::UNKNOWN && $passed[$dependencyTarget]['size'] > $this->getSize()) { - $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError('This test depends on a test that is larger than itself.'), 0); - return \false; - } - if ($dependency->useDeepClone()) { - $deepCopy = new DeepCopy(); - $deepCopy->skipUncloneable(\false); - $this->dependencyInput[$dependencyTarget] = $deepCopy->copy($passed[$dependencyTarget]['result']); - } elseif ($dependency->useShallowClone()) { - $this->dependencyInput[$dependencyTarget] = clone $passed[$dependencyTarget]['result']; - } else { - $this->dependencyInput[$dependencyTarget] = $passed[$dependencyTarget]['result']; - } - } else { - $this->dependencyInput[$dependencyTarget] = null; - } - } - return \true; - } - private function markSkippedForNotSpecifyingDependency() : void - { - $this->status = BaseTestRunner::STATUS_SKIPPED; - $this->result->startTest($this); - $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError('This method has an invalid @depends annotation.'), 0); - $this->result->endTest($this, 0); - } - private function markSkippedForMissingDependency(\PHPUnit\Framework\ExecutionOrderDependency $dependency) : void - { - $this->status = BaseTestRunner::STATUS_SKIPPED; - $this->result->startTest($this); - $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError(sprintf('This test depends on "%s" to pass.', $dependency->getTarget())), 0); - $this->result->endTest($this, 0); + $this->addTestMethod($theClass, $method); + } + if (empty($this->tests)) { + $this->addTest(new \PHPUnit\Framework\WarningTestCase(sprintf('No tests found in class "%s".', $theClass->getName()))); + } + $this->testCase = \true; } - private function markWarningForUncallableDependency(\PHPUnit\Framework\ExecutionOrderDependency $dependency) : void + /** + * Returns a string representation of the test suite. + */ + public function toString(): string { - $this->status = BaseTestRunner::STATUS_WARNING; - $this->result->startTest($this); - $this->result->addWarning($this, new \PHPUnit\Framework\Warning(sprintf('This test depends on "%s" which does not exist.', $dependency->getTarget())), 0); - $this->result->endTest($this, 0); + return $this->getName(); } /** - * Get the mock object generator, creating it if it doesn't exist. + * Adds a test to the suite. + * + * @param array $groups */ - private function getMockObjectGenerator() : MockGenerator + public function addTest(\PHPUnit\Framework\Test $test, $groups = []): void { - if ($this->mockObjectGenerator === null) { - $this->mockObjectGenerator = new MockGenerator(); + try { + $class = new ReflectionClass($test); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if (!$class->isAbstract()) { + $this->tests[] = $test; + $this->clearCaches(); + if ($test instanceof self && empty($groups)) { + $groups = $test->getGroups(); + } + if ($this->containsOnlyVirtualGroups($groups)) { + $groups[] = 'default'; + } + foreach ($groups as $group) { + if (!isset($this->groups[$group])) { + $this->groups[$group] = [$test]; + } else { + $this->groups[$group][] = $test; + } + } + if ($test instanceof \PHPUnit\Framework\TestCase) { + $test->setGroups($groups); + } } - return $this->mockObjectGenerator; - } - private function startOutputBuffering() : void - { - ob_start(); - $this->outputBufferingActive = \true; - $this->outputBufferingLevel = ob_get_level(); } /** - * @throws RiskyTestError + * Adds the tests from the given class to the suite. + * + * @psalm-param object|class-string $testClass + * + * @throws Exception */ - private function stopOutputBuffering() : void + public function addTestSuite($testClass): void { - if (ob_get_level() !== $this->outputBufferingLevel) { - while (ob_get_level() >= $this->outputBufferingLevel) { - ob_end_clean(); + if (!(is_object($testClass) || is_string($testClass) && class_exists($testClass))) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class name or object'); + } + if (!is_object($testClass)) { + try { + $testClass = new ReflectionClass($testClass); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } - throw new \PHPUnit\Framework\RiskyTestError('Test code or tested code did not (only) close its own output buffers'); + // @codeCoverageIgnoreEnd } - $this->output = ob_get_contents(); - if ($this->outputCallback !== \false) { - $this->output = (string) call_user_func($this->outputCallback, $this->output); + if ($testClass instanceof self) { + $this->addTest($testClass); + } elseif ($testClass instanceof ReflectionClass) { + $suiteMethod = \false; + if (!$testClass->isAbstract() && $testClass->hasMethod(BaseTestRunner::SUITE_METHODNAME)) { + try { + $method = $testClass->getMethod(BaseTestRunner::SUITE_METHODNAME); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($method->isStatic()) { + $this->addTest($method->invoke(null, $testClass->getName())); + $suiteMethod = \true; + } + } + if (!$suiteMethod && !$testClass->isAbstract() && $testClass->isSubclassOf(\PHPUnit\Framework\TestCase::class)) { + $this->addTest(new self($testClass)); + } + } else { + throw new \PHPUnit\Framework\Exception(); } - ob_end_clean(); - $this->outputBufferingActive = \false; - $this->outputBufferingLevel = ob_get_level(); } - private function snapshotGlobalState() : void + public function addWarning(string $warning): void { - if ($this->runTestInSeparateProcess || $this->inIsolation || !$this->backupGlobals && !$this->backupStaticAttributes) { - return; - } - $this->snapshot = $this->createGlobalStateSnapshot($this->backupGlobals === \true); + $this->warnings[] = $warning; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws RiskyTestError + * Wraps both addTest() and addTestSuite + * as well as the separate import statements for the user's convenience. + * + * If the named file cannot be read or there are no new tests that can be + * added, a PHPUnit\Framework\WarningTestCase will be created instead, + * leaving the current test run untouched. + * + * @throws Exception */ - private function restoreGlobalState() : void + public function addTestFile(string $filename): void { - if (!$this->snapshot instanceof Snapshot) { + if (is_file($filename) && substr($filename, -5) === '.phpt') { + $this->addTest(new PhptTestCase($filename)); + $this->declaredClassesPointer = count(get_declared_classes()); return; } - if ($this->beStrictAboutChangesToGlobalState) { - try { - $this->compareGlobalStateSnapshots($this->snapshot, $this->createGlobalStateSnapshot($this->backupGlobals === \true)); - } catch (\PHPUnit\Framework\RiskyTestError $rte) { - // Intentionally left empty - } - } - $restorer = new Restorer(); - if ($this->backupGlobals) { - $restorer->restoreGlobalVariables($this->snapshot); - } - if ($this->backupStaticAttributes) { - $restorer->restoreStaticAttributes($this->snapshot); - } - $this->snapshot = null; - if (isset($rte)) { - throw $rte; - } - } - private function createGlobalStateSnapshot(bool $backupGlobals) : Snapshot - { - $excludeList = new ExcludeList(); - foreach ($this->backupGlobalsExcludeList as $globalVariable) { - $excludeList->addGlobalVariable($globalVariable); + $numTests = count($this->tests); + // The given file may contain further stub classes in addition to the + // test class itself. Figure out the actual test class. + $filename = FileLoader::checkAndLoad($filename); + $newClasses = array_slice(get_declared_classes(), $this->declaredClassesPointer); + // The diff is empty in case a parent class (with test methods) is added + // AFTER a child class that inherited from it. To account for that case, + // accumulate all discovered classes, so the parent class may be found in + // a later invocation. + if (!empty($newClasses)) { + // On the assumption that test classes are defined first in files, + // process discovered classes in approximate LIFO order, so as to + // avoid unnecessary reflection. + $this->foundClasses = array_merge($newClasses, $this->foundClasses); + $this->declaredClassesPointer = count(get_declared_classes()); } - if (!empty($this->backupGlobalsBlacklist)) { - $this->addWarning('PHPUnit\\Framework\\TestCase::$backupGlobalsBlacklist is deprecated and will be removed in PHPUnit 10. Please use PHPUnit\\Framework\\TestCase::$backupGlobalsExcludeList instead.'); - foreach ($this->backupGlobalsBlacklist as $globalVariable) { - $excludeList->addGlobalVariable($globalVariable); + // The test class's name must match the filename, either in full, or as + // a PEAR/PSR-0 prefixed short name ('NameSpace_ShortName'), or as a + // PSR-1 local short name ('NameSpace\ShortName'). The comparison must be + // anchored to prevent false-positive matches (e.g., 'OtherShortName'). + $shortName = basename($filename, '.php'); + $shortNameRegEx = '/(?:^|_|\\\\)' . preg_quote($shortName, '/') . '$/'; + foreach ($this->foundClasses as $i => $className) { + if (preg_match($shortNameRegEx, $className)) { + try { + $class = new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($class->getFileName() == $filename) { + $newClasses = [$className]; + unset($this->foundClasses[$i]); + break; + } } } - if (!defined('PHPUnit\\PHPUNIT_TESTSUITE')) { - $excludeList->addClassNamePrefix('PHPUnit'); - $excludeList->addClassNamePrefix('PHPUnit\\SebastianBergmann\\CodeCoverage'); - $excludeList->addClassNamePrefix('PHPUnit\\SebastianBergmann\\FileIterator'); - $excludeList->addClassNamePrefix('PHPUnit\\SebastianBergmann\\Invoker'); - $excludeList->addClassNamePrefix('PHPUnit\\SebastianBergmann\\Template'); - $excludeList->addClassNamePrefix('PHPUnit\\SebastianBergmann\\Timer'); - $excludeList->addClassNamePrefix('PHPUnit\\Doctrine\\Instantiator'); - $excludeList->addClassNamePrefix('Prophecy'); - $excludeList->addStaticAttribute(ComparatorFactory::class, 'instance'); - foreach ($this->backupStaticAttributesExcludeList as $class => $attributes) { - foreach ($attributes as $attribute) { - $excludeList->addStaticAttribute($class, $attribute); - } + foreach ($newClasses as $className) { + try { + $class = new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } - if (!empty($this->backupStaticAttributesBlacklist)) { - $this->addWarning('PHPUnit\\Framework\\TestCase::$backupStaticAttributesBlacklist is deprecated and will be removed in PHPUnit 10. Please use PHPUnit\\Framework\\TestCase::$backupStaticAttributesExcludeList instead.'); - foreach ($this->backupStaticAttributesBlacklist as $class => $attributes) { - foreach ($attributes as $attribute) { - $excludeList->addStaticAttribute($class, $attribute); + // @codeCoverageIgnoreEnd + if (dirname($class->getFileName()) === __DIR__) { + continue; + } + if ($class->isAbstract() && $class->isSubclassOf(\PHPUnit\Framework\TestCase::class)) { + $this->addWarning(sprintf('Abstract test case classes with "Test" suffix are deprecated (%s)', $class->getName())); + } + if (!$class->isAbstract()) { + if ($class->hasMethod(BaseTestRunner::SUITE_METHODNAME)) { + try { + $method = $class->getMethod(BaseTestRunner::SUITE_METHODNAME); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($method->isStatic()) { + $this->addTest($method->invoke(null, $className)); + } + } elseif ($class->implementsInterface(\PHPUnit\Framework\Test::class)) { + // Do we have modern namespacing ('Foo\Bar\WhizBangTest') or old-school namespacing ('Foo_Bar_WhizBangTest')? + $isPsr0 = !$class->inNamespace() && strpos($class->getName(), '_') !== \false; + $expectedClassName = $isPsr0 ? $className : $shortName; + if (($pos = strpos($expectedClassName, '.')) !== \false) { + $expectedClassName = substr($expectedClassName, 0, $pos); + } + if ($class->getShortName() !== $expectedClassName) { + $this->addWarning(sprintf("Test case class not matching filename is deprecated\n in %s\n Class name was '%s', expected '%s'", $filename, $class->getShortName(), $expectedClassName)); } + $this->addTestSuite($class); } } } - return new Snapshot($excludeList, $backupGlobals, (bool) $this->backupStaticAttributes, \false, \false, \false, \false, \false, \false, \false); + if (count($this->tests) > ++$numTests) { + $this->addWarning(sprintf("Multiple test case classes per file is deprecated\n in %s", $filename)); + } + $this->numTests = -1; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws RiskyTestError + * Wrapper for addTestFile() that adds multiple test files. + * + * @throws Exception */ - private function compareGlobalStateSnapshots(Snapshot $before, Snapshot $after) : void + public function addTestFiles(iterable $fileNames): void { - $backupGlobals = $this->backupGlobals === null || $this->backupGlobals; - if ($backupGlobals) { - $this->compareGlobalStateSnapshotPart($before->globalVariables(), $after->globalVariables(), "--- Global variables before the test\n+++ Global variables after the test\n"); - $this->compareGlobalStateSnapshotPart($before->superGlobalVariables(), $after->superGlobalVariables(), "--- Super-global variables before the test\n+++ Super-global variables after the test\n"); - } - if ($this->backupStaticAttributes) { - $this->compareGlobalStateSnapshotPart($before->staticAttributes(), $after->staticAttributes(), "--- Static attributes before the test\n+++ Static attributes after the test\n"); + foreach ($fileNames as $filename) { + $this->addTestFile((string) $filename); } } /** - * @throws RiskyTestError + * Counts the number of test cases that will be run by this test. + * + * @todo refactor usage of numTests in DefaultResultPrinter */ - private function compareGlobalStateSnapshotPart(array $before, array $after, string $header) : void - { - if ($before != $after) { - $differ = new Differ($header); - $exporter = new Exporter(); - $diff = $differ->diff($exporter->export($before), $exporter->export($after)); - throw new \PHPUnit\Framework\RiskyTestError($diff); - } - } - private function getProphet() : Prophet + public function count(): int { - if ($this->prophet === null) { - $this->prophet = new Prophet(); + $this->numTests = 0; + foreach ($this as $test) { + $this->numTests += count($test); } - return $this->prophet; + return $this->numTests; } /** - * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException + * Returns the name of the suite. */ - private function shouldInvocationMockerBeReset(MockObject $mock) : bool + public function getName(): string { - $enumerator = new Enumerator(); - foreach ($enumerator->enumerate($this->dependencyInput) as $object) { - if ($mock === $object) { - return \false; - } - } - if (!is_array($this->testResult) && !is_object($this->testResult)) { - return \true; - } - return !in_array($mock, $enumerator->enumerate($this->testResult), \true); + return $this->name; } /** - * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException - * @throws \SebastianBergmann\ObjectReflector\InvalidArgumentException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Returns the test groups of the suite. + * + * @psalm-return list */ - private function registerMockObjectsFromTestArguments(array $testArguments, array &$visited = []) : void - { - if ($this->registerMockObjectsFromTestArgumentsRecursively) { - foreach ((new Enumerator())->enumerate($testArguments) as $object) { - if ($object instanceof MockObject) { - $this->registerMockObject($object); - } - } - } else { - foreach ($testArguments as $testArgument) { - if ($testArgument instanceof MockObject) { - $testArgument = Cloner::clone($testArgument); - $this->registerMockObject($testArgument); - } elseif (is_array($testArgument) && !in_array($testArgument, $visited, \true)) { - $visited[] = $testArgument; - $this->registerMockObjectsFromTestArguments($testArgument, $visited); - } - } - } - } - private function setDoesNotPerformAssertionsFromAnnotation() : void - { - $annotations = TestUtil::parseTestMethodAnnotations(static::class, $this->name); - if (isset($annotations['method']['doesNotPerformAssertions'])) { - $this->doesNotPerformAssertions = \true; - } - } - private function unregisterCustomComparators() : void + public function getGroups(): array { - $factory = ComparatorFactory::getInstance(); - foreach ($this->customComparators as $comparator) { - $factory->unregister($comparator); - } - $this->customComparators = []; + return array_map(static function ($key): string { + return (string) $key; + }, array_keys($this->groups)); } - private function cleanupIniSettings() : void + public function getGroupDetails(): array { - foreach ($this->iniSettings as $varName => $oldValue) { - ini_set($varName, $oldValue); - } - $this->iniSettings = []; + return $this->groups; } - private function cleanupLocaleSettings() : void + /** + * Set tests groups of the test case. + */ + public function setGroupDetails(array $groups): void { - foreach ($this->locale as $category => $locale) { - setlocale($category, $locale); - } - $this->locale = []; + $this->groups = $groups; } /** - * @throws Exception + * Runs the tests and collects their result in a TestResult. + * + * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws CodeCoverageException + * @throws UnintentionallyCoveredCodeException + * @throws Warning */ - private function checkExceptionExpectations(Throwable $throwable) : bool + public function run(?\PHPUnit\Framework\TestResult $result = null): \PHPUnit\Framework\TestResult { - $result = \false; - if ($this->expectedException !== null || $this->expectedExceptionCode !== null || $this->expectedExceptionMessage !== null || $this->expectedExceptionMessageRegExp !== null) { - $result = \true; + if ($result === null) { + $result = $this->createResult(); } - if ($throwable instanceof \PHPUnit\Framework\Exception) { - $result = \false; + if (count($this) === 0) { + return $result; } - if (is_string($this->expectedException)) { + /** @psalm-var class-string $className */ + $className = $this->name; + $hookMethods = TestUtil::getHookMethods($className); + $result->startTestSuite($this); + $test = null; + if ($this->testCase && class_exists($this->name, \false)) { try { - $reflector = new ReflectionClass($this->expectedException); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); + foreach ($hookMethods['beforeClass'] as $beforeClassMethod) { + if (method_exists($this->name, $beforeClassMethod)) { + if ($missingRequirements = TestUtil::getMissingRequirements($this->name, $beforeClassMethod)) { + $this->markTestSuiteSkipped(implode(PHP_EOL, $missingRequirements)); + } + call_user_func([$this->name, $beforeClassMethod]); + } + } + } catch (\PHPUnit\Framework\SkippedTestError|\PHPUnit\Framework\SkippedTestSuiteError $error) { + foreach ($this->tests() as $test) { + $result->startTest($test); + $result->addFailure($test, $error, 0); + $result->endTest($test, 0); + } + $result->endTestSuite($this); + return $result; + } catch (Throwable $t) { + $errorAdded = \false; + foreach ($this->tests() as $test) { + if ($result->shouldStop()) { + break; + } + $result->startTest($test); + if (!$errorAdded) { + $result->addError($test, $t, 0); + $errorAdded = \true; + } else { + $result->addFailure($test, new \PHPUnit\Framework\SkippedTestError('Test skipped because of an error in hook method'), 0); + } + $result->endTest($test, 0); + } + $result->endTestSuite($this); + return $result; } - // @codeCoverageIgnoreEnd - if ($this->expectedException === 'PHPUnit\\Framework\\Exception' || $this->expectedException === '\\PHPUnit\\Framework\\Exception' || $reflector->isSubclassOf(\PHPUnit\Framework\Exception::class)) { - $result = \true; + } + foreach ($this as $test) { + if ($result->shouldStop()) { + break; + } + if ($test instanceof \PHPUnit\Framework\TestCase || $test instanceof self) { + $test->setBeStrictAboutChangesToGlobalState($this->beStrictAboutChangesToGlobalState); + $test->setBackupGlobals($this->backupGlobals); + $test->setBackupStaticAttributes($this->backupStaticAttributes); + $test->setRunTestInSeparateProcess($this->runTestInSeparateProcess); + } + $test->run($result); + } + if ($this->testCase && class_exists($this->name, \false)) { + foreach ($hookMethods['afterClass'] as $afterClassMethod) { + if (method_exists($this->name, $afterClassMethod)) { + try { + call_user_func([$this->name, $afterClassMethod]); + } catch (Throwable $t) { + $message = "Exception in {$this->name}::{$afterClassMethod}" . PHP_EOL . $t->getMessage(); + $error = new \PHPUnit\Framework\SyntheticError($message, 0, $t->getFile(), $t->getLine(), $t->getTrace()); + $placeholderTest = clone $test; + $placeholderTest->setName($afterClassMethod); + $result->startTest($placeholderTest); + $result->addFailure($placeholderTest, $error, 0); + $result->endTest($placeholderTest, 0); + } + } } } + $result->endTestSuite($this); return $result; } - private function runInSeparateProcess() : bool + public function setRunTestInSeparateProcess(bool $runTestInSeparateProcess): void { - return ($this->runTestInSeparateProcess || $this->runClassInSeparateProcess) && !$this->inIsolation && !$this instanceof PhptTestCase; + $this->runTestInSeparateProcess = $runTestInSeparateProcess; } - private function isCallableTestMethod(string $dependency) : bool + public function setName(string $name): void { - [$className, $methodName] = explode('::', $dependency); - if (!class_exists($className)) { - return \false; - } - try { - $class = new ReflectionClass($className); - } catch (ReflectionException $e) { - return \false; - } - if (!$class->isSubclassOf(__CLASS__)) { - return \false; - } - if (!$class->hasMethod($methodName)) { - return \false; - } - try { - $method = $class->getMethod($methodName); - } catch (ReflectionException $e) { - return \false; - } - return TestUtil::isTestMethod($method); + $this->name = $name; } /** - * @psalm-template RealInstanceType of object - * - * @psalm-param class-string $originalClassName + * Returns the tests as an enumeration. * - * @psalm-return MockObject&RealInstanceType + * @return Test[] */ - private function createMockObject(string $originalClassName) : MockObject + public function tests(): array { - return $this->getMockBuilder($originalClassName)->disableOriginalConstructor()->disableOriginalClone()->disableArgumentCloning()->disallowMockingUnknownTypes()->getMock(); + return $this->tests; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -use function get_class; -use function sprintf; -use function trim; -use PHPUnit\Framework\Error\Error; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class TestFailure -{ - /** - * @var null|Test - */ - private $failedTest; - /** - * @var Throwable - */ - private $thrownException; /** - * @var string + * Set tests of the test suite. + * + * @param Test[] $tests */ - private $testName; + public function setTests(array $tests): void + { + $this->tests = $tests; + } /** - * Returns a description for an exception. + * Mark the test suite as skipped. + * + * @param string $message + * + * @throws SkippedTestSuiteError + * + * @psalm-return never-return */ - public static function exceptionToString(Throwable $e) : string + public function markTestSuiteSkipped($message = ''): void { - if ($e instanceof \PHPUnit\Framework\SelfDescribing) { - $buffer = $e->toString(); - if ($e instanceof \PHPUnit\Framework\ExpectationFailedException && $e->getComparisonFailure()) { - $buffer .= $e->getComparisonFailure()->getDiff(); - } - if ($e instanceof \PHPUnit\Framework\PHPTAssertionFailedError) { - $buffer .= $e->getDiff(); - } - if (!empty($buffer)) { - $buffer = trim($buffer) . "\n"; - } - return $buffer; - } - if ($e instanceof Error) { - return $e->getMessage() . "\n"; - } - if ($e instanceof \PHPUnit\Framework\ExceptionWrapper) { - return $e->getClassName() . ': ' . $e->getMessage() . "\n"; + throw new \PHPUnit\Framework\SkippedTestSuiteError($message); + } + /** + * @param bool $beStrictAboutChangesToGlobalState + */ + public function setBeStrictAboutChangesToGlobalState($beStrictAboutChangesToGlobalState): void + { + if (null === $this->beStrictAboutChangesToGlobalState && is_bool($beStrictAboutChangesToGlobalState)) { + $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; } - return get_class($e) . ': ' . $e->getMessage() . "\n"; } /** - * Constructs a TestFailure with the given test and exception. + * @param bool $backupGlobals */ - public function __construct(\PHPUnit\Framework\Test $failedTest, Throwable $t) + public function setBackupGlobals($backupGlobals): void { - if ($failedTest instanceof \PHPUnit\Framework\SelfDescribing) { - $this->testName = $failedTest->toString(); - } else { - $this->testName = get_class($failedTest); - } - if (!$failedTest instanceof \PHPUnit\Framework\TestCase || !$failedTest->isInIsolation()) { - $this->failedTest = $failedTest; + if (null === $this->backupGlobals && is_bool($backupGlobals)) { + $this->backupGlobals = $backupGlobals; } - $this->thrownException = $t; } /** - * Returns a short description of the failure. + * @param bool $backupStaticAttributes */ - public function toString() : string + public function setBackupStaticAttributes($backupStaticAttributes): void { - return sprintf('%s: %s', $this->testName, $this->thrownException->getMessage()); + if (null === $this->backupStaticAttributes && is_bool($backupStaticAttributes)) { + $this->backupStaticAttributes = $backupStaticAttributes; + } } /** - * Returns a description for the thrown exception. + * Returns an iterator for this test suite. */ - public function getExceptionAsString() : string + public function getIterator(): Iterator { - return self::exceptionToString($this->thrownException); + $iterator = new \PHPUnit\Framework\TestSuiteIterator($this); + if ($this->iteratorFilter !== null) { + $iterator = $this->iteratorFilter->factory($iterator, $this); + } + return $iterator; + } + public function injectFilter(Factory $filter): void + { + $this->iteratorFilter = $filter; + foreach ($this as $test) { + if ($test instanceof self) { + $test->injectFilter($filter); + } + } } /** - * Returns the name of the failing test (including data set, if any). + * @psalm-return array */ - public function getTestName() : string + public function warnings(): array { - return $this->testName; + return array_unique($this->warnings); } /** - * Returns the failing test. - * - * Note: The test object is not set when the test is executed in process - * isolation. - * - * @see Exception + * @return list */ - public function failedTest() : ?\PHPUnit\Framework\Test + public function provides(): array { - return $this->failedTest; + if ($this->providedTests === null) { + $this->providedTests = []; + if (is_callable($this->sortId(), \true)) { + $this->providedTests[] = new \PHPUnit\Framework\ExecutionOrderDependency($this->sortId()); + } + foreach ($this->tests as $test) { + if (!$test instanceof \PHPUnit\Framework\Reorderable) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $this->providedTests = \PHPUnit\Framework\ExecutionOrderDependency::mergeUnique($this->providedTests, $test->provides()); + } + } + return $this->providedTests; } /** - * Gets the thrown exception. + * @return list */ - public function thrownException() : Throwable + public function requires(): array { - return $this->thrownException; + if ($this->requiredTests === null) { + $this->requiredTests = []; + foreach ($this->tests as $test) { + if (!$test instanceof \PHPUnit\Framework\Reorderable) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreEnd + } + $this->requiredTests = \PHPUnit\Framework\ExecutionOrderDependency::mergeUnique(\PHPUnit\Framework\ExecutionOrderDependency::filterInvalid($this->requiredTests), $test->requires()); + } + $this->requiredTests = \PHPUnit\Framework\ExecutionOrderDependency::diff($this->requiredTests, $this->provides()); + } + return $this->requiredTests; + } + public function sortId(): string + { + return $this->getName() . '::class'; } /** - * Returns the exception's message. + * Creates a default TestResult object. */ - public function exceptionMessage() : string + protected function createResult(): \PHPUnit\Framework\TestResult { - return $this->thrownException()->getMessage(); + return new \PHPUnit\Framework\TestResult(); } /** - * Returns true if the thrown exception - * is of type AssertionFailedError. + * @throws Exception */ - public function isFailure() : bool + protected function addTestMethod(ReflectionClass $class, ReflectionMethod $method): void { - return $this->thrownException() instanceof \PHPUnit\Framework\AssertionFailedError; + $methodName = $method->getName(); + $test = (new \PHPUnit\Framework\TestBuilder())->build($class, $methodName); + if ($test instanceof \PHPUnit\Framework\TestCase || $test instanceof \PHPUnit\Framework\DataProviderTestSuite) { + $test->setDependencies(TestUtil::getDependencies($class->getName(), $methodName)); + } + $this->addTest($test, TestUtil::getGroups($class->getName(), $methodName)); + } + private function clearCaches(): void + { + $this->numTests = -1; + $this->providedTests = null; + $this->requiredTests = null; + } + private function containsOnlyVirtualGroups(array $groups): bool + { + foreach ($groups as $group) { + if (strpos($group, '__phpunit_') !== 0) { + return \false; + } + } + return \true; } } * - * @deprecated - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -interface TestListener +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface Reorderable { - public function addError(\PHPUnit\Framework\Test $test, Throwable $t, float $time) : void; - public function addWarning(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\Warning $e, float $time) : void; - public function addFailure(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\AssertionFailedError $e, float $time) : void; - public function addIncompleteTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time) : void; - public function addRiskyTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time) : void; - public function addSkippedTest(\PHPUnit\Framework\Test $test, Throwable $t, float $time) : void; - public function startTestSuite(\PHPUnit\Framework\TestSuite $suite) : void; - public function endTestSuite(\PHPUnit\Framework\TestSuite $suite) : void; - public function startTest(\PHPUnit\Framework\Test $test) : void; - public function endTest(\PHPUnit\Framework\Test $test, float $time) : void; + public function sortId(): string; + /** + * @return list + */ + public function provides(): array; + /** + * @return list + */ + public function requires(): array; } - */ - private $passedTestClasses = []; - /** - * @var bool - */ - private $currentTestSuiteFailed = \false; - /** - * @var TestFailure[] - */ - private $errors = []; - /** - * @var TestFailure[] - */ - private $failures = []; - /** - * @var TestFailure[] - */ - private $warnings = []; - /** - * @var TestFailure[] - */ - private $notImplemented = []; - /** - * @var TestFailure[] - */ - private $risky = []; - /** - * @var TestFailure[] - */ - private $skipped = []; - /** - * @deprecated Use the `TestHook` interfaces instead - * - * @var TestListener[] - */ - private $listeners = []; - /** - * @var int - */ - private $runTests = 0; - /** - * @var float - */ - private $time = 0; - /** - * Code Coverage information. - * - * @var CodeCoverage - */ - private $codeCoverage; - /** - * @var bool - */ - private $convertDeprecationsToExceptions = \false; - /** - * @var bool - */ - private $convertErrorsToExceptions = \true; - /** - * @var bool - */ - private $convertNoticesToExceptions = \true; - /** - * @var bool - */ - private $convertWarningsToExceptions = \true; - /** - * @var bool - */ - private $stop = \false; - /** - * @var bool - */ - private $stopOnError = \false; - /** - * @var bool - */ - private $stopOnFailure = \false; - /** - * @var bool - */ - private $stopOnWarning = \false; - /** - * @var bool - */ - private $beStrictAboutTestsThatDoNotTestAnything = \true; - /** - * @var bool - */ - private $beStrictAboutOutputDuringTests = \false; - /** - * @var bool - */ - private $beStrictAboutTodoAnnotatedTests = \false; - /** - * @var bool - */ - private $beStrictAboutResourceUsageDuringSmallTests = \false; - /** - * @var bool - */ - private $enforceTimeLimit = \false; - /** - * @var bool - */ - private $forceCoversAnnotation = \false; - /** - * @var int - */ - private $timeoutForSmallTests = 1; - /** - * @var int - */ - private $timeoutForMediumTests = 10; - /** - * @var int - */ - private $timeoutForLargeTests = 60; - /** - * @var bool - */ - private $stopOnRisky = \false; - /** - * @var bool - */ - private $stopOnIncomplete = \false; - /** - * @var bool - */ - private $stopOnSkipped = \false; - /** - * @var bool - */ - private $lastTestFailed = \false; - /** - * @var int - */ - private $defaultTimeLimit = 0; - /** - * @var bool - */ - private $stopOnDefect = \false; - /** - * @var bool - */ - private $registerMockObjectsFromTestArgumentsRecursively = \false; - /** - * @deprecated Use the `TestHook` interfaces instead - * - * @codeCoverageIgnore - * - * Registers a TestListener. - */ - public function addListener(\PHPUnit\Framework\TestListener $listener) : void - { - $this->listeners[] = $listener; - } - /** - * @deprecated Use the `TestHook` interfaces instead - * - * @codeCoverageIgnore - * - * Unregisters a TestListener. - */ - public function removeListener(\PHPUnit\Framework\TestListener $listener) : void + public function build(ReflectionClass $theClass, string $methodName): \PHPUnit\Framework\Test { - foreach ($this->listeners as $key => $_listener) { - if ($listener === $_listener) { - unset($this->listeners[$key]); - } + $className = $theClass->getName(); + if (!$theClass->isInstantiable()) { + return new \PHPUnit\Framework\ErrorTestCase(sprintf('Cannot instantiate class "%s".', $className)); } - } - /** - * @deprecated Use the `TestHook` interfaces instead - * - * @codeCoverageIgnore - * - * Flushes all flushable TestListeners. - */ - public function flushListeners() : void - { - foreach ($this->listeners as $listener) { - if ($listener instanceof Printer) { - $listener->flush(); - } + $backupSettings = TestUtil::getBackupSettings($className, $methodName); + $preserveGlobalState = TestUtil::getPreserveGlobalStateSettings($className, $methodName); + $runTestInSeparateProcess = TestUtil::getProcessIsolationSettings($className, $methodName); + $runClassInSeparateProcess = TestUtil::getClassProcessIsolationSettings($className, $methodName); + $constructor = $theClass->getConstructor(); + if ($constructor === null) { + throw new \PHPUnit\Framework\Exception('No valid test provided.'); } - } - /** - * Adds an error to the list of errors. - */ - public function addError(\PHPUnit\Framework\Test $test, Throwable $t, float $time) : void - { - if ($t instanceof \PHPUnit\Framework\RiskyTestError) { - $this->recordRisky($test, $t); - $notifyMethod = 'addRiskyTest'; - if ($test instanceof \PHPUnit\Framework\TestCase) { - $test->markAsRisky(); - } - if ($this->stopOnRisky || $this->stopOnDefect) { - $this->stop(); - } - } elseif ($t instanceof \PHPUnit\Framework\IncompleteTest) { - $this->recordNotImplemented($test, $t); - $notifyMethod = 'addIncompleteTest'; - if ($this->stopOnIncomplete) { - $this->stop(); - } - } elseif ($t instanceof \PHPUnit\Framework\SkippedTest) { - $this->recordSkipped($test, $t); - $notifyMethod = 'addSkippedTest'; - if ($this->stopOnSkipped) { - $this->stop(); - } + $parameters = $constructor->getParameters(); + // TestCase() or TestCase($name) + if (count($parameters) < 2) { + $test = $this->buildTestWithoutData($className); } else { - $this->recordError($test, $t); - $notifyMethod = 'addError'; - if ($this->stopOnError || $this->stopOnFailure) { - $this->stop(); - } - } - // @see https://github.com/sebastianbergmann/phpunit/issues/1953 - if ($t instanceof Error) { - $t = new \PHPUnit\Framework\ExceptionWrapper($t); - } - foreach ($this->listeners as $listener) { - $listener->{$notifyMethod}($test, $t, $time); - } - $this->lastTestFailed = \true; - $this->time += $time; - } - /** - * Adds a warning to the list of warnings. - * The passed in exception caused the warning. - */ - public function addWarning(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\Warning $e, float $time) : void - { - if ($this->stopOnWarning || $this->stopOnDefect) { - $this->stop(); - } - $this->recordWarning($test, $e); - foreach ($this->listeners as $listener) { - $listener->addWarning($test, $e, $time); - } - $this->time += $time; - } - /** - * Adds a failure to the list of failures. - * The passed in exception caused the failure. - */ - public function addFailure(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\AssertionFailedError $e, float $time) : void - { - if ($e instanceof \PHPUnit\Framework\RiskyTestError || $e instanceof \PHPUnit\Framework\OutputError) { - $this->recordRisky($test, $e); - $notifyMethod = 'addRiskyTest'; - if ($test instanceof \PHPUnit\Framework\TestCase) { - $test->markAsRisky(); - } - if ($this->stopOnRisky || $this->stopOnDefect) { - $this->stop(); - } - } elseif ($e instanceof \PHPUnit\Framework\IncompleteTest) { - $this->recordNotImplemented($test, $e); - $notifyMethod = 'addIncompleteTest'; - if ($this->stopOnIncomplete) { - $this->stop(); - } - } elseif ($e instanceof \PHPUnit\Framework\SkippedTest) { - $this->recordSkipped($test, $e); - $notifyMethod = 'addSkippedTest'; - if ($this->stopOnSkipped) { - $this->stop(); + try { + $data = TestUtil::getProvidedData($className, $methodName); + } catch (\PHPUnit\Framework\IncompleteTestError $e) { + $message = sprintf("Test for %s::%s marked incomplete by data provider\n%s", $className, $methodName, $this->throwableToString($e)); + $data = new \PHPUnit\Framework\IncompleteTestCase($className, $methodName, $message); + } catch (\PHPUnit\Framework\SkippedTestError $e) { + $message = sprintf("Test for %s::%s skipped by data provider\n%s", $className, $methodName, $this->throwableToString($e)); + $data = new \PHPUnit\Framework\SkippedTestCase($className, $methodName, $message); + } catch (Throwable $t) { + $message = sprintf("The data provider specified for %s::%s is invalid.\n%s", $className, $methodName, $this->throwableToString($t)); + $data = new \PHPUnit\Framework\ErrorTestCase($message); } - } else { - $this->failures[] = new \PHPUnit\Framework\TestFailure($test, $e); - $notifyMethod = 'addFailure'; - if ($this->stopOnFailure || $this->stopOnDefect) { - $this->stop(); + // Test method with @dataProvider. + if (isset($data)) { + $test = $this->buildDataProviderTestSuite($methodName, $className, $data, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); + } else { + $test = $this->buildTestWithoutData($className); } } - foreach ($this->listeners as $listener) { - $listener->{$notifyMethod}($test, $e, $time); - } - $this->lastTestFailed = \true; - $this->time += $time; - } - /** - * Informs the result that a test suite will be started. - */ - public function startTestSuite(\PHPUnit\Framework\TestSuite $suite) : void - { - $this->currentTestSuiteFailed = \false; - foreach ($this->listeners as $listener) { - $listener->startTestSuite($suite); - } + if ($test instanceof \PHPUnit\Framework\TestCase) { + $test->setName($methodName); + $this->configureTestCase($test, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); + } + return $test; } - /** - * Informs the result that a test suite was completed. - */ - public function endTestSuite(\PHPUnit\Framework\TestSuite $suite) : void + /** @psalm-param class-string $className */ + private function buildTestWithoutData(string $className) { - if (!$this->currentTestSuiteFailed) { - $this->passedTestClasses[] = $suite->getName(); - } - foreach ($this->listeners as $listener) { - $listener->endTestSuite($suite); - } + return new $className(); } - /** - * Informs the result that a test will be started. - */ - public function startTest(\PHPUnit\Framework\Test $test) : void + /** @psalm-param class-string $className */ + private function buildDataProviderTestSuite(string $methodName, string $className, $data, bool $runTestInSeparateProcess, ?bool $preserveGlobalState, bool $runClassInSeparateProcess, array $backupSettings): \PHPUnit\Framework\DataProviderTestSuite { - $this->lastTestFailed = \false; - $this->runTests += count($test); - foreach ($this->listeners as $listener) { - $listener->startTest($test); + $dataProviderTestSuite = new \PHPUnit\Framework\DataProviderTestSuite($className . '::' . $methodName); + $groups = TestUtil::getGroups($className, $methodName); + if ($data instanceof \PHPUnit\Framework\ErrorTestCase || $data instanceof \PHPUnit\Framework\SkippedTestCase || $data instanceof \PHPUnit\Framework\IncompleteTestCase) { + $dataProviderTestSuite->addTest($data, $groups); + } else { + foreach ($data as $_dataName => $_data) { + $_test = new $className($methodName, $_data, $_dataName); + assert($_test instanceof \PHPUnit\Framework\TestCase); + $this->configureTestCase($_test, $runTestInSeparateProcess, $preserveGlobalState, $runClassInSeparateProcess, $backupSettings); + $dataProviderTestSuite->addTest($_test, $groups); + } } + return $dataProviderTestSuite; } - /** - * Informs the result that a test was completed. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function endTest(\PHPUnit\Framework\Test $test, float $time) : void + private function configureTestCase(\PHPUnit\Framework\TestCase $test, bool $runTestInSeparateProcess, ?bool $preserveGlobalState, bool $runClassInSeparateProcess, array $backupSettings): void { - foreach ($this->listeners as $listener) { - $listener->endTest($test, $time); + if ($runTestInSeparateProcess) { + $test->setRunTestInSeparateProcess(\true); + if ($preserveGlobalState !== null) { + $test->setPreserveGlobalState($preserveGlobalState); + } } - if (!$this->lastTestFailed && $test instanceof \PHPUnit\Framework\TestCase) { - $class = get_class($test); - $key = $class . '::' . $test->getName(); - $this->passed[$key] = ['result' => $test->getResult(), 'size' => TestUtil::getSize($class, $test->getName(\false))]; - $this->time += $time; + if ($runClassInSeparateProcess) { + $test->setRunClassInSeparateProcess(\true); + if ($preserveGlobalState !== null) { + $test->setPreserveGlobalState($preserveGlobalState); + } } - if ($this->lastTestFailed && $test instanceof \PHPUnit\Framework\TestCase) { - $this->currentTestSuiteFailed = \true; + if ($backupSettings['backupGlobals'] !== null) { + $test->setBackupGlobals($backupSettings['backupGlobals']); + } + if ($backupSettings['backupStaticAttributes'] !== null) { + $test->setBackupStaticAttributes($backupSettings['backupStaticAttributes']); } } - /** - * Returns true if no risky test occurred. - */ - public function allHarmless() : bool - { - return $this->riskyCount() === 0; - } - /** - * Gets the number of risky tests. - */ - public function riskyCount() : int - { - return count($this->risky); - } - /** - * Returns true if no incomplete test occurred. - */ - public function allCompletelyImplemented() : bool - { - return $this->notImplementedCount() === 0; - } - /** - * Gets the number of incomplete tests. - */ - public function notImplementedCount() : int - { - return count($this->notImplemented); - } - /** - * Returns an array of TestFailure objects for the risky tests. - * - * @return TestFailure[] - */ - public function risky() : array - { - return $this->risky; - } - /** - * Returns an array of TestFailure objects for the incomplete tests. - * - * @return TestFailure[] - */ - public function notImplemented() : array - { - return $this->notImplemented; - } - /** - * Returns true if no test has been skipped. - */ - public function noneSkipped() : bool - { - return $this->skippedCount() === 0; - } - /** - * Gets the number of skipped tests. - */ - public function skippedCount() : int - { - return count($this->skipped); - } - /** - * Returns an array of TestFailure objects for the skipped tests. - * - * @return TestFailure[] - */ - public function skipped() : array + private function throwableToString(Throwable $t): string { - return $this->skipped; + $message = $t->getMessage(); + if (empty(trim($message))) { + $message = ''; + } + if ($t instanceof InvalidDataSetException) { + return sprintf("%s\n%s", $message, Filter::getFilteredStacktrace($t)); + } + return sprintf("%s: %s\n%s", get_class($t), $message, Filter::getFilteredStacktrace($t)); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use const PHP_VERSION_ID; +use function array_keys; +use function get_class; +use function spl_object_hash; +use PHPUnit\Util\Filter; +use Throwable; +use WeakReference; +/** + * Wraps Exceptions thrown by code under test. + * + * Re-instantiates Exceptions thrown by user-space code to retain their original + * class names, properties, and stack traces (but without arguments). + * + * Unlike PHPUnit\Framework\Exception, the complete stack of previous Exceptions + * is processed. + * + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ExceptionWrapper extends \PHPUnit\Framework\Exception +{ /** - * Gets the number of detected errors. + * @var string */ - public function errorCount() : int - { - return count($this->errors); - } + protected $className; /** - * Returns an array of TestFailure objects for the errors. - * - * @return TestFailure[] + * @var null|ExceptionWrapper */ - public function errors() : array - { - return $this->errors; - } + protected $previous; /** - * Gets the number of detected failures. + * @var null|WeakReference */ - public function failureCount() : int + private $originalException; + public function __construct(Throwable $t) { - return count($this->failures); + // PDOException::getCode() is a string. + // @see https://php.net/manual/en/class.pdoexception.php#95812 + parent::__construct($t->getMessage(), (int) $t->getCode()); + $this->setOriginalException($t); } - /** - * Returns an array of TestFailure objects for the failures. - * - * @return TestFailure[] - */ - public function failures() : array + public function __toString(): string { - return $this->failures; + $string = \PHPUnit\Framework\TestFailure::exceptionToString($this); + if ($trace = Filter::getFilteredStacktrace($this)) { + $string .= "\n" . $trace; + } + if ($this->previous) { + $string .= "\nCaused by\n" . $this->previous; + } + return $string; } - /** - * Gets the number of detected warnings. - */ - public function warningCount() : int + public function getClassName(): string { - return count($this->warnings); + return $this->className; } - /** - * Returns an array of TestFailure objects for the warnings. - * - * @return TestFailure[] - */ - public function warnings() : array + public function getPreviousWrapped(): ?self { - return $this->warnings; + return $this->previous; } - /** - * Returns the names of the tests that have passed. - */ - public function passed() : array + public function setClassName(string $className): void { - return $this->passed; + $this->className = $className; } - /** - * Returns the names of the TestSuites that have passed. - * - * This enables @depends-annotations for TestClassName::class - */ - public function passedClasses() : array + public function setOriginalException(Throwable $t): void { - return $this->passedTestClasses; + $this->originalException($t); + $this->className = get_class($t); + $this->file = $t->getFile(); + $this->line = $t->getLine(); + $this->serializableTrace = $t->getTrace(); + foreach (array_keys($this->serializableTrace) as $key) { + unset($this->serializableTrace[$key]['args']); + } + if ($t->getPrevious()) { + $this->previous = new self($t->getPrevious()); + } } - /** - * Returns whether code coverage information should be collected. - */ - public function getCollectCodeCoverageInformation() : bool + public function getOriginalException(): ?Throwable { - return $this->codeCoverage !== null; + return $this->originalException(); } /** - * Runs a TestCase. + * Method to contain static originalException to exclude it from stacktrace to prevent the stacktrace contents, + * which can be quite big, from being garbage-collected, thus blocking memory until shutdown. * - * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws CodeCoverageException - * @throws UnintentionallyCoveredCodeException + * Approach works both for var_dump() and var_export() and print_r(). */ - public function run(\PHPUnit\Framework\Test $test) : void + private function originalException(?Throwable $exceptionToStore = null): ?Throwable { - \PHPUnit\Framework\Assert::resetCount(); - $size = TestUtil::UNKNOWN; - if ($test instanceof \PHPUnit\Framework\TestCase) { - $test->setRegisterMockObjectsFromTestArgumentsRecursively($this->registerMockObjectsFromTestArgumentsRecursively); - $isAnyCoverageRequired = TestUtil::requiresCodeCoverageDataCollection($test); - $size = $test->getSize(); - } - $error = \false; - $failure = \false; - $warning = \false; - $incomplete = \false; - $risky = \false; - $skipped = \false; - $this->startTest($test); - if ($this->convertDeprecationsToExceptions || $this->convertErrorsToExceptions || $this->convertNoticesToExceptions || $this->convertWarningsToExceptions) { - $errorHandler = new ErrorHandler($this->convertDeprecationsToExceptions, $this->convertErrorsToExceptions, $this->convertNoticesToExceptions, $this->convertWarningsToExceptions); - $errorHandler->register(); - } - $collectCodeCoverage = $this->codeCoverage !== null && !$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $isAnyCoverageRequired; - if ($collectCodeCoverage) { - $this->codeCoverage->start($test); - } - $monitorFunctions = $this->beStrictAboutResourceUsageDuringSmallTests && !$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $size === TestUtil::SMALL && function_exists('xdebug_start_function_monitor'); - if ($monitorFunctions) { - /* @noinspection ForgottenDebugOutputInspection */ - xdebug_start_function_monitor(ResourceOperations::getFunctions()); - } - $timer = new Timer(); - $timer->start(); - try { - $invoker = new Invoker(); - if (!$test instanceof \PHPUnit\Framework\ErrorTestCase && !$test instanceof \PHPUnit\Framework\WarningTestCase && $this->shouldTimeLimitBeEnforced($size) && $invoker->canInvokeWithTimeout()) { - switch ($size) { - case TestUtil::SMALL: - $_timeout = $this->timeoutForSmallTests; - break; - case TestUtil::MEDIUM: - $_timeout = $this->timeoutForMediumTests; - break; - case TestUtil::LARGE: - $_timeout = $this->timeoutForLargeTests; - break; - default: - $_timeout = $this->defaultTimeLimit; - } - $invoker->invoke([$test, 'runBare'], [], $_timeout); - } else { - $test->runBare(); - } - } catch (TimeoutException $e) { - $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError($e->getMessage()), $_timeout); - $risky = \true; - } catch (\PHPUnit\Framework\AssertionFailedError $e) { - $failure = \true; - if ($e instanceof \PHPUnit\Framework\RiskyTestError) { - $risky = \true; - } elseif ($e instanceof \PHPUnit\Framework\IncompleteTestError) { - $incomplete = \true; - } elseif ($e instanceof \PHPUnit\Framework\SkippedTestError) { - $skipped = \true; - } - } catch (AssertionError $e) { - $test->addToAssertionCount(1); - $failure = \true; - $frame = $e->getTrace()[0]; - $e = new \PHPUnit\Framework\AssertionFailedError(sprintf('%s in %s:%s', $e->getMessage(), $frame['file'] ?? $e->getFile(), $frame['line'] ?? $e->getLine()), 0, $e); - } catch (\PHPUnit\Framework\Warning $e) { - $warning = \true; - } catch (\PHPUnit\Framework\Exception $e) { - $error = \true; - } catch (Throwable $e) { - $e = new \PHPUnit\Framework\ExceptionWrapper($e); - $error = \true; - } - $time = $timer->stop()->asSeconds(); - $test->addToAssertionCount(\PHPUnit\Framework\Assert::getCount()); - if ($monitorFunctions) { - $excludeList = new ExcludeList(); - /** @noinspection ForgottenDebugOutputInspection */ - $functions = xdebug_get_monitored_functions(); - /* @noinspection ForgottenDebugOutputInspection */ - xdebug_stop_function_monitor(); - foreach ($functions as $function) { - if (!$excludeList->isExcluded($function['filename'])) { - $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf('%s() used in %s:%s', $function['function'], $function['filename'], $function['lineno'])), $time); - } - } - } - if ($this->beStrictAboutTestsThatDoNotTestAnything && $test->getNumAssertions() === 0) { - $risky = \true; - } - if ($this->forceCoversAnnotation && !$error && !$failure && !$warning && !$incomplete && !$skipped && !$risky) { - $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); - if (!isset($annotations['class']['covers']) && !isset($annotations['method']['covers']) && !isset($annotations['class']['coversNothing']) && !isset($annotations['method']['coversNothing'])) { - $this->addFailure($test, new \PHPUnit\Framework\MissingCoversAnnotationException('This test does not have a @covers annotation but is expected to have one'), $time); - $risky = \true; - } - } - if ($collectCodeCoverage) { - $append = !$risky && !$incomplete && !$skipped; - $linesToBeCovered = []; - $linesToBeUsed = []; - if ($append && $test instanceof \PHPUnit\Framework\TestCase) { - try { - $linesToBeCovered = TestUtil::getLinesToBeCovered(get_class($test), $test->getName(\false)); - $linesToBeUsed = TestUtil::getLinesToBeUsed(get_class($test), $test->getName(\false)); - } catch (\PHPUnit\Framework\InvalidCoversTargetException $cce) { - $this->addWarning($test, new \PHPUnit\Framework\Warning($cce->getMessage()), $time); - } - } - try { - $this->codeCoverage->stop($append, $linesToBeCovered, $linesToBeUsed); - } catch (UnintentionallyCoveredCodeException $cce) { - $unintentionallyCoveredCodeError = new \PHPUnit\Framework\UnintentionallyCoveredCodeError('This test executed code that is not listed as code to be covered or used:' . PHP_EOL . $cce->getMessage()); - } catch (OriginalCodeCoverageException $cce) { - $error = \true; - $e = $e ?? $cce; + // drop once PHP 7.3 support is removed + if (PHP_VERSION_ID < 70400) { + static $originalExceptions; + $instanceId = spl_object_hash($this); + if ($exceptionToStore) { + $originalExceptions[$instanceId] = $exceptionToStore; } + return $originalExceptions[$instanceId] ?? null; } - if (isset($errorHandler)) { - $errorHandler->unregister(); - unset($errorHandler); - } - if ($error) { - $this->addError($test, $e, $time); - } elseif ($failure) { - $this->addFailure($test, $e, $time); - } elseif ($warning) { - $this->addWarning($test, $e, $time); - } elseif (isset($unintentionallyCoveredCodeError)) { - $this->addFailure($test, $unintentionallyCoveredCodeError, $time); - } elseif ($this->beStrictAboutTestsThatDoNotTestAnything && !$test->doesNotPerformAssertions() && $test->getNumAssertions() === 0) { - try { - $reflected = new ReflectionClass($test); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $name = $test->getName(\false); - if ($name && $reflected->hasMethod($name)) { - try { - $reflected = $reflected->getMethod($name); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - } - $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf("This test did not perform any assertions\n\n%s:%d", $reflected->getFileName(), $reflected->getStartLine())), $time); - } elseif ($this->beStrictAboutTestsThatDoNotTestAnything && $test->doesNotPerformAssertions() && $test->getNumAssertions() > 0) { - $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError(sprintf('This test is annotated with "@doesNotPerformAssertions" but performed %d assertions', $test->getNumAssertions())), $time); - } elseif ($this->beStrictAboutOutputDuringTests && $test->hasOutput()) { - $this->addFailure($test, new \PHPUnit\Framework\OutputError(sprintf('This test printed output: %s', $test->getActualOutput())), $time); - } elseif ($this->beStrictAboutTodoAnnotatedTests && $test instanceof \PHPUnit\Framework\TestCase) { - $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); - if (isset($annotations['method']['todo'])) { - $this->addFailure($test, new \PHPUnit\Framework\RiskyTestError('Test method is annotated with @todo'), $time); - } + if ($exceptionToStore) { + $this->originalException = WeakReference::create($exceptionToStore); } - $this->endTest($test, $time); - } - /** - * Gets the number of run tests. - */ - public function count() : int - { - return $this->runTests; - } - /** - * Checks whether the test run should stop. - */ - public function shouldStop() : bool - { - return $this->stop; - } - /** - * Marks that the test run should stop. - */ - public function stop() : void - { - $this->stop = \true; + return $this->originalException !== null ? $this->originalException->get() : null; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvalidParameterGroupException extends \PHPUnit\Framework\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function func_get_args; +use function function_exists; +use ArrayAccess; +use Countable; +use DOMDocument; +use DOMElement; +use PHPUnit\Framework\Constraint\ArrayHasKey; +use PHPUnit\Framework\Constraint\Callback; +use PHPUnit\Framework\Constraint\ClassHasAttribute; +use PHPUnit\Framework\Constraint\ClassHasStaticAttribute; +use PHPUnit\Framework\Constraint\Constraint; +use PHPUnit\Framework\Constraint\Count; +use PHPUnit\Framework\Constraint\DirectoryExists; +use PHPUnit\Framework\Constraint\FileExists; +use PHPUnit\Framework\Constraint\GreaterThan; +use PHPUnit\Framework\Constraint\IsAnything; +use PHPUnit\Framework\Constraint\IsEmpty; +use PHPUnit\Framework\Constraint\IsEqual; +use PHPUnit\Framework\Constraint\IsEqualCanonicalizing; +use PHPUnit\Framework\Constraint\IsEqualIgnoringCase; +use PHPUnit\Framework\Constraint\IsEqualWithDelta; +use PHPUnit\Framework\Constraint\IsFalse; +use PHPUnit\Framework\Constraint\IsFinite; +use PHPUnit\Framework\Constraint\IsIdentical; +use PHPUnit\Framework\Constraint\IsInfinite; +use PHPUnit\Framework\Constraint\IsInstanceOf; +use PHPUnit\Framework\Constraint\IsJson; +use PHPUnit\Framework\Constraint\IsNan; +use PHPUnit\Framework\Constraint\IsNull; +use PHPUnit\Framework\Constraint\IsReadable; +use PHPUnit\Framework\Constraint\IsTrue; +use PHPUnit\Framework\Constraint\IsType; +use PHPUnit\Framework\Constraint\IsWritable; +use PHPUnit\Framework\Constraint\LessThan; +use PHPUnit\Framework\Constraint\LogicalAnd; +use PHPUnit\Framework\Constraint\LogicalNot; +use PHPUnit\Framework\Constraint\LogicalOr; +use PHPUnit\Framework\Constraint\LogicalXor; +use PHPUnit\Framework\Constraint\ObjectEquals; +use PHPUnit\Framework\Constraint\ObjectHasAttribute; +use PHPUnit\Framework\Constraint\RegularExpression; +use PHPUnit\Framework\Constraint\StringContains; +use PHPUnit\Framework\Constraint\StringEndsWith; +use PHPUnit\Framework\Constraint\StringMatchesFormatDescription; +use PHPUnit\Framework\Constraint\StringStartsWith; +use PHPUnit\Framework\Constraint\TraversableContainsEqual; +use PHPUnit\Framework\Constraint\TraversableContainsIdentical; +use PHPUnit\Framework\Constraint\TraversableContainsOnly; +use PHPUnit\Framework\MockObject\Rule\AnyInvokedCount as AnyInvokedCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtIndex as InvokedAtIndexMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastCount as InvokedAtLeastCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastOnce as InvokedAtLeastOnceMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtMostCount as InvokedAtMostCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedCount as InvokedCountMatcher; +use PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls as ConsecutiveCallsStub; +use PHPUnit\Framework\MockObject\Stub\Exception as ExceptionStub; +use PHPUnit\Framework\MockObject\Stub\ReturnArgument as ReturnArgumentStub; +use PHPUnit\Framework\MockObject\Stub\ReturnCallback as ReturnCallbackStub; +use PHPUnit\Framework\MockObject\Stub\ReturnSelf as ReturnSelfStub; +use PHPUnit\Framework\MockObject\Stub\ReturnStub; +use PHPUnit\Framework\MockObject\Stub\ReturnValueMap as ReturnValueMapStub; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +use Throwable; +if (!function_exists('PHPUnit\Framework\assertArrayHasKey')) { /** - * Returns the code coverage object. + * Asserts that an array has a specified key. + * + * @param int|string $key + * @param array|ArrayAccess $array + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertArrayHasKey */ - public function getCodeCoverage() : ?CodeCoverage + function assertArrayHasKey($key, $array, string $message = ''): void { - return $this->codeCoverage; + \PHPUnit\Framework\Assert::assertArrayHasKey(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertArrayNotHasKey')) { /** - * Sets the code coverage object. + * Asserts that an array does not have a specified key. + * + * @param int|string $key + * @param array|ArrayAccess $array + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertArrayNotHasKey */ - public function setCodeCoverage(CodeCoverage $codeCoverage) : void + function assertArrayNotHasKey($key, $array, string $message = ''): void { - $this->codeCoverage = $codeCoverage; + \PHPUnit\Framework\Assert::assertArrayNotHasKey(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertContains')) { /** - * Enables or disables the deprecation-to-exception conversion. + * Asserts that a haystack contains a needle. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertContains */ - public function convertDeprecationsToExceptions(bool $flag) : void + function assertContains($needle, iterable $haystack, string $message = ''): void { - $this->convertDeprecationsToExceptions = $flag; + \PHPUnit\Framework\Assert::assertContains(...func_get_args()); } - /** - * Returns the deprecation-to-exception conversion setting. - */ - public function getConvertDeprecationsToExceptions() : bool +} +if (!function_exists('PHPUnit\Framework\assertContainsEquals')) { + function assertContainsEquals($needle, iterable $haystack, string $message = ''): void { - return $this->convertDeprecationsToExceptions; + \PHPUnit\Framework\Assert::assertContainsEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotContains')) { /** - * Enables or disables the error-to-exception conversion. + * Asserts that a haystack does not contain a needle. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotContains */ - public function convertErrorsToExceptions(bool $flag) : void + function assertNotContains($needle, iterable $haystack, string $message = ''): void { - $this->convertErrorsToExceptions = $flag; + \PHPUnit\Framework\Assert::assertNotContains(...func_get_args()); } - /** - * Returns the error-to-exception conversion setting. - */ - public function getConvertErrorsToExceptions() : bool +} +if (!function_exists('PHPUnit\Framework\assertNotContainsEquals')) { + function assertNotContainsEquals($needle, iterable $haystack, string $message = ''): void { - return $this->convertErrorsToExceptions; + \PHPUnit\Framework\Assert::assertNotContainsEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertContainsOnly')) { /** - * Enables or disables the notice-to-exception conversion. + * Asserts that a haystack contains only values of a given type. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertContainsOnly */ - public function convertNoticesToExceptions(bool $flag) : void + function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void { - $this->convertNoticesToExceptions = $flag; + \PHPUnit\Framework\Assert::assertContainsOnly(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertContainsOnlyInstancesOf')) { /** - * Returns the notice-to-exception conversion setting. + * Asserts that a haystack contains only instances of a given class name. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertContainsOnlyInstancesOf */ - public function getConvertNoticesToExceptions() : bool + function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = ''): void { - return $this->convertNoticesToExceptions; + \PHPUnit\Framework\Assert::assertContainsOnlyInstancesOf(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotContainsOnly')) { /** - * Enables or disables the warning-to-exception conversion. + * Asserts that a haystack does not contain only values of a given type. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotContainsOnly */ - public function convertWarningsToExceptions(bool $flag) : void + function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void { - $this->convertWarningsToExceptions = $flag; + \PHPUnit\Framework\Assert::assertNotContainsOnly(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertCount')) { /** - * Returns the warning-to-exception conversion setting. + * Asserts the number of elements of an array, Countable or Traversable. + * + * @param Countable|iterable $haystack + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertCount */ - public function getConvertWarningsToExceptions() : bool + function assertCount(int $expectedCount, $haystack, string $message = ''): void { - return $this->convertWarningsToExceptions; + \PHPUnit\Framework\Assert::assertCount(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotCount')) { /** - * Enables or disables the stopping when an error occurs. + * Asserts the number of elements of an array, Countable or Traversable. + * + * @param Countable|iterable $haystack + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotCount */ - public function stopOnError(bool $flag) : void + function assertNotCount(int $expectedCount, $haystack, string $message = ''): void { - $this->stopOnError = $flag; + \PHPUnit\Framework\Assert::assertNotCount(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertEquals')) { /** - * Enables or disables the stopping when a failure occurs. + * Asserts that two variables are equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEquals */ - public function stopOnFailure(bool $flag) : void + function assertEquals($expected, $actual, string $message = ''): void { - $this->stopOnFailure = $flag; + \PHPUnit\Framework\Assert::assertEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertEqualsCanonicalizing')) { /** - * Enables or disables the stopping when a warning occurs. + * Asserts that two variables are equal (canonicalizing). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEqualsCanonicalizing */ - public function stopOnWarning(bool $flag) : void - { - $this->stopOnWarning = $flag; - } - public function beStrictAboutTestsThatDoNotTestAnything(bool $flag) : void - { - $this->beStrictAboutTestsThatDoNotTestAnything = $flag; - } - public function isStrictAboutTestsThatDoNotTestAnything() : bool - { - return $this->beStrictAboutTestsThatDoNotTestAnything; - } - public function beStrictAboutOutputDuringTests(bool $flag) : void - { - $this->beStrictAboutOutputDuringTests = $flag; - } - public function isStrictAboutOutputDuringTests() : bool - { - return $this->beStrictAboutOutputDuringTests; - } - public function beStrictAboutResourceUsageDuringSmallTests(bool $flag) : void - { - $this->beStrictAboutResourceUsageDuringSmallTests = $flag; - } - public function isStrictAboutResourceUsageDuringSmallTests() : bool - { - return $this->beStrictAboutResourceUsageDuringSmallTests; - } - public function enforceTimeLimit(bool $flag) : void - { - $this->enforceTimeLimit = $flag; - } - public function enforcesTimeLimit() : bool - { - return $this->enforceTimeLimit; - } - public function beStrictAboutTodoAnnotatedTests(bool $flag) : void - { - $this->beStrictAboutTodoAnnotatedTests = $flag; - } - public function isStrictAboutTodoAnnotatedTests() : bool - { - return $this->beStrictAboutTodoAnnotatedTests; - } - public function forceCoversAnnotation() : void - { - $this->forceCoversAnnotation = \true; - } - public function forcesCoversAnnotation() : bool + function assertEqualsCanonicalizing($expected, $actual, string $message = ''): void { - return $this->forceCoversAnnotation; + \PHPUnit\Framework\Assert::assertEqualsCanonicalizing(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertEqualsIgnoringCase')) { /** - * Enables or disables the stopping for risky tests. + * Asserts that two variables are equal (ignoring case). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEqualsIgnoringCase */ - public function stopOnRisky(bool $flag) : void + function assertEqualsIgnoringCase($expected, $actual, string $message = ''): void { - $this->stopOnRisky = $flag; + \PHPUnit\Framework\Assert::assertEqualsIgnoringCase(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertEqualsWithDelta')) { /** - * Enables or disables the stopping for incomplete tests. + * Asserts that two variables are equal (with delta). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEqualsWithDelta */ - public function stopOnIncomplete(bool $flag) : void + function assertEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void { - $this->stopOnIncomplete = $flag; + \PHPUnit\Framework\Assert::assertEqualsWithDelta(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotEquals')) { /** - * Enables or disables the stopping for skipped tests. + * Asserts that two variables are not equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotEquals */ - public function stopOnSkipped(bool $flag) : void + function assertNotEquals($expected, $actual, string $message = ''): void { - $this->stopOnSkipped = $flag; + \PHPUnit\Framework\Assert::assertNotEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotEqualsCanonicalizing')) { /** - * Enables or disables the stopping for defects: error, failure, warning. + * Asserts that two variables are not equal (canonicalizing). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotEqualsCanonicalizing */ - public function stopOnDefect(bool $flag) : void + function assertNotEqualsCanonicalizing($expected, $actual, string $message = ''): void { - $this->stopOnDefect = $flag; + \PHPUnit\Framework\Assert::assertNotEqualsCanonicalizing(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotEqualsIgnoringCase')) { /** - * Returns the time spent running the tests. + * Asserts that two variables are not equal (ignoring case). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotEqualsIgnoringCase */ - public function time() : float + function assertNotEqualsIgnoringCase($expected, $actual, string $message = ''): void { - return $this->time; + \PHPUnit\Framework\Assert::assertNotEqualsIgnoringCase(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotEqualsWithDelta')) { /** - * Returns whether the entire test was successful or not. + * Asserts that two variables are not equal (with delta). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotEqualsWithDelta */ - public function wasSuccessful() : bool - { - return $this->wasSuccessfulIgnoringWarnings() && empty($this->warnings); - } - public function wasSuccessfulIgnoringWarnings() : bool + function assertNotEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void { - return empty($this->errors) && empty($this->failures); - } - public function wasSuccessfulAndNoTestIsRiskyOrSkippedOrIncomplete() : bool - { - return $this->wasSuccessful() && $this->allHarmless() && $this->allCompletelyImplemented() && $this->noneSkipped(); + \PHPUnit\Framework\Assert::assertNotEqualsWithDelta(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertObjectEquals')) { /** - * Sets the default timeout for tests. + * @throws ExpectationFailedException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertObjectEquals */ - public function setDefaultTimeLimit(int $timeout) : void + function assertObjectEquals(object $expected, object $actual, string $method = 'equals', string $message = ''): void { - $this->defaultTimeLimit = $timeout; + \PHPUnit\Framework\Assert::assertObjectEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertEmpty')) { /** - * Sets the timeout for small tests. + * Asserts that a variable is empty. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert empty $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEmpty */ - public function setTimeoutForSmallTests(int $timeout) : void + function assertEmpty($actual, string $message = ''): void { - $this->timeoutForSmallTests = $timeout; + \PHPUnit\Framework\Assert::assertEmpty(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotEmpty')) { /** - * Sets the timeout for medium tests. + * Asserts that a variable is not empty. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !empty $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotEmpty */ - public function setTimeoutForMediumTests(int $timeout) : void + function assertNotEmpty($actual, string $message = ''): void { - $this->timeoutForMediumTests = $timeout; + \PHPUnit\Framework\Assert::assertNotEmpty(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertGreaterThan')) { /** - * Sets the timeout for large tests. + * Asserts that a value is greater than another value. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertGreaterThan */ - public function setTimeoutForLargeTests(int $timeout) : void + function assertGreaterThan($expected, $actual, string $message = ''): void { - $this->timeoutForLargeTests = $timeout; + \PHPUnit\Framework\Assert::assertGreaterThan(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertGreaterThanOrEqual')) { /** - * Returns the set timeout for large tests. + * Asserts that a value is greater than or equal to another value. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertGreaterThanOrEqual */ - public function getTimeoutForLargeTests() : int - { - return $this->timeoutForLargeTests; - } - public function setRegisterMockObjectsFromTestArgumentsRecursively(bool $flag) : void - { - $this->registerMockObjectsFromTestArgumentsRecursively = $flag; - } - private function recordError(\PHPUnit\Framework\Test $test, Throwable $t) : void - { - $this->errors[] = new \PHPUnit\Framework\TestFailure($test, $t); - } - private function recordNotImplemented(\PHPUnit\Framework\Test $test, Throwable $t) : void - { - $this->notImplemented[] = new \PHPUnit\Framework\TestFailure($test, $t); - } - private function recordRisky(\PHPUnit\Framework\Test $test, Throwable $t) : void - { - $this->risky[] = new \PHPUnit\Framework\TestFailure($test, $t); - } - private function recordSkipped(\PHPUnit\Framework\Test $test, Throwable $t) : void - { - $this->skipped[] = new \PHPUnit\Framework\TestFailure($test, $t); - } - private function recordWarning(\PHPUnit\Framework\Test $test, Throwable $t) : void - { - $this->warnings[] = new \PHPUnit\Framework\TestFailure($test, $t); - } - private function shouldTimeLimitBeEnforced(int $size) : bool + function assertGreaterThanOrEqual($expected, $actual, string $message = ''): void { - if (!$this->enforceTimeLimit) { - return \false; - } - if (!($this->defaultTimeLimit || $size !== TestUtil::UNKNOWN)) { - return \false; - } - if (!extension_loaded('pcntl')) { - return \false; - } - if (!class_exists(Invoker::class)) { - return \false; - } - if (extension_loaded('xdebug') && xdebug_is_debugger_active()) { - return \false; - } - return \true; + \PHPUnit\Framework\Assert::assertGreaterThanOrEqual(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -use const PHP_EOL; -use function array_keys; -use function array_map; -use function array_merge; -use function array_slice; -use function array_unique; -use function basename; -use function call_user_func; -use function class_exists; -use function count; -use function dirname; -use function get_declared_classes; -use function implode; -use function is_bool; -use function is_callable; -use function is_file; -use function is_object; -use function is_string; -use function method_exists; -use function preg_match; -use function preg_quote; -use function sprintf; -use function strpos; -use function substr; -use Iterator; -use IteratorAggregate; -use PHPUnit\Runner\BaseTestRunner; -use PHPUnit\Runner\Filter\Factory; -use PHPUnit\Runner\PhptTestCase; -use PHPUnit\Util\FileLoader; -use PHPUnit\Util\Reflection; -use PHPUnit\Util\Test as TestUtil; -use ReflectionClass; -use ReflectionException; -use ReflectionMethod; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -class TestSuite implements IteratorAggregate, \PHPUnit\Framework\Reorderable, \PHPUnit\Framework\SelfDescribing, \PHPUnit\Framework\Test -{ +if (!function_exists('PHPUnit\Framework\assertLessThan')) { /** - * Enable or disable the backup and restoration of the $GLOBALS array. + * Asserts that a value is smaller than another value. * - * @var bool - */ - protected $backupGlobals; - /** - * Enable or disable the backup and restoration of static attributes. + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @var bool - */ - protected $backupStaticAttributes; - /** - * @var bool - */ - protected $runTestInSeparateProcess = \false; - /** - * The name of the test suite. + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * - * @var string + * @see Assert::assertLessThan */ - protected $name = ''; + function assertLessThan($expected, $actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertLessThan(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertLessThanOrEqual')) { /** - * The test groups of the test suite. + * Asserts that a value is smaller than or equal to another value. * - * @psalm-var array> - */ - protected $groups = []; - /** - * The tests in the test suite. + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @var Test[] - */ - protected $tests = []; - /** - * The number of tests in the test suite. + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * - * @var int - */ - protected $numTests = -1; - /** - * @var bool - */ - protected $testCase = \false; - /** - * @var string[] - */ - protected $foundClasses = []; - /** - * @var null|list - */ - protected $providedTests; - /** - * @var null|list - */ - protected $requiredTests; - /** - * @var bool - */ - private $beStrictAboutChangesToGlobalState; - /** - * @var Factory + * @see Assert::assertLessThanOrEqual */ - private $iteratorFilter; + function assertLessThanOrEqual($expected, $actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertLessThanOrEqual(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertFileEquals')) { /** - * @var int + * Asserts that the contents of one file is equal to the contents of another + * file. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileEquals */ - private $declaredClassesPointer; + function assertFileEquals(string $expected, string $actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertFileEquals(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertFileEqualsCanonicalizing')) { /** - * @psalm-var array + * Asserts that the contents of one file is equal to the contents of another + * file (canonicalizing). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileEqualsCanonicalizing */ - private $warnings = []; + function assertFileEqualsCanonicalizing(string $expected, string $actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertFileEqualsCanonicalizing(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertFileEqualsIgnoringCase')) { /** - * Constructs a new TestSuite. + * Asserts that the contents of one file is equal to the contents of another + * file (ignoring case). * - * - PHPUnit\Framework\TestSuite() constructs an empty TestSuite. + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * - PHPUnit\Framework\TestSuite(ReflectionClass) constructs a - * TestSuite from the given class. + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * - * - PHPUnit\Framework\TestSuite(ReflectionClass, String) - * constructs a TestSuite from the given class with the given - * name. + * @see Assert::assertFileEqualsIgnoringCase + */ + function assertFileEqualsIgnoringCase(string $expected, string $actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertFileEqualsIgnoringCase(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertFileNotEquals')) { + /** + * Asserts that the contents of one file is not equal to the contents of + * another file. * - * - PHPUnit\Framework\TestSuite(String) either constructs a - * TestSuite from the given class (if the passed string is the - * name of an existing class) or constructs an empty TestSuite - * with the given name. + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @param ReflectionClass|string $theClass + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * - * @throws Exception + * @see Assert::assertFileNotEquals */ - public function __construct($theClass = '', string $name = '') + function assertFileNotEquals(string $expected, string $actual, string $message = ''): void { - if (!is_string($theClass) && !$theClass instanceof ReflectionClass) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'ReflectionClass object or string'); - } - $this->declaredClassesPointer = count(get_declared_classes()); - if (!$theClass instanceof ReflectionClass) { - if (class_exists($theClass, \true)) { - if ($name === '') { - $name = $theClass; - } - try { - $theClass = new ReflectionClass($theClass); - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - } else { - $this->setName($theClass); - return; - } - } - if (!$theClass->isSubclassOf(\PHPUnit\Framework\TestCase::class)) { - $this->setName((string) $theClass); - return; - } - if ($name !== '') { - $this->setName($name); - } else { - $this->setName($theClass->getName()); - } - $constructor = $theClass->getConstructor(); - if ($constructor !== null && !$constructor->isPublic()) { - $this->addTest(new \PHPUnit\Framework\WarningTestCase(sprintf('Class "%s" has no public constructor.', $theClass->getName()))); - return; - } - foreach ((new Reflection())->publicMethodsInTestClass($theClass) as $method) { - if (!TestUtil::isTestMethod($method)) { - continue; - } - $this->addTestMethod($theClass, $method); - } - if (empty($this->tests)) { - $this->addTest(new \PHPUnit\Framework\WarningTestCase(sprintf('No tests found in class "%s".', $theClass->getName()))); - } - $this->testCase = \true; + \PHPUnit\Framework\Assert::assertFileNotEquals(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileNotEqualsCanonicalizing')) { /** - * Returns a string representation of the test suite. + * Asserts that the contents of one file is not equal to the contents of another + * file (canonicalizing). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileNotEqualsCanonicalizing */ - public function toString() : string + function assertFileNotEqualsCanonicalizing(string $expected, string $actual, string $message = ''): void { - return $this->getName(); + \PHPUnit\Framework\Assert::assertFileNotEqualsCanonicalizing(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileNotEqualsIgnoringCase')) { /** - * Adds a test to the suite. + * Asserts that the contents of one file is not equal to the contents of another + * file (ignoring case). * - * @param array $groups + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileNotEqualsIgnoringCase */ - public function addTest(\PHPUnit\Framework\Test $test, $groups = []) : void + function assertFileNotEqualsIgnoringCase(string $expected, string $actual, string $message = ''): void { - try { - $class = new ReflectionClass($test); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if (!$class->isAbstract()) { - $this->tests[] = $test; - $this->clearCaches(); - if ($test instanceof self && empty($groups)) { - $groups = $test->getGroups(); - } - if ($this->containsOnlyVirtualGroups($groups)) { - $groups[] = 'default'; - } - foreach ($groups as $group) { - if (!isset($this->groups[$group])) { - $this->groups[$group] = [$test]; - } else { - $this->groups[$group][] = $test; - } - } - if ($test instanceof \PHPUnit\Framework\TestCase) { - $test->setGroups($groups); - } - } + \PHPUnit\Framework\Assert::assertFileNotEqualsIgnoringCase(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertStringEqualsFile')) { /** - * Adds the tests from the given class to the suite. + * Asserts that the contents of a string is equal + * to the contents of a file. * - * @psalm-param object|class-string $testClass + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @throws Exception + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringEqualsFile */ - public function addTestSuite($testClass) : void + function assertStringEqualsFile(string $expectedFile, string $actualString, string $message = ''): void { - if (!(is_object($testClass) || is_string($testClass) && class_exists($testClass))) { - throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class name or object'); - } - if (!is_object($testClass)) { - try { - $testClass = new ReflectionClass($testClass); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - } - if ($testClass instanceof self) { - $this->addTest($testClass); - } elseif ($testClass instanceof ReflectionClass) { - $suiteMethod = \false; - if (!$testClass->isAbstract() && $testClass->hasMethod(BaseTestRunner::SUITE_METHODNAME)) { - try { - $method = $testClass->getMethod(BaseTestRunner::SUITE_METHODNAME); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($method->isStatic()) { - $this->addTest($method->invoke(null, $testClass->getName())); - $suiteMethod = \true; - } - } - if (!$suiteMethod && !$testClass->isAbstract() && $testClass->isSubclassOf(\PHPUnit\Framework\TestCase::class)) { - $this->addTest(new self($testClass)); - } - } else { - throw new \PHPUnit\Framework\Exception(); - } + \PHPUnit\Framework\Assert::assertStringEqualsFile(...func_get_args()); } - public function addWarning(string $warning) : void +} +if (!function_exists('PHPUnit\Framework\assertStringEqualsFileCanonicalizing')) { + /** + * Asserts that the contents of a string is equal + * to the contents of a file (canonicalizing). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringEqualsFileCanonicalizing + */ + function assertStringEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = ''): void { - $this->warnings[] = $warning; + \PHPUnit\Framework\Assert::assertStringEqualsFileCanonicalizing(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertStringEqualsFileIgnoringCase')) { /** - * Wraps both addTest() and addTestSuite - * as well as the separate import statements for the user's convenience. + * Asserts that the contents of a string is equal + * to the contents of a file (ignoring case). * - * If the named file cannot be read or there are no new tests that can be - * added, a PHPUnit\Framework\WarningTestCase will be created instead, - * leaving the current test run untouched. + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @throws Exception + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringEqualsFileIgnoringCase */ - public function addTestFile(string $filename) : void + function assertStringEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = ''): void { - if (is_file($filename) && substr($filename, -5) === '.phpt') { - $this->addTest(new PhptTestCase($filename)); - $this->declaredClassesPointer = count(get_declared_classes()); - return; - } - $numTests = count($this->tests); - // The given file may contain further stub classes in addition to the - // test class itself. Figure out the actual test class. - $filename = FileLoader::checkAndLoad($filename); - $newClasses = array_slice(get_declared_classes(), $this->declaredClassesPointer); - // The diff is empty in case a parent class (with test methods) is added - // AFTER a child class that inherited from it. To account for that case, - // accumulate all discovered classes, so the parent class may be found in - // a later invocation. - if (!empty($newClasses)) { - // On the assumption that test classes are defined first in files, - // process discovered classes in approximate LIFO order, so as to - // avoid unnecessary reflection. - $this->foundClasses = array_merge($newClasses, $this->foundClasses); - $this->declaredClassesPointer = count(get_declared_classes()); - } - // The test class's name must match the filename, either in full, or as - // a PEAR/PSR-0 prefixed short name ('NameSpace_ShortName'), or as a - // PSR-1 local short name ('NameSpace\ShortName'). The comparison must be - // anchored to prevent false-positive matches (e.g., 'OtherShortName'). - $shortName = basename($filename, '.php'); - $shortNameRegEx = '/(?:^|_|\\\\)' . preg_quote($shortName, '/') . '$/'; - foreach ($this->foundClasses as $i => $className) { - if (preg_match($shortNameRegEx, $className)) { - try { - $class = new ReflectionClass($className); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($class->getFileName() == $filename) { - $newClasses = [$className]; - unset($this->foundClasses[$i]); - break; - } - } - } - foreach ($newClasses as $className) { - try { - $class = new ReflectionClass($className); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if (dirname($class->getFileName()) === __DIR__) { - continue; - } - if (!$class->isAbstract()) { - if ($class->hasMethod(BaseTestRunner::SUITE_METHODNAME)) { - try { - $method = $class->getMethod(BaseTestRunner::SUITE_METHODNAME); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Framework\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($method->isStatic()) { - $this->addTest($method->invoke(null, $className)); - } - } elseif ($class->implementsInterface(\PHPUnit\Framework\Test::class)) { - // Do we have modern namespacing ('Foo\Bar\WhizBangTest') or old-school namespacing ('Foo_Bar_WhizBangTest')? - $isPsr0 = !$class->inNamespace() && strpos($class->getName(), '_') !== \false; - $expectedClassName = $isPsr0 ? $className : $shortName; - if (($pos = strpos($expectedClassName, '.')) !== \false) { - $expectedClassName = substr($expectedClassName, 0, $pos); - } - if ($class->getShortName() !== $expectedClassName) { - $this->addWarning(sprintf("Test case class not matching filename is deprecated\n in %s\n Class name was '%s', expected '%s'", $filename, $class->getShortName(), $expectedClassName)); - } - $this->addTestSuite($class); - } - } - } - if (count($this->tests) > ++$numTests) { - $this->addWarning(sprintf("Multiple test case classes per file is deprecated\n in %s", $filename)); - } - $this->numTests = -1; + \PHPUnit\Framework\Assert::assertStringEqualsFileIgnoringCase(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertStringNotEqualsFile')) { /** - * Wrapper for addTestFile() that adds multiple test files. + * Asserts that the contents of a string is not equal + * to the contents of a file. * - * @throws Exception + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotEqualsFile */ - public function addTestFiles(iterable $fileNames) : void + function assertStringNotEqualsFile(string $expectedFile, string $actualString, string $message = ''): void { - foreach ($fileNames as $filename) { - $this->addTestFile((string) $filename); - } + \PHPUnit\Framework\Assert::assertStringNotEqualsFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertStringNotEqualsFileCanonicalizing')) { /** - * Counts the number of test cases that will be run by this test. + * Asserts that the contents of a string is not equal + * to the contents of a file (canonicalizing). * - * @todo refactor usage of numTests in DefaultResultPrinter + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotEqualsFileCanonicalizing */ - public function count() : int + function assertStringNotEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = ''): void { - $this->numTests = 0; - foreach ($this as $test) { - $this->numTests += count($test); - } - return $this->numTests; + \PHPUnit\Framework\Assert::assertStringNotEqualsFileCanonicalizing(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertStringNotEqualsFileIgnoringCase')) { /** - * Returns the name of the suite. + * Asserts that the contents of a string is not equal + * to the contents of a file (ignoring case). + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotEqualsFileIgnoringCase */ - public function getName() : string + function assertStringNotEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = ''): void { - return $this->name; + \PHPUnit\Framework\Assert::assertStringNotEqualsFileIgnoringCase(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertIsReadable')) { /** - * Returns the test groups of the suite. + * Asserts that a file/dir is readable. * - * @psalm-return list + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsReadable */ - public function getGroups() : array + function assertIsReadable(string $filename, string $message = ''): void { - return array_map(static function ($key) : string { - return (string) $key; - }, array_keys($this->groups)); + \PHPUnit\Framework\Assert::assertIsReadable(...func_get_args()); } - public function getGroupDetails() : array +} +if (!function_exists('PHPUnit\Framework\assertIsNotReadable')) { + /** + * Asserts that a file/dir exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotReadable + */ + function assertIsNotReadable(string $filename, string $message = ''): void { - return $this->groups; + \PHPUnit\Framework\Assert::assertIsNotReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotIsReadable')) { /** - * Set tests groups of the test case. + * Asserts that a file/dir exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4062 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotIsReadable */ - public function setGroupDetails(array $groups) : void + function assertNotIsReadable(string $filename, string $message = ''): void { - $this->groups = $groups; + \PHPUnit\Framework\Assert::assertNotIsReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertIsWritable')) { /** - * Runs the tests and collects their result in a TestResult. + * Asserts that a file/dir exists and is writable. * - * @throws \PHPUnit\Framework\CodeCoverageException - * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException - * @throws \SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Warning + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsWritable */ - public function run(\PHPUnit\Framework\TestResult $result = null) : \PHPUnit\Framework\TestResult + function assertIsWritable(string $filename, string $message = ''): void { - if ($result === null) { - $result = $this->createResult(); - } - if (count($this) === 0) { - return $result; - } - /** @psalm-var class-string $className */ - $className = $this->name; - $hookMethods = TestUtil::getHookMethods($className); - $result->startTestSuite($this); - $test = null; - if ($this->testCase && class_exists($this->name, \false)) { - try { - foreach ($hookMethods['beforeClass'] as $beforeClassMethod) { - if (method_exists($this->name, $beforeClassMethod)) { - if ($missingRequirements = TestUtil::getMissingRequirements($this->name, $beforeClassMethod)) { - $this->markTestSuiteSkipped(implode(PHP_EOL, $missingRequirements)); - } - call_user_func([$this->name, $beforeClassMethod]); - } - } - } catch (\PHPUnit\Framework\SkippedTestSuiteError $error) { - foreach ($this->tests() as $test) { - $result->startTest($test); - $result->addFailure($test, $error, 0); - $result->endTest($test, 0); - } - $result->endTestSuite($this); - return $result; - } catch (Throwable $t) { - $errorAdded = \false; - foreach ($this->tests() as $test) { - if ($result->shouldStop()) { - break; - } - $result->startTest($test); - if (!$errorAdded) { - $result->addError($test, $t, 0); - $errorAdded = \true; - } else { - $result->addFailure($test, new \PHPUnit\Framework\SkippedTestError('Test skipped because of an error in hook method'), 0); - } - $result->endTest($test, 0); - } - $result->endTestSuite($this); - return $result; - } - } - foreach ($this as $test) { - if ($result->shouldStop()) { - break; - } - if ($test instanceof \PHPUnit\Framework\TestCase || $test instanceof self) { - $test->setBeStrictAboutChangesToGlobalState($this->beStrictAboutChangesToGlobalState); - $test->setBackupGlobals($this->backupGlobals); - $test->setBackupStaticAttributes($this->backupStaticAttributes); - $test->setRunTestInSeparateProcess($this->runTestInSeparateProcess); - } - $test->run($result); - } - if ($this->testCase && class_exists($this->name, \false)) { - foreach ($hookMethods['afterClass'] as $afterClassMethod) { - if (method_exists($this->name, $afterClassMethod)) { - try { - call_user_func([$this->name, $afterClassMethod]); - } catch (Throwable $t) { - $message = "Exception in {$this->name}::{$afterClassMethod}" . PHP_EOL . $t->getMessage(); - $error = new \PHPUnit\Framework\SyntheticError($message, 0, $t->getFile(), $t->getLine(), $t->getTrace()); - $placeholderTest = clone $test; - $placeholderTest->setName($afterClassMethod); - $result->startTest($placeholderTest); - $result->addFailure($placeholderTest, $error, 0); - $result->endTest($placeholderTest, 0); - } - } - } - } - $result->endTestSuite($this); - return $result; + \PHPUnit\Framework\Assert::assertIsWritable(...func_get_args()); } - public function setRunTestInSeparateProcess(bool $runTestInSeparateProcess) : void +} +if (!function_exists('PHPUnit\Framework\assertIsNotWritable')) { + /** + * Asserts that a file/dir exists and is not writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotWritable + */ + function assertIsNotWritable(string $filename, string $message = ''): void { - $this->runTestInSeparateProcess = $runTestInSeparateProcess; + \PHPUnit\Framework\Assert::assertIsNotWritable(...func_get_args()); } - public function setName(string $name) : void +} +if (!function_exists('PHPUnit\Framework\assertNotIsWritable')) { + /** + * Asserts that a file/dir exists and is not writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4065 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotIsWritable + */ + function assertNotIsWritable(string $filename, string $message = ''): void { - $this->name = $name; + \PHPUnit\Framework\Assert::assertNotIsWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryExists')) { /** - * Returns the tests as an enumeration. + * Asserts that a directory exists. * - * @return Test[] + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryExists */ - public function tests() : array + function assertDirectoryExists(string $directory, string $message = ''): void { - return $this->tests; + \PHPUnit\Framework\Assert::assertDirectoryExists(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryDoesNotExist')) { /** - * Set tests of the test suite. + * Asserts that a directory does not exist. * - * @param Test[] $tests + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryDoesNotExist */ - public function setTests(array $tests) : void + function assertDirectoryDoesNotExist(string $directory, string $message = ''): void { - $this->tests = $tests; + \PHPUnit\Framework\Assert::assertDirectoryDoesNotExist(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryNotExists')) { /** - * Mark the test suite as skipped. + * Asserts that a directory does not exist. * - * @param string $message + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @throws SkippedTestSuiteError + * @codeCoverageIgnore * - * @psalm-return never-return + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4068 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryNotExists */ - public function markTestSuiteSkipped($message = '') : void + function assertDirectoryNotExists(string $directory, string $message = ''): void { - throw new \PHPUnit\Framework\SkippedTestSuiteError($message); + \PHPUnit\Framework\Assert::assertDirectoryNotExists(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryIsReadable')) { /** - * @param bool $beStrictAboutChangesToGlobalState + * Asserts that a directory exists and is readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryIsReadable */ - public function setBeStrictAboutChangesToGlobalState($beStrictAboutChangesToGlobalState) : void + function assertDirectoryIsReadable(string $directory, string $message = ''): void { - if (null === $this->beStrictAboutChangesToGlobalState && is_bool($beStrictAboutChangesToGlobalState)) { - $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; - } + \PHPUnit\Framework\Assert::assertDirectoryIsReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryIsNotReadable')) { /** - * @param bool $backupGlobals + * Asserts that a directory exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryIsNotReadable */ - public function setBackupGlobals($backupGlobals) : void + function assertDirectoryIsNotReadable(string $directory, string $message = ''): void { - if (null === $this->backupGlobals && is_bool($backupGlobals)) { - $this->backupGlobals = $backupGlobals; - } + \PHPUnit\Framework\Assert::assertDirectoryIsNotReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryNotIsReadable')) { /** - * @param bool $backupStaticAttributes + * Asserts that a directory exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4071 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryNotIsReadable */ - public function setBackupStaticAttributes($backupStaticAttributes) : void + function assertDirectoryNotIsReadable(string $directory, string $message = ''): void { - if (null === $this->backupStaticAttributes && is_bool($backupStaticAttributes)) { - $this->backupStaticAttributes = $backupStaticAttributes; - } + \PHPUnit\Framework\Assert::assertDirectoryNotIsReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryIsWritable')) { /** - * Returns an iterator for this test suite. + * Asserts that a directory exists and is writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryIsWritable */ - public function getIterator() : Iterator + function assertDirectoryIsWritable(string $directory, string $message = ''): void { - $iterator = new \PHPUnit\Framework\TestSuiteIterator($this); - if ($this->iteratorFilter !== null) { - $iterator = $this->iteratorFilter->factory($iterator, $this); - } - return $iterator; - } - public function injectFilter(Factory $filter) : void - { - $this->iteratorFilter = $filter; - foreach ($this as $test) { - if ($test instanceof self) { - $test->injectFilter($filter); - } - } + \PHPUnit\Framework\Assert::assertDirectoryIsWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryIsNotWritable')) { /** - * @psalm-return array + * Asserts that a directory exists and is not writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryIsNotWritable */ - public function warnings() : array + function assertDirectoryIsNotWritable(string $directory, string $message = ''): void { - return array_unique($this->warnings); + \PHPUnit\Framework\Assert::assertDirectoryIsNotWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertDirectoryNotIsWritable')) { /** - * @return list + * Asserts that a directory exists and is not writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4074 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDirectoryNotIsWritable */ - public function provides() : array + function assertDirectoryNotIsWritable(string $directory, string $message = ''): void { - if ($this->providedTests === null) { - $this->providedTests = []; - if (is_callable($this->sortId(), \true)) { - $this->providedTests[] = new \PHPUnit\Framework\ExecutionOrderDependency($this->sortId()); - } - foreach ($this->tests as $test) { - if (!$test instanceof \PHPUnit\Framework\Reorderable) { - // @codeCoverageIgnoreStart - continue; - // @codeCoverageIgnoreEnd - } - $this->providedTests = \PHPUnit\Framework\ExecutionOrderDependency::mergeUnique($this->providedTests, $test->provides()); - } - } - return $this->providedTests; + \PHPUnit\Framework\Assert::assertDirectoryNotIsWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileExists')) { /** - * @return list + * Asserts that a file exists. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileExists */ - public function requires() : array - { - if ($this->requiredTests === null) { - $this->requiredTests = []; - foreach ($this->tests as $test) { - if (!$test instanceof \PHPUnit\Framework\Reorderable) { - // @codeCoverageIgnoreStart - continue; - // @codeCoverageIgnoreEnd - } - $this->requiredTests = \PHPUnit\Framework\ExecutionOrderDependency::mergeUnique(\PHPUnit\Framework\ExecutionOrderDependency::filterInvalid($this->requiredTests), $test->requires()); - } - $this->requiredTests = \PHPUnit\Framework\ExecutionOrderDependency::diff($this->requiredTests, $this->provides()); - } - return $this->requiredTests; - } - public function sortId() : string + function assertFileExists(string $filename, string $message = ''): void { - return $this->getName() . '::class'; + \PHPUnit\Framework\Assert::assertFileExists(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileDoesNotExist')) { /** - * Creates a default TestResult object. + * Asserts that a file does not exist. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileDoesNotExist */ - protected function createResult() : \PHPUnit\Framework\TestResult + function assertFileDoesNotExist(string $filename, string $message = ''): void { - return new \PHPUnit\Framework\TestResult(); + \PHPUnit\Framework\Assert::assertFileDoesNotExist(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileNotExists')) { /** - * @throws Exception + * Asserts that a file does not exist. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4077 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileNotExists */ - protected function addTestMethod(ReflectionClass $class, ReflectionMethod $method) : void - { - $methodName = $method->getName(); - $test = (new \PHPUnit\Framework\TestBuilder())->build($class, $methodName); - if ($test instanceof \PHPUnit\Framework\TestCase || $test instanceof \PHPUnit\Framework\DataProviderTestSuite) { - $test->setDependencies(TestUtil::getDependencies($class->getName(), $methodName)); - } - $this->addTest($test, TestUtil::getGroups($class->getName(), $methodName)); - } - private function clearCaches() : void - { - $this->numTests = -1; - $this->providedTests = null; - $this->requiredTests = null; - } - private function containsOnlyVirtualGroups(array $groups) : bool + function assertFileNotExists(string $filename, string $message = ''): void { - foreach ($groups as $group) { - if (strpos($group, '__phpunit_') !== 0) { - return \false; - } - } - return \true; + \PHPUnit\Framework\Assert::assertFileNotExists(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -use function assert; -use function count; -use RecursiveIterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class TestSuiteIterator implements RecursiveIterator -{ - /** - * @var int - */ - private $position = 0; +if (!function_exists('PHPUnit\Framework\assertFileIsReadable')) { /** - * @var Test[] + * Asserts that a file exists and is readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileIsReadable */ - private $tests; - public function __construct(\PHPUnit\Framework\TestSuite $testSuite) - { - $this->tests = $testSuite->tests(); - } - public function rewind() : void + function assertFileIsReadable(string $file, string $message = ''): void { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->tests); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\Framework\Test - { - return $this->tests[$this->position]; - } - public function next() : void - { - $this->position++; + \PHPUnit\Framework\Assert::assertFileIsReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileIsNotReadable')) { /** - * @throws NoChildTestSuiteException + * Asserts that a file exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileIsNotReadable */ - public function getChildren() : self - { - if (!$this->hasChildren()) { - throw new \PHPUnit\Framework\NoChildTestSuiteException('The current item is not a TestSuite instance and therefore does not have any children.'); - } - $current = $this->current(); - assert($current instanceof \PHPUnit\Framework\TestSuite); - return new self($current); - } - public function hasChildren() : bool + function assertFileIsNotReadable(string $file, string $message = ''): void { - return $this->valid() && $this->current() instanceof \PHPUnit\Framework\TestSuite; + \PHPUnit\Framework\Assert::assertFileIsNotReadable(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Framework; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class WarningTestCase extends \PHPUnit\Framework\TestCase -{ - /** - * @var bool - */ - protected $backupGlobals = \false; - /** - * @var bool - */ - protected $backupStaticAttributes = \false; - /** - * @var bool - */ - protected $runTestInSeparateProcess = \false; +if (!function_exists('PHPUnit\Framework\assertFileNotIsReadable')) { /** - * @var string + * Asserts that a file exists and is not readable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4080 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileNotIsReadable */ - private $message; - public function __construct(string $message = '') - { - $this->message = $message; - parent::__construct('Warning'); - } - public function getMessage() : string + function assertFileNotIsReadable(string $file, string $message = ''): void { - return $this->message; + \PHPUnit\Framework\Assert::assertFileNotIsReadable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileIsWritable')) { /** - * Returns a string representation of the test case. + * Asserts that a file exists and is writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileIsWritable */ - public function toString() : string + function assertFileIsWritable(string $file, string $message = ''): void { - return 'Warning'; + \PHPUnit\Framework\Assert::assertFileIsWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFileIsNotWritable')) { /** - * @throws Exception + * Asserts that a file exists and is not writable. * - * @psalm-return never-return + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileIsNotWritable */ - protected function runTest() : void + function assertFileIsNotWritable(string $file, string $message = ''): void { - throw new \PHPUnit\Framework\Warning($this->message); + \PHPUnit\Framework\Assert::assertFileIsNotWritable(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use function is_dir; -use function is_file; -use function substr; -use PHPUnit\Framework\Exception; -use PHPUnit\Framework\TestSuite; -use ReflectionClass; -use ReflectionException; -use PHPUnit\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -abstract class BaseTestRunner -{ - /** - * @var int - */ - public const STATUS_UNKNOWN = -1; - /** - * @var int - */ - public const STATUS_PASSED = 0; - /** - * @var int - */ - public const STATUS_SKIPPED = 1; - /** - * @var int - */ - public const STATUS_INCOMPLETE = 2; - /** - * @var int - */ - public const STATUS_FAILURE = 3; - /** - * @var int - */ - public const STATUS_ERROR = 4; - /** - * @var int - */ - public const STATUS_RISKY = 5; - /** - * @var int - */ - public const STATUS_WARNING = 6; - /** - * @var string - */ - public const SUITE_METHODNAME = 'suite'; +if (!function_exists('PHPUnit\Framework\assertFileNotIsWritable')) { /** - * Returns the loader to be used. + * Asserts that a file exists and is not writable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4083 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFileNotIsWritable */ - public function getLoader() : \PHPUnit\Runner\TestSuiteLoader + function assertFileNotIsWritable(string $file, string $message = ''): void { - return new \PHPUnit\Runner\StandardTestSuiteLoader(); + \PHPUnit\Framework\Assert::assertFileNotIsWritable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertTrue')) { /** - * Returns the Test corresponding to the given suite. - * This is a template method, subclasses override - * the runFailed() and clearStatus() methods. + * Asserts that a condition is true. * - * @param string|string[] $suffixes + * @throws ExpectationFailedException + * @throws InvalidArgumentException * - * @throws Exception + * @psalm-assert true $condition + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertTrue */ - public function getTest(string $suiteClassFile, $suffixes = '') : ?TestSuite + function assertTrue($condition, string $message = ''): void { - if (is_dir($suiteClassFile)) { - /** @var string[] $files */ - $files = (new FileIteratorFacade())->getFilesAsArray($suiteClassFile, $suffixes); - $suite = new TestSuite($suiteClassFile); - $suite->addTestFiles($files); - return $suite; - } - if (is_file($suiteClassFile) && substr($suiteClassFile, -5, 5) === '.phpt') { - $suite = new TestSuite(); - $suite->addTestFile($suiteClassFile); - return $suite; - } - try { - $testClass = $this->loadSuiteClass($suiteClassFile); - } catch (\PHPUnit\Exception $e) { - $this->runFailed($e->getMessage()); - return null; - } - try { - $suiteMethod = $testClass->getMethod(self::SUITE_METHODNAME); - if (!$suiteMethod->isStatic()) { - $this->runFailed('suite() method must be static.'); - return null; - } - $test = $suiteMethod->invoke(null, $testClass->getName()); - } catch (ReflectionException $e) { - $test = new TestSuite($testClass); - } - $this->clearStatus(); - return $test; + \PHPUnit\Framework\Assert::assertTrue(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotTrue')) { /** - * Returns the loaded ReflectionClass for a suite name. + * Asserts that a condition is not true. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !true $condition + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotTrue */ - protected function loadSuiteClass(string $suiteClassFile) : ReflectionClass + function assertNotTrue($condition, string $message = ''): void { - return $this->getLoader()->load($suiteClassFile); + \PHPUnit\Framework\Assert::assertNotTrue(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertFalse')) { /** - * Clears the status message. + * Asserts that a condition is false. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert false $condition + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFalse */ - protected function clearStatus() : void + function assertFalse($condition, string $message = ''): void { + \PHPUnit\Framework\Assert::assertFalse(...func_get_args()); } - /** - * Override to define how to handle a failed loading of - * a test suite. - */ - protected abstract function runFailed(string $message) : void; } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use const DIRECTORY_SEPARATOR; -use const LOCK_EX; -use function assert; -use function dirname; -use function file_get_contents; -use function file_put_contents; -use function in_array; -use function is_array; -use function is_dir; -use function is_file; -use function json_decode; -use function json_encode; -use function sprintf; -use PHPUnit\Util\Filesystem; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class DefaultTestResultCache implements \PHPUnit\Runner\TestResultCache -{ +if (!function_exists('PHPUnit\Framework\assertNotFalse')) { /** - * @var int + * Asserts that a condition is not false. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !false $condition + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotFalse */ - private const VERSION = 1; + function assertNotFalse($condition, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertNotFalse(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertNull')) { /** - * @psalm-var list + * Asserts that a variable is null. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert null $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNull */ - private const ALLOWED_TEST_STATUSES = [\PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE, \PHPUnit\Runner\BaseTestRunner::STATUS_ERROR, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING]; + function assertNull($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertNull(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertNotNull')) { /** - * @var string + * Asserts that a variable is not null. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !null $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotNull */ - private const DEFAULT_RESULT_CACHE_FILENAME = '.phpunit.result.cache'; + function assertNotNull($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertNotNull(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertFinite')) { /** - * @var string + * Asserts that a variable is finite. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertFinite */ - private $cacheFilename; + function assertFinite($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertFinite(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertInfinite')) { /** - * @psalm-var array + * Asserts that a variable is infinite. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertInfinite */ - private $defects = []; + function assertInfinite($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertInfinite(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertNan')) { /** - * @psalm-var array + * Asserts that a variable is nan. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNan */ - private $times = []; - public function __construct(?string $filepath = null) + function assertNan($actual, string $message = ''): void { - if ($filepath !== null && is_dir($filepath)) { - $filepath .= DIRECTORY_SEPARATOR . self::DEFAULT_RESULT_CACHE_FILENAME; - } - $this->cacheFilename = $filepath ?? $_ENV['PHPUNIT_RESULT_CACHE'] ?? self::DEFAULT_RESULT_CACHE_FILENAME; + \PHPUnit\Framework\Assert::assertNan(...func_get_args()); } - public function setState(string $testName, int $state) : void +} +if (!function_exists('PHPUnit\Framework\assertClassHasAttribute')) { + /** + * Asserts that a class has a specified attribute. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertClassHasAttribute + */ + function assertClassHasAttribute(string $attributeName, string $className, string $message = ''): void { - if (!in_array($state, self::ALLOWED_TEST_STATUSES, \true)) { - return; - } - $this->defects[$testName] = $state; + \PHPUnit\Framework\Assert::assertClassHasAttribute(...func_get_args()); } - public function getState(string $testName) : int +} +if (!function_exists('PHPUnit\Framework\assertClassNotHasAttribute')) { + /** + * Asserts that a class does not have a specified attribute. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertClassNotHasAttribute + */ + function assertClassNotHasAttribute(string $attributeName, string $className, string $message = ''): void { - return $this->defects[$testName] ?? \PHPUnit\Runner\BaseTestRunner::STATUS_UNKNOWN; + \PHPUnit\Framework\Assert::assertClassNotHasAttribute(...func_get_args()); } - public function setTime(string $testName, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertClassHasStaticAttribute')) { + /** + * Asserts that a class has a specified static attribute. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertClassHasStaticAttribute + */ + function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = ''): void { - $this->times[$testName] = $time; + \PHPUnit\Framework\Assert::assertClassHasStaticAttribute(...func_get_args()); } - public function getTime(string $testName) : float +} +if (!function_exists('PHPUnit\Framework\assertClassNotHasStaticAttribute')) { + /** + * Asserts that a class does not have a specified static attribute. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertClassNotHasStaticAttribute + */ + function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = ''): void { - return $this->times[$testName] ?? 0.0; + \PHPUnit\Framework\Assert::assertClassNotHasStaticAttribute(...func_get_args()); } - public function load() : void +} +if (!function_exists('PHPUnit\Framework\assertObjectHasAttribute')) { + /** + * Asserts that an object has a specified attribute. + * + * @param object $object + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertObjectHasAttribute + */ + function assertObjectHasAttribute(string $attributeName, $object, string $message = ''): void { - if (!is_file($this->cacheFilename)) { - return; - } - $data = json_decode(file_get_contents($this->cacheFilename), \true); - if ($data === null) { - return; - } - if (!isset($data['version'])) { - return; - } - if ($data['version'] !== self::VERSION) { - return; - } - assert(isset($data['defects']) && is_array($data['defects'])); - assert(isset($data['times']) && is_array($data['times'])); - $this->defects = $data['defects']; - $this->times = $data['times']; + \PHPUnit\Framework\Assert::assertObjectHasAttribute(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertObjectNotHasAttribute')) { /** + * Asserts that an object does not have a specified attribute. + * + * @param object $object + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertObjectNotHasAttribute */ - public function persist() : void + function assertObjectNotHasAttribute(string $attributeName, $object, string $message = ''): void { - if (!Filesystem::createDirectory(dirname($this->cacheFilename))) { - throw new \PHPUnit\Runner\Exception(sprintf('Cannot create directory "%s" for result cache file', $this->cacheFilename)); - } - file_put_contents($this->cacheFilename, json_encode(['version' => self::VERSION, 'defects' => $this->defects, 'times' => $this->times]), LOCK_EX); + \PHPUnit\Framework\Assert::assertObjectNotHasAttribute(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Exception extends RuntimeException implements \PHPUnit\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Extension; - -use function class_exists; -use function sprintf; -use PHPUnit\Framework\TestListener; -use PHPUnit\Runner\Exception; -use PHPUnit\Runner\Hook; -use PHPUnit\TextUI\TestRunner; -use PHPUnit\TextUI\XmlConfiguration\Extension; -use ReflectionClass; -use ReflectionException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ExtensionHandler -{ +if (!function_exists('PHPUnit\Framework\assertObjectHasProperty')) { /** + * Asserts that an object has a specified property. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertObjectHasProperty */ - public function registerExtension(Extension $extensionConfiguration, TestRunner $runner) : void + function assertObjectHasProperty(string $attributeName, object $object, string $message = ''): void { - $extension = $this->createInstance($extensionConfiguration); - if (!$extension instanceof Hook) { - throw new Exception(sprintf('Class "%s" does not implement a PHPUnit\\Runner\\Hook interface', $extensionConfiguration->className())); - } - $runner->addExtension($extension); + \PHPUnit\Framework\Assert::assertObjectHasProperty(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertObjectNotHasProperty')) { /** + * Asserts that an object does not have a specified property. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException * @throws Exception * - * @deprecated + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertObjectNotHasProperty */ - public function createTestListenerInstance(Extension $listenerConfiguration) : TestListener + function assertObjectNotHasProperty(string $attributeName, object $object, string $message = ''): void { - $listener = $this->createInstance($listenerConfiguration); - if (!$listener instanceof TestListener) { - throw new Exception(sprintf('Class "%s" does not implement the PHPUnit\\Framework\\TestListener interface', $listenerConfiguration->className())); - } - return $listener; + \PHPUnit\Framework\Assert::assertObjectNotHasProperty(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertSame')) { /** - * @throws Exception + * Asserts that two variables have the same type and value. + * Used on objects, it asserts that two variables reference + * the same object. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-template ExpectedType + * + * @psalm-param ExpectedType $expected + * + * @psalm-assert =ExpectedType $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertSame */ - private function createInstance(Extension $extensionConfiguration) : object + function assertSame($expected, $actual, string $message = ''): void { - $this->ensureClassExists($extensionConfiguration); - try { - $reflector = new ReflectionClass($extensionConfiguration->className()); - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - if (!$extensionConfiguration->hasArguments()) { - return $reflector->newInstance(); - } - return $reflector->newInstanceArgs($extensionConfiguration->arguments()); + \PHPUnit\Framework\Assert::assertSame(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertNotSame')) { /** - * @throws Exception + * Asserts that two variables do not have the same type and value. + * Used on objects, it asserts that two variables do not reference + * the same object. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotSame */ - private function ensureClassExists(Extension $extensionConfiguration) : void + function assertNotSame($expected, $actual, string $message = ''): void { - if (class_exists($extensionConfiguration->className(), \false)) { - return; - } - if ($extensionConfiguration->hasSourceFile()) { - /** - * @noinspection PhpIncludeInspection - * - * @psalm-suppress UnresolvableInclude - */ - require_once $extensionConfiguration->sourceFile(); - } - if (!class_exists($extensionConfiguration->className())) { - throw new Exception(sprintf('Class "%s" does not exist', $extensionConfiguration->className())); - } + \PHPUnit\Framework\Assert::assertNotSame(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Extension; - -use function is_file; -use PHPUnit\PharIo\Manifest\ApplicationName; -use PHPUnit\PharIo\Manifest\Exception as ManifestException; -use PHPUnit\PharIo\Manifest\ManifestLoader; -use PHPUnit\PharIo\Version\Version as PharIoVersion; -use PHPUnit\Runner\Version; -use PHPUnit\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class PharLoader -{ +if (!function_exists('PHPUnit\Framework\assertInstanceOf')) { /** - * @psalm-return array{loadedExtensions: list, notLoadedExtensions: list} + * Asserts that a variable is of a given type. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @psalm-template ExpectedType of object + * + * @psalm-param class-string $expected + * + * @psalm-assert =ExpectedType $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertInstanceOf */ - public function loadPharExtensionsInDirectory(string $directory) : array + function assertInstanceOf(string $expected, $actual, string $message = ''): void { - $loadedExtensions = []; - $notLoadedExtensions = []; - foreach ((new FileIteratorFacade())->getFilesAsArray($directory, '.phar') as $file) { - if (!is_file('phar://' . $file . '/manifest.xml')) { - $notLoadedExtensions[] = $file . ' is not an extension for PHPUnit'; - continue; - } - try { - $applicationName = new ApplicationName('phpunit/phpunit'); - $version = new PharIoVersion(Version::series()); - $manifest = ManifestLoader::fromFile('phar://' . $file . '/manifest.xml'); - if (!$manifest->isExtensionFor($applicationName)) { - $notLoadedExtensions[] = $file . ' is not an extension for PHPUnit'; - continue; - } - if (!$manifest->isExtensionFor($applicationName, $version)) { - $notLoadedExtensions[] = $file . ' is not compatible with this version of PHPUnit'; - continue; - } - } catch (ManifestException $e) { - $notLoadedExtensions[] = $file . ': ' . $e->getMessage(); - continue; - } - /** - * @noinspection PhpIncludeInspection - * - * @psalm-suppress UnresolvableInclude - */ - require $file; - $loadedExtensions[] = $manifest->getName()->asString() . ' ' . $manifest->getVersion()->getVersionString(); - } - return ['loadedExtensions' => $loadedExtensions, 'notLoadedExtensions' => $notLoadedExtensions]; + \PHPUnit\Framework\Assert::assertInstanceOf(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Filter; - -use function in_array; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ExcludeGroupFilterIterator extends \PHPUnit\Runner\Filter\GroupFilterIterator -{ - protected function doAccept(string $hash) : bool +if (!function_exists('PHPUnit\Framework\assertNotInstanceOf')) { + /** + * Asserts that a variable is not of a given type. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @psalm-template ExpectedType of object + * + * @psalm-param class-string $expected + * + * @psalm-assert !ExpectedType $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotInstanceOf + */ + function assertNotInstanceOf(string $expected, $actual, string $message = ''): void { - return !in_array($hash, $this->groupTests, \true); + \PHPUnit\Framework\Assert::assertNotInstanceOf(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Filter; - -use function assert; -use function sprintf; -use FilterIterator; -use Iterator; -use PHPUnit\Framework\TestSuite; -use PHPUnit\Runner\Exception; -use RecursiveFilterIterator; -use ReflectionClass; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Factory -{ +if (!function_exists('PHPUnit\Framework\assertIsArray')) { /** - * @psalm-var array + * Asserts that a variable is of type array. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert array $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsArray */ - private $filters = []; + function assertIsArray($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsArray(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertIsBool')) { /** - * @param array|string $args + * Asserts that a variable is of type bool. * - * @throws Exception + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert bool $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsBool */ - public function addFilter(ReflectionClass $filter, $args) : void + function assertIsBool($actual, string $message = ''): void { - if (!$filter->isSubclassOf(RecursiveFilterIterator::class)) { - throw new Exception(sprintf('Class "%s" does not extend RecursiveFilterIterator', $filter->name)); - } - $this->filters[] = [$filter, $args]; + \PHPUnit\Framework\Assert::assertIsBool(...func_get_args()); } - public function factory(Iterator $iterator, TestSuite $suite) : FilterIterator +} +if (!function_exists('PHPUnit\Framework\assertIsFloat')) { + /** + * Asserts that a variable is of type float. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert float $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsFloat + */ + function assertIsFloat($actual, string $message = ''): void { - foreach ($this->filters as $filter) { - [$class, $args] = $filter; - $iterator = $class->newInstance($iterator, $args, $suite); - } - assert($iterator instanceof FilterIterator); - return $iterator; + \PHPUnit\Framework\Assert::assertIsFloat(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Filter; - -use function array_map; -use function array_merge; -use function in_array; -use function spl_object_hash; -use PHPUnit\Framework\TestSuite; -use RecursiveFilterIterator; -use RecursiveIterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -abstract class GroupFilterIterator extends RecursiveFilterIterator -{ +if (!function_exists('PHPUnit\Framework\assertIsInt')) { /** - * @var string[] + * Asserts that a variable is of type int. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert int $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsInt */ - protected $groupTests = []; - public function __construct(RecursiveIterator $iterator, array $groups, TestSuite $suite) + function assertIsInt($actual, string $message = ''): void { - parent::__construct($iterator); - foreach ($suite->getGroupDetails() as $group => $tests) { - if (in_array((string) $group, $groups, \true)) { - $testHashes = array_map('spl_object_hash', $tests); - $this->groupTests = array_merge($this->groupTests, $testHashes); - } - } + \PHPUnit\Framework\Assert::assertIsInt(...func_get_args()); } - public function accept() : bool +} +if (!function_exists('PHPUnit\Framework\assertIsNumeric')) { + /** + * Asserts that a variable is of type numeric. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert numeric $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNumeric + */ + function assertIsNumeric($actual, string $message = ''): void { - $test = $this->getInnerIterator()->current(); - if ($test instanceof TestSuite) { - return \true; - } - return $this->doAccept(spl_object_hash($test)); + \PHPUnit\Framework\Assert::assertIsNumeric(...func_get_args()); } - protected abstract function doAccept(string $hash); } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Filter; - -use function in_array; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class IncludeGroupFilterIterator extends \PHPUnit\Runner\Filter\GroupFilterIterator -{ - protected function doAccept(string $hash) : bool +if (!function_exists('PHPUnit\Framework\assertIsObject')) { + /** + * Asserts that a variable is of type object. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert object $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsObject + */ + function assertIsObject($actual, string $message = ''): void { - return in_array($hash, $this->groupTests, \true); + \PHPUnit\Framework\Assert::assertIsObject(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner\Filter; - -use function end; -use function implode; -use function preg_match; -use function sprintf; -use function str_replace; -use Exception; -use PHPUnit\Framework\ErrorTestCase; -use PHPUnit\Framework\TestSuite; -use PHPUnit\Framework\WarningTestCase; -use PHPUnit\Util\RegularExpression; -use RecursiveFilterIterator; -use RecursiveIterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class NameFilterIterator extends RecursiveFilterIterator -{ +if (!function_exists('PHPUnit\Framework\assertIsResource')) { /** - * @var string + * Asserts that a variable is of type resource. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert resource $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsResource */ - private $filter; + function assertIsResource($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsResource(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertIsClosedResource')) { /** - * @var int + * Asserts that a variable is of type resource and is closed. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert resource $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsClosedResource */ - private $filterMin; + function assertIsClosedResource($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsClosedResource(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertIsString')) { /** - * @var int + * Asserts that a variable is of type string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert string $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsString */ - private $filterMax; + function assertIsString($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsString(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertIsScalar')) { /** - * @throws Exception + * Asserts that a variable is of type scalar. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert scalar $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsScalar */ - public function __construct(RecursiveIterator $iterator, string $filter) + function assertIsScalar($actual, string $message = ''): void { - parent::__construct($iterator); - $this->setFilter($filter); + \PHPUnit\Framework\Assert::assertIsScalar(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertIsCallable')) { /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Asserts that a variable is of type callable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert callable $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsCallable */ - public function accept() : bool + function assertIsCallable($actual, string $message = ''): void { - $test = $this->getInnerIterator()->current(); - if ($test instanceof TestSuite) { - return \true; - } - $tmp = \PHPUnit\Util\Test::describe($test); - if ($test instanceof ErrorTestCase || $test instanceof WarningTestCase) { - $name = $test->getMessage(); - } elseif ($tmp[0] !== '') { - $name = implode('::', $tmp); - } else { - $name = $tmp[1]; - } - $accepted = @preg_match($this->filter, $name, $matches); - if ($accepted && isset($this->filterMax)) { - $set = end($matches); - $accepted = $set >= $this->filterMin && $set <= $this->filterMax; - } - return (bool) $accepted; + \PHPUnit\Framework\Assert::assertIsCallable(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertIsIterable')) { /** - * @throws Exception + * Asserts that a variable is of type iterable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert iterable $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsIterable */ - private function setFilter(string $filter) : void + function assertIsIterable($actual, string $message = ''): void { - if (RegularExpression::safeMatch($filter, '') === \false) { - // Handles: - // * testAssertEqualsSucceeds#4 - // * testAssertEqualsSucceeds#4-8 - if (preg_match('/^(.*?)#(\\d+)(?:-(\\d+))?$/', $filter, $matches)) { - if (isset($matches[3]) && $matches[2] < $matches[3]) { - $filter = sprintf('%s.*with data set #(\\d+)$', $matches[1]); - $this->filterMin = (int) $matches[2]; - $this->filterMax = (int) $matches[3]; - } else { - $filter = sprintf('%s.*with data set #%s$', $matches[1], $matches[2]); - } - } elseif (preg_match('/^(.*?)@(.+)$/', $filter, $matches)) { - $filter = sprintf('%s.*with data set "%s"$', $matches[1], $matches[2]); - } - // Escape delimiters in regular expression. Do NOT use preg_quote, - // to keep magic characters. - $filter = sprintf('/%s/i', str_replace('/', '\\/', $filter)); - } - $this->filter = $filter; + \PHPUnit\Framework\Assert::assertIsIterable(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterIncompleteTestHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterIncompleteTest(string $test, string $message, float $time) : void; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterLastTestHook extends \PHPUnit\Runner\Hook -{ - public function executeAfterLastTest() : void; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterRiskyTestHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterRiskyTest(string $test, string $message, float $time) : void; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterSkippedTestHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterSkippedTest(string $test, string $message, float $time) : void; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterSuccessfulTestHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterSuccessfulTest(string $test, float $time) : void; +if (!function_exists('PHPUnit\Framework\assertIsNotArray')) { + /** + * Asserts that a variable is not of type array. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !array $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotArray + */ + function assertIsNotArray($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotArray(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterTestErrorHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterTestError(string $test, string $message, float $time) : void; +if (!function_exists('PHPUnit\Framework\assertIsNotBool')) { + /** + * Asserts that a variable is not of type bool. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !bool $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotBool + */ + function assertIsNotBool($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotBool(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterTestFailureHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterTestFailure(string $test, string $message, float $time) : void; +if (!function_exists('PHPUnit\Framework\assertIsNotFloat')) { + /** + * Asserts that a variable is not of type float. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !float $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotFloat + */ + function assertIsNotFloat($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotFloat(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterTestHook extends \PHPUnit\Runner\TestHook -{ +if (!function_exists('PHPUnit\Framework\assertIsNotInt')) { /** - * This hook will fire after any test, regardless of the result. + * Asserts that a variable is not of type int. * - * For more fine grained control, have a look at the other hooks - * that extend PHPUnit\Runner\Hook. + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !int $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotInt */ - public function executeAfterTest(string $test, float $time) : void; + function assertIsNotInt($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotInt(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface AfterTestWarningHook extends \PHPUnit\Runner\TestHook -{ - public function executeAfterTestWarning(string $test, string $message, float $time) : void; +if (!function_exists('PHPUnit\Framework\assertIsNotNumeric')) { + /** + * Asserts that a variable is not of type numeric. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !numeric $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotNumeric + */ + function assertIsNotNumeric($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotNumeric(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface BeforeFirstTestHook extends \PHPUnit\Runner\Hook -{ - public function executeBeforeFirstTest() : void; +if (!function_exists('PHPUnit\Framework\assertIsNotObject')) { + /** + * Asserts that a variable is not of type object. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !object $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotObject + */ + function assertIsNotObject($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotObject(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface BeforeTestHook extends \PHPUnit\Runner\TestHook -{ - public function executeBeforeTest(string $test) : void; +if (!function_exists('PHPUnit\Framework\assertIsNotResource')) { + /** + * Asserts that a variable is not of type resource. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !resource $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotResource + */ + function assertIsNotResource($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotResource(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface Hook -{ +if (!function_exists('PHPUnit\Framework\assertIsNotClosedResource')) { + /** + * Asserts that a variable is not of type resource. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !resource $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotClosedResource + */ + function assertIsNotClosedResource($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotClosedResource(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * This interface, as well as the associated mechanism for extending PHPUnit, - * will be removed in PHPUnit 10. There is no alternative available in this - * version of PHPUnit. - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - * - * @see https://github.com/sebastianbergmann/phpunit/issues/4676 - */ -interface TestHook extends \PHPUnit\Runner\Hook -{ +if (!function_exists('PHPUnit\Framework\assertIsNotString')) { + /** + * Asserts that a variable is not of type string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !string $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotString + */ + function assertIsNotString($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotString(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use PHPUnit\Framework\AssertionFailedError; -use PHPUnit\Framework\Test; -use PHPUnit\Framework\TestListener; -use PHPUnit\Framework\TestSuite; -use PHPUnit\Framework\Warning; -use PHPUnit\Util\Test as TestUtil; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class TestListenerAdapter implements TestListener -{ +if (!function_exists('PHPUnit\Framework\assertIsNotScalar')) { /** - * @var TestHook[] + * Asserts that a variable is not of type scalar. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !scalar $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotScalar */ - private $hooks = []; + function assertIsNotScalar($actual, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertIsNotScalar(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertIsNotCallable')) { /** - * @var bool + * Asserts that a variable is not of type callable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !callable $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotCallable */ - private $lastTestWasNotSuccessful; - public function add(\PHPUnit\Runner\TestHook $hook) : void + function assertIsNotCallable($actual, string $message = ''): void { - $this->hooks[] = $hook; + \PHPUnit\Framework\Assert::assertIsNotCallable(...func_get_args()); } - public function startTest(Test $test) : void +} +if (!function_exists('PHPUnit\Framework\assertIsNotIterable')) { + /** + * Asserts that a variable is not of type iterable. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-assert !iterable $actual + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertIsNotIterable + */ + function assertIsNotIterable($actual, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\BeforeTestHook) { - $hook->executeBeforeTest(TestUtil::describeAsString($test)); - } - } - $this->lastTestWasNotSuccessful = \false; + \PHPUnit\Framework\Assert::assertIsNotIterable(...func_get_args()); } - public function addError(Test $test, Throwable $t, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertMatchesRegularExpression')) { + /** + * Asserts that a string matches a given regular expression. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertMatchesRegularExpression + */ + function assertMatchesRegularExpression(string $pattern, string $string, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterTestErrorHook) { - $hook->executeAfterTestError(TestUtil::describeAsString($test), $t->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertMatchesRegularExpression(...func_get_args()); } - public function addWarning(Test $test, Warning $e, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertRegExp')) { + /** + * Asserts that a string matches a given regular expression. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4086 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertRegExp + */ + function assertRegExp(string $pattern, string $string, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterTestWarningHook) { - $hook->executeAfterTestWarning(TestUtil::describeAsString($test), $e->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertRegExp(...func_get_args()); } - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertDoesNotMatchRegularExpression')) { + /** + * Asserts that a string does not match a given regular expression. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertDoesNotMatchRegularExpression + */ + function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterTestFailureHook) { - $hook->executeAfterTestFailure(TestUtil::describeAsString($test), $e->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertDoesNotMatchRegularExpression(...func_get_args()); } - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertNotRegExp')) { + /** + * Asserts that a string does not match a given regular expression. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4089 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotRegExp + */ + function assertNotRegExp(string $pattern, string $string, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterIncompleteTestHook) { - $hook->executeAfterIncompleteTest(TestUtil::describeAsString($test), $t->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertNotRegExp(...func_get_args()); } - public function addRiskyTest(Test $test, Throwable $t, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertSameSize')) { + /** + * Assert that the size of two arrays (or `Countable` or `Traversable` objects) + * is the same. + * + * @param Countable|iterable $expected + * @param Countable|iterable $actual + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertSameSize + */ + function assertSameSize($expected, $actual, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterRiskyTestHook) { - $hook->executeAfterRiskyTest(TestUtil::describeAsString($test), $t->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertSameSize(...func_get_args()); } - public function addSkippedTest(Test $test, Throwable $t, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertNotSameSize')) { + /** + * Assert that the size of two arrays (or `Countable` or `Traversable` objects) + * is not the same. + * + * @param Countable|iterable $expected + * @param Countable|iterable $actual + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertNotSameSize + */ + function assertNotSameSize($expected, $actual, string $message = ''): void { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterSkippedTestHook) { - $hook->executeAfterSkippedTest(TestUtil::describeAsString($test), $t->getMessage(), $time); - } - } - $this->lastTestWasNotSuccessful = \true; + \PHPUnit\Framework\Assert::assertNotSameSize(...func_get_args()); } - public function endTest(Test $test, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertStringMatchesFormat')) { + /** + * Asserts that a string matches a given format string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringMatchesFormat + */ + function assertStringMatchesFormat(string $format, string $string, string $message = ''): void { - if (!$this->lastTestWasNotSuccessful) { - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterSuccessfulTestHook) { - $hook->executeAfterSuccessfulTest(TestUtil::describeAsString($test), $time); - } - } - } - foreach ($this->hooks as $hook) { - if ($hook instanceof \PHPUnit\Runner\AfterTestHook) { - $hook->executeAfterTest(TestUtil::describeAsString($test), $time); - } - } + \PHPUnit\Framework\Assert::assertStringMatchesFormat(...func_get_args()); } - public function startTestSuite(TestSuite $suite) : void +} +if (!function_exists('PHPUnit\Framework\assertStringNotMatchesFormat')) { + /** + * Asserts that a string does not match a given format string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotMatchesFormat + */ + function assertStringNotMatchesFormat(string $format, string $string, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringNotMatchesFormat(...func_get_args()); } - public function endTestSuite(TestSuite $suite) : void +} +if (!function_exists('PHPUnit\Framework\assertStringMatchesFormatFile')) { + /** + * Asserts that a string matches a given format file. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringMatchesFormatFile + */ + function assertStringMatchesFormatFile(string $formatFile, string $string, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringMatchesFormatFile(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class NullTestResultCache implements \PHPUnit\Runner\TestResultCache -{ - public function setState(string $testName, int $state) : void +if (!function_exists('PHPUnit\Framework\assertStringNotMatchesFormatFile')) { + /** + * Asserts that a string does not match a given format string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotMatchesFormatFile + */ + function assertStringNotMatchesFormatFile(string $formatFile, string $string, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringNotMatchesFormatFile(...func_get_args()); } - public function getState(string $testName) : int +} +if (!function_exists('PHPUnit\Framework\assertStringStartsWith')) { + /** + * Asserts that a string starts with a given prefix. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringStartsWith + */ + function assertStringStartsWith(string $prefix, string $string, string $message = ''): void { - return \PHPUnit\Runner\BaseTestRunner::STATUS_UNKNOWN; + \PHPUnit\Framework\Assert::assertStringStartsWith(...func_get_args()); } - public function setTime(string $testName, float $time) : void +} +if (!function_exists('PHPUnit\Framework\assertStringStartsNotWith')) { + /** + * Asserts that a string starts not with a given prefix. + * + * @param string $prefix + * @param string $string + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringStartsNotWith + */ + function assertStringStartsNotWith($prefix, $string, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringStartsNotWith(...func_get_args()); } - public function getTime(string $testName) : float +} +if (!function_exists('PHPUnit\Framework\assertStringContainsString')) { + /** + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringContainsString + */ + function assertStringContainsString(string $needle, string $haystack, string $message = ''): void { - return 0; + \PHPUnit\Framework\Assert::assertStringContainsString(...func_get_args()); } - public function load() : void +} +if (!function_exists('PHPUnit\Framework\assertStringContainsStringIgnoringCase')) { + /** + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringContainsStringIgnoringCase + */ + function assertStringContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringContainsStringIgnoringCase(...func_get_args()); } - public function persist() : void +} +if (!function_exists('PHPUnit\Framework\assertStringNotContainsString')) { + /** + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotContainsString + */ + function assertStringNotContainsString(string $needle, string $haystack, string $message = ''): void { + \PHPUnit\Framework\Assert::assertStringNotContainsString(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use const DEBUG_BACKTRACE_IGNORE_ARGS; -use const DIRECTORY_SEPARATOR; -use function array_merge; -use function basename; -use function debug_backtrace; -use function defined; -use function dirname; -use function explode; -use function extension_loaded; -use function file; -use function file_get_contents; -use function file_put_contents; -use function is_array; -use function is_file; -use function is_readable; -use function is_string; -use function ltrim; -use function phpversion; -use function preg_match; -use function preg_replace; -use function preg_split; -use function realpath; -use function rtrim; -use function sprintf; -use function str_replace; -use function strncasecmp; -use function strpos; -use function substr; -use function trim; -use function unlink; -use function unserialize; -use function var_export; -use function version_compare; -use PHPUnit\Framework\Assert; -use PHPUnit\Framework\AssertionFailedError; -use PHPUnit\Framework\ExecutionOrderDependency; -use PHPUnit\Framework\ExpectationFailedException; -use PHPUnit\Framework\IncompleteTestError; -use PHPUnit\Framework\PHPTAssertionFailedError; -use PHPUnit\Framework\Reorderable; -use PHPUnit\Framework\SelfDescribing; -use PHPUnit\Framework\SkippedTestError; -use PHPUnit\Framework\SyntheticSkippedError; -use PHPUnit\Framework\Test; -use PHPUnit\Framework\TestResult; -use PHPUnit\Util\PHP\AbstractPhpProcess; -use PHPUnit\SebastianBergmann\CodeCoverage\RawCodeCoverageData; -use PHPUnit\SebastianBergmann\Template\Template; -use PHPUnit\SebastianBergmann\Timer\Timer; -use Throwable; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class PhptTestCase implements Reorderable, SelfDescribing, Test -{ +if (!function_exists('PHPUnit\Framework\assertStringNotContainsStringIgnoringCase')) { /** - * @var string + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringNotContainsStringIgnoringCase */ - private $filename; + function assertStringNotContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertStringNotContainsStringIgnoringCase(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertStringEndsWith')) { /** - * @var AbstractPhpProcess + * Asserts that a string ends with a given suffix. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringEndsWith */ - private $phpUtil; + function assertStringEndsWith(string $suffix, string $string, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertStringEndsWith(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertStringEndsNotWith')) { /** - * @var string + * Asserts that a string ends not with a given suffix. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertStringEndsNotWith */ - private $output = ''; + function assertStringEndsNotWith(string $suffix, string $string, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertStringEndsNotWith(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\assertXmlFileEqualsXmlFile')) { /** - * Constructs a test case with the given filename. + * Asserts that two XML files are equal. * + * @throws ExpectationFailedException + * @throws InvalidArgumentException * @throws Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlFileEqualsXmlFile */ - public function __construct(string $filename, AbstractPhpProcess $phpUtil = null) + function assertXmlFileEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void { - if (!is_file($filename)) { - throw new \PHPUnit\Runner\Exception(sprintf('File "%s" does not exist.', $filename)); - } - $this->filename = $filename; - $this->phpUtil = $phpUtil ?: AbstractPhpProcess::factory(); + \PHPUnit\Framework\Assert::assertXmlFileEqualsXmlFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertXmlFileNotEqualsXmlFile')) { /** - * Counts the number of test cases executed by run(TestResult result). + * Asserts that two XML files are not equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws \PHPUnit\Util\Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlFileNotEqualsXmlFile */ - public function count() : int + function assertXmlFileNotEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void { - return 1; + \PHPUnit\Framework\Assert::assertXmlFileNotEqualsXmlFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertXmlStringEqualsXmlFile')) { /** - * Runs a test and collects its result in a TestResult instance. + * Asserts that two XML documents are equal. * - * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException - * @throws \SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception + * @param DOMDocument|string $actualXml + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws \PHPUnit\Util\Xml\Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlStringEqualsXmlFile */ - public function run(TestResult $result = null) : TestResult + function assertXmlStringEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void { - if ($result === null) { - $result = new TestResult(); - } - try { - $sections = $this->parse(); - } catch (\PHPUnit\Runner\Exception $e) { - $result->startTest($this); - $result->addFailure($this, new SkippedTestError($e->getMessage()), 0); - $result->endTest($this, 0); - return $result; - } - $code = $this->render($sections['FILE']); - $xfail = \false; - $settings = $this->parseIniSection($this->settings($result->getCollectCodeCoverageInformation())); - $result->startTest($this); - if (isset($sections['INI'])) { - $settings = $this->parseIniSection($sections['INI'], $settings); - } - if (isset($sections['ENV'])) { - $env = $this->parseEnvSection($sections['ENV']); - $this->phpUtil->setEnv($env); - } - $this->phpUtil->setUseStderrRedirection(\true); - if ($result->enforcesTimeLimit()) { - $this->phpUtil->setTimeout($result->getTimeoutForLargeTests()); - } - $skip = $this->runSkip($sections, $result, $settings); - if ($skip) { - return $result; - } - if (isset($sections['XFAIL'])) { - $xfail = trim($sections['XFAIL']); - } - if (isset($sections['STDIN'])) { - $this->phpUtil->setStdin($sections['STDIN']); - } - if (isset($sections['ARGS'])) { - $this->phpUtil->setArgs($sections['ARGS']); - } - if ($result->getCollectCodeCoverageInformation()) { - $codeCoverageCacheDirectory = null; - $pathCoverage = \false; - $codeCoverage = $result->getCodeCoverage(); - if ($codeCoverage) { - if ($codeCoverage->cachesStaticAnalysis()) { - $codeCoverageCacheDirectory = $codeCoverage->cacheDirectory(); - } - $pathCoverage = $codeCoverage->collectsBranchAndPathCoverage(); - } - $this->renderForCoverage($code, $pathCoverage, $codeCoverageCacheDirectory); - } - $timer = new Timer(); - $timer->start(); - $jobResult = $this->phpUtil->runJob($code, $this->stringifyIni($settings)); - $time = $timer->stop()->asSeconds(); - $this->output = $jobResult['stdout'] ?? ''; - if (isset($codeCoverage) && ($coverage = $this->cleanupForCoverage())) { - $codeCoverage->append($coverage, $this, \true, [], []); - } - try { - $this->assertPhptExpectation($sections, $this->output); - } catch (AssertionFailedError $e) { - $failure = $e; - if ($xfail !== \false) { - $failure = new IncompleteTestError($xfail, 0, $e); - } elseif ($e instanceof ExpectationFailedException) { - $comparisonFailure = $e->getComparisonFailure(); - if ($comparisonFailure) { - $diff = $comparisonFailure->getDiff(); - } else { - $diff = $e->getMessage(); - } - $hint = $this->getLocationHintFromDiff($diff, $sections); - $trace = array_merge($hint, debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)); - $failure = new PHPTAssertionFailedError($e->getMessage(), 0, $trace[0]['file'], $trace[0]['line'], $trace, $comparisonFailure ? $diff : ''); - } - $result->addFailure($this, $failure, $time); - } catch (Throwable $t) { - $result->addError($this, $t, $time); - } - if ($xfail !== \false && $result->allCompletelyImplemented()) { - $result->addFailure($this, new IncompleteTestError('XFAIL section but test passes'), $time); - } - $this->runClean($sections, $result->getCollectCodeCoverageInformation()); - $result->endTest($this, $time); - return $result; + \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertXmlStringNotEqualsXmlFile')) { /** - * Returns the name of the test case. + * Asserts that two XML documents are not equal. + * + * @param DOMDocument|string $actualXml + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws \PHPUnit\Util\Xml\Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlStringNotEqualsXmlFile */ - public function getName() : string + function assertXmlStringNotEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void { - return $this->toString(); + \PHPUnit\Framework\Assert::assertXmlStringNotEqualsXmlFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertXmlStringEqualsXmlString')) { /** - * Returns a string representation of the test case. + * Asserts that two XML documents are equal. + * + * @param DOMDocument|string $expectedXml + * @param DOMDocument|string $actualXml + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws \PHPUnit\Util\Xml\Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlStringEqualsXmlString */ - public function toString() : string + function assertXmlStringEqualsXmlString($expectedXml, $actualXml, string $message = ''): void { - return $this->filename; - } - public function usesDataProvider() : bool - { - return \false; + \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlString(...func_get_args()); } - public function getNumAssertions() : int +} +if (!function_exists('PHPUnit\Framework\assertXmlStringNotEqualsXmlString')) { + /** + * Asserts that two XML documents are not equal. + * + * @param DOMDocument|string $expectedXml + * @param DOMDocument|string $actualXml + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws \PHPUnit\Util\Xml\Exception + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertXmlStringNotEqualsXmlString + */ + function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, string $message = ''): void { - return 1; + \PHPUnit\Framework\Assert::assertXmlStringNotEqualsXmlString(...func_get_args()); } - public function getActualOutput() : string +} +if (!function_exists('PHPUnit\Framework\assertEqualXMLStructure')) { + /** + * Asserts that a hierarchy of DOMElements matches. + * + * @throws AssertionFailedError + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4091 + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertEqualXMLStructure + */ + function assertEqualXMLStructure(DOMElement $expectedElement, DOMElement $actualElement, bool $checkAttributes = \false, string $message = ''): void { - return $this->output; + \PHPUnit\Framework\Assert::assertEqualXMLStructure(...func_get_args()); } - public function hasOutput() : bool +} +if (!function_exists('PHPUnit\Framework\assertThat')) { + /** + * Evaluates a PHPUnit\Framework\Constraint matcher object. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertThat + */ + function assertThat($value, Constraint $constraint, string $message = ''): void { - return !empty($this->output); + \PHPUnit\Framework\Assert::assertThat(...func_get_args()); } - public function sortId() : string +} +if (!function_exists('PHPUnit\Framework\assertJson')) { + /** + * Asserts that a string is a valid JSON string. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJson + */ + function assertJson(string $actualJson, string $message = ''): void { - return $this->filename; + \PHPUnit\Framework\Assert::assertJson(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertJsonStringEqualsJsonString')) { /** - * @return list + * Asserts that two given JSON encoded objects or arrays are equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonStringEqualsJsonString */ - public function provides() : array + function assertJsonStringEqualsJsonString(string $expectedJson, string $actualJson, string $message = ''): void { - return []; + \PHPUnit\Framework\Assert::assertJsonStringEqualsJsonString(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertJsonStringNotEqualsJsonString')) { /** - * @return list + * Asserts that two given JSON encoded objects or arrays are not equal. + * + * @param string $expectedJson + * @param string $actualJson + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonStringNotEqualsJsonString */ - public function requires() : array + function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, string $message = ''): void { - return []; + \PHPUnit\Framework\Assert::assertJsonStringNotEqualsJsonString(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertJsonStringEqualsJsonFile')) { /** - * Parse --INI-- section key value pairs and return as array. + * Asserts that the generated JSON encoded object and the content of the given file are equal. * - * @param array|string $content + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonStringEqualsJsonFile */ - private function parseIniSection($content, array $ini = []) : array + function assertJsonStringEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void { - if (is_string($content)) { - $content = explode("\n", trim($content)); - } - foreach ($content as $setting) { - if (strpos($setting, '=') === \false) { - continue; - } - $setting = explode('=', $setting, 2); - $name = trim($setting[0]); - $value = trim($setting[1]); - if ($name === 'extension' || $name === 'zend_extension') { - if (!isset($ini[$name])) { - $ini[$name] = []; - } - $ini[$name][] = $value; - continue; - } - $ini[$name] = $value; - } - return $ini; + \PHPUnit\Framework\Assert::assertJsonStringEqualsJsonFile(...func_get_args()); } - private function parseEnvSection(string $content) : array +} +if (!function_exists('PHPUnit\Framework\assertJsonStringNotEqualsJsonFile')) { + /** + * Asserts that the generated JSON encoded object and the content of the given file are not equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonStringNotEqualsJsonFile + */ + function assertJsonStringNotEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void { - $env = []; - foreach (explode("\n", trim($content)) as $e) { - $e = explode('=', trim($e), 2); - if (!empty($e[0]) && isset($e[1])) { - $env[$e[0]] = $e[1]; - } - } - return $env; + \PHPUnit\Framework\Assert::assertJsonStringNotEqualsJsonFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertJsonFileEqualsJsonFile')) { /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception + * Asserts that two JSON files are equal. + * * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonFileEqualsJsonFile */ - private function assertPhptExpectation(array $sections, string $output) : void + function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void { - $assertions = ['EXPECT' => 'assertEquals', 'EXPECTF' => 'assertStringMatchesFormat', 'EXPECTREGEX' => 'assertMatchesRegularExpression']; - $actual = preg_replace('/\\r\\n/', "\n", trim($output)); - foreach ($assertions as $sectionName => $sectionAssertion) { - if (isset($sections[$sectionName])) { - $sectionContent = preg_replace('/\\r\\n/', "\n", trim($sections[$sectionName])); - $expected = $sectionName === 'EXPECTREGEX' ? "/{$sectionContent}/" : $sectionContent; - if ($expected === '') { - throw new \PHPUnit\Runner\Exception('No PHPT expectation found'); - } - Assert::$sectionAssertion($expected, $actual); - return; - } - } - throw new \PHPUnit\Runner\Exception('No PHPT assertion found'); + \PHPUnit\Framework\Assert::assertJsonFileEqualsJsonFile(...func_get_args()); } +} +if (!function_exists('PHPUnit\Framework\assertJsonFileNotEqualsJsonFile')) { /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Asserts that two JSON files are not equal. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see Assert::assertJsonFileNotEqualsJsonFile */ - private function runSkip(array &$sections, TestResult $result, array $settings) : bool + function assertJsonFileNotEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void + { + \PHPUnit\Framework\Assert::assertJsonFileNotEqualsJsonFile(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\logicalAnd')) { + function logicalAnd(): LogicalAnd + { + return \PHPUnit\Framework\Assert::logicalAnd(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\logicalOr')) { + function logicalOr(): LogicalOr + { + return \PHPUnit\Framework\Assert::logicalOr(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\logicalNot')) { + function logicalNot(Constraint $constraint): LogicalNot { - if (!isset($sections['SKIPIF'])) { - return \false; - } - $skipif = $this->render($sections['SKIPIF']); - $jobResult = $this->phpUtil->runJob($skipif, $this->stringifyIni($settings)); - if (!strncasecmp('skip', ltrim($jobResult['stdout']), 4)) { - $message = ''; - if (preg_match('/^\\s*skip\\s*(.+)\\s*/i', $jobResult['stdout'], $skipMatch)) { - $message = substr($skipMatch[1], 2); - } - $hint = $this->getLocationHint($message, $sections, 'SKIPIF'); - $trace = array_merge($hint, debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)); - $result->addFailure($this, new SyntheticSkippedError($message, 0, $trace[0]['file'], $trace[0]['line'], $trace), 0); - $result->endTest($this, 0); - return \true; - } - return \false; + return \PHPUnit\Framework\Assert::logicalNot(...func_get_args()); } - private function runClean(array &$sections, bool $collectCoverage) : void +} +if (!function_exists('PHPUnit\Framework\logicalXor')) { + function logicalXor(): LogicalXor { - $this->phpUtil->setStdin(''); - $this->phpUtil->setArgs(''); - if (isset($sections['CLEAN'])) { - $cleanCode = $this->render($sections['CLEAN']); - $this->phpUtil->runJob($cleanCode, $this->settings($collectCoverage)); - } + return \PHPUnit\Framework\Assert::logicalXor(...func_get_args()); } - /** - * @throws Exception - */ - private function parse() : array +} +if (!function_exists('PHPUnit\Framework\anything')) { + function anything(): IsAnything { - $sections = []; - $section = ''; - $unsupportedSections = ['CGI', 'COOKIE', 'DEFLATE_POST', 'EXPECTHEADERS', 'EXTENSIONS', 'GET', 'GZIP_POST', 'HEADERS', 'PHPDBG', 'POST', 'POST_RAW', 'PUT', 'REDIRECTTEST', 'REQUEST']; - $lineNr = 0; - foreach (file($this->filename) as $line) { - $lineNr++; - if (preg_match('/^--([_A-Z]+)--/', $line, $result)) { - $section = $result[1]; - $sections[$section] = ''; - $sections[$section . '_offset'] = $lineNr; - continue; - } - if (empty($section)) { - throw new \PHPUnit\Runner\Exception('Invalid PHPT file: empty section header'); - } - $sections[$section] .= $line; - } - if (isset($sections['FILEEOF'])) { - $sections['FILE'] = rtrim($sections['FILEEOF'], "\r\n"); - unset($sections['FILEEOF']); - } - $this->parseExternal($sections); - if (!$this->validate($sections)) { - throw new \PHPUnit\Runner\Exception('Invalid PHPT file'); - } - foreach ($unsupportedSections as $section) { - if (isset($sections[$section])) { - throw new \PHPUnit\Runner\Exception("PHPUnit does not support PHPT {$section} sections"); - } - } - return $sections; + return \PHPUnit\Framework\Assert::anything(...func_get_args()); } - /** - * @throws Exception - */ - private function parseExternal(array &$sections) : void +} +if (!function_exists('PHPUnit\Framework\isTrue')) { + function isTrue(): IsTrue { - $allowSections = ['FILE', 'EXPECT', 'EXPECTF', 'EXPECTREGEX']; - $testDirectory = dirname($this->filename) . DIRECTORY_SEPARATOR; - foreach ($allowSections as $section) { - if (isset($sections[$section . '_EXTERNAL'])) { - $externalFilename = trim($sections[$section . '_EXTERNAL']); - if (!is_file($testDirectory . $externalFilename) || !is_readable($testDirectory . $externalFilename)) { - throw new \PHPUnit\Runner\Exception(sprintf('Could not load --%s-- %s for PHPT file', $section . '_EXTERNAL', $testDirectory . $externalFilename)); - } - $sections[$section] = file_get_contents($testDirectory . $externalFilename); - } - } + return \PHPUnit\Framework\Assert::isTrue(...func_get_args()); } - private function validate(array &$sections) : bool +} +if (!function_exists('PHPUnit\Framework\callback')) { + function callback(callable $callback): Callback { - $requiredSections = ['FILE', ['EXPECT', 'EXPECTF', 'EXPECTREGEX']]; - foreach ($requiredSections as $section) { - if (is_array($section)) { - $foundSection = \false; - foreach ($section as $anySection) { - if (isset($sections[$anySection])) { - $foundSection = \true; - break; - } - } - if (!$foundSection) { - return \false; - } - continue; - } - if (!isset($sections[$section])) { - return \false; - } - } - return \true; + return \PHPUnit\Framework\Assert::callback(...func_get_args()); } - private function render(string $code) : string +} +if (!function_exists('PHPUnit\Framework\isFalse')) { + function isFalse(): IsFalse { - return str_replace(['__DIR__', '__FILE__'], ["'" . dirname($this->filename) . "'", "'" . $this->filename . "'"], $code); + return \PHPUnit\Framework\Assert::isFalse(...func_get_args()); } - private function getCoverageFiles() : array +} +if (!function_exists('PHPUnit\Framework\isJson')) { + function isJson(): IsJson { - $baseDir = dirname(realpath($this->filename)) . DIRECTORY_SEPARATOR; - $basename = basename($this->filename, 'phpt'); - return ['coverage' => $baseDir . $basename . 'coverage', 'job' => $baseDir . $basename . 'php']; + return \PHPUnit\Framework\Assert::isJson(...func_get_args()); } - private function renderForCoverage(string &$job, bool $pathCoverage, ?string $codeCoverageCacheDirectory) : void +} +if (!function_exists('PHPUnit\Framework\isNull')) { + function isNull(): IsNull { - $files = $this->getCoverageFiles(); - $template = new Template(__DIR__ . '/../Util/PHP/Template/PhptTestCase.tpl'); - $composerAutoload = '\'\''; - if (defined('PHPUnit\\PHPUNIT_COMPOSER_INSTALL')) { - $composerAutoload = var_export(PHPUNIT_COMPOSER_INSTALL, \true); - } - $phar = '\'\''; - if (defined('__PHPUNIT_PHAR__')) { - $phar = var_export(\__PHPUNIT_PHAR__, \true); - } - $globals = ''; - if (!empty($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { - $globals = '$GLOBALS[\'__PHPUNIT_BOOTSTRAP\'] = ' . var_export($GLOBALS['__PHPUNIT_BOOTSTRAP'], \true) . ";\n"; - } - if ($codeCoverageCacheDirectory === null) { - $codeCoverageCacheDirectory = 'null'; - } else { - $codeCoverageCacheDirectory = "'" . $codeCoverageCacheDirectory . "'"; - } - $template->setVar(['composerAutoload' => $composerAutoload, 'phar' => $phar, 'globals' => $globals, 'job' => $files['job'], 'coverageFile' => $files['coverage'], 'driverMethod' => $pathCoverage ? 'forLineAndPathCoverage' : 'forLineCoverage', 'codeCoverageCacheDirectory' => $codeCoverageCacheDirectory]); - file_put_contents($files['job'], $job); - $job = $template->render(); + return \PHPUnit\Framework\Assert::isNull(...func_get_args()); } - private function cleanupForCoverage() : RawCodeCoverageData +} +if (!function_exists('PHPUnit\Framework\isFinite')) { + function isFinite(): IsFinite { - $coverage = RawCodeCoverageData::fromXdebugWithoutPathCoverage([]); - $files = $this->getCoverageFiles(); - if (is_file($files['coverage'])) { - $buffer = @file_get_contents($files['coverage']); - if ($buffer !== \false) { - $coverage = @unserialize($buffer); - if ($coverage === \false) { - $coverage = RawCodeCoverageData::fromXdebugWithoutPathCoverage([]); - } - } - } - foreach ($files as $file) { - @unlink($file); - } - return $coverage; + return \PHPUnit\Framework\Assert::isFinite(...func_get_args()); } - private function stringifyIni(array $ini) : array +} +if (!function_exists('PHPUnit\Framework\isInfinite')) { + function isInfinite(): IsInfinite { - $settings = []; - foreach ($ini as $key => $value) { - if (is_array($value)) { - foreach ($value as $val) { - $settings[] = $key . '=' . $val; - } - continue; - } - $settings[] = $key . '=' . $value; - } - return $settings; + return \PHPUnit\Framework\Assert::isInfinite(...func_get_args()); } - private function getLocationHintFromDiff(string $message, array $sections) : array +} +if (!function_exists('PHPUnit\Framework\isNan')) { + function isNan(): IsNan { - $needle = ''; - $previousLine = ''; - $block = 'message'; - foreach (preg_split('/\\r\\n|\\r|\\n/', $message) as $line) { - $line = trim($line); - if ($block === 'message' && $line === '--- Expected') { - $block = 'expected'; - } - if ($block === 'expected' && $line === '@@ @@') { - $block = 'diff'; - } - if ($block === 'diff') { - if (strpos($line, '+') === 0) { - $needle = $this->getCleanDiffLine($previousLine); - break; - } - if (strpos($line, '-') === 0) { - $needle = $this->getCleanDiffLine($line); - break; - } - } - if (!empty($line)) { - $previousLine = $line; - } - } - return $this->getLocationHint($needle, $sections); + return \PHPUnit\Framework\Assert::isNan(...func_get_args()); } - private function getCleanDiffLine(string $line) : string +} +if (!function_exists('PHPUnit\Framework\containsEqual')) { + function containsEqual($value): TraversableContainsEqual { - if (preg_match('/^[\\-+]([\'\\"]?)(.*)\\1$/', $line, $matches)) { - $line = $matches[2]; - } - return $line; + return \PHPUnit\Framework\Assert::containsEqual(...func_get_args()); } - private function getLocationHint(string $needle, array $sections, ?string $sectionName = null) : array +} +if (!function_exists('PHPUnit\Framework\containsIdentical')) { + function containsIdentical($value): TraversableContainsIdentical { - $needle = trim($needle); - if (empty($needle)) { - return [['file' => realpath($this->filename), 'line' => 1]]; - } - if ($sectionName) { - $search = [$sectionName]; - } else { - $search = [ - // 'FILE', - 'EXPECT', - 'EXPECTF', - 'EXPECTREGEX', - ]; - } - $sectionOffset = null; - foreach ($search as $section) { - if (!isset($sections[$section])) { - continue; - } - if (isset($sections[$section . '_EXTERNAL'])) { - $externalFile = trim($sections[$section . '_EXTERNAL']); - return [['file' => realpath(dirname($this->filename) . DIRECTORY_SEPARATOR . $externalFile), 'line' => 1], ['file' => realpath($this->filename), 'line' => ($sections[$section . '_EXTERNAL_offset'] ?? 0) + 1]]; - } - $sectionOffset = $sections[$section . '_offset'] ?? 0; - $offset = $sectionOffset + 1; - foreach (preg_split('/\\r\\n|\\r|\\n/', $sections[$section]) as $line) { - if (strpos($line, $needle) !== \false) { - return [['file' => realpath($this->filename), 'line' => $offset]]; - } - $offset++; - } - } - if ($sectionName) { - // String not found in specified section, show user the start of the named section - return [['file' => realpath($this->filename), 'line' => $sectionOffset]]; - } - // No section specified, show user start of code - return [['file' => realpath($this->filename), 'line' => 1]]; + return \PHPUnit\Framework\Assert::containsIdentical(...func_get_args()); } - /** - * @psalm-return list - */ - private function settings(bool $collectCoverage) : array +} +if (!function_exists('PHPUnit\Framework\containsOnly')) { + function containsOnly(string $type): TraversableContainsOnly { - $settings = ['allow_url_fopen=1', 'auto_append_file=', 'auto_prepend_file=', 'disable_functions=', 'display_errors=1', 'docref_ext=.html', 'docref_root=', 'error_append_string=', 'error_prepend_string=', 'error_reporting=-1', 'html_errors=0', 'log_errors=0', 'open_basedir=', 'output_buffering=Off', 'output_handler=', 'report_memleaks=0', 'report_zend_debug=0']; - if (extension_loaded('pcov')) { - if ($collectCoverage) { - $settings[] = 'pcov.enabled=1'; - } else { - $settings[] = 'pcov.enabled=0'; - } - } - if (extension_loaded('xdebug')) { - if (version_compare(phpversion('xdebug'), '3', '>=')) { - if ($collectCoverage) { - $settings[] = 'xdebug.mode=coverage'; - } else { - $settings[] = 'xdebug.mode=off'; - } - } else { - $settings[] = 'xdebug.default_enable=0'; - if ($collectCoverage) { - $settings[] = 'xdebug.coverage_enable=1'; - } - } - } - return $settings; + return \PHPUnit\Framework\Assert::containsOnly(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use function preg_match; -use function round; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ResultCacheExtension implements \PHPUnit\Runner\AfterIncompleteTestHook, \PHPUnit\Runner\AfterLastTestHook, \PHPUnit\Runner\AfterRiskyTestHook, \PHPUnit\Runner\AfterSkippedTestHook, \PHPUnit\Runner\AfterSuccessfulTestHook, \PHPUnit\Runner\AfterTestErrorHook, \PHPUnit\Runner\AfterTestFailureHook, \PHPUnit\Runner\AfterTestWarningHook -{ - /** - * @var TestResultCache - */ - private $cache; - public function __construct(\PHPUnit\Runner\TestResultCache $cache) +if (!function_exists('PHPUnit\Framework\containsOnlyInstancesOf')) { + function containsOnlyInstancesOf(string $className): TraversableContainsOnly { - $this->cache = $cache; + return \PHPUnit\Framework\Assert::containsOnlyInstancesOf(...func_get_args()); } - public function flush() : void +} +if (!function_exists('PHPUnit\Framework\arrayHasKey')) { + function arrayHasKey($key): ArrayHasKey { - $this->cache->persist(); + return \PHPUnit\Framework\Assert::arrayHasKey(...func_get_args()); } - public function executeAfterSuccessfulTest(string $test, float $time) : void +} +if (!function_exists('PHPUnit\Framework\equalTo')) { + function equalTo($value): IsEqual { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); + return \PHPUnit\Framework\Assert::equalTo(...func_get_args()); } - public function executeAfterIncompleteTest(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\equalToCanonicalizing')) { + function equalToCanonicalizing($value): IsEqualCanonicalizing { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE); + return \PHPUnit\Framework\Assert::equalToCanonicalizing(...func_get_args()); } - public function executeAfterRiskyTest(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\equalToIgnoringCase')) { + function equalToIgnoringCase($value): IsEqualIgnoringCase { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY); + return \PHPUnit\Framework\Assert::equalToIgnoringCase(...func_get_args()); } - public function executeAfterSkippedTest(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\equalToWithDelta')) { + function equalToWithDelta($value, float $delta): IsEqualWithDelta { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED); + return \PHPUnit\Framework\Assert::equalToWithDelta(...func_get_args()); } - public function executeAfterTestError(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\isEmpty')) { + function isEmpty(): IsEmpty { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_ERROR); + return \PHPUnit\Framework\Assert::isEmpty(...func_get_args()); } - public function executeAfterTestFailure(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\isWritable')) { + function isWritable(): IsWritable { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE); + return \PHPUnit\Framework\Assert::isWritable(...func_get_args()); } - public function executeAfterTestWarning(string $test, string $message, float $time) : void +} +if (!function_exists('PHPUnit\Framework\isReadable')) { + function isReadable(): IsReadable { - $testName = $this->getTestName($test); - $this->cache->setTime($testName, round($time, 3)); - $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING); + return \PHPUnit\Framework\Assert::isReadable(...func_get_args()); } - public function executeAfterLastTest() : void +} +if (!function_exists('PHPUnit\Framework\directoryExists')) { + function directoryExists(): DirectoryExists { - $this->flush(); + return \PHPUnit\Framework\Assert::directoryExists(...func_get_args()); } - /** - * @param string $test A long description format of the current test - * - * @return string The test name without TestSuiteClassName:: and @dataprovider details - */ - private function getTestName(string $test) : string +} +if (!function_exists('PHPUnit\Framework\fileExists')) { + function fileExists(): FileExists { - $matches = []; - if (preg_match('/^(?\\S+::\\S+)(?:(? with data set (?:#\\d+|"[^"]+"))\\s\\()?/', $test, $matches)) { - $test = $matches['name'] . ($matches['dataname'] ?? ''); - } - return $test; + return \PHPUnit\Framework\Assert::fileExists(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use function array_diff; -use function array_values; -use function basename; -use function class_exists; -use function get_declared_classes; -use function sprintf; -use function stripos; -use function strlen; -use function substr; -use PHPUnit\Framework\TestCase; -use PHPUnit\Util\FileLoader; -use ReflectionClass; -use ReflectionException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 - */ -final class StandardTestSuiteLoader implements \PHPUnit\Runner\TestSuiteLoader -{ - /** - * @throws Exception - */ - public function load(string $suiteClassFile) : ReflectionClass +if (!function_exists('PHPUnit\Framework\greaterThan')) { + function greaterThan($value): GreaterThan { - $suiteClassName = basename($suiteClassFile, '.php'); - $loadedClasses = get_declared_classes(); - if (!class_exists($suiteClassName, \false)) { - /* @noinspection UnusedFunctionResultInspection */ - FileLoader::checkAndLoad($suiteClassFile); - $loadedClasses = array_values(array_diff(get_declared_classes(), $loadedClasses)); - if (empty($loadedClasses)) { - throw $this->exceptionFor($suiteClassName, $suiteClassFile); - } - } - if (!class_exists($suiteClassName, \false)) { - $offset = 0 - strlen($suiteClassName); - foreach ($loadedClasses as $loadedClass) { - // @see https://github.com/sebastianbergmann/phpunit/issues/5020 - if (stripos(substr($loadedClass, $offset - 1), '\\' . $suiteClassName) === 0 || stripos(substr($loadedClass, $offset - 1), '_' . $suiteClassName) === 0) { - $suiteClassName = $loadedClass; - break; - } - } - } - if (!class_exists($suiteClassName, \false)) { - throw $this->exceptionFor($suiteClassName, $suiteClassFile); - } - try { - $class = new ReflectionClass($suiteClassName); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Runner\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($class->isSubclassOf(TestCase::class) && !$class->isAbstract()) { - return $class; - } - if ($class->hasMethod('suite')) { - try { - $method = $class->getMethod('suite'); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Runner\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if (!$method->isAbstract() && $method->isPublic() && $method->isStatic()) { - return $class; - } - } - throw $this->exceptionFor($suiteClassName, $suiteClassFile); + return \PHPUnit\Framework\Assert::greaterThan(...func_get_args()); } - public function reload(ReflectionClass $aClass) : ReflectionClass +} +if (!function_exists('PHPUnit\Framework\greaterThanOrEqual')) { + function greaterThanOrEqual($value): LogicalOr { - return $aClass; + return \PHPUnit\Framework\Assert::greaterThanOrEqual(...func_get_args()); } - private function exceptionFor(string $className, string $filename) : \PHPUnit\Runner\Exception +} +if (!function_exists('PHPUnit\Framework\classHasAttribute')) { + function classHasAttribute(string $attributeName): ClassHasAttribute { - return new \PHPUnit\Runner\Exception(sprintf("Class '%s' could not be found in '%s'.", $className, $filename)); + return \PHPUnit\Framework\Assert::classHasAttribute(...func_get_args()); } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface TestResultCache -{ - public function setState(string $testName, int $state) : void; - public function getState(string $testName) : int; - public function setTime(string $testName, float $time) : void; - public function getTime(string $testName) : float; - public function load() : void; - public function persist() : void; +if (!function_exists('PHPUnit\Framework\classHasStaticAttribute')) { + function classHasStaticAttribute(string $attributeName): ClassHasStaticAttribute + { + return \PHPUnit\Framework\Assert::classHasStaticAttribute(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use ReflectionClass; -/** - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 - * - * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit - */ -interface TestSuiteLoader -{ - public function load(string $suiteClassFile) : ReflectionClass; - public function reload(ReflectionClass $aClass) : ReflectionClass; +if (!function_exists('PHPUnit\Framework\objectHasAttribute')) { + function objectHasAttribute($attributeName): ObjectHasAttribute + { + return \PHPUnit\Framework\Assert::objectHasAttribute(...func_get_args()); + } } - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Runner; - -use function array_diff; -use function array_merge; -use function array_reverse; -use function array_splice; -use function count; -use function in_array; -use function max; -use function shuffle; -use function usort; -use PHPUnit\Framework\DataProviderTestSuite; -use PHPUnit\Framework\Reorderable; -use PHPUnit\Framework\Test; -use PHPUnit\Framework\TestCase; -use PHPUnit\Framework\TestSuite; -use PHPUnit\Util\Test as TestUtil; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class TestSuiteSorter -{ - /** - * @var int - */ - public const ORDER_DEFAULT = 0; - /** - * @var int - */ - public const ORDER_RANDOMIZED = 1; - /** - * @var int - */ - public const ORDER_REVERSED = 2; - /** - * @var int - */ - public const ORDER_DEFECTS_FIRST = 3; +if (!function_exists('PHPUnit\Framework\identicalTo')) { + function identicalTo($value): IsIdentical + { + return \PHPUnit\Framework\Assert::identicalTo(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\isInstanceOf')) { + function isInstanceOf(string $className): IsInstanceOf + { + return \PHPUnit\Framework\Assert::isInstanceOf(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\isType')) { + function isType(string $type): IsType + { + return \PHPUnit\Framework\Assert::isType(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\lessThan')) { + function lessThan($value): LessThan + { + return \PHPUnit\Framework\Assert::lessThan(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\lessThanOrEqual')) { + function lessThanOrEqual($value): LogicalOr + { + return \PHPUnit\Framework\Assert::lessThanOrEqual(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\matchesRegularExpression')) { + function matchesRegularExpression(string $pattern): RegularExpression + { + return \PHPUnit\Framework\Assert::matchesRegularExpression(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\matches')) { + function matches(string $string): StringMatchesFormatDescription + { + return \PHPUnit\Framework\Assert::matches(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\stringStartsWith')) { + function stringStartsWith($prefix): StringStartsWith + { + return \PHPUnit\Framework\Assert::stringStartsWith(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\stringContains')) { + function stringContains(string $string, bool $case = \true): StringContains + { + return \PHPUnit\Framework\Assert::stringContains(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\stringEndsWith')) { + function stringEndsWith(string $suffix): StringEndsWith + { + return \PHPUnit\Framework\Assert::stringEndsWith(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\countOf')) { + function countOf(int $count): Count + { + return \PHPUnit\Framework\Assert::countOf(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\objectEquals')) { + function objectEquals(object $object, string $method = 'equals'): ObjectEquals + { + return \PHPUnit\Framework\Assert::objectEquals(...func_get_args()); + } +} +if (!function_exists('PHPUnit\Framework\any')) { /** - * @var int + * Returns a matcher that matches when the method is executed + * zero or more times. */ - public const ORDER_DURATION = 4; + function any(): AnyInvokedCountMatcher + { + return new AnyInvokedCountMatcher(); + } +} +if (!function_exists('PHPUnit\Framework\never')) { /** - * Order tests by @size annotation 'small', 'medium', 'large'. - * - * @var int + * Returns a matcher that matches when the method is never executed. */ - public const ORDER_SIZE = 5; + function never(): InvokedCountMatcher + { + return new InvokedCountMatcher(0); + } +} +if (!function_exists('PHPUnit\Framework\atLeast')) { /** - * List of sorting weights for all test result codes. A higher number gives higher priority. + * Returns a matcher that matches when the method is executed + * at least N times. */ - private const DEFECT_SORT_WEIGHT = [\PHPUnit\Runner\BaseTestRunner::STATUS_ERROR => 6, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE => 5, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING => 4, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE => 3, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY => 2, \PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED => 1, \PHPUnit\Runner\BaseTestRunner::STATUS_UNKNOWN => 0]; - private const SIZE_SORT_WEIGHT = [TestUtil::SMALL => 1, TestUtil::MEDIUM => 2, TestUtil::LARGE => 3, TestUtil::UNKNOWN => 4]; + function atLeast(int $requiredInvocations): InvokedAtLeastCountMatcher + { + return new InvokedAtLeastCountMatcher($requiredInvocations); + } +} +if (!function_exists('PHPUnit\Framework\atLeastOnce')) { /** - * @var array Associative array of (string => DEFECT_SORT_WEIGHT) elements + * Returns a matcher that matches when the method is executed at least once. */ - private $defectSortOrder = []; + function atLeastOnce(): InvokedAtLeastOnceMatcher + { + return new InvokedAtLeastOnceMatcher(); + } +} +if (!function_exists('PHPUnit\Framework\once')) { /** - * @var TestResultCache + * Returns a matcher that matches when the method is executed exactly once. */ - private $cache; + function once(): InvokedCountMatcher + { + return new InvokedCountMatcher(1); + } +} +if (!function_exists('PHPUnit\Framework\exactly')) { /** - * @var array A list of normalized names of tests before reordering + * Returns a matcher that matches when the method is executed + * exactly $count times. */ - private $originalExecutionOrder = []; + function exactly(int $count): InvokedCountMatcher + { + return new InvokedCountMatcher($count); + } +} +if (!function_exists('PHPUnit\Framework\atMost')) { /** - * @var array A list of normalized names of tests affected by reordering + * Returns a matcher that matches when the method is executed + * at most N times. */ - private $executionOrder = []; - public function __construct(?\PHPUnit\Runner\TestResultCache $cache = null) + function atMost(int $allowedInvocations): InvokedAtMostCountMatcher { - $this->cache = $cache ?? new \PHPUnit\Runner\NullTestResultCache(); + return new InvokedAtMostCountMatcher($allowedInvocations); } +} +if (!function_exists('PHPUnit\Framework\at')) { /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - * @throws Exception + * Returns a matcher that matches when the method is executed + * at the given index. */ - public function reorderTestsInSuite(Test $suite, int $order, bool $resolveDependencies, int $orderDefects, bool $isRootTestSuite = \true) : void + function at(int $index): InvokedAtIndexMatcher { - $allowedOrders = [self::ORDER_DEFAULT, self::ORDER_REVERSED, self::ORDER_RANDOMIZED, self::ORDER_DURATION, self::ORDER_SIZE]; - if (!in_array($order, $allowedOrders, \true)) { - throw new \PHPUnit\Runner\Exception('$order must be one of TestSuiteSorter::ORDER_[DEFAULT|REVERSED|RANDOMIZED|DURATION|SIZE]'); - } - $allowedOrderDefects = [self::ORDER_DEFAULT, self::ORDER_DEFECTS_FIRST]; - if (!in_array($orderDefects, $allowedOrderDefects, \true)) { - throw new \PHPUnit\Runner\Exception('$orderDefects must be one of TestSuiteSorter::ORDER_DEFAULT, TestSuiteSorter::ORDER_DEFECTS_FIRST'); - } - if ($isRootTestSuite) { - $this->originalExecutionOrder = $this->calculateTestExecutionOrder($suite); - } - if ($suite instanceof TestSuite) { - foreach ($suite as $_suite) { - $this->reorderTestsInSuite($_suite, $order, $resolveDependencies, $orderDefects, \false); - } - if ($orderDefects === self::ORDER_DEFECTS_FIRST) { - $this->addSuiteToDefectSortOrder($suite); - } - $this->sort($suite, $order, $resolveDependencies, $orderDefects); - } - if ($isRootTestSuite) { - $this->executionOrder = $this->calculateTestExecutionOrder($suite); - } + return new InvokedAtIndexMatcher($index); } - public function getOriginalExecutionOrder() : array +} +if (!function_exists('PHPUnit\Framework\returnValue')) { + function returnValue($value): ReturnStub { - return $this->originalExecutionOrder; + return new ReturnStub($value); } - public function getExecutionOrder() : array +} +if (!function_exists('PHPUnit\Framework\returnValueMap')) { + function returnValueMap(array $valueMap): ReturnValueMapStub { - return $this->executionOrder; + return new ReturnValueMapStub($valueMap); } - private function sort(TestSuite $suite, int $order, bool $resolveDependencies, int $orderDefects) : void +} +if (!function_exists('PHPUnit\Framework\returnArgument')) { + function returnArgument(int $argumentIndex): ReturnArgumentStub { - if (empty($suite->tests())) { - return; - } - if ($order === self::ORDER_REVERSED) { - $suite->setTests($this->reverse($suite->tests())); - } elseif ($order === self::ORDER_RANDOMIZED) { - $suite->setTests($this->randomize($suite->tests())); - } elseif ($order === self::ORDER_DURATION && $this->cache !== null) { - $suite->setTests($this->sortByDuration($suite->tests())); - } elseif ($order === self::ORDER_SIZE) { - $suite->setTests($this->sortBySize($suite->tests())); - } - if ($orderDefects === self::ORDER_DEFECTS_FIRST && $this->cache !== null) { - $suite->setTests($this->sortDefectsFirst($suite->tests())); - } - if ($resolveDependencies && !$suite instanceof DataProviderTestSuite) { - /** @var TestCase[] $tests */ - $tests = $suite->tests(); - $suite->setTests($this->resolveDependencies($tests)); - } + return new ReturnArgumentStub($argumentIndex); } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - private function addSuiteToDefectSortOrder(TestSuite $suite) : void +} +if (!function_exists('PHPUnit\Framework\returnCallback')) { + function returnCallback($callback): ReturnCallbackStub { - $max = 0; - foreach ($suite->tests() as $test) { - if (!$test instanceof Reorderable) { - continue; - } - if (!isset($this->defectSortOrder[$test->sortId()])) { - $this->defectSortOrder[$test->sortId()] = self::DEFECT_SORT_WEIGHT[$this->cache->getState($test->sortId())]; - $max = max($max, $this->defectSortOrder[$test->sortId()]); - } - } - $this->defectSortOrder[$suite->sortId()] = $max; + return new ReturnCallbackStub($callback); } - private function reverse(array $tests) : array +} +if (!function_exists('PHPUnit\Framework\returnSelf')) { + /** + * Returns the current object. + * + * This method is useful when mocking a fluent interface. + */ + function returnSelf(): ReturnSelfStub { - return array_reverse($tests); + return new ReturnSelfStub(); } - private function randomize(array $tests) : array +} +if (!function_exists('PHPUnit\Framework\throwException')) { + function throwException(Throwable $exception): ExceptionStub { - shuffle($tests); - return $tests; + return new ExceptionStub($exception); } - private function sortDefectsFirst(array $tests) : array +} +if (!function_exists('PHPUnit\Framework\onConsecutiveCalls')) { + function onConsecutiveCalls(): ConsecutiveCallsStub { - usort( - $tests, - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - function ($left, $right) { - return $this->cmpDefectPriorityAndTime($left, $right); - } - ); - return $tests; + $args = func_get_args(); + return new ConsecutiveCallsStub($args); } - private function sortByDuration(array $tests) : array +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function explode; +use PHPUnit\Util\Test as TestUtil; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class DataProviderTestSuite extends \PHPUnit\Framework\TestSuite +{ + /** + * @var list + */ + private $dependencies = []; + /** + * @param list $dependencies + */ + public function setDependencies(array $dependencies): void { - usort( - $tests, - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - function ($left, $right) { - return $this->cmpDuration($left, $right); + $this->dependencies = $dependencies; + foreach ($this->tests as $test) { + if (!$test instanceof \PHPUnit\Framework\TestCase) { + // @codeCoverageIgnoreStart + continue; + // @codeCoverageIgnoreStart } - ); - return $tests; + $test->setDependencies($dependencies); + } } - private function sortBySize(array $tests) : array + /** + * @return list + */ + public function provides(): array { - usort( - $tests, - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - function ($left, $right) { - return $this->cmpSize($left, $right); - } - ); - return $tests; + if ($this->providedTests === null) { + $this->providedTests = [new \PHPUnit\Framework\ExecutionOrderDependency($this->getName())]; + } + return $this->providedTests; } /** - * Comparator callback function to sort tests for "reach failure as fast as possible". - * - * 1. sort tests by defect weight defined in self::DEFECT_SORT_WEIGHT - * 2. when tests are equally defective, sort the fastest to the front - * 3. do not reorder successful tests - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @return list */ - private function cmpDefectPriorityAndTime(Test $a, Test $b) : int + public function requires(): array { - if (!($a instanceof Reorderable && $b instanceof Reorderable)) { - return 0; - } - $priorityA = $this->defectSortOrder[$a->sortId()] ?? 0; - $priorityB = $this->defectSortOrder[$b->sortId()] ?? 0; - if ($priorityB <=> $priorityA) { - // Sort defect weight descending - return $priorityB <=> $priorityA; - } - if ($priorityA || $priorityB) { - return $this->cmpDuration($a, $b); - } - // do not change execution order - return 0; + // A DataProviderTestSuite does not have to traverse its child tests + // as these are inherited and cannot reference dataProvider rows directly + return $this->dependencies; } /** - * Compares test duration for sorting tests by duration ascending. + * Returns the size of the each test created using the data provider(s). * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws InvalidArgumentException */ - private function cmpDuration(Test $a, Test $b) : int + public function getSize(): int { - if (!($a instanceof Reorderable && $b instanceof Reorderable)) { - return 0; - } - return $this->cache->getTime($a->sortId()) <=> $this->cache->getTime($b->sortId()); + [$className, $methodName] = explode('::', $this->getName()); + return TestUtil::getSize($className, $methodName); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ErrorTestCase extends \PHPUnit\Framework\TestCase +{ /** - * Compares test size for sorting tests small->medium->large->unknown. + * @var ?bool + */ + protected $backupGlobals = \false; + /** + * @var ?bool + */ + protected $backupStaticAttributes = \false; + /** + * @var ?bool + */ + protected $runTestInSeparateProcess = \false; + /** + * @var string */ - private function cmpSize(Test $a, Test $b) : int + private $message; + public function __construct(string $message = '') { - $sizeA = $a instanceof TestCase || $a instanceof DataProviderTestSuite ? $a->getSize() : TestUtil::UNKNOWN; - $sizeB = $b instanceof TestCase || $b instanceof DataProviderTestSuite ? $b->getSize() : TestUtil::UNKNOWN; - return self::SIZE_SORT_WEIGHT[$sizeA] <=> self::SIZE_SORT_WEIGHT[$sizeB]; + $this->message = $message; + parent::__construct('Error'); + } + public function getMessage(): string + { + return $this->message; } /** - * Reorder Tests within a TestCase in such a way as to resolve as many dependencies as possible. - * The algorithm will leave the tests in original running order when it can. - * For more details see the documentation for test dependencies. - * - * Short description of algorithm: - * 1. Pick the next Test from remaining tests to be checked for dependencies. - * 2. If the test has no dependencies: mark done, start again from the top - * 3. If the test has dependencies but none left to do: mark done, start again from the top - * 4. When we reach the end add any leftover tests to the end. These will be marked 'skipped' during execution. - * - * @param array $tests - * - * @return array + * Returns a string representation of the test case. */ - private function resolveDependencies(array $tests) : array + public function toString(): string { - $newTestOrder = []; - $i = 0; - $provided = []; - do { - if ([] === array_diff($tests[$i]->requires(), $provided)) { - $provided = array_merge($provided, $tests[$i]->provides()); - $newTestOrder = array_merge($newTestOrder, array_splice($tests, $i, 1)); - $i = 0; - } else { - $i++; - } - } while (!empty($tests) && $i < count($tests)); - return array_merge($newTestOrder, $tests); + return 'Error'; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * + * @psalm-return never-return */ - private function calculateTestExecutionOrder(Test $suite) : array + protected function runTest(): void { - $tests = []; - if ($suite instanceof TestSuite) { - foreach ($suite->tests() as $test) { - if (!$test instanceof TestSuite && $test instanceof Reorderable) { - $tests[] = $test->sortId(); - } else { - $tests = array_merge($tests, $this->calculateTestExecutionOrder($test)); - } - } - } - return $tests; + throw new \PHPUnit\Framework\Error($this->message); } } getVersion(); - } - return self::$version; + $constraint = new LogicalNot(new TraversableContainsIdentical($needle)); + static::assertThat($haystack, $constraint, $message); } - public static function series() : string + public static function assertNotContainsEquals($needle, iterable $haystack, string $message = ''): void { - if (strpos(self::id(), '-')) { - $version = explode('-', self::id())[0]; - } else { - $version = self::id(); - } - return implode('.', array_slice(explode('.', $version), 0, 2)); + $constraint = new LogicalNot(new TraversableContainsEqual($needle)); + static::assertThat($haystack, $constraint, $message); } - public static function getVersionString() : string + /** + * Asserts that a haystack contains only values of a given type. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void { - return 'PHPUnit ' . self::id() . ' by Sebastian Bergmann and contributors.'; + if ($isNativeType === null) { + $isNativeType = Type::isType($type); + } + static::assertThat($haystack, new TraversableContainsOnly($type, $isNativeType), $message); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\CliArguments; - -use function array_map; -use function array_merge; -use function class_exists; -use function explode; -use function is_numeric; -use function str_replace; -use PHPUnit\Runner\TestSuiteSorter; -use PHPUnit\TextUI\DefaultResultPrinter; -use PHPUnit\TextUI\XmlConfiguration\Extension; -use PHPUnit\Util\Log\TeamCity; -use PHPUnit\Util\TestDox\CliTestDoxPrinter; -use PHPUnit\SebastianBergmann\CliParser\Exception as CliParserException; -use PHPUnit\SebastianBergmann\CliParser\Parser as CliParser; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Builder -{ - private const LONG_OPTIONS = ['atleast-version=', 'prepend=', 'bootstrap=', 'cache-result', 'do-not-cache-result', 'cache-result-file=', 'check-version', 'colors==', 'columns=', 'configuration=', 'coverage-cache=', 'warm-coverage-cache', 'coverage-filter=', 'coverage-clover=', 'coverage-cobertura=', 'coverage-crap4j=', 'coverage-html=', 'coverage-php=', 'coverage-text==', 'coverage-xml=', 'path-coverage', 'debug', 'disallow-test-output', 'disallow-resource-usage', 'disallow-todo-tests', 'default-time-limit=', 'enforce-time-limit', 'exclude-group=', 'extensions=', 'filter=', 'generate-configuration', 'globals-backup', 'group=', 'covers=', 'uses=', 'help', 'resolve-dependencies', 'ignore-dependencies', 'include-path=', 'list-groups', 'list-suites', 'list-tests', 'list-tests-xml=', 'loader=', 'log-junit=', 'log-teamcity=', 'migrate-configuration', 'no-configuration', 'no-coverage', 'no-logging', 'no-interaction', 'no-extensions', 'order-by=', 'printer=', 'process-isolation', 'repeat=', 'dont-report-useless-tests', 'random-order', 'random-order-seed=', 'reverse-order', 'reverse-list', 'static-backup', 'stderr', 'stop-on-defect', 'stop-on-error', 'stop-on-failure', 'stop-on-warning', 'stop-on-incomplete', 'stop-on-risky', 'stop-on-skipped', 'fail-on-empty-test-suite', 'fail-on-incomplete', 'fail-on-risky', 'fail-on-skipped', 'fail-on-warning', 'strict-coverage', 'disable-coverage-ignore', 'strict-global-state', 'teamcity', 'testdox', 'testdox-group=', 'testdox-exclude-group=', 'testdox-html=', 'testdox-text=', 'testdox-xml=', 'test-suffix=', 'testsuite=', 'verbose', 'version', 'whitelist=', 'dump-xdebug-filter=']; - private const SHORT_OPTIONS = 'd:c:hv'; - public function fromParameters(array $parameters, array $additionalLongOptions) : \PHPUnit\TextUI\CliArguments\Configuration + /** + * Asserts that a haystack contains only instances of a given class name. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = ''): void { - try { - $options = (new CliParser())->parse($parameters, self::SHORT_OPTIONS, array_merge(self::LONG_OPTIONS, $additionalLongOptions)); - } catch (CliParserException $e) { - throw new \PHPUnit\TextUI\CliArguments\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - $argument = null; - $atLeastVersion = null; - $backupGlobals = null; - $backupStaticAttributes = null; - $beStrictAboutChangesToGlobalState = null; - $beStrictAboutResourceUsageDuringSmallTests = null; - $bootstrap = null; - $cacheResult = null; - $cacheResultFile = null; - $checkVersion = null; - $colors = null; - $columns = null; - $configuration = null; - $coverageCacheDirectory = null; - $warmCoverageCache = null; - $coverageFilter = null; - $coverageClover = null; - $coverageCobertura = null; - $coverageCrap4J = null; - $coverageHtml = null; - $coveragePhp = null; - $coverageText = null; - $coverageTextShowUncoveredFiles = null; - $coverageTextShowOnlySummary = null; - $coverageXml = null; - $pathCoverage = null; - $debug = null; - $defaultTimeLimit = null; - $disableCodeCoverageIgnore = null; - $disallowTestOutput = null; - $disallowTodoAnnotatedTests = null; - $enforceTimeLimit = null; - $excludeGroups = null; - $executionOrder = null; - $executionOrderDefects = null; - $extensions = []; - $unavailableExtensions = []; - $failOnEmptyTestSuite = null; - $failOnIncomplete = null; - $failOnRisky = null; - $failOnSkipped = null; - $failOnWarning = null; - $filter = null; - $generateConfiguration = null; - $migrateConfiguration = null; - $groups = null; - $testsCovering = null; - $testsUsing = null; - $help = null; - $includePath = null; - $iniSettings = []; - $junitLogfile = null; - $listGroups = null; - $listSuites = null; - $listTests = null; - $listTestsXml = null; - $loader = null; - $noCoverage = null; - $noExtensions = null; - $noInteraction = null; - $noLogging = null; - $printer = null; - $processIsolation = null; - $randomOrderSeed = null; - $repeat = null; - $reportUselessTests = null; - $resolveDependencies = null; - $reverseList = null; - $stderr = null; - $strictCoverage = null; - $stopOnDefect = null; - $stopOnError = null; - $stopOnFailure = null; - $stopOnIncomplete = null; - $stopOnRisky = null; - $stopOnSkipped = null; - $stopOnWarning = null; - $teamcityLogfile = null; - $testdoxExcludeGroups = null; - $testdoxGroups = null; - $testdoxHtmlFile = null; - $testdoxTextFile = null; - $testdoxXmlFile = null; - $testSuffixes = null; - $testSuite = null; - $unrecognizedOptions = []; - $unrecognizedOrderBy = null; - $useDefaultConfiguration = null; - $verbose = null; - $version = null; - $xdebugFilterFile = null; - if (isset($options[1][0])) { - $argument = $options[1][0]; - } - foreach ($options[0] as $option) { - switch ($option[0]) { - case '--colors': - $colors = $option[1] ?: DefaultResultPrinter::COLOR_AUTO; - break; - case '--bootstrap': - $bootstrap = $option[1]; - break; - case '--cache-result': - $cacheResult = \true; - break; - case '--do-not-cache-result': - $cacheResult = \false; - break; - case '--cache-result-file': - $cacheResultFile = $option[1]; - break; - case '--columns': - if (is_numeric($option[1])) { - $columns = (int) $option[1]; - } elseif ($option[1] === 'max') { - $columns = 'max'; - } - break; - case 'c': - case '--configuration': - $configuration = $option[1]; - break; - case '--coverage-cache': - $coverageCacheDirectory = $option[1]; - break; - case '--warm-coverage-cache': - $warmCoverageCache = \true; - break; - case '--coverage-clover': - $coverageClover = $option[1]; - break; - case '--coverage-cobertura': - $coverageCobertura = $option[1]; - break; - case '--coverage-crap4j': - $coverageCrap4J = $option[1]; - break; - case '--coverage-html': - $coverageHtml = $option[1]; - break; - case '--coverage-php': - $coveragePhp = $option[1]; - break; - case '--coverage-text': - if ($option[1] === null) { - $option[1] = 'php://stdout'; - } - $coverageText = $option[1]; - $coverageTextShowUncoveredFiles = \false; - $coverageTextShowOnlySummary = \false; - break; - case '--coverage-xml': - $coverageXml = $option[1]; - break; - case '--path-coverage': - $pathCoverage = \true; - break; - case 'd': - $tmp = explode('=', $option[1]); - if (isset($tmp[0])) { - if (isset($tmp[1])) { - $iniSettings[$tmp[0]] = $tmp[1]; - } else { - $iniSettings[$tmp[0]] = '1'; - } - } - break; - case '--debug': - $debug = \true; - break; - case 'h': - case '--help': - $help = \true; - break; - case '--filter': - $filter = $option[1]; - break; - case '--testsuite': - $testSuite = $option[1]; - break; - case '--generate-configuration': - $generateConfiguration = \true; - break; - case '--migrate-configuration': - $migrateConfiguration = \true; - break; - case '--group': - $groups = explode(',', $option[1]); - break; - case '--exclude-group': - $excludeGroups = explode(',', $option[1]); - break; - case '--covers': - $testsCovering = array_map('strtolower', explode(',', $option[1])); - break; - case '--uses': - $testsUsing = array_map('strtolower', explode(',', $option[1])); - break; - case '--test-suffix': - $testSuffixes = explode(',', $option[1]); - break; - case '--include-path': - $includePath = $option[1]; - break; - case '--list-groups': - $listGroups = \true; - break; - case '--list-suites': - $listSuites = \true; - break; - case '--list-tests': - $listTests = \true; - break; - case '--list-tests-xml': - $listTestsXml = $option[1]; - break; - case '--printer': - $printer = $option[1]; - break; - case '--loader': - $loader = $option[1]; - break; - case '--log-junit': - $junitLogfile = $option[1]; - break; - case '--log-teamcity': - $teamcityLogfile = $option[1]; - break; - case '--order-by': - foreach (explode(',', $option[1]) as $order) { - switch ($order) { - case 'default': - $executionOrder = TestSuiteSorter::ORDER_DEFAULT; - $executionOrderDefects = TestSuiteSorter::ORDER_DEFAULT; - $resolveDependencies = \true; - break; - case 'defects': - $executionOrderDefects = TestSuiteSorter::ORDER_DEFECTS_FIRST; - break; - case 'depends': - $resolveDependencies = \true; - break; - case 'duration': - $executionOrder = TestSuiteSorter::ORDER_DURATION; - break; - case 'no-depends': - $resolveDependencies = \false; - break; - case 'random': - $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; - break; - case 'reverse': - $executionOrder = TestSuiteSorter::ORDER_REVERSED; - break; - case 'size': - $executionOrder = TestSuiteSorter::ORDER_SIZE; - break; - default: - $unrecognizedOrderBy = $order; - } - } - break; - case '--process-isolation': - $processIsolation = \true; - break; - case '--repeat': - $repeat = (int) $option[1]; - break; - case '--stderr': - $stderr = \true; - break; - case '--stop-on-defect': - $stopOnDefect = \true; - break; - case '--stop-on-error': - $stopOnError = \true; - break; - case '--stop-on-failure': - $stopOnFailure = \true; - break; - case '--stop-on-warning': - $stopOnWarning = \true; - break; - case '--stop-on-incomplete': - $stopOnIncomplete = \true; - break; - case '--stop-on-risky': - $stopOnRisky = \true; - break; - case '--stop-on-skipped': - $stopOnSkipped = \true; - break; - case '--fail-on-empty-test-suite': - $failOnEmptyTestSuite = \true; - break; - case '--fail-on-incomplete': - $failOnIncomplete = \true; - break; - case '--fail-on-risky': - $failOnRisky = \true; - break; - case '--fail-on-skipped': - $failOnSkipped = \true; - break; - case '--fail-on-warning': - $failOnWarning = \true; - break; - case '--teamcity': - $printer = TeamCity::class; - break; - case '--testdox': - $printer = CliTestDoxPrinter::class; - break; - case '--testdox-group': - $testdoxGroups = explode(',', $option[1]); - break; - case '--testdox-exclude-group': - $testdoxExcludeGroups = explode(',', $option[1]); - break; - case '--testdox-html': - $testdoxHtmlFile = $option[1]; - break; - case '--testdox-text': - $testdoxTextFile = $option[1]; - break; - case '--testdox-xml': - $testdoxXmlFile = $option[1]; - break; - case '--no-configuration': - $useDefaultConfiguration = \false; - break; - case '--extensions': - foreach (explode(',', $option[1]) as $extensionClass) { - if (!class_exists($extensionClass)) { - $unavailableExtensions[] = $extensionClass; - continue; - } - $extensions[] = new Extension($extensionClass, '', []); - } - break; - case '--no-extensions': - $noExtensions = \true; - break; - case '--no-coverage': - $noCoverage = \true; - break; - case '--no-logging': - $noLogging = \true; - break; - case '--no-interaction': - $noInteraction = \true; - break; - case '--globals-backup': - $backupGlobals = \true; - break; - case '--static-backup': - $backupStaticAttributes = \true; - break; - case 'v': - case '--verbose': - $verbose = \true; - break; - case '--atleast-version': - $atLeastVersion = $option[1]; - break; - case '--version': - $version = \true; - break; - case '--dont-report-useless-tests': - $reportUselessTests = \false; - break; - case '--strict-coverage': - $strictCoverage = \true; - break; - case '--disable-coverage-ignore': - $disableCodeCoverageIgnore = \true; - break; - case '--strict-global-state': - $beStrictAboutChangesToGlobalState = \true; - break; - case '--disallow-test-output': - $disallowTestOutput = \true; - break; - case '--disallow-resource-usage': - $beStrictAboutResourceUsageDuringSmallTests = \true; - break; - case '--default-time-limit': - $defaultTimeLimit = (int) $option[1]; - break; - case '--enforce-time-limit': - $enforceTimeLimit = \true; - break; - case '--disallow-todo-tests': - $disallowTodoAnnotatedTests = \true; - break; - case '--reverse-list': - $reverseList = \true; - break; - case '--check-version': - $checkVersion = \true; - break; - case '--coverage-filter': - case '--whitelist': - if ($coverageFilter === null) { - $coverageFilter = []; - } - $coverageFilter[] = $option[1]; - break; - case '--random-order': - $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; - break; - case '--random-order-seed': - $randomOrderSeed = (int) $option[1]; - break; - case '--resolve-dependencies': - $resolveDependencies = \true; - break; - case '--ignore-dependencies': - $resolveDependencies = \false; - break; - case '--reverse-order': - $executionOrder = TestSuiteSorter::ORDER_REVERSED; - break; - case '--dump-xdebug-filter': - $xdebugFilterFile = $option[1]; - break; - default: - $unrecognizedOptions[str_replace('--', '', $option[0])] = $option[1]; - } + static::assertThat($haystack, new TraversableContainsOnly($className, \false), $message); + } + /** + * Asserts that a haystack does not contain only values of a given type. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertNotContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = null, string $message = ''): void + { + if ($isNativeType === null) { + $isNativeType = Type::isType($type); } - if (empty($extensions)) { - $extensions = null; + static::assertThat($haystack, new LogicalNot(new TraversableContainsOnly($type, $isNativeType)), $message); + } + /** + * Asserts the number of elements of an array, Countable or Traversable. + * + * @param Countable|iterable $haystack + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + */ + public static function assertCount(int $expectedCount, $haystack, string $message = ''): void + { + if ($haystack instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $haystack parameter is deprecated. Support for this will be removed in PHPUnit 10.'); } - if (empty($unavailableExtensions)) { - $unavailableExtensions = null; + if (!$haystack instanceof Countable && !is_iterable($haystack)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); } - if (empty($iniSettings)) { - $iniSettings = null; + static::assertThat($haystack, new Count($expectedCount), $message); + } + /** + * Asserts the number of elements of an array, Countable or Traversable. + * + * @param Countable|iterable $haystack + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + */ + public static function assertNotCount(int $expectedCount, $haystack, string $message = ''): void + { + if ($haystack instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $haystack parameter is deprecated. Support for this will be removed in PHPUnit 10.'); } - if (empty($coverageFilter)) { - $coverageFilter = null; + if (!$haystack instanceof Countable && !is_iterable($haystack)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); } - return new \PHPUnit\TextUI\CliArguments\Configuration($argument, $atLeastVersion, $backupGlobals, $backupStaticAttributes, $beStrictAboutChangesToGlobalState, $beStrictAboutResourceUsageDuringSmallTests, $bootstrap, $cacheResult, $cacheResultFile, $checkVersion, $colors, $columns, $configuration, $coverageClover, $coverageCobertura, $coverageCrap4J, $coverageHtml, $coveragePhp, $coverageText, $coverageTextShowUncoveredFiles, $coverageTextShowOnlySummary, $coverageXml, $pathCoverage, $coverageCacheDirectory, $warmCoverageCache, $debug, $defaultTimeLimit, $disableCodeCoverageIgnore, $disallowTestOutput, $disallowTodoAnnotatedTests, $enforceTimeLimit, $excludeGroups, $executionOrder, $executionOrderDefects, $extensions, $unavailableExtensions, $failOnEmptyTestSuite, $failOnIncomplete, $failOnRisky, $failOnSkipped, $failOnWarning, $filter, $generateConfiguration, $migrateConfiguration, $groups, $testsCovering, $testsUsing, $help, $includePath, $iniSettings, $junitLogfile, $listGroups, $listSuites, $listTests, $listTestsXml, $loader, $noCoverage, $noExtensions, $noInteraction, $noLogging, $printer, $processIsolation, $randomOrderSeed, $repeat, $reportUselessTests, $resolveDependencies, $reverseList, $stderr, $strictCoverage, $stopOnDefect, $stopOnError, $stopOnFailure, $stopOnIncomplete, $stopOnRisky, $stopOnSkipped, $stopOnWarning, $teamcityLogfile, $testdoxExcludeGroups, $testdoxGroups, $testdoxHtmlFile, $testdoxTextFile, $testdoxXmlFile, $testSuffixes, $testSuite, $unrecognizedOptions, $unrecognizedOrderBy, $useDefaultConfiguration, $verbose, $version, $coverageFilter, $xdebugFilterFile); + $constraint = new LogicalNot(new Count($expectedCount)); + static::assertThat($haystack, $constraint, $message); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\CliArguments; - -use PHPUnit\TextUI\XmlConfiguration\Extension; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Configuration -{ /** - * @var ?string + * Asserts that two variables are equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $argument; + public static function assertEquals($expected, $actual, string $message = ''): void + { + $constraint = new IsEqual($expected); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?string + * Asserts that two variables are equal (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $atLeastVersion; + public static function assertEqualsCanonicalizing($expected, $actual, string $message = ''): void + { + $constraint = new IsEqualCanonicalizing($expected); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?bool + * Asserts that two variables are equal (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $backupGlobals; + public static function assertEqualsIgnoringCase($expected, $actual, string $message = ''): void + { + $constraint = new IsEqualIgnoringCase($expected); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?bool + * Asserts that two variables are equal (with delta). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $backupStaticAttributes; + public static function assertEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void + { + $constraint = new IsEqualWithDelta($expected, $delta); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?bool + * Asserts that two variables are not equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $beStrictAboutChangesToGlobalState; + public static function assertNotEquals($expected, $actual, string $message = ''): void + { + $constraint = new LogicalNot(new IsEqual($expected)); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?bool + * Asserts that two variables are not equal (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $beStrictAboutResourceUsageDuringSmallTests; + public static function assertNotEqualsCanonicalizing($expected, $actual, string $message = ''): void + { + $constraint = new LogicalNot(new IsEqualCanonicalizing($expected)); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?string + * Asserts that two variables are not equal (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $bootstrap; + public static function assertNotEqualsIgnoringCase($expected, $actual, string $message = ''): void + { + $constraint = new LogicalNot(new IsEqualIgnoringCase($expected)); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?bool + * Asserts that two variables are not equal (with delta). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $cacheResult; + public static function assertNotEqualsWithDelta($expected, $actual, float $delta, string $message = ''): void + { + $constraint = new LogicalNot(new IsEqualWithDelta($expected, $delta)); + static::assertThat($actual, $constraint, $message); + } /** - * @var ?string + * @throws ExpectationFailedException */ - private $cacheResultFile; + public static function assertObjectEquals(object $expected, object $actual, string $method = 'equals', string $message = ''): void + { + static::assertThat($actual, static::objectEquals($expected, $method), $message); + } /** - * @var ?bool + * Asserts that a variable is empty. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert empty $actual */ - private $checkVersion; + public static function assertEmpty($actual, string $message = ''): void + { + if ($actual instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $actual parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + static::assertThat($actual, static::isEmpty(), $message); + } /** - * @var ?string + * Asserts that a variable is not empty. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !empty $actual */ - private $colors; + public static function assertNotEmpty($actual, string $message = ''): void + { + if ($actual instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $actual parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + static::assertThat($actual, static::logicalNot(static::isEmpty()), $message); + } /** - * @var null|int|string + * Asserts that a value is greater than another value. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $columns; + public static function assertGreaterThan($expected, $actual, string $message = ''): void + { + static::assertThat($actual, static::greaterThan($expected), $message); + } /** - * @var ?string + * Asserts that a value is greater than or equal to another value. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $configuration; + public static function assertGreaterThanOrEqual($expected, $actual, string $message = ''): void + { + static::assertThat($actual, static::greaterThanOrEqual($expected), $message); + } /** - * @var null|string[] + * Asserts that a value is smaller than another value. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageFilter; + public static function assertLessThan($expected, $actual, string $message = ''): void + { + static::assertThat($actual, static::lessThan($expected), $message); + } /** - * @var ?string + * Asserts that a value is smaller than or equal to another value. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageClover; + public static function assertLessThanOrEqual($expected, $actual, string $message = ''): void + { + static::assertThat($actual, static::lessThanOrEqual($expected), $message); + } + /** + * Asserts that the contents of one file is equal to the contents of another + * file. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileEquals(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new IsEqual(file_get_contents($expected)); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of one file is equal to the contents of another + * file (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileEqualsCanonicalizing(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new IsEqualCanonicalizing(file_get_contents($expected)); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of one file is equal to the contents of another + * file (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileEqualsIgnoringCase(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new IsEqualIgnoringCase(file_get_contents($expected)); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of one file is not equal to the contents of + * another file. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileNotEquals(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new LogicalNot(new IsEqual(file_get_contents($expected))); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of one file is not equal to the contents of another + * file (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileNotEqualsCanonicalizing(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new LogicalNot(new IsEqualCanonicalizing(file_get_contents($expected))); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of one file is not equal to the contents of another + * file (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertFileNotEqualsIgnoringCase(string $expected, string $actual, string $message = ''): void + { + static::assertFileExists($expected, $message); + static::assertFileExists($actual, $message); + $constraint = new LogicalNot(new IsEqualIgnoringCase(file_get_contents($expected))); + static::assertThat(file_get_contents($actual), $constraint, $message); + } + /** + * Asserts that the contents of a string is equal + * to the contents of a file. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringEqualsFile(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new IsEqual(file_get_contents($expectedFile)); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that the contents of a string is equal + * to the contents of a file (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new IsEqualCanonicalizing(file_get_contents($expectedFile)); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that the contents of a string is equal + * to the contents of a file (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new IsEqualIgnoringCase(file_get_contents($expectedFile)); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that the contents of a string is not equal + * to the contents of a file. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringNotEqualsFile(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new LogicalNot(new IsEqual(file_get_contents($expectedFile))); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that the contents of a string is not equal + * to the contents of a file (canonicalizing). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringNotEqualsFileCanonicalizing(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new LogicalNot(new IsEqualCanonicalizing(file_get_contents($expectedFile))); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that the contents of a string is not equal + * to the contents of a file (ignoring case). + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertStringNotEqualsFileIgnoringCase(string $expectedFile, string $actualString, string $message = ''): void + { + static::assertFileExists($expectedFile, $message); + $constraint = new LogicalNot(new IsEqualIgnoringCase(file_get_contents($expectedFile))); + static::assertThat($actualString, $constraint, $message); + } + /** + * Asserts that a file/dir is readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertIsReadable(string $filename, string $message = ''): void + { + static::assertThat($filename, new IsReadable(), $message); + } + /** + * Asserts that a file/dir exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertIsNotReadable(string $filename, string $message = ''): void + { + static::assertThat($filename, new LogicalNot(new IsReadable()), $message); + } + /** + * Asserts that a file/dir exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4062 + */ + public static function assertNotIsReadable(string $filename, string $message = ''): void + { + self::createWarning('assertNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertIsNotReadable() instead.'); + static::assertThat($filename, new LogicalNot(new IsReadable()), $message); + } + /** + * Asserts that a file/dir exists and is writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertIsWritable(string $filename, string $message = ''): void + { + static::assertThat($filename, new IsWritable(), $message); + } + /** + * Asserts that a file/dir exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertIsNotWritable(string $filename, string $message = ''): void + { + static::assertThat($filename, new LogicalNot(new IsWritable()), $message); + } + /** + * Asserts that a file/dir exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4065 + */ + public static function assertNotIsWritable(string $filename, string $message = ''): void + { + self::createWarning('assertNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertIsNotWritable() instead.'); + static::assertThat($filename, new LogicalNot(new IsWritable()), $message); + } + /** + * Asserts that a directory exists. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryExists(string $directory, string $message = ''): void + { + static::assertThat($directory, new DirectoryExists(), $message); + } + /** + * Asserts that a directory does not exist. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryDoesNotExist(string $directory, string $message = ''): void + { + static::assertThat($directory, new LogicalNot(new DirectoryExists()), $message); + } + /** + * Asserts that a directory does not exist. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4068 + */ + public static function assertDirectoryNotExists(string $directory, string $message = ''): void + { + self::createWarning('assertDirectoryNotExists() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryDoesNotExist() instead.'); + static::assertThat($directory, new LogicalNot(new DirectoryExists()), $message); + } + /** + * Asserts that a directory exists and is readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryIsReadable(string $directory, string $message = ''): void + { + self::assertDirectoryExists($directory, $message); + self::assertIsReadable($directory, $message); + } + /** + * Asserts that a directory exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryIsNotReadable(string $directory, string $message = ''): void + { + self::assertDirectoryExists($directory, $message); + self::assertIsNotReadable($directory, $message); + } + /** + * Asserts that a directory exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4071 + */ + public static function assertDirectoryNotIsReadable(string $directory, string $message = ''): void + { + self::createWarning('assertDirectoryNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryIsNotReadable() instead.'); + self::assertDirectoryExists($directory, $message); + self::assertIsNotReadable($directory, $message); + } + /** + * Asserts that a directory exists and is writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryIsWritable(string $directory, string $message = ''): void + { + self::assertDirectoryExists($directory, $message); + self::assertIsWritable($directory, $message); + } + /** + * Asserts that a directory exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertDirectoryIsNotWritable(string $directory, string $message = ''): void + { + self::assertDirectoryExists($directory, $message); + self::assertIsNotWritable($directory, $message); + } /** - * @var ?string + * Asserts that a directory exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4074 */ - private $coverageCobertura; + public static function assertDirectoryNotIsWritable(string $directory, string $message = ''): void + { + self::createWarning('assertDirectoryNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDirectoryIsNotWritable() instead.'); + self::assertDirectoryExists($directory, $message); + self::assertIsNotWritable($directory, $message); + } /** - * @var ?string + * Asserts that a file exists. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageCrap4J; + public static function assertFileExists(string $filename, string $message = ''): void + { + static::assertThat($filename, new FileExists(), $message); + } /** - * @var ?string + * Asserts that a file does not exist. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageHtml; + public static function assertFileDoesNotExist(string $filename, string $message = ''): void + { + static::assertThat($filename, new LogicalNot(new FileExists()), $message); + } /** - * @var ?string + * Asserts that a file does not exist. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4077 */ - private $coveragePhp; + public static function assertFileNotExists(string $filename, string $message = ''): void + { + self::createWarning('assertFileNotExists() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileDoesNotExist() instead.'); + static::assertThat($filename, new LogicalNot(new FileExists()), $message); + } /** - * @var ?string + * Asserts that a file exists and is readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageText; + public static function assertFileIsReadable(string $file, string $message = ''): void + { + self::assertFileExists($file, $message); + self::assertIsReadable($file, $message); + } /** - * @var ?bool + * Asserts that a file exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageTextShowUncoveredFiles; + public static function assertFileIsNotReadable(string $file, string $message = ''): void + { + self::assertFileExists($file, $message); + self::assertIsNotReadable($file, $message); + } /** - * @var ?bool + * Asserts that a file exists and is not readable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4080 */ - private $coverageTextShowOnlySummary; + public static function assertFileNotIsReadable(string $file, string $message = ''): void + { + self::createWarning('assertFileNotIsReadable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileIsNotReadable() instead.'); + self::assertFileExists($file, $message); + self::assertIsNotReadable($file, $message); + } /** - * @var ?string + * Asserts that a file exists and is writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $coverageXml; + public static function assertFileIsWritable(string $file, string $message = ''): void + { + self::assertFileExists($file, $message); + self::assertIsWritable($file, $message); + } /** - * @var ?bool + * Asserts that a file exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $pathCoverage; + public static function assertFileIsNotWritable(string $file, string $message = ''): void + { + self::assertFileExists($file, $message); + self::assertIsNotWritable($file, $message); + } /** - * @var ?string + * Asserts that a file exists and is not writable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4083 */ - private $coverageCacheDirectory; + public static function assertFileNotIsWritable(string $file, string $message = ''): void + { + self::createWarning('assertFileNotIsWritable() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertFileIsNotWritable() instead.'); + self::assertFileExists($file, $message); + self::assertIsNotWritable($file, $message); + } /** - * @var ?bool + * Asserts that a condition is true. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert true $condition */ - private $warmCoverageCache; + public static function assertTrue($condition, string $message = ''): void + { + static::assertThat($condition, static::isTrue(), $message); + } /** - * @var ?bool + * Asserts that a condition is not true. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !true $condition */ - private $debug; + public static function assertNotTrue($condition, string $message = ''): void + { + static::assertThat($condition, static::logicalNot(static::isTrue()), $message); + } /** - * @var ?int + * Asserts that a condition is false. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert false $condition */ - private $defaultTimeLimit; + public static function assertFalse($condition, string $message = ''): void + { + static::assertThat($condition, static::isFalse(), $message); + } /** - * @var ?bool + * Asserts that a condition is not false. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !false $condition */ - private $disableCodeCoverageIgnore; + public static function assertNotFalse($condition, string $message = ''): void + { + static::assertThat($condition, static::logicalNot(static::isFalse()), $message); + } /** - * @var ?bool + * Asserts that a variable is null. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert null $actual */ - private $disallowTestOutput; + public static function assertNull($actual, string $message = ''): void + { + static::assertThat($actual, static::isNull(), $message); + } /** - * @var ?bool + * Asserts that a variable is not null. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !null $actual */ - private $disallowTodoAnnotatedTests; + public static function assertNotNull($actual, string $message = ''): void + { + static::assertThat($actual, static::logicalNot(static::isNull()), $message); + } /** - * @var ?bool + * Asserts that a variable is finite. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $enforceTimeLimit; + public static function assertFinite($actual, string $message = ''): void + { + static::assertThat($actual, static::isFinite(), $message); + } /** - * @var null|string[] + * Asserts that a variable is infinite. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $excludeGroups; + public static function assertInfinite($actual, string $message = ''): void + { + static::assertThat($actual, static::isInfinite(), $message); + } /** - * @var ?int + * Asserts that a variable is nan. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $executionOrder; + public static function assertNan($actual, string $message = ''): void + { + static::assertThat($actual, static::isNan(), $message); + } /** - * @var ?int + * Asserts that a class has a specified attribute. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $executionOrderDefects; + public static function assertClassHasAttribute(string $attributeName, string $className, string $message = ''): void + { + self::createWarning('assertClassHasAttribute() is deprecated and will be removed in PHPUnit 10.'); + if (!self::isValidClassAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!class_exists($className)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + } + static::assertThat($className, new ClassHasAttribute($attributeName), $message); + } /** - * @var null|Extension[] + * Asserts that a class does not have a specified attribute. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $extensions; + public static function assertClassNotHasAttribute(string $attributeName, string $className, string $message = ''): void + { + self::createWarning('assertClassNotHasAttribute() is deprecated and will be removed in PHPUnit 10.'); + if (!self::isValidClassAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!class_exists($className)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + } + static::assertThat($className, new LogicalNot(new ClassHasAttribute($attributeName)), $message); + } /** - * @var null|string[] + * Asserts that a class has a specified static attribute. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $unavailableExtensions; + public static function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = ''): void + { + self::createWarning('assertClassHasStaticAttribute() is deprecated and will be removed in PHPUnit 10.'); + if (!self::isValidClassAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!class_exists($className)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + } + static::assertThat($className, new ClassHasStaticAttribute($attributeName), $message); + } /** - * @var ?bool + * Asserts that a class does not have a specified static attribute. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $failOnEmptyTestSuite; + public static function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = ''): void + { + self::createWarning('assertClassNotHasStaticAttribute() is deprecated and will be removed in PHPUnit 10.'); + if (!self::isValidClassAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!class_exists($className)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'class name'); + } + static::assertThat($className, new LogicalNot(new ClassHasStaticAttribute($attributeName)), $message); + } /** - * @var ?bool + * Asserts that an object has a specified attribute. + * + * @param object $object + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $failOnIncomplete; + public static function assertObjectHasAttribute(string $attributeName, $object, string $message = ''): void + { + self::createWarning('assertObjectHasAttribute() is deprecated and will be removed in PHPUnit 10. Refactor your test to use assertObjectHasProperty() instead.'); + if (!self::isValidObjectAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!is_object($object)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'object'); + } + static::assertThat($object, new ObjectHasAttribute($attributeName), $message); + } /** - * @var ?bool + * Asserts that an object does not have a specified attribute. + * + * @param object $object + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - private $failOnRisky; + public static function assertObjectNotHasAttribute(string $attributeName, $object, string $message = ''): void + { + self::createWarning('assertObjectNotHasAttribute() is deprecated and will be removed in PHPUnit 10. Refactor your test to use assertObjectNotHasProperty() instead.'); + if (!self::isValidObjectAttributeName($attributeName)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'valid attribute name'); + } + if (!is_object($object)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'object'); + } + static::assertThat($object, new LogicalNot(new ObjectHasAttribute($attributeName)), $message); + } /** - * @var ?bool + * Asserts that an object has a specified property. + * + * @throws ExpectationFailedException */ - private $failOnSkipped; + final public static function assertObjectHasProperty(string $propertyName, object $object, string $message = ''): void + { + static::assertThat($object, new ObjectHasProperty($propertyName), $message); + } /** - * @var ?bool + * Asserts that an object does not have a specified property. + * + * @throws ExpectationFailedException */ - private $failOnWarning; + final public static function assertObjectNotHasProperty(string $propertyName, object $object, string $message = ''): void + { + static::assertThat($object, new LogicalNot(new ObjectHasProperty($propertyName)), $message); + } /** - * @var ?string + * Asserts that two variables have the same type and value. + * Used on objects, it asserts that two variables reference + * the same object. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-template ExpectedType + * + * @psalm-param ExpectedType $expected + * + * @psalm-assert =ExpectedType $actual */ - private $filter; + public static function assertSame($expected, $actual, string $message = ''): void + { + static::assertThat($actual, new IsIdentical($expected), $message); + } /** - * @var ?bool + * Asserts that two variables do not have the same type and value. + * Used on objects, it asserts that two variables do not reference + * the same object. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $generateConfiguration; + public static function assertNotSame($expected, $actual, string $message = ''): void + { + if (is_bool($expected) && is_bool($actual)) { + static::assertNotEquals($expected, $actual, $message); + } + static::assertThat($actual, new LogicalNot(new IsIdentical($expected)), $message); + } /** - * @var ?bool + * Asserts that a variable is of a given type. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @psalm-template ExpectedType of object + * + * @psalm-param class-string $expected + * + * @psalm-assert =ExpectedType $actual */ - private $migrateConfiguration; + public static function assertInstanceOf(string $expected, $actual, string $message = ''): void + { + if (!class_exists($expected) && !interface_exists($expected)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class or interface name'); + } + static::assertThat($actual, new IsInstanceOf($expected), $message); + } /** - * @var null|string[] + * Asserts that a variable is not of a given type. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + * + * @psalm-template ExpectedType of object + * + * @psalm-param class-string $expected + * + * @psalm-assert !ExpectedType $actual */ - private $groups; + public static function assertNotInstanceOf(string $expected, $actual, string $message = ''): void + { + if (!class_exists($expected) && !interface_exists($expected)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'class or interface name'); + } + static::assertThat($actual, new LogicalNot(new IsInstanceOf($expected)), $message); + } /** - * @var null|string[] + * Asserts that a variable is of type array. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert array $actual */ - private $testsCovering; + public static function assertIsArray($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_ARRAY), $message); + } /** - * @var null|string[] + * Asserts that a variable is of type bool. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert bool $actual */ - private $testsUsing; + public static function assertIsBool($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_BOOL), $message); + } /** - * @var ?bool + * Asserts that a variable is of type float. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert float $actual */ - private $help; + public static function assertIsFloat($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_FLOAT), $message); + } /** - * @var ?string + * Asserts that a variable is of type int. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert int $actual */ - private $includePath; + public static function assertIsInt($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_INT), $message); + } /** - * @var null|string[] + * Asserts that a variable is of type numeric. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert numeric $actual */ - private $iniSettings; + public static function assertIsNumeric($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_NUMERIC), $message); + } /** - * @var ?string + * Asserts that a variable is of type object. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert object $actual */ - private $junitLogfile; + public static function assertIsObject($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_OBJECT), $message); + } /** - * @var ?bool + * Asserts that a variable is of type resource. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert resource $actual */ - private $listGroups; + public static function assertIsResource($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_RESOURCE), $message); + } /** - * @var ?bool + * Asserts that a variable is of type resource and is closed. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert resource $actual */ - private $listSuites; + public static function assertIsClosedResource($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_CLOSED_RESOURCE), $message); + } /** - * @var ?bool + * Asserts that a variable is of type string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert string $actual */ - private $listTests; + public static function assertIsString($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_STRING), $message); + } /** - * @var ?string + * Asserts that a variable is of type scalar. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert scalar $actual */ - private $listTestsXml; + public static function assertIsScalar($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_SCALAR), $message); + } /** - * @var ?string + * Asserts that a variable is of type callable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert callable $actual */ - private $loader; + public static function assertIsCallable($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_CALLABLE), $message); + } /** - * @var ?bool + * Asserts that a variable is of type iterable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert iterable $actual */ - private $noCoverage; + public static function assertIsIterable($actual, string $message = ''): void + { + static::assertThat($actual, new IsType(IsType::TYPE_ITERABLE), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type array. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !array $actual */ - private $noExtensions; + public static function assertIsNotArray($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_ARRAY)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type bool. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !bool $actual */ - private $noInteraction; + public static function assertIsNotBool($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_BOOL)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type float. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !float $actual */ - private $noLogging; + public static function assertIsNotFloat($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_FLOAT)), $message); + } /** - * @var ?string + * Asserts that a variable is not of type int. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !int $actual */ - private $printer; + public static function assertIsNotInt($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_INT)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type numeric. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !numeric $actual */ - private $processIsolation; + public static function assertIsNotNumeric($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_NUMERIC)), $message); + } /** - * @var ?int + * Asserts that a variable is not of type object. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !object $actual */ - private $randomOrderSeed; + public static function assertIsNotObject($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_OBJECT)), $message); + } /** - * @var ?int + * Asserts that a variable is not of type resource. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !resource $actual */ - private $repeat; + public static function assertIsNotResource($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_RESOURCE)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type resource. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !resource $actual */ - private $reportUselessTests; + public static function assertIsNotClosedResource($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_CLOSED_RESOURCE)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !string $actual */ - private $resolveDependencies; + public static function assertIsNotString($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_STRING)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type scalar. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !scalar $actual */ - private $reverseList; + public static function assertIsNotScalar($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_SCALAR)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type callable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !callable $actual */ - private $stderr; + public static function assertIsNotCallable($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_CALLABLE)), $message); + } /** - * @var ?bool + * Asserts that a variable is not of type iterable. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @psalm-assert !iterable $actual */ - private $strictCoverage; + public static function assertIsNotIterable($actual, string $message = ''): void + { + static::assertThat($actual, new LogicalNot(new IsType(IsType::TYPE_ITERABLE)), $message); + } /** - * @var ?bool + * Asserts that a string matches a given regular expression. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $stopOnDefect; + public static function assertMatchesRegularExpression(string $pattern, string $string, string $message = ''): void + { + static::assertThat($string, new RegularExpression($pattern), $message); + } /** - * @var ?bool + * Asserts that a string matches a given regular expression. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4086 */ - private $stopOnError; + public static function assertRegExp(string $pattern, string $string, string $message = ''): void + { + self::createWarning('assertRegExp() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertMatchesRegularExpression() instead.'); + static::assertThat($string, new RegularExpression($pattern), $message); + } /** - * @var ?bool + * Asserts that a string does not match a given regular expression. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $stopOnFailure; + public static function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = ''): void + { + static::assertThat($string, new LogicalNot(new RegularExpression($pattern)), $message); + } /** - * @var ?bool + * Asserts that a string does not match a given regular expression. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4089 */ - private $stopOnIncomplete; + public static function assertNotRegExp(string $pattern, string $string, string $message = ''): void + { + self::createWarning('assertNotRegExp() is deprecated and will be removed in PHPUnit 10. Refactor your code to use assertDoesNotMatchRegularExpression() instead.'); + static::assertThat($string, new LogicalNot(new RegularExpression($pattern)), $message); + } /** - * @var ?bool + * Assert that the size of two arrays (or `Countable` or `Traversable` objects) + * is the same. + * + * @param Countable|iterable $expected + * @param Countable|iterable $actual + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException */ - private $stopOnRisky; + public static function assertSameSize($expected, $actual, string $message = ''): void + { + if ($expected instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $expected parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + if ($actual instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $actual parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + if (!$expected instanceof Countable && !is_iterable($expected)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'countable or iterable'); + } + if (!$actual instanceof Countable && !is_iterable($actual)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); + } + static::assertThat($actual, new SameSize($expected), $message); + } /** - * @var ?bool + * Assert that the size of two arrays (or `Countable` or `Traversable` objects) + * is not the same. + * + * @param Countable|iterable $expected + * @param Countable|iterable $actual + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException */ - private $stopOnSkipped; + public static function assertNotSameSize($expected, $actual, string $message = ''): void + { + if ($expected instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $expected parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + if ($actual instanceof Generator) { + self::createWarning('Passing an argument of type Generator for the $actual parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + } + if (!$expected instanceof Countable && !is_iterable($expected)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(1, 'countable or iterable'); + } + if (!$actual instanceof Countable && !is_iterable($actual)) { + throw \PHPUnit\Framework\InvalidArgumentException::create(2, 'countable or iterable'); + } + static::assertThat($actual, new LogicalNot(new SameSize($expected)), $message); + } /** - * @var ?bool + * Asserts that a string matches a given format string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $stopOnWarning; + public static function assertStringMatchesFormat(string $format, string $string, string $message = ''): void + { + static::assertThat($string, new StringMatchesFormatDescription($format), $message); + } /** - * @var ?string + * Asserts that a string does not match a given format string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $teamcityLogfile; + public static function assertStringNotMatchesFormat(string $format, string $string, string $message = ''): void + { + static::assertThat($string, new LogicalNot(new StringMatchesFormatDescription($format)), $message); + } /** - * @var null|string[] + * Asserts that a string matches a given format file. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testdoxExcludeGroups; + public static function assertStringMatchesFormatFile(string $formatFile, string $string, string $message = ''): void + { + static::assertFileExists($formatFile, $message); + static::assertThat($string, new StringMatchesFormatDescription(file_get_contents($formatFile)), $message); + } /** - * @var null|string[] + * Asserts that a string does not match a given format string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testdoxGroups; + public static function assertStringNotMatchesFormatFile(string $formatFile, string $string, string $message = ''): void + { + static::assertFileExists($formatFile, $message); + static::assertThat($string, new LogicalNot(new StringMatchesFormatDescription(file_get_contents($formatFile))), $message); + } /** - * @var ?string + * Asserts that a string starts with a given prefix. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testdoxHtmlFile; + public static function assertStringStartsWith(string $prefix, string $string, string $message = ''): void + { + static::assertThat($string, new StringStartsWith($prefix), $message); + } /** - * @var ?string + * Asserts that a string starts not with a given prefix. + * + * @param string $prefix + * @param string $string + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testdoxTextFile; + public static function assertStringStartsNotWith($prefix, $string, string $message = ''): void + { + static::assertThat($string, new LogicalNot(new StringStartsWith($prefix)), $message); + } /** - * @var ?string + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testdoxXmlFile; + public static function assertStringContainsString(string $needle, string $haystack, string $message = ''): void + { + $constraint = new StringContains($needle, \false); + static::assertThat($haystack, $constraint, $message); + } /** - * @var null|string[] + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testSuffixes; + public static function assertStringContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void + { + $constraint = new StringContains($needle, \true); + static::assertThat($haystack, $constraint, $message); + } /** - * @var ?string + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $testSuite; + public static function assertStringNotContainsString(string $needle, string $haystack, string $message = ''): void + { + $constraint = new LogicalNot(new StringContains($needle)); + static::assertThat($haystack, $constraint, $message); + } /** - * @var string[] + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $unrecognizedOptions; + public static function assertStringNotContainsStringIgnoringCase(string $needle, string $haystack, string $message = ''): void + { + $constraint = new LogicalNot(new StringContains($needle, \true)); + static::assertThat($haystack, $constraint, $message); + } /** - * @var ?string + * Asserts that a string ends with a given suffix. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $unrecognizedOrderBy; + public static function assertStringEndsWith(string $suffix, string $string, string $message = ''): void + { + static::assertThat($string, new StringEndsWith($suffix), $message); + } /** - * @var ?bool + * Asserts that a string ends not with a given suffix. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $useDefaultConfiguration; + public static function assertStringEndsNotWith(string $suffix, string $string, string $message = ''): void + { + static::assertThat($string, new LogicalNot(new StringEndsWith($suffix)), $message); + } /** - * @var ?bool + * Asserts that two XML files are equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException */ - private $verbose; + public static function assertXmlFileEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void + { + $expected = (new XmlLoader())->loadFile($expectedFile); + $actual = (new XmlLoader())->loadFile($actualFile); + static::assertEquals($expected, $actual, $message); + } /** - * @var ?bool + * Asserts that two XML files are not equal. + * + * @throws \PHPUnit\Util\Exception + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private $version; + public static function assertXmlFileNotEqualsXmlFile(string $expectedFile, string $actualFile, string $message = ''): void + { + $expected = (new XmlLoader())->loadFile($expectedFile); + $actual = (new XmlLoader())->loadFile($actualFile); + static::assertNotEquals($expected, $actual, $message); + } /** - * @var ?string + * Asserts that two XML documents are equal. + * + * @param DOMDocument|string $actualXml + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * @throws Xml\Exception */ - private $xdebugFilterFile; + public static function assertXmlStringEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void + { + if (!is_string($actualXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $actual = $actualXml; + } else { + $actual = (new XmlLoader())->load($actualXml); + } + $expected = (new XmlLoader())->loadFile($expectedFile); + static::assertEquals($expected, $actual, $message); + } /** - * @param null|int|string $columns + * Asserts that two XML documents are not equal. + * + * @param DOMDocument|string $actualXml + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * @throws Xml\Exception */ - public function __construct(?string $argument, ?string $atLeastVersion, ?bool $backupGlobals, ?bool $backupStaticAttributes, ?bool $beStrictAboutChangesToGlobalState, ?bool $beStrictAboutResourceUsageDuringSmallTests, ?string $bootstrap, ?bool $cacheResult, ?string $cacheResultFile, ?bool $checkVersion, ?string $colors, $columns, ?string $configuration, ?string $coverageClover, ?string $coverageCobertura, ?string $coverageCrap4J, ?string $coverageHtml, ?string $coveragePhp, ?string $coverageText, ?bool $coverageTextShowUncoveredFiles, ?bool $coverageTextShowOnlySummary, ?string $coverageXml, ?bool $pathCoverage, ?string $coverageCacheDirectory, ?bool $warmCoverageCache, ?bool $debug, ?int $defaultTimeLimit, ?bool $disableCodeCoverageIgnore, ?bool $disallowTestOutput, ?bool $disallowTodoAnnotatedTests, ?bool $enforceTimeLimit, ?array $excludeGroups, ?int $executionOrder, ?int $executionOrderDefects, ?array $extensions, ?array $unavailableExtensions, ?bool $failOnEmptyTestSuite, ?bool $failOnIncomplete, ?bool $failOnRisky, ?bool $failOnSkipped, ?bool $failOnWarning, ?string $filter, ?bool $generateConfiguration, ?bool $migrateConfiguration, ?array $groups, ?array $testsCovering, ?array $testsUsing, ?bool $help, ?string $includePath, ?array $iniSettings, ?string $junitLogfile, ?bool $listGroups, ?bool $listSuites, ?bool $listTests, ?string $listTestsXml, ?string $loader, ?bool $noCoverage, ?bool $noExtensions, ?bool $noInteraction, ?bool $noLogging, ?string $printer, ?bool $processIsolation, ?int $randomOrderSeed, ?int $repeat, ?bool $reportUselessTests, ?bool $resolveDependencies, ?bool $reverseList, ?bool $stderr, ?bool $strictCoverage, ?bool $stopOnDefect, ?bool $stopOnError, ?bool $stopOnFailure, ?bool $stopOnIncomplete, ?bool $stopOnRisky, ?bool $stopOnSkipped, ?bool $stopOnWarning, ?string $teamcityLogfile, ?array $testdoxExcludeGroups, ?array $testdoxGroups, ?string $testdoxHtmlFile, ?string $testdoxTextFile, ?string $testdoxXmlFile, ?array $testSuffixes, ?string $testSuite, array $unrecognizedOptions, ?string $unrecognizedOrderBy, ?bool $useDefaultConfiguration, ?bool $verbose, ?bool $version, ?array $coverageFilter, ?string $xdebugFilterFile) + public static function assertXmlStringNotEqualsXmlFile(string $expectedFile, $actualXml, string $message = ''): void { - $this->argument = $argument; - $this->atLeastVersion = $atLeastVersion; - $this->backupGlobals = $backupGlobals; - $this->backupStaticAttributes = $backupStaticAttributes; - $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; - $this->beStrictAboutResourceUsageDuringSmallTests = $beStrictAboutResourceUsageDuringSmallTests; - $this->bootstrap = $bootstrap; - $this->cacheResult = $cacheResult; - $this->cacheResultFile = $cacheResultFile; - $this->checkVersion = $checkVersion; - $this->colors = $colors; - $this->columns = $columns; - $this->configuration = $configuration; - $this->coverageFilter = $coverageFilter; - $this->coverageClover = $coverageClover; - $this->coverageCobertura = $coverageCobertura; - $this->coverageCrap4J = $coverageCrap4J; - $this->coverageHtml = $coverageHtml; - $this->coveragePhp = $coveragePhp; - $this->coverageText = $coverageText; - $this->coverageTextShowUncoveredFiles = $coverageTextShowUncoveredFiles; - $this->coverageTextShowOnlySummary = $coverageTextShowOnlySummary; - $this->coverageXml = $coverageXml; - $this->pathCoverage = $pathCoverage; - $this->coverageCacheDirectory = $coverageCacheDirectory; - $this->warmCoverageCache = $warmCoverageCache; - $this->debug = $debug; - $this->defaultTimeLimit = $defaultTimeLimit; - $this->disableCodeCoverageIgnore = $disableCodeCoverageIgnore; - $this->disallowTestOutput = $disallowTestOutput; - $this->disallowTodoAnnotatedTests = $disallowTodoAnnotatedTests; - $this->enforceTimeLimit = $enforceTimeLimit; - $this->excludeGroups = $excludeGroups; - $this->executionOrder = $executionOrder; - $this->executionOrderDefects = $executionOrderDefects; - $this->extensions = $extensions; - $this->unavailableExtensions = $unavailableExtensions; - $this->failOnEmptyTestSuite = $failOnEmptyTestSuite; - $this->failOnIncomplete = $failOnIncomplete; - $this->failOnRisky = $failOnRisky; - $this->failOnSkipped = $failOnSkipped; - $this->failOnWarning = $failOnWarning; - $this->filter = $filter; - $this->generateConfiguration = $generateConfiguration; - $this->migrateConfiguration = $migrateConfiguration; - $this->groups = $groups; - $this->testsCovering = $testsCovering; - $this->testsUsing = $testsUsing; - $this->help = $help; - $this->includePath = $includePath; - $this->iniSettings = $iniSettings; - $this->junitLogfile = $junitLogfile; - $this->listGroups = $listGroups; - $this->listSuites = $listSuites; - $this->listTests = $listTests; - $this->listTestsXml = $listTestsXml; - $this->loader = $loader; - $this->noCoverage = $noCoverage; - $this->noExtensions = $noExtensions; - $this->noInteraction = $noInteraction; - $this->noLogging = $noLogging; - $this->printer = $printer; - $this->processIsolation = $processIsolation; - $this->randomOrderSeed = $randomOrderSeed; - $this->repeat = $repeat; - $this->reportUselessTests = $reportUselessTests; - $this->resolveDependencies = $resolveDependencies; - $this->reverseList = $reverseList; - $this->stderr = $stderr; - $this->strictCoverage = $strictCoverage; - $this->stopOnDefect = $stopOnDefect; - $this->stopOnError = $stopOnError; - $this->stopOnFailure = $stopOnFailure; - $this->stopOnIncomplete = $stopOnIncomplete; - $this->stopOnRisky = $stopOnRisky; - $this->stopOnSkipped = $stopOnSkipped; - $this->stopOnWarning = $stopOnWarning; - $this->teamcityLogfile = $teamcityLogfile; - $this->testdoxExcludeGroups = $testdoxExcludeGroups; - $this->testdoxGroups = $testdoxGroups; - $this->testdoxHtmlFile = $testdoxHtmlFile; - $this->testdoxTextFile = $testdoxTextFile; - $this->testdoxXmlFile = $testdoxXmlFile; - $this->testSuffixes = $testSuffixes; - $this->testSuite = $testSuite; - $this->unrecognizedOptions = $unrecognizedOptions; - $this->unrecognizedOrderBy = $unrecognizedOrderBy; - $this->useDefaultConfiguration = $useDefaultConfiguration; - $this->verbose = $verbose; - $this->version = $version; - $this->xdebugFilterFile = $xdebugFilterFile; + if (!is_string($actualXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $actual = $actualXml; + } else { + $actual = (new XmlLoader())->load($actualXml); + } + $expected = (new XmlLoader())->loadFile($expectedFile); + static::assertNotEquals($expected, $actual, $message); } - public function hasArgument() : bool + /** + * Asserts that two XML documents are equal. + * + * @param DOMDocument|string $expectedXml + * @param DOMDocument|string $actualXml + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * @throws Xml\Exception + */ + public static function assertXmlStringEqualsXmlString($expectedXml, $actualXml, string $message = ''): void { - return $this->argument !== null; + if (!is_string($expectedXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $expectedXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $expected = $expectedXml; + } else { + $expected = (new XmlLoader())->load($expectedXml); + } + if (!is_string($actualXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $actual = $actualXml; + } else { + $actual = (new XmlLoader())->load($actualXml); + } + static::assertEquals($expected, $actual, $message); } /** - * @throws Exception + * Asserts that two XML documents are not equal. + * + * @param DOMDocument|string $expectedXml + * @param DOMDocument|string $actualXml + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + * @throws Xml\Exception */ - public function argument() : string + public static function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, string $message = ''): void { - if ($this->argument === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (!is_string($expectedXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $expectedXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $expected = $expectedXml; + } else { + $expected = (new XmlLoader())->load($expectedXml); } - return $this->argument; + if (!is_string($actualXml)) { + self::createWarning('Passing an argument of type DOMDocument for the $actualXml parameter is deprecated. Support for this will be removed in PHPUnit 10.'); + $actual = $actualXml; + } else { + $actual = (new XmlLoader())->load($actualXml); + } + static::assertNotEquals($expected, $actual, $message); } - public function hasAtLeastVersion() : bool + /** + * Asserts that a hierarchy of DOMElements matches. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws AssertionFailedError + * @throws ExpectationFailedException + * + * @codeCoverageIgnore + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4091 + */ + public static function assertEqualXMLStructure(DOMElement $expectedElement, DOMElement $actualElement, bool $checkAttributes = \false, string $message = ''): void { - return $this->atLeastVersion !== null; + self::createWarning('assertEqualXMLStructure() is deprecated and will be removed in PHPUnit 10.'); + $expectedElement = Xml::import($expectedElement); + $actualElement = Xml::import($actualElement); + static::assertSame($expectedElement->tagName, $actualElement->tagName, $message); + if ($checkAttributes) { + static::assertSame($expectedElement->attributes->length, $actualElement->attributes->length, sprintf('%s%sNumber of attributes on node "%s" does not match', $message, !empty($message) ? "\n" : '', $expectedElement->tagName)); + for ($i = 0; $i < $expectedElement->attributes->length; $i++) { + $expectedAttribute = $expectedElement->attributes->item($i); + $actualAttribute = $actualElement->attributes->getNamedItem($expectedAttribute->name); + assert($expectedAttribute instanceof DOMAttr); + if (!$actualAttribute) { + static::fail(sprintf('%s%sCould not find attribute "%s" on node "%s"', $message, !empty($message) ? "\n" : '', $expectedAttribute->name, $expectedElement->tagName)); + } + } + } + Xml::removeCharacterDataNodes($expectedElement); + Xml::removeCharacterDataNodes($actualElement); + static::assertSame($expectedElement->childNodes->length, $actualElement->childNodes->length, sprintf('%s%sNumber of child nodes of "%s" differs', $message, !empty($message) ? "\n" : '', $expectedElement->tagName)); + for ($i = 0; $i < $expectedElement->childNodes->length; $i++) { + static::assertEqualXMLStructure($expectedElement->childNodes->item($i), $actualElement->childNodes->item($i), $checkAttributes, $message); + } } /** - * @throws Exception + * Evaluates a PHPUnit\Framework\Constraint matcher object. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - public function atLeastVersion() : string + public static function assertThat($value, Constraint $constraint, string $message = ''): void { - if ($this->atLeastVersion === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->atLeastVersion; + self::$count += count($constraint); + $constraint->evaluate($value, $message); } - public function hasBackupGlobals() : bool + /** + * Asserts that a string is a valid JSON string. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertJson(string $actualJson, string $message = ''): void { - return $this->backupGlobals !== null; + static::assertThat($actualJson, static::isJson(), $message); } /** - * @throws Exception + * Asserts that two given JSON encoded objects or arrays are equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - public function backupGlobals() : bool + public static function assertJsonStringEqualsJsonString(string $expectedJson, string $actualJson, string $message = ''): void { - if ($this->backupGlobals === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->backupGlobals; + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + static::assertThat($actualJson, new JsonMatches($expectedJson), $message); } - public function hasBackupStaticAttributes() : bool + /** + * Asserts that two given JSON encoded objects or arrays are not equal. + * + * @param string $expectedJson + * @param string $actualJson + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, string $message = ''): void { - return $this->backupStaticAttributes !== null; + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + static::assertThat($actualJson, new LogicalNot(new JsonMatches($expectedJson)), $message); } /** - * @throws Exception + * Asserts that the generated JSON encoded object and the content of the given file are equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - public function backupStaticAttributes() : bool + public static function assertJsonStringEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void { - if ($this->backupStaticAttributes === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->backupStaticAttributes; + static::assertFileExists($expectedFile, $message); + $expectedJson = file_get_contents($expectedFile); + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + static::assertThat($actualJson, new JsonMatches($expectedJson), $message); } - public function hasBeStrictAboutChangesToGlobalState() : bool + /** + * Asserts that the generated JSON encoded object and the content of the given file are not equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertJsonStringNotEqualsJsonFile(string $expectedFile, string $actualJson, string $message = ''): void { - return $this->beStrictAboutChangesToGlobalState !== null; + static::assertFileExists($expectedFile, $message); + $expectedJson = file_get_contents($expectedFile); + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + static::assertThat($actualJson, new LogicalNot(new JsonMatches($expectedJson)), $message); } /** - * @throws Exception + * Asserts that two JSON files are equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - public function beStrictAboutChangesToGlobalState() : bool + public static function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void { - if ($this->beStrictAboutChangesToGlobalState === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->beStrictAboutChangesToGlobalState; + static::assertFileExists($expectedFile, $message); + static::assertFileExists($actualFile, $message); + $actualJson = file_get_contents($actualFile); + $expectedJson = file_get_contents($expectedFile); + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + $constraintExpected = new JsonMatches($expectedJson); + $constraintActual = new JsonMatches($actualJson); + static::assertThat($expectedJson, $constraintActual, $message); + static::assertThat($actualJson, $constraintExpected, $message); } - public function hasBeStrictAboutResourceUsageDuringSmallTests() : bool + /** + * Asserts that two JSON files are not equal. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public static function assertJsonFileNotEqualsJsonFile(string $expectedFile, string $actualFile, string $message = ''): void { - return $this->beStrictAboutResourceUsageDuringSmallTests !== null; + static::assertFileExists($expectedFile, $message); + static::assertFileExists($actualFile, $message); + $actualJson = file_get_contents($actualFile); + $expectedJson = file_get_contents($expectedFile); + static::assertJson($expectedJson, $message); + static::assertJson($actualJson, $message); + $constraintExpected = new JsonMatches($expectedJson); + $constraintActual = new JsonMatches($actualJson); + static::assertThat($expectedJson, new LogicalNot($constraintActual), $message); + static::assertThat($actualJson, new LogicalNot($constraintExpected), $message); } /** * @throws Exception */ - public function beStrictAboutResourceUsageDuringSmallTests() : bool + public static function logicalAnd(): LogicalAnd { - if ($this->beStrictAboutResourceUsageDuringSmallTests === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->beStrictAboutResourceUsageDuringSmallTests; + $constraints = func_get_args(); + $constraint = new LogicalAnd(); + $constraint->setConstraints($constraints); + return $constraint; } - public function hasBootstrap() : bool + public static function logicalOr(): LogicalOr { - return $this->bootstrap !== null; + $constraints = func_get_args(); + $constraint = new LogicalOr(); + $constraint->setConstraints($constraints); + return $constraint; } - /** - * @throws Exception - */ - public function bootstrap() : string + public static function logicalNot(Constraint $constraint): LogicalNot { - if ($this->bootstrap === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->bootstrap; + return new LogicalNot($constraint); } - public function hasCacheResult() : bool + public static function logicalXor(): LogicalXor { - return $this->cacheResult !== null; + $constraints = func_get_args(); + $constraint = new LogicalXor(); + $constraint->setConstraints($constraints); + return $constraint; } - /** - * @throws Exception - */ - public function cacheResult() : bool + public static function anything(): IsAnything { - if ($this->cacheResult === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->cacheResult; + return new IsAnything(); } - public function hasCacheResultFile() : bool + public static function isTrue(): IsTrue { - return $this->cacheResultFile !== null; + return new IsTrue(); } /** - * @throws Exception + * @psalm-template CallbackInput of mixed + * + * @psalm-param callable(CallbackInput $callback): bool $callback + * + * @psalm-return Callback */ - public function cacheResultFile() : string + public static function callback(callable $callback): Callback { - if ($this->cacheResultFile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->cacheResultFile; + return new Callback($callback); } - public function hasCheckVersion() : bool + public static function isFalse(): IsFalse { - return $this->checkVersion !== null; + return new IsFalse(); } - /** - * @throws Exception - */ - public function checkVersion() : bool + public static function isJson(): IsJson { - if ($this->checkVersion === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->checkVersion; + return new IsJson(); } - public function hasColors() : bool + public static function isNull(): IsNull { - return $this->colors !== null; + return new IsNull(); } - /** - * @throws Exception - */ - public function colors() : string + public static function isFinite(): IsFinite { - if ($this->colors === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->colors; + return new IsFinite(); } - public function hasColumns() : bool + public static function isInfinite(): IsInfinite { - return $this->columns !== null; + return new IsInfinite(); } - /** - * @throws Exception - */ - public function columns() + public static function isNan(): IsNan { - if ($this->columns === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->columns; + return new IsNan(); } - public function hasConfiguration() : bool + public static function containsEqual($value): TraversableContainsEqual { - return $this->configuration !== null; + return new TraversableContainsEqual($value); } - /** - * @throws Exception - */ - public function configuration() : string + public static function containsIdentical($value): TraversableContainsIdentical { - if ($this->configuration === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->configuration; + return new TraversableContainsIdentical($value); } - public function hasCoverageFilter() : bool + public static function containsOnly(string $type): TraversableContainsOnly { - return $this->coverageFilter !== null; + return new TraversableContainsOnly($type); + } + public static function containsOnlyInstancesOf(string $className): TraversableContainsOnly + { + return new TraversableContainsOnly($className, \false); } /** - * @throws Exception + * @param int|string $key */ - public function coverageFilter() : array + public static function arrayHasKey($key): ArrayHasKey { - if ($this->coverageFilter === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageFilter; + return new ArrayHasKey($key); } - public function hasCoverageClover() : bool + public static function equalTo($value): IsEqual { - return $this->coverageClover !== null; + return new IsEqual($value, 0.0, \false, \false); } - /** - * @throws Exception - */ - public function coverageClover() : string + public static function equalToCanonicalizing($value): IsEqualCanonicalizing { - if ($this->coverageClover === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageClover; + return new IsEqualCanonicalizing($value); } - public function hasCoverageCobertura() : bool + public static function equalToIgnoringCase($value): IsEqualIgnoringCase { - return $this->coverageCobertura !== null; + return new IsEqualIgnoringCase($value); } - /** - * @throws Exception - */ - public function coverageCobertura() : string + public static function equalToWithDelta($value, float $delta): IsEqualWithDelta { - if ($this->coverageCobertura === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageCobertura; + return new IsEqualWithDelta($value, $delta); } - public function hasCoverageCrap4J() : bool + public static function isEmpty(): IsEmpty { - return $this->coverageCrap4J !== null; + return new IsEmpty(); } - /** - * @throws Exception - */ - public function coverageCrap4J() : string + public static function isWritable(): IsWritable { - if ($this->coverageCrap4J === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageCrap4J; + return new IsWritable(); } - public function hasCoverageHtml() : bool + public static function isReadable(): IsReadable { - return $this->coverageHtml !== null; + return new IsReadable(); + } + public static function directoryExists(): DirectoryExists + { + return new DirectoryExists(); + } + public static function fileExists(): FileExists + { + return new FileExists(); + } + public static function greaterThan($value): GreaterThan + { + return new GreaterThan($value); + } + public static function greaterThanOrEqual($value): LogicalOr + { + return static::logicalOr(new IsEqual($value), new GreaterThan($value)); } /** - * @throws Exception + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - public function coverageHtml() : string + public static function classHasAttribute(string $attributeName): ClassHasAttribute { - if ($this->coverageHtml === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageHtml; + self::createWarning('classHasAttribute() is deprecated and will be removed in PHPUnit 10.'); + return new ClassHasAttribute($attributeName); } - public function hasCoveragePhp() : bool + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 + */ + public static function classHasStaticAttribute(string $attributeName): ClassHasStaticAttribute { - return $this->coveragePhp !== null; + self::createWarning('classHasStaticAttribute() is deprecated and will be removed in PHPUnit 10.'); + return new ClassHasStaticAttribute($attributeName); } /** - * @throws Exception + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4601 */ - public function coveragePhp() : string + public static function objectHasAttribute($attributeName): ObjectHasAttribute { - if ($this->coveragePhp === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coveragePhp; + self::createWarning('objectHasAttribute() is deprecated and will be removed in PHPUnit 10.'); + return new ObjectHasAttribute($attributeName); } - public function hasCoverageText() : bool + public static function identicalTo($value): IsIdentical { - return $this->coverageText !== null; + return new IsIdentical($value); + } + public static function isInstanceOf(string $className): IsInstanceOf + { + return new IsInstanceOf($className); + } + public static function isType(string $type): IsType + { + return new IsType($type); + } + public static function lessThan($value): LessThan + { + return new LessThan($value); + } + public static function lessThanOrEqual($value): LogicalOr + { + return static::logicalOr(new IsEqual($value), new LessThan($value)); + } + public static function matchesRegularExpression(string $pattern): RegularExpression + { + return new RegularExpression($pattern); + } + public static function matches(string $string): StringMatchesFormatDescription + { + return new StringMatchesFormatDescription($string); + } + public static function stringStartsWith($prefix): StringStartsWith + { + return new StringStartsWith($prefix); + } + public static function stringContains(string $string, bool $case = \true): StringContains + { + return new StringContains($string, $case); + } + public static function stringEndsWith(string $suffix): StringEndsWith + { + return new StringEndsWith($suffix); + } + public static function countOf(int $count): Count + { + return new Count($count); + } + public static function objectEquals(object $object, string $method = 'equals'): ObjectEquals + { + return new ObjectEquals($object, $method); } /** - * @throws Exception + * Fails a test with the given message. + * + * @throws AssertionFailedError + * + * @psalm-return never-return */ - public function coverageText() : string + public static function fail(string $message = ''): void { - if ($this->coverageText === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageText; + self::$count++; + throw new \PHPUnit\Framework\AssertionFailedError($message); } - public function hasCoverageTextShowUncoveredFiles() : bool + /** + * Mark the test as incomplete. + * + * @throws IncompleteTestError + * + * @psalm-return never-return + */ + public static function markTestIncomplete(string $message = ''): void { - return $this->coverageTextShowUncoveredFiles !== null; + throw new \PHPUnit\Framework\IncompleteTestError($message); } /** - * @throws Exception + * Mark the test as skipped. + * + * @throws SkippedTestError + * @throws SyntheticSkippedError + * + * @psalm-return never-return */ - public function coverageTextShowUncoveredFiles() : bool + public static function markTestSkipped(string $message = ''): void { - if ($this->coverageTextShowUncoveredFiles === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if ($hint = self::detectLocationHint($message)) { + $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); + array_unshift($trace, $hint); + throw new \PHPUnit\Framework\SyntheticSkippedError($hint['message'], 0, $hint['file'], (int) $hint['line'], $trace); } - return $this->coverageTextShowUncoveredFiles; + throw new \PHPUnit\Framework\SkippedTestError($message); } - public function hasCoverageTextShowOnlySummary() : bool + /** + * Return the current assertion count. + */ + public static function getCount(): int { - return $this->coverageTextShowOnlySummary !== null; + return self::$count; } /** - * @throws Exception + * Reset the assertion counter. */ - public function coverageTextShowOnlySummary() : bool + public static function resetCount(): void { - if ($this->coverageTextShowOnlySummary === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + self::$count = 0; + } + private static function detectLocationHint(string $message): ?array + { + $hint = null; + $lines = preg_split('/\r\n|\r|\n/', $message); + while (strpos($lines[0], '__OFFSET') !== \false) { + $offset = explode('=', array_shift($lines)); + if ($offset[0] === '__OFFSET_FILE') { + $hint['file'] = $offset[1]; + } + if ($offset[0] === '__OFFSET_LINE') { + $hint['line'] = $offset[1]; + } } - return $this->coverageTextShowOnlySummary; + if ($hint) { + $hint['message'] = implode(PHP_EOL, $lines); + } + return $hint; } - public function hasCoverageXml() : bool + private static function isValidObjectAttributeName(string $attributeName): bool { - return $this->coverageXml !== null; + return (bool) preg_match('/[^\x00-\x1f\x7f-\x9f]+/', $attributeName); + } + private static function isValidClassAttributeName(string $attributeName): bool + { + return (bool) preg_match('/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/', $attributeName); } /** - * @throws Exception + * @codeCoverageIgnore */ - public function coverageXml() : string + private static function createWarning(string $warning): void { - if ($this->coverageXml === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + foreach (debug_backtrace() as $step) { + if (isset($step['object']) && $step['object'] instanceof \PHPUnit\Framework\TestCase) { + assert($step['object'] instanceof \PHPUnit\Framework\TestCase); + $step['object']->addWarning($warning); + break; + } } - return $this->coverageXml; - } - public function hasPathCoverage() : bool - { - return $this->pathCoverage !== null; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface SkippedTest extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use Countable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +interface Test extends Countable +{ + /** + * Runs a test and collects its result in a TestResult instance. + */ + public function run(?\PHPUnit\Framework\TestResult $result = null): \PHPUnit\Framework\TestResult; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function call_user_func; +use function class_exists; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MockClass implements \PHPUnit\Framework\MockObject\MockType +{ /** - * @throws Exception + * @var string */ - public function pathCoverage() : bool - { - if ($this->pathCoverage === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->pathCoverage; - } - public function hasCoverageCacheDirectory() : bool - { - return $this->coverageCacheDirectory !== null; - } + private $classCode; /** - * @throws Exception + * @var class-string */ - public function coverageCacheDirectory() : string - { - if ($this->coverageCacheDirectory === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->coverageCacheDirectory; - } - public function hasWarmCoverageCache() : bool - { - return $this->warmCoverageCache !== null; - } + private $mockName; /** - * @throws Exception + * @var ConfigurableMethod[] */ - public function warmCoverageCache() : bool - { - if ($this->warmCoverageCache === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->warmCoverageCache; - } - public function hasDebug() : bool - { - return $this->debug !== null; - } + private $configurableMethods; /** - * @throws Exception + * @psalm-param class-string $mockName */ - public function debug() : bool - { - if ($this->debug === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->debug; - } - public function hasDefaultTimeLimit() : bool + public function __construct(string $classCode, string $mockName, array $configurableMethods) { - return $this->defaultTimeLimit !== null; + $this->classCode = $classCode; + $this->mockName = $mockName; + $this->configurableMethods = $configurableMethods; } /** - * @throws Exception + * @psalm-return class-string */ - public function defaultTimeLimit() : int + public function generate(): string { - if ($this->defaultTimeLimit === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (!class_exists($this->mockName, \false)) { + eval($this->classCode); + call_user_func([$this->mockName, '__phpunit_initConfigurableMethods'], ...$this->configurableMethods); } - return $this->defaultTimeLimit; + return $this->mockName; } - public function hasDisableCodeCoverageIgnore() : bool + public function getClassCode(): string { - return $this->disableCodeCoverageIgnore !== null; + return $this->classCode; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function is_string; +use function sprintf; +use function strtolower; +use PHPUnit\Framework\Constraint\Constraint; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MethodNameConstraint extends Constraint +{ /** - * @throws Exception + * @var string */ - public function disableCodeCoverageIgnore() : bool + private $methodName; + public function __construct(string $methodName) { - if ($this->disableCodeCoverageIgnore === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->disableCodeCoverageIgnore; + $this->methodName = $methodName; } - public function hasDisallowTestOutput() : bool + public function toString(): string { - return $this->disallowTestOutput !== null; + return sprintf('is "%s"', $this->methodName); } - /** - * @throws Exception - */ - public function disallowTestOutput() : bool + protected function matches($other): bool { - if ($this->disallowTestOutput === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (!is_string($other)) { + return \false; } - return $this->disallowTestOutput; - } - public function hasDisallowTodoAnnotatedTests() : bool - { - return $this->disallowTodoAnnotatedTests !== null; + return strtolower($this->methodName) === strtolower($other); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use PHPUnit\Framework\MockObject\Builder\InvocationMocker as BuilderInvocationMocker; +use PHPUnit\Framework\MockObject\Rule\InvocationOrder; +/** + * @method BuilderInvocationMocker method($constraint) + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +interface MockObject extends \PHPUnit\Framework\MockObject\Stub +{ + public function __phpunit_setOriginalObject($originalObject): void; + public function __phpunit_verify(bool $unsetInvocationMocker = \true): void; + public function expects(InvocationOrder $invocationRule): BuilderInvocationMocker; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface MockType +{ /** - * @throws Exception + * @psalm-return class-string */ - public function disallowTodoAnnotatedTests() : bool - { - if ($this->disallowTodoAnnotatedTests === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->disallowTodoAnnotatedTests; - } - public function hasEnforceTimeLimit() : bool - { - return $this->enforceTimeLimit !== null; - } + public function generate(): string; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function array_map; +use function explode; +use function get_class; +use function implode; +use function in_array; +use function interface_exists; +use function is_object; +use function sprintf; +use function strpos; +use function strtolower; +use function substr; +use PHPUnitPHAR\Doctrine\Instantiator\Instantiator; +use PHPUnit\Framework\SelfDescribing; +use PHPUnit\Util\Cloner; +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +use stdClass; +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Invocation implements SelfDescribing +{ /** - * @throws Exception + * @var string */ - public function enforceTimeLimit() : bool - { - if ($this->enforceTimeLimit === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->enforceTimeLimit; - } - public function hasExcludeGroups() : bool - { - return $this->excludeGroups !== null; - } + private $className; /** - * @throws Exception + * @var string */ - public function excludeGroups() : array - { - if ($this->excludeGroups === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->excludeGroups; - } - public function hasExecutionOrder() : bool - { - return $this->executionOrder !== null; - } + private $methodName; /** - * @throws Exception + * @var array */ - public function executionOrder() : int - { - if ($this->executionOrder === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->executionOrder; - } - public function hasExecutionOrderDefects() : bool - { - return $this->executionOrderDefects !== null; - } + private $parameters; /** - * @throws Exception + * @var string */ - public function executionOrderDefects() : int - { - if ($this->executionOrderDefects === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->executionOrderDefects; - } - public function hasFailOnEmptyTestSuite() : bool - { - return $this->failOnEmptyTestSuite !== null; - } + private $returnType; /** - * @throws Exception + * @var bool */ - public function failOnEmptyTestSuite() : bool - { - if ($this->failOnEmptyTestSuite === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->failOnEmptyTestSuite; - } - public function hasFailOnIncomplete() : bool - { - return $this->failOnIncomplete !== null; - } + private $isReturnTypeNullable = \false; /** - * @throws Exception + * @var bool */ - public function failOnIncomplete() : bool - { - if ($this->failOnIncomplete === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->failOnIncomplete; - } - public function hasFailOnRisky() : bool - { - return $this->failOnRisky !== null; - } + private $proxiedCall; /** - * @throws Exception + * @var object */ - public function failOnRisky() : bool + private $object; + public function __construct(string $className, string $methodName, array $parameters, string $returnType, object $object, bool $cloneObjects = \false, bool $proxiedCall = \false) { - if ($this->failOnRisky === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + $this->className = $className; + $this->methodName = $methodName; + $this->parameters = $parameters; + $this->object = $object; + $this->proxiedCall = $proxiedCall; + if (strtolower($methodName) === '__tostring') { + $returnType = 'string'; + } + if (strpos($returnType, '?') === 0) { + $returnType = substr($returnType, 1); + $this->isReturnTypeNullable = \true; + } + $this->returnType = $returnType; + if (!$cloneObjects) { + return; + } + foreach ($this->parameters as $key => $value) { + if (is_object($value)) { + $this->parameters[$key] = Cloner::clone($value); + } } - return $this->failOnRisky; } - public function hasFailOnSkipped() : bool + public function getClassName(): string { - return $this->failOnSkipped !== null; + return $this->className; } - /** - * @throws Exception - */ - public function failOnSkipped() : bool + public function getMethodName(): string { - if ($this->failOnSkipped === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->failOnSkipped; + return $this->methodName; } - public function hasFailOnWarning() : bool + public function getParameters(): array { - return $this->failOnWarning !== null; + return $this->parameters; } /** - * @throws Exception + * @throws RuntimeException + * + * @return mixed Mocked return value */ - public function failOnWarning() : bool + public function generateReturnValue() { - if ($this->failOnWarning === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if ($this->isReturnTypeNullable || $this->proxiedCall) { + return null; } - return $this->failOnWarning; - } - public function hasFilter() : bool - { - return $this->filter !== null; + $intersection = \false; + $union = \false; + $unionContainsIntersections = \false; + if (strpos($this->returnType, '|') !== \false) { + $types = explode('|', $this->returnType); + $union = \true; + if (strpos($this->returnType, '(') !== \false) { + $unionContainsIntersections = \true; + } + } elseif (strpos($this->returnType, '&') !== \false) { + $types = explode('&', $this->returnType); + $intersection = \true; + } else { + $types = [$this->returnType]; + } + $types = array_map('strtolower', $types); + if (!$intersection && !$unionContainsIntersections) { + if (in_array('', $types, \true) || in_array('null', $types, \true) || in_array('mixed', $types, \true) || in_array('void', $types, \true)) { + return null; + } + if (in_array('true', $types, \true)) { + return \true; + } + if (in_array('false', $types, \true) || in_array('bool', $types, \true)) { + return \false; + } + if (in_array('float', $types, \true)) { + return 0.0; + } + if (in_array('int', $types, \true)) { + return 0; + } + if (in_array('string', $types, \true)) { + return ''; + } + if (in_array('array', $types, \true)) { + return []; + } + if (in_array('static', $types, \true)) { + try { + return (new Instantiator())->instantiate(get_class($this->object)); + } catch (Throwable $t) { + throw new \PHPUnit\Framework\MockObject\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); + } + } + if (in_array('object', $types, \true)) { + return new stdClass(); + } + if (in_array('callable', $types, \true) || in_array('closure', $types, \true)) { + return static function (): void { + }; + } + if (in_array('traversable', $types, \true) || in_array('generator', $types, \true) || in_array('iterable', $types, \true)) { + $generator = static function (): \Generator { + yield from []; + }; + return $generator(); + } + if (!$union) { + try { + return (new \PHPUnit\Framework\MockObject\Generator())->getMock($this->returnType, [], [], '', \false); + } catch (Throwable $t) { + if ($t instanceof \PHPUnit\Framework\MockObject\Exception) { + throw $t; + } + throw new \PHPUnit\Framework\MockObject\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); + } + } + } + if ($intersection && $this->onlyInterfaces($types)) { + try { + return (new \PHPUnit\Framework\MockObject\Generator())->getMockForInterfaces($types); + } catch (Throwable $t) { + throw new \PHPUnit\Framework\MockObject\RuntimeException(sprintf('Return value for %s::%s() cannot be generated: %s', $this->className, $this->methodName, $t->getMessage()), (int) $t->getCode()); + } + } + $reason = ''; + if ($union) { + $reason = ' because the declared return type is a union'; + } elseif ($intersection) { + $reason = ' because the declared return type is an intersection'; + } + throw new \PHPUnit\Framework\MockObject\RuntimeException(sprintf('Return value for %s::%s() cannot be generated%s, please configure a return value for this method', $this->className, $this->methodName, $reason)); } - /** - * @throws Exception - */ - public function filter() : string + public function toString(): string { - if ($this->filter === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->filter; + $exporter = new Exporter(); + return sprintf('%s::%s(%s)%s', $this->className, $this->methodName, implode(', ', array_map([$exporter, 'shortenedExport'], $this->parameters)), $this->returnType ? sprintf(': %s', $this->returnType) : ''); } - public function hasGenerateConfiguration() : bool + public function getObject(): object { - return $this->generateConfiguration !== null; + return $this->object; } /** - * @throws Exception + * @psalm-param non-empty-list $types */ - public function generateConfiguration() : bool + private function onlyInterfaces(array $types): bool { - if ($this->generateConfiguration === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + foreach ($types as $type) { + if (!interface_exists($type)) { + return \false; + } } - return $this->generateConfiguration; - } - public function hasMigrateConfiguration() : bool - { - return $this->migrateConfiguration !== null; + return \true; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function array_diff; +use function array_merge; +use PHPUnit\Framework\Exception; +use PHPUnit\Framework\InvalidArgumentException; +use PHPUnit\Framework\TestCase; +use ReflectionClass; +/** + * @psalm-template MockedType + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class MockBuilder +{ /** - * @throws Exception + * @var TestCase */ - public function migrateConfiguration() : bool - { - if ($this->migrateConfiguration === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->migrateConfiguration; - } - public function hasGroups() : bool - { - return $this->groups !== null; - } + private $testCase; /** - * @throws Exception + * @var string */ - public function groups() : array - { - if ($this->groups === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->groups; - } - public function hasTestsCovering() : bool - { - return $this->testsCovering !== null; - } + private $type; /** - * @throws Exception + * @var null|string[] */ - public function testsCovering() : array - { - if ($this->testsCovering === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testsCovering; - } - public function hasTestsUsing() : bool - { - return $this->testsUsing !== null; - } + private $methods = []; /** - * @throws Exception + * @var bool */ - public function testsUsing() : array - { - if ($this->testsUsing === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testsUsing; - } - public function hasHelp() : bool - { - return $this->help !== null; - } + private $emptyMethodsArray = \false; /** - * @throws Exception + * @var string */ - public function help() : bool - { - if ($this->help === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->help; - } - public function hasIncludePath() : bool - { - return $this->includePath !== null; - } + private $mockClassName = ''; + /** + * @var array + */ + private $constructorArgs = []; /** - * @throws Exception + * @var bool */ - public function includePath() : string - { - if ($this->includePath === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->includePath; - } - public function hasIniSettings() : bool - { - return $this->iniSettings !== null; - } + private $originalConstructor = \true; /** - * @throws Exception + * @var bool */ - public function iniSettings() : array - { - if ($this->iniSettings === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->iniSettings; - } - public function hasJunitLogfile() : bool - { - return $this->junitLogfile !== null; - } + private $originalClone = \true; /** - * @throws Exception + * @var bool */ - public function junitLogfile() : string - { - if ($this->junitLogfile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->junitLogfile; - } - public function hasListGroups() : bool - { - return $this->listGroups !== null; - } + private $autoload = \true; /** - * @throws Exception + * @var bool */ - public function listGroups() : bool - { - if ($this->listGroups === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->listGroups; - } - public function hasListSuites() : bool - { - return $this->listSuites !== null; - } + private $cloneArguments = \false; /** - * @throws Exception + * @var bool */ - public function listSuites() : bool - { - if ($this->listSuites === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->listSuites; - } - public function hasListTests() : bool - { - return $this->listTests !== null; - } + private $callOriginalMethods = \false; /** - * @throws Exception + * @var ?object */ - public function listTests() : bool - { - if ($this->listTests === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->listTests; - } - public function hasListTestsXml() : bool - { - return $this->listTestsXml !== null; - } + private $proxyTarget; /** - * @throws Exception + * @var bool */ - public function listTestsXml() : string - { - if ($this->listTestsXml === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->listTestsXml; - } - public function hasLoader() : bool - { - return $this->loader !== null; - } + private $allowMockingUnknownTypes = \true; /** - * @throws Exception + * @var bool */ - public function loader() : string - { - if ($this->loader === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->loader; - } - public function hasNoCoverage() : bool - { - return $this->noCoverage !== null; - } + private $returnValueGeneration = \true; /** - * @throws Exception + * @var Generator */ - public function noCoverage() : bool - { - if ($this->noCoverage === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->noCoverage; - } - public function hasNoExtensions() : bool - { - return $this->noExtensions !== null; - } + private $generator; /** - * @throws Exception + * @param string|string[] $type + * + * @psalm-param class-string|string|string[] $type */ - public function noExtensions() : bool - { - if ($this->noExtensions === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->noExtensions; - } - public function hasExtensions() : bool + public function __construct(TestCase $testCase, $type) { - return $this->extensions !== null; + $this->testCase = $testCase; + $this->type = $type; + $this->generator = new \PHPUnit\Framework\MockObject\Generator(); } /** - * @throws Exception + * Creates a mock object using a fluent interface. + * + * @throws ClassAlreadyExistsException + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws DuplicateMethodException + * @throws InvalidArgumentException + * @throws InvalidMethodNameException + * @throws OriginalConstructorInvocationRequiredException + * @throws ReflectionException + * @throws RuntimeException + * @throws UnknownTypeException + * + * @psalm-return MockObject&MockedType */ - public function extensions() : array - { - if ($this->extensions === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->extensions; - } - public function hasUnavailableExtensions() : bool + public function getMock(): \PHPUnit\Framework\MockObject\MockObject { - return $this->unavailableExtensions !== null; + $object = $this->generator->getMock($this->type, !$this->emptyMethodsArray ? $this->methods : null, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->cloneArguments, $this->callOriginalMethods, $this->proxyTarget, $this->allowMockingUnknownTypes, $this->returnValueGeneration); + $this->testCase->registerMockObject($object); + return $object; } /** + * Creates a mock object for an abstract class using a fluent interface. + * + * @psalm-return MockObject&MockedType + * * @throws Exception + * @throws ReflectionException + * @throws RuntimeException */ - public function unavailableExtensions() : array - { - if ($this->unavailableExtensions === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->unavailableExtensions; - } - public function hasNoInteraction() : bool + public function getMockForAbstractClass(): \PHPUnit\Framework\MockObject\MockObject { - return $this->noInteraction !== null; + $object = $this->generator->getMockForAbstractClass($this->type, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->methods, $this->cloneArguments); + $this->testCase->registerMockObject($object); + return $object; } /** + * Creates a mock object for a trait using a fluent interface. + * + * @psalm-return MockObject&MockedType + * * @throws Exception + * @throws ReflectionException + * @throws RuntimeException */ - public function noInteraction() : bool - { - if ($this->noInteraction === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->noInteraction; - } - public function hasNoLogging() : bool + public function getMockForTrait(): \PHPUnit\Framework\MockObject\MockObject { - return $this->noLogging !== null; + $object = $this->generator->getMockForTrait($this->type, $this->constructorArgs, $this->mockClassName, $this->originalConstructor, $this->originalClone, $this->autoload, $this->methods, $this->cloneArguments); + $this->testCase->registerMockObject($object); + return $object; } /** - * @throws Exception + * Specifies the subset of methods to mock. Default is to mock none of them. + * + * @deprecated https://github.com/sebastianbergmann/phpunit/pull/3687 + * + * @return $this */ - public function noLogging() : bool + public function setMethods(?array $methods = null): self { - if ($this->noLogging === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if ($methods === null) { + $this->methods = $methods; + } else { + $this->methods = array_merge($this->methods ?? [], $methods); } - return $this->noLogging; - } - public function hasPrinter() : bool - { - return $this->printer !== null; + return $this; } /** - * @throws Exception + * Specifies the subset of methods to mock, requiring each to exist in the class. + * + * @param string[] $methods + * + * @throws CannotUseOnlyMethodsException + * @throws ReflectionException + * + * @return $this */ - public function printer() : string + public function onlyMethods(array $methods): self { - if ($this->printer === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (empty($methods)) { + $this->emptyMethodsArray = \true; + return $this; } - return $this->printer; - } - public function hasProcessIsolation() : bool - { - return $this->processIsolation !== null; + try { + $reflector = new ReflectionClass($this->type); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + foreach ($methods as $method) { + if (!$reflector->hasMethod($method)) { + throw new \PHPUnit\Framework\MockObject\CannotUseOnlyMethodsException($this->type, $method); + } + } + $this->methods = array_merge($this->methods ?? [], $methods); + return $this; } /** - * @throws Exception + * Specifies methods that don't exist in the class which you want to mock. + * + * @param string[] $methods + * + * @throws CannotUseAddMethodsException + * @throws ReflectionException + * @throws RuntimeException + * + * @return $this */ - public function processIsolation() : bool + public function addMethods(array $methods): self { - if ($this->processIsolation === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (empty($methods)) { + $this->emptyMethodsArray = \true; + return $this; } - return $this->processIsolation; - } - public function hasRandomOrderSeed() : bool - { - return $this->randomOrderSeed !== null; + try { + $reflector = new ReflectionClass($this->type); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + foreach ($methods as $method) { + if ($reflector->hasMethod($method)) { + throw new \PHPUnit\Framework\MockObject\CannotUseAddMethodsException($this->type, $method); + } + } + $this->methods = array_merge($this->methods ?? [], $methods); + return $this; } /** - * @throws Exception + * Specifies the subset of methods to not mock. Default is to mock all of them. + * + * @deprecated https://github.com/sebastianbergmann/phpunit/pull/3687 + * + * @throws ReflectionException */ - public function randomOrderSeed() : int - { - if ($this->randomOrderSeed === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->randomOrderSeed; - } - public function hasRepeat() : bool + public function setMethodsExcept(array $methods = []): self { - return $this->repeat !== null; + return $this->setMethods(array_diff($this->generator->getClassMethods($this->type), $methods)); } /** - * @throws Exception + * Specifies the arguments for the constructor. + * + * @return $this */ - public function repeat() : int - { - if ($this->repeat === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->repeat; - } - public function hasReportUselessTests() : bool + public function setConstructorArgs(array $args): self { - return $this->reportUselessTests !== null; + $this->constructorArgs = $args; + return $this; } /** - * @throws Exception + * Specifies the name for the mock class. + * + * @return $this */ - public function reportUselessTests() : bool - { - if ($this->reportUselessTests === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->reportUselessTests; - } - public function hasResolveDependencies() : bool + public function setMockClassName(string $name): self { - return $this->resolveDependencies !== null; + $this->mockClassName = $name; + return $this; } /** - * @throws Exception + * Disables the invocation of the original constructor. + * + * @return $this */ - public function resolveDependencies() : bool + public function disableOriginalConstructor(): self { - if ($this->resolveDependencies === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->resolveDependencies; - } - public function hasReverseList() : bool - { - return $this->reverseList !== null; + $this->originalConstructor = \false; + return $this; } /** - * @throws Exception + * Enables the invocation of the original constructor. + * + * @return $this */ - public function reverseList() : bool - { - if ($this->reverseList === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->reverseList; - } - public function hasStderr() : bool + public function enableOriginalConstructor(): self { - return $this->stderr !== null; + $this->originalConstructor = \true; + return $this; } /** - * @throws Exception + * Disables the invocation of the original clone constructor. + * + * @return $this */ - public function stderr() : bool - { - if ($this->stderr === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stderr; - } - public function hasStrictCoverage() : bool + public function disableOriginalClone(): self { - return $this->strictCoverage !== null; + $this->originalClone = \false; + return $this; } /** - * @throws Exception + * Enables the invocation of the original clone constructor. + * + * @return $this */ - public function strictCoverage() : bool - { - if ($this->strictCoverage === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->strictCoverage; - } - public function hasStopOnDefect() : bool + public function enableOriginalClone(): self { - return $this->stopOnDefect !== null; + $this->originalClone = \true; + return $this; } /** - * @throws Exception + * Disables the use of class autoloading while creating the mock object. + * + * @return $this */ - public function stopOnDefect() : bool - { - if ($this->stopOnDefect === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnDefect; - } - public function hasStopOnError() : bool + public function disableAutoload(): self { - return $this->stopOnError !== null; + $this->autoload = \false; + return $this; } /** - * @throws Exception + * Enables the use of class autoloading while creating the mock object. + * + * @return $this */ - public function stopOnError() : bool - { - if ($this->stopOnError === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnError; - } - public function hasStopOnFailure() : bool + public function enableAutoload(): self { - return $this->stopOnFailure !== null; + $this->autoload = \true; + return $this; } /** - * @throws Exception + * Disables the cloning of arguments passed to mocked methods. + * + * @return $this */ - public function stopOnFailure() : bool - { - if ($this->stopOnFailure === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnFailure; - } - public function hasStopOnIncomplete() : bool + public function disableArgumentCloning(): self { - return $this->stopOnIncomplete !== null; + $this->cloneArguments = \false; + return $this; } /** - * @throws Exception + * Enables the cloning of arguments passed to mocked methods. + * + * @return $this */ - public function stopOnIncomplete() : bool - { - if ($this->stopOnIncomplete === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnIncomplete; - } - public function hasStopOnRisky() : bool + public function enableArgumentCloning(): self { - return $this->stopOnRisky !== null; + $this->cloneArguments = \true; + return $this; } /** - * @throws Exception + * Enables the invocation of the original methods. + * + * @return $this */ - public function stopOnRisky() : bool + public function enableProxyingToOriginalMethods(): self { - if ($this->stopOnRisky === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnRisky; - } - public function hasStopOnSkipped() : bool - { - return $this->stopOnSkipped !== null; + $this->callOriginalMethods = \true; + return $this; } /** - * @throws Exception + * Disables the invocation of the original methods. + * + * @return $this */ - public function stopOnSkipped() : bool - { - if ($this->stopOnSkipped === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnSkipped; - } - public function hasStopOnWarning() : bool + public function disableProxyingToOriginalMethods(): self { - return $this->stopOnWarning !== null; + $this->callOriginalMethods = \false; + $this->proxyTarget = null; + return $this; } /** - * @throws Exception + * Sets the proxy target. + * + * @return $this */ - public function stopOnWarning() : bool - { - if ($this->stopOnWarning === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->stopOnWarning; - } - public function hasTeamcityLogfile() : bool + public function setProxyTarget(object $object): self { - return $this->teamcityLogfile !== null; + $this->proxyTarget = $object; + return $this; } /** - * @throws Exception + * @return $this */ - public function teamcityLogfile() : string - { - if ($this->teamcityLogfile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->teamcityLogfile; - } - public function hasTestdoxExcludeGroups() : bool + public function allowMockingUnknownTypes(): self { - return $this->testdoxExcludeGroups !== null; + $this->allowMockingUnknownTypes = \true; + return $this; } /** - * @throws Exception + * @return $this */ - public function testdoxExcludeGroups() : array - { - if ($this->testdoxExcludeGroups === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testdoxExcludeGroups; - } - public function hasTestdoxGroups() : bool + public function disallowMockingUnknownTypes(): self { - return $this->testdoxGroups !== null; + $this->allowMockingUnknownTypes = \false; + return $this; } /** - * @throws Exception + * @return $this */ - public function testdoxGroups() : array - { - if ($this->testdoxGroups === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testdoxGroups; - } - public function hasTestdoxHtmlFile() : bool + public function enableAutoReturnValueGeneration(): self { - return $this->testdoxHtmlFile !== null; + $this->returnValueGeneration = \true; + return $this; } /** - * @throws Exception + * @return $this */ - public function testdoxHtmlFile() : string - { - if ($this->testdoxHtmlFile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testdoxHtmlFile; - } - public function hasTestdoxTextFile() : bool + public function disableAutoReturnValueGeneration(): self { - return $this->testdoxTextFile !== null; + $this->returnValueGeneration = \false; + return $this; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function array_key_exists; +use function array_values; +use function strtolower; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MockMethodSet +{ /** - * @throws Exception + * @var MockMethod[] */ - public function testdoxTextFile() : string + private $methods = []; + public function addMethods(\PHPUnit\Framework\MockObject\MockMethod ...$methods): void { - if ($this->testdoxTextFile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + foreach ($methods as $method) { + $this->methods[strtolower($method->getName())] = $method; } - return $this->testdoxTextFile; - } - public function hasTestdoxXmlFile() : bool - { - return $this->testdoxXmlFile !== null; } /** - * @throws Exception + * @return MockMethod[] */ - public function testdoxXmlFile() : string + public function asArray(): array { - if ($this->testdoxXmlFile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testdoxXmlFile; + return array_values($this->methods); } - public function hasTestSuffixes() : bool + public function hasMethod(string $methodName): bool { - return $this->testSuffixes !== null; + return array_key_exists(strtolower($methodName), $this->methods); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use function is_string; +use PHPUnit\Framework\Constraint\Constraint; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\InvalidArgumentException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +use PHPUnit\Framework\MockObject\MethodNameConstraint; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MethodName +{ /** - * @throws Exception + * @var Constraint */ - public function testSuffixes() : array - { - if ($this->testSuffixes === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->testSuffixes; - } - public function hasTestSuite() : bool - { - return $this->testSuite !== null; - } + private $constraint; /** - * @throws Exception + * @param Constraint|string $constraint + * + * @throws InvalidArgumentException */ - public function testSuite() : string + public function __construct($constraint) { - if ($this->testSuite === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (is_string($constraint)) { + $constraint = new MethodNameConstraint($constraint); } - return $this->testSuite; - } - public function unrecognizedOptions() : array - { - return $this->unrecognizedOptions; + if (!$constraint instanceof Constraint) { + throw InvalidArgumentException::create(1, 'PHPUnit\Framework\Constraint\Constraint object or string'); + } + $this->constraint = $constraint; } - public function hasUnrecognizedOrderBy() : bool + public function toString(): string { - return $this->unrecognizedOrderBy !== null; + return 'method name ' . $this->constraint->toString(); } /** - * @throws Exception + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - public function unrecognizedOrderBy() : string + public function matches(BaseInvocation $invocation): bool { - if ($this->unrecognizedOrderBy === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->unrecognizedOrderBy; + return $this->matchesName($invocation->getMethodName()); } - public function hasUseDefaultConfiguration() : bool + /** + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException + */ + public function matchesName(string $methodName): bool { - return $this->useDefaultConfiguration !== null; + return (bool) $this->constraint->evaluate($methodName, '', \true); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use function count; +use function gettype; +use function is_iterable; +use function sprintf; +use PHPUnit\Framework\Constraint\Constraint; +use PHPUnit\Framework\Constraint\IsEqual; +use PHPUnit\Framework\Exception; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\InvalidParameterGroupException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @deprecated + */ +final class ConsecutiveParameters implements \PHPUnit\Framework\MockObject\Rule\ParametersRule +{ + /** + * @var array + */ + private $parameterGroups = []; + /** + * @var array + */ + private $invocations = []; /** * @throws Exception */ - public function useDefaultConfiguration() : bool + public function __construct(array $parameterGroups) { - if ($this->useDefaultConfiguration === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + foreach ($parameterGroups as $index => $parameters) { + if (!is_iterable($parameters)) { + throw new InvalidParameterGroupException(sprintf('Parameter group #%d must be an array or Traversable, got %s', $index, gettype($parameters))); + } + foreach ($parameters as $parameter) { + if (!$parameter instanceof Constraint) { + $parameter = new IsEqual($parameter); + } + $this->parameterGroups[$index][] = $parameter; + } } - return $this->useDefaultConfiguration; } - public function hasVerbose() : bool + public function toString(): string { - return $this->verbose !== null; + return 'with consecutive parameters'; } /** - * @throws Exception + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function verbose() : bool - { - if ($this->verbose === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); - } - return $this->verbose; - } - public function hasVersion() : bool + public function apply(BaseInvocation $invocation): void { - return $this->version !== null; + $this->invocations[] = $invocation; + $callIndex = count($this->invocations) - 1; + $this->verifyInvocation($invocation, $callIndex); } /** - * @throws Exception + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function version() : bool + public function verify(): void { - if ($this->version === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + foreach ($this->invocations as $callIndex => $invocation) { + $this->verifyInvocation($invocation, $callIndex); } - return $this->version; - } - public function hasXdebugFilterFile() : bool - { - return $this->xdebugFilterFile !== null; } /** - * @throws Exception + * Verify a single invocation. + * + * @param int $callIndex + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function xdebugFilterFile() : string + private function verifyInvocation(BaseInvocation $invocation, $callIndex): void { - if ($this->xdebugFilterFile === null) { - throw new \PHPUnit\TextUI\CliArguments\Exception(); + if (!isset($this->parameterGroups[$callIndex])) { + // no parameter assertion for this call index + return; + } + $parameters = $this->parameterGroups[$callIndex]; + if (count($invocation->getParameters()) < count($parameters)) { + throw new ExpectationFailedException(sprintf('Parameter count for invocation %s is too low.', $invocation->toString())); + } + foreach ($parameters as $i => $parameter) { + $parameter->evaluate($invocation->getParameters()[$i], sprintf('Parameter %s for invocation #%d %s does not match expected ' . 'value.', $i, $callIndex, $invocation->toString())); } - return $this->xdebugFilterFile; } } [], 'listGroups' => \false, 'listSuites' => \false, 'listTests' => \false, 'listTestsXml' => \false, 'loader' => null, 'useDefaultConfiguration' => \true, 'loadedExtensions' => [], 'unavailableExtensions' => [], 'notLoadedExtensions' => []]; - if ($arguments->hasColors()) { - $result['colors'] = $arguments->colors(); - } - if ($arguments->hasBootstrap()) { - $result['bootstrap'] = $arguments->bootstrap(); - } - if ($arguments->hasCacheResult()) { - $result['cacheResult'] = $arguments->cacheResult(); - } - if ($arguments->hasCacheResultFile()) { - $result['cacheResultFile'] = $arguments->cacheResultFile(); - } - if ($arguments->hasColumns()) { - $result['columns'] = $arguments->columns(); - } - if ($arguments->hasConfiguration()) { - $result['configuration'] = $arguments->configuration(); - } - if ($arguments->hasCoverageCacheDirectory()) { - $result['coverageCacheDirectory'] = $arguments->coverageCacheDirectory(); - } - if ($arguments->hasWarmCoverageCache()) { - $result['warmCoverageCache'] = $arguments->warmCoverageCache(); - } - if ($arguments->hasCoverageClover()) { - $result['coverageClover'] = $arguments->coverageClover(); - } - if ($arguments->hasCoverageCobertura()) { - $result['coverageCobertura'] = $arguments->coverageCobertura(); - } - if ($arguments->hasCoverageCrap4J()) { - $result['coverageCrap4J'] = $arguments->coverageCrap4J(); - } - if ($arguments->hasCoverageHtml()) { - $result['coverageHtml'] = $arguments->coverageHtml(); - } - if ($arguments->hasCoveragePhp()) { - $result['coveragePHP'] = $arguments->coveragePhp(); - } - if ($arguments->hasCoverageText()) { - $result['coverageText'] = $arguments->coverageText(); - } - if ($arguments->hasCoverageTextShowUncoveredFiles()) { - $result['coverageTextShowUncoveredFiles'] = $arguments->hasCoverageTextShowUncoveredFiles(); - } - if ($arguments->hasCoverageTextShowOnlySummary()) { - $result['coverageTextShowOnlySummary'] = $arguments->coverageTextShowOnlySummary(); - } - if ($arguments->hasCoverageXml()) { - $result['coverageXml'] = $arguments->coverageXml(); - } - if ($arguments->hasPathCoverage()) { - $result['pathCoverage'] = $arguments->pathCoverage(); - } - if ($arguments->hasDebug()) { - $result['debug'] = $arguments->debug(); - } - if ($arguments->hasHelp()) { - $result['help'] = $arguments->help(); - } - if ($arguments->hasFilter()) { - $result['filter'] = $arguments->filter(); - } - if ($arguments->hasTestSuite()) { - $result['testsuite'] = $arguments->testSuite(); - } - if ($arguments->hasGroups()) { - $result['groups'] = $arguments->groups(); - } - if ($arguments->hasExcludeGroups()) { - $result['excludeGroups'] = $arguments->excludeGroups(); - } - if ($arguments->hasTestsCovering()) { - $result['testsCovering'] = $arguments->testsCovering(); - } - if ($arguments->hasTestsUsing()) { - $result['testsUsing'] = $arguments->testsUsing(); - } - if ($arguments->hasTestSuffixes()) { - $result['testSuffixes'] = $arguments->testSuffixes(); - } - if ($arguments->hasIncludePath()) { - $result['includePath'] = $arguments->includePath(); - } - if ($arguments->hasListGroups()) { - $result['listGroups'] = $arguments->listGroups(); - } - if ($arguments->hasListSuites()) { - $result['listSuites'] = $arguments->listSuites(); - } - if ($arguments->hasListTests()) { - $result['listTests'] = $arguments->listTests(); - } - if ($arguments->hasListTestsXml()) { - $result['listTestsXml'] = $arguments->listTestsXml(); - } - if ($arguments->hasPrinter()) { - $result['printer'] = $arguments->printer(); - } - if ($arguments->hasLoader()) { - $result['loader'] = $arguments->loader(); - } - if ($arguments->hasJunitLogfile()) { - $result['junitLogfile'] = $arguments->junitLogfile(); - } - if ($arguments->hasTeamcityLogfile()) { - $result['teamcityLogfile'] = $arguments->teamcityLogfile(); - } - if ($arguments->hasExecutionOrder()) { - $result['executionOrder'] = $arguments->executionOrder(); - } - if ($arguments->hasExecutionOrderDefects()) { - $result['executionOrderDefects'] = $arguments->executionOrderDefects(); - } - if ($arguments->hasExtensions()) { - $result['extensions'] = $arguments->extensions(); - } - if ($arguments->hasUnavailableExtensions()) { - $result['unavailableExtensions'] = $arguments->unavailableExtensions(); - } - if ($arguments->hasResolveDependencies()) { - $result['resolveDependencies'] = $arguments->resolveDependencies(); - } - if ($arguments->hasProcessIsolation()) { - $result['processIsolation'] = $arguments->processIsolation(); - } - if ($arguments->hasRepeat()) { - $result['repeat'] = $arguments->repeat(); - } - if ($arguments->hasStderr()) { - $result['stderr'] = $arguments->stderr(); - } - if ($arguments->hasStopOnDefect()) { - $result['stopOnDefect'] = $arguments->stopOnDefect(); - } - if ($arguments->hasStopOnError()) { - $result['stopOnError'] = $arguments->stopOnError(); - } - if ($arguments->hasStopOnFailure()) { - $result['stopOnFailure'] = $arguments->stopOnFailure(); - } - if ($arguments->hasStopOnWarning()) { - $result['stopOnWarning'] = $arguments->stopOnWarning(); - } - if ($arguments->hasStopOnIncomplete()) { - $result['stopOnIncomplete'] = $arguments->stopOnIncomplete(); - } - if ($arguments->hasStopOnRisky()) { - $result['stopOnRisky'] = $arguments->stopOnRisky(); - } - if ($arguments->hasStopOnSkipped()) { - $result['stopOnSkipped'] = $arguments->stopOnSkipped(); - } - if ($arguments->hasFailOnEmptyTestSuite()) { - $result['failOnEmptyTestSuite'] = $arguments->failOnEmptyTestSuite(); - } - if ($arguments->hasFailOnIncomplete()) { - $result['failOnIncomplete'] = $arguments->failOnIncomplete(); - } - if ($arguments->hasFailOnRisky()) { - $result['failOnRisky'] = $arguments->failOnRisky(); - } - if ($arguments->hasFailOnSkipped()) { - $result['failOnSkipped'] = $arguments->failOnSkipped(); - } - if ($arguments->hasFailOnWarning()) { - $result['failOnWarning'] = $arguments->failOnWarning(); - } - if ($arguments->hasTestdoxGroups()) { - $result['testdoxGroups'] = $arguments->testdoxGroups(); - } - if ($arguments->hasTestdoxExcludeGroups()) { - $result['testdoxExcludeGroups'] = $arguments->testdoxExcludeGroups(); - } - if ($arguments->hasTestdoxHtmlFile()) { - $result['testdoxHTMLFile'] = $arguments->testdoxHtmlFile(); - } - if ($arguments->hasTestdoxTextFile()) { - $result['testdoxTextFile'] = $arguments->testdoxTextFile(); - } - if ($arguments->hasTestdoxXmlFile()) { - $result['testdoxXMLFile'] = $arguments->testdoxXmlFile(); - } - if ($arguments->hasUseDefaultConfiguration()) { - $result['useDefaultConfiguration'] = $arguments->useDefaultConfiguration(); - } - if ($arguments->hasNoExtensions()) { - $result['noExtensions'] = $arguments->noExtensions(); - } - if ($arguments->hasNoCoverage()) { - $result['noCoverage'] = $arguments->noCoverage(); - } - if ($arguments->hasNoLogging()) { - $result['noLogging'] = $arguments->noLogging(); - } - if ($arguments->hasNoInteraction()) { - $result['noInteraction'] = $arguments->noInteraction(); - } - if ($arguments->hasBackupGlobals()) { - $result['backupGlobals'] = $arguments->backupGlobals(); - } - if ($arguments->hasBackupStaticAttributes()) { - $result['backupStaticAttributes'] = $arguments->backupStaticAttributes(); - } - if ($arguments->hasVerbose()) { - $result['verbose'] = $arguments->verbose(); - } - if ($arguments->hasReportUselessTests()) { - $result['reportUselessTests'] = $arguments->reportUselessTests(); - } - if ($arguments->hasStrictCoverage()) { - $result['strictCoverage'] = $arguments->strictCoverage(); - } - if ($arguments->hasDisableCodeCoverageIgnore()) { - $result['disableCodeCoverageIgnore'] = $arguments->disableCodeCoverageIgnore(); - } - if ($arguments->hasBeStrictAboutChangesToGlobalState()) { - $result['beStrictAboutChangesToGlobalState'] = $arguments->beStrictAboutChangesToGlobalState(); - } - if ($arguments->hasDisallowTestOutput()) { - $result['disallowTestOutput'] = $arguments->disallowTestOutput(); - } - if ($arguments->hasBeStrictAboutResourceUsageDuringSmallTests()) { - $result['beStrictAboutResourceUsageDuringSmallTests'] = $arguments->beStrictAboutResourceUsageDuringSmallTests(); - } - if ($arguments->hasDefaultTimeLimit()) { - $result['defaultTimeLimit'] = $arguments->defaultTimeLimit(); - } - if ($arguments->hasEnforceTimeLimit()) { - $result['enforceTimeLimit'] = $arguments->enforceTimeLimit(); - } - if ($arguments->hasDisallowTodoAnnotatedTests()) { - $result['disallowTodoAnnotatedTests'] = $arguments->disallowTodoAnnotatedTests(); - } - if ($arguments->hasReverseList()) { - $result['reverseList'] = $arguments->reverseList(); - } - if ($arguments->hasCoverageFilter()) { - $result['coverageFilter'] = $arguments->coverageFilter(); - } - if ($arguments->hasRandomOrderSeed()) { - $result['randomOrderSeed'] = $arguments->randomOrderSeed(); - } - if ($arguments->hasXdebugFilterFile()) { - $result['xdebugFilterFile'] = $arguments->xdebugFilterFile(); + return count($this->invocations); + } + public function hasBeenInvoked(): bool + { + return count($this->invocations) > 0; + } + final public function invoked(BaseInvocation $invocation) + { + $this->invocations[] = $invocation; + return $this->invokedDo($invocation); + } + abstract public function matches(BaseInvocation $invocation): bool; + abstract protected function invokedDo(BaseInvocation $invocation); +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class AnyInvokedCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder +{ + public function toString(): string + { + return 'invoked zero or more times'; + } + public function verify(): void + { + } + public function matches(BaseInvocation $invocation): bool + { + return \true; + } + protected function invokedDo(BaseInvocation $invocation): void + { + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvokedAtLeastOnce extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder +{ + public function toString(): string + { + return 'invoked at least once'; + } + /** + * Verifies that the current expectation is valid. If everything is OK the + * code should just return, if not it must throw an exception. + * + * @throws ExpectationFailedException + */ + public function verify(): void + { + $count = $this->getInvocationCount(); + if ($count < 1) { + throw new ExpectationFailedException('Expected invocation at least once but it never occurred.'); } - return $result; + } + public function matches(BaseInvocation $invocation): bool + { + return \true; + } + protected function invokedDo(BaseInvocation $invocation): void + { } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvokedAtMostCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder { /** - * @var array + * @var int */ - protected $arguments = []; + private $allowedInvocations; /** - * @var array + * @param int $allowedInvocations */ - protected $longOptions = []; + public function __construct($allowedInvocations) + { + $this->allowedInvocations = $allowedInvocations; + } + public function toString(): string + { + return 'invoked at most ' . $this->allowedInvocations . ' times'; + } /** - * @var bool + * Verifies that the current expectation is valid. If everything is OK the + * code should just return, if not it must throw an exception. + * + * @throws ExpectationFailedException */ - private $versionStringPrinted = \false; + public function verify(): void + { + $count = $this->getInvocationCount(); + if ($count > $this->allowedInvocations) { + throw new ExpectationFailedException('Expected invocation at most ' . $this->allowedInvocations . ' times but it occurred ' . $count . ' time(s).'); + } + } + public function matches(BaseInvocation $invocation): bool + { + return \true; + } + protected function invokedDo(BaseInvocation $invocation): void + { + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use function sprintf; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4297 + * + * @codeCoverageIgnore + */ +final class InvokedAtIndex extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder +{ /** - * @psalm-var list + * @var int */ - private $warnings = []; + private $sequenceIndex; /** - * @throws Exception + * @var int + */ + private $currentIndex = -1; + /** + * @param int $sequenceIndex */ - public static function main(bool $exit = \true) : int + public function __construct($sequenceIndex) { - try { - return (new static())->run($_SERVER['argv'], $exit); - } catch (Throwable $t) { - throw new \PHPUnit\TextUI\RuntimeException($t->getMessage(), (int) $t->getCode(), $t); - } + $this->sequenceIndex = $sequenceIndex; + } + public function toString(): string + { + return 'invoked at sequence index ' . $this->sequenceIndex; + } + public function matches(BaseInvocation $invocation): bool + { + $this->currentIndex++; + return $this->currentIndex == $this->sequenceIndex; } /** - * @throws Exception + * Verifies that the current expectation is valid. If everything is OK the + * code should just return, if not it must throw an exception. + * + * @throws ExpectationFailedException */ - public function run(array $argv, bool $exit = \true) : int + public function verify(): void { - $this->handleArguments($argv); - $runner = $this->createRunner(); - if ($this->arguments['test'] instanceof TestSuite) { - $suite = $this->arguments['test']; - } else { - $suite = $runner->getTest($this->arguments['test'], $this->arguments['testSuffixes']); - } - if ($this->arguments['listGroups']) { - return $this->handleListGroups($suite, $exit); - } - if ($this->arguments['listSuites']) { - return $this->handleListSuites($exit); - } - if ($this->arguments['listTests']) { - return $this->handleListTests($suite, $exit); - } - if ($this->arguments['listTestsXml']) { - return $this->handleListTestsXml($suite, $this->arguments['listTestsXml'], $exit); - } - unset($this->arguments['test'], $this->arguments['testFile']); - try { - $result = $runner->run($suite, $this->arguments, $this->warnings, $exit); - } catch (Throwable $t) { - print $t->getMessage() . PHP_EOL; - } - $return = \PHPUnit\TextUI\TestRunner::FAILURE_EXIT; - if (isset($result) && $result->wasSuccessful()) { - $return = \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; - } elseif (!isset($result) || $result->errorCount() > 0) { - $return = \PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT; - } - if ($exit) { - exit($return); + if ($this->currentIndex < $this->sequenceIndex) { + throw new ExpectationFailedException(sprintf('The expected invocation at index %s was never reached.', $this->sequenceIndex)); } - return $return; } + protected function invokedDo(BaseInvocation $invocation): void + { + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvokedAtLeastCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder +{ /** - * Create a TestRunner, override in subclasses. + * @var int */ - protected function createRunner() : \PHPUnit\TextUI\TestRunner + private $requiredInvocations; + /** + * @param int $requiredInvocations + */ + public function __construct($requiredInvocations) { - return new \PHPUnit\TextUI\TestRunner($this->arguments['loader']); + $this->requiredInvocations = $requiredInvocations; + } + public function toString(): string + { + return 'invoked at least ' . $this->requiredInvocations . ' times'; } /** - * Handles the command-line arguments. - * - * A child class of PHPUnit\TextUI\Command can hook into the argument - * parsing by adding the switch(es) to the $longOptions array and point to a - * callback method that handles the switch(es) in the child class like this - * - * - * longOptions['my-switch'] = 'myHandler'; - * // my-secondswitch will accept a value - note the equals sign - * $this->longOptions['my-secondswitch='] = 'myOtherHandler'; - * } - * - * // --my-switch -> myHandler() - * protected function myHandler() - * { - * } - * - * // --my-secondswitch foo -> myOtherHandler('foo') - * protected function myOtherHandler ($value) - * { - * } - * - * // You will also need this - the static keyword in the - * // PHPUnit\TextUI\Command will mean that it'll be - * // PHPUnit\TextUI\Command that gets instantiated, - * // not MyCommand - * public static function main($exit = true) - * { - * $command = new static; - * - * return $command->run($_SERVER['argv'], $exit); - * } - * - * } - * + * Verifies that the current expectation is valid. If everything is OK the + * code should just return, if not it must throw an exception. * - * @throws Exception + * @throws ExpectationFailedException */ - protected function handleArguments(array $argv) : void + public function verify(): void { - try { - $arguments = (new Builder())->fromParameters($argv, array_keys($this->longOptions)); - } catch (ArgumentsException $e) { - $this->exitWithErrorMessage($e->getMessage()); - } - assert(isset($arguments) && $arguments instanceof Configuration); - if ($arguments->hasGenerateConfiguration() && $arguments->generateConfiguration()) { - $this->generateConfiguration(); - } - if ($arguments->hasAtLeastVersion()) { - if (version_compare(Version::id(), $arguments->atLeastVersion(), '>=')) { - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); - } - exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); - } - if ($arguments->hasVersion() && $arguments->version()) { - $this->printVersionString(); - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); - } - if ($arguments->hasCheckVersion() && $arguments->checkVersion()) { - $this->handleVersionCheck(); - } - if ($arguments->hasHelp()) { - $this->showHelp(); - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); - } - if ($arguments->hasUnrecognizedOrderBy()) { - $this->exitWithErrorMessage(sprintf('unrecognized --order-by option: %s', $arguments->unrecognizedOrderBy())); - } - if ($arguments->hasIniSettings()) { - foreach ($arguments->iniSettings() as $name => $value) { - ini_set($name, $value); - } - } - if ($arguments->hasIncludePath()) { - ini_set('include_path', $arguments->includePath() . PATH_SEPARATOR . ini_get('include_path')); - } - $this->arguments = (new Mapper())->mapToLegacyArray($arguments); - $this->handleCustomOptions($arguments->unrecognizedOptions()); - $this->handleCustomTestSuite(); - if (!isset($this->arguments['testSuffixes'])) { - $this->arguments['testSuffixes'] = ['Test.php', '.phpt']; - } - if (!isset($this->arguments['test']) && $arguments->hasArgument()) { - $this->arguments['test'] = realpath($arguments->argument()); - if ($this->arguments['test'] === \false) { - $this->exitWithErrorMessage(sprintf('Cannot open file "%s".', $arguments->argument())); - } - } - if ($this->arguments['loader'] !== null) { - $this->arguments['loader'] = $this->handleLoader($this->arguments['loader']); - } - if (isset($this->arguments['configuration'])) { - if (is_dir($this->arguments['configuration'])) { - $candidate = $this->configurationFileInDirectory($this->arguments['configuration']); - if ($candidate !== null) { - $this->arguments['configuration'] = $candidate; - } - } - } elseif ($this->arguments['useDefaultConfiguration']) { - $candidate = $this->configurationFileInDirectory(getcwd()); - if ($candidate !== null) { - $this->arguments['configuration'] = $candidate; - } + $count = $this->getInvocationCount(); + if ($count < $this->requiredInvocations) { + throw new ExpectationFailedException('Expected invocation at least ' . $this->requiredInvocations . ' times but it occurred ' . $count . ' time(s).'); } - if ($arguments->hasMigrateConfiguration() && $arguments->migrateConfiguration()) { - if (!isset($this->arguments['configuration'])) { - print 'No configuration file found to migrate.' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + } + public function matches(BaseInvocation $invocation): bool + { + return \true; + } + protected function invokedDo(BaseInvocation $invocation): void + { + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use function count; +use function get_class; +use function sprintf; +use Exception; +use PHPUnit\Framework\Constraint\Constraint; +use PHPUnit\Framework\Constraint\IsAnything; +use PHPUnit\Framework\Constraint\IsEqual; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Parameters implements \PHPUnit\Framework\MockObject\Rule\ParametersRule +{ + /** + * @var Constraint[] + */ + private $parameters = []; + /** + * @var BaseInvocation + */ + private $invocation; + /** + * @var bool|ExpectationFailedException + */ + private $parameterVerificationResult; + /** + * @throws \PHPUnit\Framework\Exception + */ + public function __construct(array $parameters) + { + foreach ($parameters as $parameter) { + if (!$parameter instanceof Constraint) { + $parameter = new IsEqual($parameter); } - $this->migrateConfiguration(realpath($this->arguments['configuration'])); + $this->parameters[] = $parameter; } - if (isset($this->arguments['configuration'])) { - try { - $this->arguments['configurationObject'] = (new Loader())->load($this->arguments['configuration']); - } catch (Throwable $e) { - print $e->getMessage() . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); - } - $phpunitConfiguration = $this->arguments['configurationObject']->phpunit(); - (new PhpHandler())->handle($this->arguments['configurationObject']->php()); - if (isset($this->arguments['bootstrap'])) { - $this->handleBootstrap($this->arguments['bootstrap']); - } elseif ($phpunitConfiguration->hasBootstrap()) { - $this->handleBootstrap($phpunitConfiguration->bootstrap()); - } - if (!isset($this->arguments['stderr'])) { - $this->arguments['stderr'] = $phpunitConfiguration->stderr(); - } - if (!isset($this->arguments['noExtensions']) && $phpunitConfiguration->hasExtensionsDirectory() && extension_loaded('phar')) { - $result = (new PharLoader())->loadPharExtensionsInDirectory($phpunitConfiguration->extensionsDirectory()); - $this->arguments['loadedExtensions'] = $result['loadedExtensions']; - $this->arguments['notLoadedExtensions'] = $result['notLoadedExtensions']; - unset($result); - } - if (!isset($this->arguments['columns'])) { - $this->arguments['columns'] = $phpunitConfiguration->columns(); - } - if (!isset($this->arguments['printer']) && $phpunitConfiguration->hasPrinterClass()) { - $file = $phpunitConfiguration->hasPrinterFile() ? $phpunitConfiguration->printerFile() : ''; - $this->arguments['printer'] = $this->handlePrinter($phpunitConfiguration->printerClass(), $file); - } - if ($phpunitConfiguration->hasTestSuiteLoaderClass()) { - $file = $phpunitConfiguration->hasTestSuiteLoaderFile() ? $phpunitConfiguration->testSuiteLoaderFile() : ''; - $this->arguments['loader'] = $this->handleLoader($phpunitConfiguration->testSuiteLoaderClass(), $file); - } - if (!isset($this->arguments['testsuite']) && $phpunitConfiguration->hasDefaultTestSuite()) { - $this->arguments['testsuite'] = $phpunitConfiguration->defaultTestSuite(); - } - if (!isset($this->arguments['test'])) { - try { - $this->arguments['test'] = (new \PHPUnit\TextUI\TestSuiteMapper())->map($this->arguments['configurationObject']->testSuite(), $this->arguments['testsuite'] ?? ''); - } catch (\PHPUnit\TextUI\Exception $e) { - $this->printVersionString(); - print $e->getMessage() . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); - } + } + public function toString(): string + { + $text = 'with parameter'; + foreach ($this->parameters as $index => $parameter) { + if ($index > 0) { + $text .= ' and'; } - } elseif (isset($this->arguments['bootstrap'])) { - $this->handleBootstrap($this->arguments['bootstrap']); - } - if (isset($this->arguments['printer']) && is_string($this->arguments['printer'])) { - $this->arguments['printer'] = $this->handlePrinter($this->arguments['printer']); - } - if (isset($this->arguments['configurationObject'], $this->arguments['warmCoverageCache'])) { - $this->handleWarmCoverageCache($this->arguments['configurationObject']); + $text .= ' ' . $index . ' ' . $parameter->toString(); } - if (!isset($this->arguments['test'])) { - $this->showHelp(); - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); + return $text; + } + /** + * @throws Exception + */ + public function apply(BaseInvocation $invocation): void + { + $this->invocation = $invocation; + $this->parameterVerificationResult = null; + try { + $this->parameterVerificationResult = $this->doVerify(); + } catch (ExpectationFailedException $e) { + $this->parameterVerificationResult = $e; + throw $this->parameterVerificationResult; } } /** - * Handles the loading of the PHPUnit\Runner\TestSuiteLoader implementation. + * Checks if the invocation $invocation matches the current rules. If it + * does the rule will get the invoked() method called which should check + * if an expectation is met. * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - protected function handleLoader(string $loaderClass, string $loaderFile = '') : ?TestSuiteLoader + public function verify(): void { - $this->warnings[] = 'Using a custom test suite loader is deprecated'; - if (!class_exists($loaderClass, \false)) { - if ($loaderFile == '') { - $loaderFile = Filesystem::classNameToFilename($loaderClass); - } - $loaderFile = stream_resolve_include_path($loaderFile); - if ($loaderFile) { - /** - * @noinspection PhpIncludeInspection - * - * @psalm-suppress UnresolvableInclude - */ - require $loaderFile; - } - } - if (class_exists($loaderClass, \false)) { - try { - $class = new ReflectionClass($loaderClass); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\TextUI\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - if ($class->implementsInterface(TestSuiteLoader::class) && $class->isInstantiable()) { - $object = $class->newInstance(); - assert($object instanceof TestSuiteLoader); - return $object; - } - } - if ($loaderClass == StandardTestSuiteLoader::class) { - return null; - } - $this->exitWithErrorMessage(sprintf('Could not use "%s" as loader.', $loaderClass)); - return null; + $this->doVerify(); } /** - * Handles the loading of the PHPUnit\Util\Printer implementation. - * - * @return null|Printer|string + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - protected function handlePrinter(string $printerClass, string $printerFile = '') + private function doVerify(): bool { - if (!class_exists($printerClass, \false)) { - if ($printerFile === '') { - $printerFile = Filesystem::classNameToFilename($printerClass); - } - $printerFile = stream_resolve_include_path($printerFile); - if ($printerFile) { - /** - * @noinspection PhpIncludeInspection - * - * @psalm-suppress UnresolvableInclude - */ - require $printerFile; - } - } - if (!class_exists($printerClass)) { - $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class does not exist', $printerClass)); - } - try { - $class = new ReflectionClass($printerClass); - // @codeCoverageIgnoreStart - } catch (\ReflectionException $e) { - throw new \PHPUnit\TextUI\ReflectionException($e->getMessage(), (int) $e->getCode(), $e); - // @codeCoverageIgnoreEnd + if (isset($this->parameterVerificationResult)) { + return $this->guardAgainstDuplicateEvaluationOfParameterConstraints(); } - if (!$class->implementsInterface(\PHPUnit\TextUI\ResultPrinter::class)) { - $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class does not implement %s', $printerClass, \PHPUnit\TextUI\ResultPrinter::class)); + if ($this->invocation === null) { + throw new ExpectationFailedException('Mocked method does not exist.'); } - if (!$class->isInstantiable()) { - $this->exitWithErrorMessage(sprintf('Could not use "%s" as printer: class cannot be instantiated', $printerClass)); + if (count($this->invocation->getParameters()) < count($this->parameters)) { + $message = 'Parameter count for invocation %s is too low.'; + // The user called `->with($this->anything())`, but may have meant + // `->withAnyParameters()`. + // + // @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/199 + if (count($this->parameters) === 1 && get_class($this->parameters[0]) === IsAnything::class) { + $message .= "\nTo allow 0 or more parameters with any value, omit ->with() or use ->withAnyParameters() instead."; + } + throw new ExpectationFailedException(sprintf($message, $this->invocation->toString())); } - if ($class->isSubclassOf(\PHPUnit\TextUI\ResultPrinter::class)) { - return $printerClass; + foreach ($this->parameters as $i => $parameter) { + $parameter->evaluate($this->invocation->getParameters()[$i], sprintf('Parameter %s for invocation %s does not match expected ' . 'value.', $i, $this->invocation->toString())); } - $outputStream = isset($this->arguments['stderr']) ? 'php://stderr' : null; - return $class->newInstance($outputStream); + return \true; } /** - * Loads a bootstrap file. + * @throws ExpectationFailedException */ - protected function handleBootstrap(string $filename) : void - { - try { - FileLoader::checkAndLoad($filename); - } catch (Throwable $t) { - if ($t instanceof \PHPUnit\Exception) { - $this->exitWithErrorMessage($t->getMessage()); - } - $this->exitWithErrorMessage(sprintf('Error in bootstrap script: %s:%s%s%s%s', get_class($t), PHP_EOL, $t->getMessage(), PHP_EOL, $t->getTraceAsString())); - } - } - protected function handleVersionCheck() : void + private function guardAgainstDuplicateEvaluationOfParameterConstraints(): bool { - $this->printVersionString(); - $latestVersion = file_get_contents('https://phar.phpunit.de/latest-version-of/phpunit'); - $isOutdated = version_compare($latestVersion, Version::id(), '>'); - if ($isOutdated) { - printf('You are not using the latest version of PHPUnit.' . PHP_EOL . 'The latest version is PHPUnit %s.' . PHP_EOL, $latestVersion); - } else { - print 'You are using the latest version of PHPUnit.' . PHP_EOL; + if ($this->parameterVerificationResult instanceof ExpectationFailedException) { + throw $this->parameterVerificationResult; } - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + return (bool) $this->parameterVerificationResult; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Rule; + +use function sprintf; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Framework\MockObject\Invocation as BaseInvocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvokedCount extends \PHPUnit\Framework\MockObject\Rule\InvocationOrder +{ /** - * Show the help message. + * @var int */ - protected function showHelp() : void - { - $this->printVersionString(); - (new \PHPUnit\TextUI\Help())->writeToConsole(); - } + private $expectedCount; /** - * Custom callback for test suite discovery. + * @param int $expectedCount */ - protected function handleCustomTestSuite() : void + public function __construct($expectedCount) { + $this->expectedCount = $expectedCount; } - private function printVersionString() : void + public function isNever(): bool { - if ($this->versionStringPrinted) { - return; - } - print Version::getVersionString() . PHP_EOL . PHP_EOL; - $this->versionStringPrinted = \true; + return $this->expectedCount === 0; } - private function exitWithErrorMessage(string $message) : void + public function toString(): string { - $this->printVersionString(); - print $message . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::FAILURE_EXIT); + return 'invoked ' . $this->expectedCount . ' time(s)'; } - private function handleListGroups(TestSuite $suite, bool $exit) : int + public function matches(BaseInvocation $invocation): bool { - $this->printVersionString(); - $this->warnAboutConflictingOptions('listGroups', ['filter', 'groups', 'excludeGroups', 'testsuite']); - print 'Available test group(s):' . PHP_EOL; - $groups = $suite->getGroups(); - sort($groups); - foreach ($groups as $group) { - if (strpos($group, '__phpunit_') === 0) { - continue; - } - printf(' - %s' . PHP_EOL, $group); - } - if ($exit) { - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); - } - return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; + return \true; } /** - * @throws \PHPUnit\Framework\Exception - * @throws \PHPUnit\TextUI\XmlConfiguration\Exception + * Verifies that the current expectation is valid. If everything is OK the + * code should just return, if not it must throw an exception. + * + * @throws ExpectationFailedException */ - private function handleListSuites(bool $exit) : int + public function verify(): void { - $this->printVersionString(); - $this->warnAboutConflictingOptions('listSuites', ['filter', 'groups', 'excludeGroups', 'testsuite']); - print 'Available test suite(s):' . PHP_EOL; - foreach ($this->arguments['configurationObject']->testSuite() as $testSuite) { - printf(' - %s' . PHP_EOL, $testSuite->name()); - } - if ($exit) { - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + $count = $this->getInvocationCount(); + if ($count !== $this->expectedCount) { + throw new ExpectationFailedException(sprintf('Method was expected to be called %d times, ' . 'actually called %d times.', $this->expectedCount, $count)); } - return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws ExpectationFailedException */ - private function handleListTests(TestSuite $suite, bool $exit) : int + protected function invokedDo(BaseInvocation $invocation): void { - $this->printVersionString(); - $this->warnAboutConflictingOptions('listTests', ['filter', 'groups', 'excludeGroups', 'testsuite']); - $renderer = new TextTestListRenderer(); - print $renderer->render($suite); - if ($exit) { - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + $count = $this->getInvocationCount(); + if ($count > $this->expectedCount) { + $message = $invocation->toString() . ' '; + switch ($this->expectedCount) { + case 0: + $message .= 'was not expected to be called.'; + break; + case 1: + $message .= 'was not expected to be called more than once.'; + break; + default: + $message .= sprintf('was not expected to be called more than %d times.', $this->expectedCount); + } + throw new ExpectationFailedException($message); } - return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - private function handleListTestsXml(TestSuite $suite, string $target, bool $exit) : int - { - $this->printVersionString(); - $this->warnAboutConflictingOptions('listTestsXml', ['filter', 'groups', 'excludeGroups', 'testsuite']); - $renderer = new XmlTestListRenderer(); - file_put_contents($target, $renderer->render($suite)); - printf('Wrote list of tests that would have been run to %s' . PHP_EOL, $target); - if ($exit) { - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); +} + + {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} + {{deprecation} + $__phpunit_arguments = [{arguments_call}]; + $__phpunit_count = func_num_args(); + + if ($__phpunit_count > {arguments_count}) { + $__phpunit_arguments_tmp = func_get_args(); + + for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { + $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; + } } - return \PHPUnit\TextUI\TestRunner::SUCCESS_EXIT; + + $__phpunit_result = $this->__phpunit_getInvocationHandler()->invoke( + new \PHPUnit\Framework\MockObject\Invocation( + '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments} + ) + ); + + return $__phpunit_result; } - private function generateConfiguration() : void - { - $this->printVersionString(); - print 'Generating phpunit.xml in ' . getcwd() . PHP_EOL . PHP_EOL; - print 'Bootstrap script (relative to path shown above; default: vendor/autoload.php): '; - $bootstrapScript = trim(fgets(STDIN)); - print 'Tests directory (relative to path shown above; default: tests): '; - $testsDirectory = trim(fgets(STDIN)); - print 'Source directory (relative to path shown above; default: src): '; - $src = trim(fgets(STDIN)); - print 'Cache directory (relative to path shown above; default: .phpunit.cache): '; - $cacheDirectory = trim(fgets(STDIN)); - if ($bootstrapScript === '') { - $bootstrapScript = 'vendor/autoload.php'; - } - if ($testsDirectory === '') { - $testsDirectory = 'tests'; - } - if ($src === '') { - $src = 'src'; - } - if ($cacheDirectory === '') { - $cacheDirectory = '.phpunit.cache'; + + {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} + {{deprecation} + $__phpunit_arguments = [{arguments_call}]; + $__phpunit_count = func_num_args(); + + if ($__phpunit_count > {arguments_count}) { + $__phpunit_arguments_tmp = func_get_args(); + + for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { + $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; + } } - $generator = new Generator(); - file_put_contents('phpunit.xml', $generator->generateDefaultConfiguration(Version::series(), $bootstrapScript, $testsDirectory, $src, $cacheDirectory)); - print PHP_EOL . 'Generated phpunit.xml in ' . getcwd() . '.' . PHP_EOL; - print 'Make sure to exclude the ' . $cacheDirectory . ' directory from version control.' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + + $this->__phpunit_getInvocationHandler()->invoke( + new \PHPUnit\Framework\MockObject\Invocation( + '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments} + ) + ); } - private function migrateConfiguration(string $filename) : void +declare(strict_types=1); + +{prologue}{class_declaration} +{ + use \PHPUnit\Framework\MockObject\Api;{method}{clone} +{mocked_methods}}{epilogue} + + public function {method_name}({arguments}) { - $this->printVersionString(); - if (!(new SchemaDetector())->detect($filename)->detected()) { - print $filename . ' does not need to be migrated.' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); - } - copy($filename, $filename . '.bak'); - print 'Created backup: ' . $filename . '.bak' . PHP_EOL; - try { - file_put_contents($filename, (new Migrator())->migrate($filename)); - print 'Migrated configuration: ' . $filename . PHP_EOL; - } catch (Throwable $t) { - print 'Migration failed: ' . $t->getMessage() . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); - } - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); } - private function handleCustomOptions(array $unrecognizedOptions) : void + + {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} { - foreach ($unrecognizedOptions as $name => $value) { - if (isset($this->longOptions[$name])) { - $handler = $this->longOptions[$name]; - } - $name .= '='; - if (isset($this->longOptions[$name])) { - $handler = $this->longOptions[$name]; - } - if (isset($handler) && is_callable([$this, $handler])) { - $this->{$handler}($value); - unset($handler); + $__phpunit_arguments = [{arguments_call}]; + $__phpunit_count = func_num_args(); + + if ($__phpunit_count > {arguments_count}) { + $__phpunit_arguments_tmp = func_get_args(); + + for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { + $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; } } + + $this->__phpunit_getInvocationHandler()->invoke( + new \PHPUnit\Framework\MockObject\Invocation( + '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments}, true + ) + ); + + call_user_func_array(array($this->__phpunit_originalObject, "{method_name}"), $__phpunit_arguments); } - private function handleWarmCoverageCache(\PHPUnit\TextUI\XmlConfiguration\Configuration $configuration) : void + + {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} { - $this->printVersionString(); - if (isset($this->arguments['coverageCacheDirectory'])) { - $cacheDirectory = $this->arguments['coverageCacheDirectory']; - } elseif ($configuration->codeCoverage()->hasCacheDirectory()) { - $cacheDirectory = $configuration->codeCoverage()->cacheDirectory()->path(); - } else { - print 'Cache for static analysis has not been configured' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); - } - $filter = new Filter(); - if ($configuration->codeCoverage()->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { - (new FilterMapper())->map($filter, $configuration->codeCoverage()); - } elseif (isset($this->arguments['coverageFilter'])) { - if (!is_array($this->arguments['coverageFilter'])) { - $coverageFilterDirectories = [$this->arguments['coverageFilter']]; - } else { - $coverageFilterDirectories = $this->arguments['coverageFilter']; - } - foreach ($coverageFilterDirectories as $coverageFilterDirectory) { - $filter->includeDirectory($coverageFilterDirectory); + $__phpunit_arguments = [{arguments_call}]; + $__phpunit_count = func_num_args(); + + if ($__phpunit_count > {arguments_count}) { + $__phpunit_arguments_tmp = func_get_args(); + + for ($__phpunit_i = {arguments_count}; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { + $__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; } - } else { - print 'Filter for code coverage has not been configured' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::EXCEPTION_EXIT); } - $timer = new Timer(); - $timer->start(); - print 'Warming cache for static analysis ... '; - (new CacheWarmer())->warmCache($cacheDirectory, !$configuration->codeCoverage()->disableCodeCoverageIgnore(), $configuration->codeCoverage()->ignoreDeprecatedCodeUnits(), $filter); - print 'done [' . $timer->stop()->asString() . ']' . PHP_EOL; - exit(\PHPUnit\TextUI\TestRunner::SUCCESS_EXIT); + + $this->__phpunit_getInvocationHandler()->invoke( + new \PHPUnit\Framework\MockObject\Invocation( + '{class_name}', '{method_name}', $__phpunit_arguments, '{return_type}', $this, {clone_arguments}, true + ) + ); + + return call_user_func_array(array($this->__phpunit_originalObject, "{method_name}"), $__phpunit_arguments); } - private function configurationFileInDirectory(string $directory) : ?string +declare(strict_types=1); + +interface {intersection} extends {interfaces} +{ +} +declare(strict_types=1); + +{namespace}class {class_name} extends \SoapClient +{ + public function __construct($wsdl, array $options) { - $candidates = [$directory . '/phpunit.xml', $directory . '/phpunit.xml.dist']; - foreach ($candidates as $candidate) { - if (is_file($candidate)) { - return realpath($candidate); - } - } - return null; + parent::__construct('{wsdl}', $options); } - /** - * @psalm-param "listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite" $key - * @psalm-param list<"listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite"> $keys - */ - private function warnAboutConflictingOptions(string $key, array $keys) : void +{methods}} +declare(strict_types=1); + +{prologue}class {class_name} +{ + use {trait_name}; +} + + @trigger_error({deprecation}, E_USER_DEPRECATED); + + {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} { - $warningPrinted = \false; - foreach ($keys as $_key) { - if (!empty($this->arguments[$_key])) { - printf('The %s and %s options cannot be combined, %s is ignored' . PHP_EOL, $this->mapKeyToOptionForWarning($_key), $this->mapKeyToOptionForWarning($key), $this->mapKeyToOptionForWarning($_key)); - $warningPrinted = \true; - } - } - if ($warningPrinted) { - print PHP_EOL; - } + throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); } + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use PHPUnitPHAR\SebastianBergmann\Type\Type; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ConfigurableMethod +{ /** - * @psalm-param "listGroups"|"listSuites"|"listTests"|"listTestsXml"|"filter"|"groups"|"excludeGroups"|"testsuite" $key + * @var string + */ + private $name; + /** + * @var Type */ - private function mapKeyToOptionForWarning(string $key) : string + private $returnType; + public function __construct(string $name, Type $returnType) { - switch ($key) { - case 'listGroups': - return '--list-groups'; - case 'listSuites': - return '--list-suites'; - case 'listTests': - return '--list-tests'; - case 'listTestsXml': - return '--list-tests-xml'; - case 'filter': - return '--filter'; - case 'groups': - return '--group'; - case 'excludeGroups': - return '--exclude-group'; - case 'testsuite': - return '--testsuite'; + $this->name = $name; + $this->returnType = $returnType; + } + public function getName(): string + { + return $this->name; + } + public function mayReturn($value): bool + { + if ($value === null && $this->returnType->allowsNull()) { + return \true; } + return $this->returnType->isAssignable(Type::fromValue($value, \false)); + } + public function getReturnTypeDeclaration(): string + { + return $this->returnType->asString(); } } getNumberOfColumns(); - if ($numberOfColumns === 'max' || $numberOfColumns !== 80 && $numberOfColumns > $maxNumberOfColumns) { - $numberOfColumns = $maxNumberOfColumns; - } - $this->numberOfColumns = $numberOfColumns; - $this->verbose = $verbose; - $this->debug = $debug; - $this->reverse = $reverse; - if ($colors === self::COLOR_AUTO && $console->hasColorSupport()) { - $this->colors = \true; - } else { - $this->colors = self::COLOR_ALWAYS === $colors; - } - $this->timer = new Timer(); - $this->timer->start(); + $this->invocationRule = $rule; } - public function printResult(TestResult $result) : void + public function hasMatchers(): bool { - $this->printHeader($result); - $this->printErrors($result); - $this->printWarnings($result); - $this->printFailures($result); - $this->printRisky($result); - if ($this->verbose) { - $this->printIncompletes($result); - $this->printSkipped($result); - } - $this->printFooter($result); + return !$this->invocationRule instanceof AnyInvokedCount; } - /** - * An error occurred. - */ - public function addError(Test $test, Throwable $t, float $time) : void + public function hasMethodNameRule(): bool { - $this->writeProgressWithColor('fg-red, bold', 'E'); - $this->lastTestFailed = \true; + return $this->methodNameRule !== null; } - /** - * A failure occurred. - */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void + public function getMethodNameRule(): MethodName { - $this->writeProgressWithColor('bg-red, fg-white', 'F'); - $this->lastTestFailed = \true; + return $this->methodNameRule; } - /** - * A warning occurred. - */ - public function addWarning(Test $test, Warning $e, float $time) : void + public function setMethodNameRule(MethodName $rule): void { - $this->writeProgressWithColor('fg-yellow, bold', 'W'); - $this->lastTestFailed = \true; + $this->methodNameRule = $rule; } - /** - * Incomplete test. - */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + public function hasParametersRule(): bool { - $this->writeProgressWithColor('fg-yellow, bold', 'I'); - $this->lastTestFailed = \true; + return $this->parametersRule !== null; } - /** - * Risky test. - */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void + public function setParametersRule(ParametersRule $rule): void { - $this->writeProgressWithColor('fg-yellow, bold', 'R'); - $this->lastTestFailed = \true; + $this->parametersRule = $rule; } - /** - * Skipped test. - */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + public function setStub(Stub $stub): void { - $this->writeProgressWithColor('fg-cyan, bold', 'S'); - $this->lastTestFailed = \true; + $this->stub = $stub; } - /** - * A testsuite started. - */ - public function startTestSuite(TestSuite $suite) : void + public function setAfterMatchBuilderId(string $id): void { - if ($this->numTests == -1) { - $this->numTests = count($suite); - $this->numTestsWidth = strlen((string) $this->numTests); - $this->maxColumn = $this->numberOfColumns - strlen(' / (XXX%)') - 2 * $this->numTestsWidth; - } + $this->afterMatchBuilderId = $id; } /** - * A testsuite ended. + * @throws ExpectationFailedException + * @throws MatchBuilderNotFoundException + * @throws MethodNameNotConfiguredException + * @throws RuntimeException */ - public function endTestSuite(TestSuite $suite) : void + public function invoked(\PHPUnit\Framework\MockObject\Invocation $invocation) { + if ($this->methodNameRule === null) { + throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); + } + if ($this->afterMatchBuilderId !== null) { + $matcher = $invocation->getObject()->__phpunit_getInvocationHandler()->lookupMatcher($this->afterMatchBuilderId); + if (!$matcher) { + throw new \PHPUnit\Framework\MockObject\MatchBuilderNotFoundException($this->afterMatchBuilderId); + } + assert($matcher instanceof self); + if ($matcher->invocationRule->hasBeenInvoked()) { + $this->afterMatchBuilderIsInvoked = \true; + } + } + $this->invocationRule->invoked($invocation); + try { + if ($this->parametersRule !== null) { + $this->parametersRule->apply($invocation); + } + } catch (ExpectationFailedException $e) { + throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), $e->getMessage()), $e->getComparisonFailure()); + } + if ($this->stub) { + return $this->stub->invoke($invocation); + } + return $invocation->generateReturnValue(); } /** - * A test started. + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws MatchBuilderNotFoundException + * @throws MethodNameNotConfiguredException + * @throws RuntimeException */ - public function startTest(Test $test) : void + public function matches(\PHPUnit\Framework\MockObject\Invocation $invocation): bool { - if ($this->debug) { - $this->write(sprintf("Test '%s' started\n", \PHPUnit\Util\Test::describeAsString($test))); + if ($this->afterMatchBuilderId !== null) { + $matcher = $invocation->getObject()->__phpunit_getInvocationHandler()->lookupMatcher($this->afterMatchBuilderId); + if (!$matcher) { + throw new \PHPUnit\Framework\MockObject\MatchBuilderNotFoundException($this->afterMatchBuilderId); + } + assert($matcher instanceof self); + if (!$matcher->invocationRule->hasBeenInvoked()) { + return \false; + } + } + if ($this->methodNameRule === null) { + throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); + } + if (!$this->invocationRule->matches($invocation)) { + return \false; + } + try { + if (!$this->methodNameRule->matches($invocation)) { + return \false; + } + } catch (ExpectationFailedException $e) { + throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), $e->getMessage()), $e->getComparisonFailure()); } + return \true; } /** - * A test ended. + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * @throws MethodNameNotConfiguredException */ - public function endTest(Test $test, float $time) : void + public function verify(): void { - if ($this->debug) { - $this->write(sprintf("Test '%s' ended\n", \PHPUnit\Util\Test::describeAsString($test))); - } - if (!$this->lastTestFailed) { - $this->writeProgress('.'); - } - if ($test instanceof TestCase) { - $this->numAssertions += $test->getNumAssertions(); - } elseif ($test instanceof PhptTestCase) { - $this->numAssertions++; + if ($this->methodNameRule === null) { + throw new \PHPUnit\Framework\MockObject\MethodNameNotConfiguredException(); } - $this->lastTestFailed = \false; - if ($test instanceof TestCase && !$test->hasExpectationOnOutput()) { - $this->write($test->getActualOutput()); + try { + $this->invocationRule->verify(); + if ($this->parametersRule === null) { + $this->parametersRule = new AnyParameters(); + } + $invocationIsAny = $this->invocationRule instanceof AnyInvokedCount; + $invocationIsNever = $this->invocationRule instanceof InvokedCount && $this->invocationRule->isNever(); + $invocationIsAtMost = $this->invocationRule instanceof InvokedAtMostCount; + if (!$invocationIsAny && !$invocationIsNever && !$invocationIsAtMost) { + $this->parametersRule->verify(); + } + } catch (ExpectationFailedException $e) { + throw new ExpectationFailedException(sprintf("Expectation failed for %s when %s.\n%s", $this->methodNameRule->toString(), $this->invocationRule->toString(), TestFailure::exceptionToString($e))); } } - protected function printDefects(array $defects, string $type) : void + public function toString(): string { - $count = count($defects); - if ($count == 0) { - return; + $list = []; + if ($this->invocationRule !== null) { + $list[] = $this->invocationRule->toString(); } - if ($this->defectListPrinted) { - $this->write("\n--\n\n"); + if ($this->methodNameRule !== null) { + $list[] = 'where ' . $this->methodNameRule->toString(); } - $this->write(sprintf("There %s %d %s%s:\n", $count == 1 ? 'was' : 'were', $count, $type, $count == 1 ? '' : 's')); - $i = 1; - if ($this->reverse) { - $defects = array_reverse($defects); + if ($this->parametersRule !== null) { + $list[] = 'and ' . $this->parametersRule->toString(); } - foreach ($defects as $defect) { - $this->printDefect($defect, $i++); + if ($this->afterMatchBuilderId !== null) { + $list[] = 'after ' . $this->afterMatchBuilderId; } - $this->defectListPrinted = \true; - } - protected function printDefect(TestFailure $defect, int $count) : void - { - $this->printDefectHeader($defect, $count); - $this->printDefectTrace($defect); + if ($this->stub !== null) { + $list[] = 'will ' . $this->stub->toString(); + } + return implode(' ', $list); } - protected function printDefectHeader(TestFailure $defect, int $count) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Stub; + +use function sprintf; +use PHPUnit\Framework\MockObject\Invocation; +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ReturnStub implements \PHPUnit\Framework\MockObject\Stub\Stub +{ + /** + * @var mixed + */ + private $value; + public function __construct($value) { - $this->write(sprintf("\n%d) %s\n", $count, $defect->getTestName())); + $this->value = $value; } - protected function printDefectTrace(TestFailure $defect) : void + public function invoke(Invocation $invocation) { - $e = $defect->thrownException(); - $this->write((string) $e); - while ($e = $e->getPrevious()) { - $this->write("\nCaused by\n" . trim((string) $e) . "\n"); - } + return $this->value; } - protected function printErrors(TestResult $result) : void + public function toString(): string { - $this->printDefects($result->errors(), 'error'); + $exporter = new Exporter(); + return sprintf('return user-specified value %s', $exporter->export($this->value)); } - protected function printFailures(TestResult $result) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Stub; + +use function array_shift; +use function sprintf; +use PHPUnit\Framework\MockObject\Invocation; +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ConsecutiveCalls implements \PHPUnit\Framework\MockObject\Stub\Stub +{ + /** + * @var array + */ + private $stack; + /** + * @var mixed + */ + private $value; + public function __construct(array $stack) { - $this->printDefects($result->failures(), 'failure'); + $this->stack = $stack; } - protected function printWarnings(TestResult $result) : void + public function invoke(Invocation $invocation) { - $this->printDefects($result->warnings(), 'warning'); + $this->value = array_shift($this->stack); + if ($this->value instanceof \PHPUnit\Framework\MockObject\Stub\Stub) { + $this->value = $this->value->invoke($invocation); + } + return $this->value; } - protected function printIncompletes(TestResult $result) : void + public function toString(): string { - $this->printDefects($result->notImplemented(), 'incomplete test'); + $exporter = new Exporter(); + return sprintf('return user-specified value %s', $exporter->export($this->value)); } - protected function printRisky(TestResult $result) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Stub; + +use function sprintf; +use PHPUnit\Framework\MockObject\Invocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ReturnArgument implements \PHPUnit\Framework\MockObject\Stub\Stub +{ + /** + * @var int + */ + private $argumentIndex; + public function __construct($argumentIndex) { - $this->printDefects($result->risky(), 'risky test'); + $this->argumentIndex = $argumentIndex; } - protected function printSkipped(TestResult $result) : void + public function invoke(Invocation $invocation) { - $this->printDefects($result->skipped(), 'skipped test'); + if (isset($invocation->getParameters()[$this->argumentIndex])) { + return $invocation->getParameters()[$this->argumentIndex]; + } } - protected function printHeader(TestResult $result) : void + public function toString(): string { - if (count($result) > 0) { - $this->write(PHP_EOL . PHP_EOL . (new ResourceUsageFormatter())->resourceUsage($this->timer->stop()) . PHP_EOL . PHP_EOL); - } + return sprintf('return argument #%d', $this->argumentIndex); } - protected function printFooter(TestResult $result) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Stub; + +use function sprintf; +use PHPUnit\Framework\MockObject\Invocation; +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ReturnReference implements \PHPUnit\Framework\MockObject\Stub\Stub +{ + /** + * @var mixed + */ + private $reference; + public function __construct(&$reference) { - if (count($result) === 0) { - $this->writeWithColor('fg-black, bg-yellow', 'No tests executed!'); - return; - } - if ($result->wasSuccessfulAndNoTestIsRiskyOrSkippedOrIncomplete()) { - $this->writeWithColor('fg-black, bg-green', sprintf('OK (%d test%s, %d assertion%s)', count($result), count($result) === 1 ? '' : 's', $this->numAssertions, $this->numAssertions === 1 ? '' : 's')); - return; - } - $color = 'fg-black, bg-yellow'; - if ($result->wasSuccessful()) { - if ($this->verbose || !$result->allHarmless()) { - $this->write("\n"); - } - $this->writeWithColor($color, 'OK, but incomplete, skipped, or risky tests!'); - } else { - $this->write("\n"); - if ($result->errorCount()) { - $color = 'fg-white, bg-red'; - $this->writeWithColor($color, 'ERRORS!'); - } elseif ($result->failureCount()) { - $color = 'fg-white, bg-red'; - $this->writeWithColor($color, 'FAILURES!'); - } elseif ($result->warningCount()) { - $color = 'fg-black, bg-yellow'; - $this->writeWithColor($color, 'WARNINGS!'); - } - } - $this->writeCountString(count($result), 'Tests', $color, \true); - $this->writeCountString($this->numAssertions, 'Assertions', $color, \true); - $this->writeCountString($result->errorCount(), 'Errors', $color); - $this->writeCountString($result->failureCount(), 'Failures', $color); - $this->writeCountString($result->warningCount(), 'Warnings', $color); - $this->writeCountString($result->skippedCount(), 'Skipped', $color); - $this->writeCountString($result->notImplementedCount(), 'Incomplete', $color); - $this->writeCountString($result->riskyCount(), 'Risky', $color); - $this->writeWithColor($color, '.'); + $this->reference =& $reference; } - protected function writeProgress(string $progress) : void + public function invoke(Invocation $invocation) { - if ($this->debug) { - return; - } - $this->write($progress); - $this->column++; - $this->numTestsRun++; - if ($this->column == $this->maxColumn || $this->numTestsRun == $this->numTests) { - if ($this->numTestsRun == $this->numTests) { - $this->write(str_repeat(' ', $this->maxColumn - $this->column)); - } - $this->write(sprintf(' %' . $this->numTestsWidth . 'd / %' . $this->numTestsWidth . 'd (%3s%%)', $this->numTestsRun, $this->numTests, floor($this->numTestsRun / $this->numTests * 100))); - if ($this->column == $this->maxColumn) { - $this->writeNewLine(); - } - } + return $this->reference; } - protected function writeNewLine() : void + public function toString(): string { - $this->column = 0; - $this->write("\n"); + $exporter = new Exporter(); + return sprintf('return user-specified reference %s', $exporter->export($this->reference)); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Stub; + +use function array_pop; +use function count; +use function is_array; +use PHPUnit\Framework\MockObject\Invocation; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ReturnValueMap implements \PHPUnit\Framework\MockObject\Stub\Stub +{ /** - * Formats a buffer with a specified ANSI color sequence if colors are - * enabled. + * @var array */ - protected function colorizeTextBox(string $color, string $buffer) : string + private $valueMap; + public function __construct(array $valueMap) { - if (!$this->colors) { - return $buffer; - } - $lines = preg_split('/\\r\\n|\\r|\\n/', $buffer); - $padding = max(array_map('\\strlen', $lines)); - $styledLines = []; - foreach ($lines as $line) { - $styledLines[] = Color::colorize($color, str_pad($line, $padding)); - } - return implode(PHP_EOL, $styledLines); + $this->valueMap = $valueMap; } - /** - * Writes a buffer out with a color sequence if colors are enabled. - */ - protected function writeWithColor(string $color, string $buffer, bool $lf = \true) : void + public function invoke(Invocation $invocation) { - $this->write($this->colorizeTextBox($color, $buffer)); - if ($lf) { - $this->write(PHP_EOL); + $parameterCount = count($invocation->getParameters()); + foreach ($this->valueMap as $map) { + if (!is_array($map) || $parameterCount !== count($map) - 1) { + continue; + } + $return = array_pop($map); + if ($invocation->getParameters() === $map) { + return $return; + } } } - /** - * Writes progress with a color sequence if colors are enabled. - */ - protected function writeProgressWithColor(string $color, string $buffer) : void - { - $buffer = $this->colorizeTextBox($color, $buffer); - $this->writeProgress($buffer); - } - private function writeCountString(int $count, string $name, string $color, bool $always = \false) : void + public function toString(): string { - static $first = \true; - if ($always || $count > 0) { - $this->writeWithColor($color, sprintf('%s%s: %d', !$first ? ', ' : '', $name, $count), \false); - $first = \false; - } + return 'return value from a map'; } } callback = $callback; + } + public function invoke(Invocation $invocation) + { + return call_user_func_array($this->callback, $invocation->getParameters()); + } + public function toString(): string + { + if (is_array($this->callback)) { + if (is_object($this->callback[0])) { + $class = get_class($this->callback[0]); + $type = '->'; + } else { + $class = $this->callback[0]; + $type = '::'; + } + return sprintf('return result of user defined callback %s%s%s() with the ' . 'passed arguments', $class, $type, $this->callback[1]); + } + return 'return result of user defined callback ' . $this->callback . ' with the passed arguments'; + } } getObject(); + } + public function toString(): string + { + return 'return the current object'; + } } exception = $exception; + } + /** + * @throws Throwable + */ + public function invoke(Invocation $invocation): void + { + throw $this->exception; + } + public function toString(): string + { + $exporter = new Exporter(); + return sprintf('raise user-specified exception %s', $exporter->export($this->exception)); } } expects(new AnyInvokedCount()); + return call_user_func_array([$expects, 'method'], func_get_args()); } } [['text' => 'phpunit [options] UnitTest.php'], ['text' => 'phpunit [options] ']], 'Code Coverage Options' => [['arg' => '--coverage-clover ', 'desc' => 'Generate code coverage report in Clover XML format'], ['arg' => '--coverage-cobertura ', 'desc' => 'Generate code coverage report in Cobertura XML format'], ['arg' => '--coverage-crap4j ', 'desc' => 'Generate code coverage report in Crap4J XML format'], ['arg' => '--coverage-html ', 'desc' => 'Generate code coverage report in HTML format'], ['arg' => '--coverage-php ', 'desc' => 'Export PHP_CodeCoverage object to file'], ['arg' => '--coverage-text=', 'desc' => 'Generate code coverage report in text format [default: standard output]'], ['arg' => '--coverage-xml ', 'desc' => 'Generate code coverage report in PHPUnit XML format'], ['arg' => '--coverage-cache ', 'desc' => 'Cache static analysis results'], ['arg' => '--warm-coverage-cache', 'desc' => 'Warm static analysis cache'], ['arg' => '--coverage-filter ', 'desc' => 'Include in code coverage analysis'], ['arg' => '--path-coverage', 'desc' => 'Perform path coverage analysis'], ['arg' => '--disable-coverage-ignore', 'desc' => 'Disable annotations for ignoring code coverage'], ['arg' => '--no-coverage', 'desc' => 'Ignore code coverage configuration']], 'Logging Options' => [['arg' => '--log-junit ', 'desc' => 'Log test execution in JUnit XML format to file'], ['arg' => '--log-teamcity ', 'desc' => 'Log test execution in TeamCity format to file'], ['arg' => '--testdox-html ', 'desc' => 'Write agile documentation in HTML format to file'], ['arg' => '--testdox-text ', 'desc' => 'Write agile documentation in Text format to file'], ['arg' => '--testdox-xml ', 'desc' => 'Write agile documentation in XML format to file'], ['arg' => '--reverse-list', 'desc' => 'Print defects in reverse order'], ['arg' => '--no-logging', 'desc' => 'Ignore logging configuration']], 'Test Selection Options' => [['arg' => '--list-suites', 'desc' => 'List available test suites'], ['arg' => '--testsuite ', 'desc' => 'Filter which testsuite to run'], ['arg' => '--list-groups', 'desc' => 'List available test groups'], ['arg' => '--group ', 'desc' => 'Only runs tests from the specified group(s)'], ['arg' => '--exclude-group ', 'desc' => 'Exclude tests from the specified group(s)'], ['arg' => '--covers ', 'desc' => 'Only runs tests annotated with "@covers "'], ['arg' => '--uses ', 'desc' => 'Only runs tests annotated with "@uses "'], ['arg' => '--list-tests', 'desc' => 'List available tests'], ['arg' => '--list-tests-xml ', 'desc' => 'List available tests in XML format'], ['arg' => '--filter ', 'desc' => 'Filter which tests to run'], ['arg' => '--test-suffix ', 'desc' => 'Only search for test in files with specified suffix(es). Default: Test.php,.phpt']], 'Test Execution Options' => [['arg' => '--dont-report-useless-tests', 'desc' => 'Do not report tests that do not test anything'], ['arg' => '--strict-coverage', 'desc' => 'Be strict about @covers annotation usage'], ['arg' => '--strict-global-state', 'desc' => 'Be strict about changes to global state'], ['arg' => '--disallow-test-output', 'desc' => 'Be strict about output during tests'], ['arg' => '--disallow-resource-usage', 'desc' => 'Be strict about resource usage during small tests'], ['arg' => '--enforce-time-limit', 'desc' => 'Enforce time limit based on test size'], ['arg' => '--default-time-limit ', 'desc' => 'Timeout in seconds for tests without @small, @medium or @large'], ['arg' => '--disallow-todo-tests', 'desc' => 'Disallow @todo-annotated tests'], ['spacer' => ''], ['arg' => '--process-isolation', 'desc' => 'Run each test in a separate PHP process'], ['arg' => '--globals-backup', 'desc' => 'Backup and restore $GLOBALS for each test'], ['arg' => '--static-backup', 'desc' => 'Backup and restore static attributes for each test'], ['spacer' => ''], ['arg' => '--colors ', 'desc' => 'Use colors in output ("never", "auto" or "always")'], ['arg' => '--columns ', 'desc' => 'Number of columns to use for progress output'], ['arg' => '--columns max', 'desc' => 'Use maximum number of columns for progress output'], ['arg' => '--stderr', 'desc' => 'Write to STDERR instead of STDOUT'], ['arg' => '--stop-on-defect', 'desc' => 'Stop execution upon first not-passed test'], ['arg' => '--stop-on-error', 'desc' => 'Stop execution upon first error'], ['arg' => '--stop-on-failure', 'desc' => 'Stop execution upon first error or failure'], ['arg' => '--stop-on-warning', 'desc' => 'Stop execution upon first warning'], ['arg' => '--stop-on-risky', 'desc' => 'Stop execution upon first risky test'], ['arg' => '--stop-on-skipped', 'desc' => 'Stop execution upon first skipped test'], ['arg' => '--stop-on-incomplete', 'desc' => 'Stop execution upon first incomplete test'], ['arg' => '--fail-on-incomplete', 'desc' => 'Treat incomplete tests as failures'], ['arg' => '--fail-on-risky', 'desc' => 'Treat risky tests as failures'], ['arg' => '--fail-on-skipped', 'desc' => 'Treat skipped tests as failures'], ['arg' => '--fail-on-warning', 'desc' => 'Treat tests with warnings as failures'], ['arg' => '-v|--verbose', 'desc' => 'Output more verbose information'], ['arg' => '--debug', 'desc' => 'Display debugging information'], ['spacer' => ''], ['arg' => '--repeat ', 'desc' => 'Runs the test(s) repeatedly'], ['arg' => '--teamcity', 'desc' => 'Report test execution progress in TeamCity format'], ['arg' => '--testdox', 'desc' => 'Report test execution progress in TestDox format'], ['arg' => '--testdox-group', 'desc' => 'Only include tests from the specified group(s)'], ['arg' => '--testdox-exclude-group', 'desc' => 'Exclude tests from the specified group(s)'], ['arg' => '--no-interaction', 'desc' => 'Disable TestDox progress animation'], ['arg' => '--printer ', 'desc' => 'TestListener implementation to use'], ['spacer' => ''], ['arg' => '--order-by ', 'desc' => 'Run tests in order: default|defects|duration|no-depends|random|reverse|size'], ['arg' => '--random-order-seed ', 'desc' => 'Use a specific random seed for random order'], ['arg' => '--cache-result', 'desc' => 'Write test results to cache file'], ['arg' => '--do-not-cache-result', 'desc' => 'Do not write test results to cache file']], 'Configuration Options' => [['arg' => '--prepend ', 'desc' => 'A PHP script that is included as early as possible'], ['arg' => '--bootstrap ', 'desc' => 'A PHP script that is included before the tests run'], ['arg' => '-c|--configuration ', 'desc' => 'Read configuration from XML file'], ['arg' => '--no-configuration', 'desc' => 'Ignore default configuration file (phpunit.xml)'], ['arg' => '--extensions ', 'desc' => 'A comma separated list of PHPUnit extensions to load'], ['arg' => '--no-extensions', 'desc' => 'Do not load PHPUnit extensions'], ['arg' => '--include-path ', 'desc' => 'Prepend PHP\'s include_path with given path(s)'], ['arg' => '-d ', 'desc' => 'Sets a php.ini value'], ['arg' => '--cache-result-file ', 'desc' => 'Specify result cache path and filename'], ['arg' => '--generate-configuration', 'desc' => 'Generate configuration file with suggested settings'], ['arg' => '--migrate-configuration', 'desc' => 'Migrate configuration file to current format']], 'Miscellaneous Options' => [['arg' => '-h|--help', 'desc' => 'Prints this usage information'], ['arg' => '--version', 'desc' => 'Prints the version and exits'], ['arg' => '--atleast-version ', 'desc' => 'Checks that version is greater than min and exits'], ['arg' => '--check-version', 'desc' => 'Check whether PHPUnit is the latest version']]]; /** - * @var int Number of columns required to write the longest option name to the console + * @var ConfigurableMethod[] */ - private $maxArgLength = 0; + private static $__phpunit_configurableMethods; /** - * @var int Number of columns left for the description field after padding and option + * @var object */ - private $maxDescLength; + private $__phpunit_originalObject; /** - * @var bool Use color highlights for sections, options and parameters + * @var bool */ - private $hasColor = \false; - public function __construct(?int $width = null, ?bool $withColor = null) - { - if ($width === null) { - $width = (new Console())->getNumberOfColumns(); - } - if ($withColor === null) { - $this->hasColor = (new Console())->hasColorSupport(); - } else { - $this->hasColor = $withColor; - } - foreach (self::HELP_TEXT as $options) { - foreach ($options as $option) { - if (isset($option['arg'])) { - $this->maxArgLength = max($this->maxArgLength, isset($option['arg']) ? strlen($option['arg']) : 0); - } - } - } - $this->maxDescLength = $width - $this->maxArgLength - 4; - } + private $__phpunit_returnValueGeneration = \true; /** - * Write the help file to the CLI, adapting width and colors to the console. + * @var InvocationHandler */ - public function writeToConsole() : void + private $__phpunit_invocationMocker; + /** @noinspection MagicMethodsValidityInspection */ + public static function __phpunit_initConfigurableMethods(\PHPUnit\Framework\MockObject\ConfigurableMethod ...$configurableMethods): void { - if ($this->hasColor) { - $this->writeWithColor(); - } else { - $this->writePlaintext(); + if (isset(static::$__phpunit_configurableMethods)) { + throw new \PHPUnit\Framework\MockObject\ConfigurableMethodsAlreadyInitializedException('Configurable methods is already initialized and can not be reinitialized'); } + static::$__phpunit_configurableMethods = $configurableMethods; } - private function writePlaintext() : void + /** @noinspection MagicMethodsValidityInspection */ + public function __phpunit_setOriginalObject($originalObject): void { - foreach (self::HELP_TEXT as $section => $options) { - print "{$section}:" . PHP_EOL; - if ($section !== 'Usage') { - print PHP_EOL; - } - foreach ($options as $option) { - if (isset($option['spacer'])) { - print PHP_EOL; - } - if (isset($option['text'])) { - print self::LEFT_MARGIN . $option['text'] . PHP_EOL; - } - if (isset($option['arg'])) { - $arg = str_pad($option['arg'], $this->maxArgLength); - print self::LEFT_MARGIN . $arg . ' ' . $option['desc'] . PHP_EOL; - } - } - print PHP_EOL; + $this->__phpunit_originalObject = $originalObject; + } + /** @noinspection MagicMethodsValidityInspection */ + public function __phpunit_setReturnValueGeneration(bool $returnValueGeneration): void + { + $this->__phpunit_returnValueGeneration = $returnValueGeneration; + } + /** @noinspection MagicMethodsValidityInspection */ + public function __phpunit_getInvocationHandler(): \PHPUnit\Framework\MockObject\InvocationHandler + { + if ($this->__phpunit_invocationMocker === null) { + $this->__phpunit_invocationMocker = new \PHPUnit\Framework\MockObject\InvocationHandler(static::$__phpunit_configurableMethods, $this->__phpunit_returnValueGeneration); } + return $this->__phpunit_invocationMocker; } - private function writeWithColor() : void + /** @noinspection MagicMethodsValidityInspection */ + public function __phpunit_hasMatchers(): bool { - foreach (self::HELP_TEXT as $section => $options) { - print Color::colorize('fg-yellow', "{$section}:") . PHP_EOL; - foreach ($options as $option) { - if (isset($option['spacer'])) { - print PHP_EOL; - } - if (isset($option['text'])) { - print self::LEFT_MARGIN . $option['text'] . PHP_EOL; - } - if (isset($option['arg'])) { - $arg = Color::colorize('fg-green', str_pad($option['arg'], $this->maxArgLength)); - $arg = preg_replace_callback('/(<[^>]+>)/', static function ($matches) { - return Color::colorize('fg-cyan', $matches[0]); - }, $arg); - $desc = explode(PHP_EOL, wordwrap($option['desc'], $this->maxDescLength, PHP_EOL)); - print self::LEFT_MARGIN . $arg . ' ' . $desc[0] . PHP_EOL; - for ($i = 1; $i < count($desc); $i++) { - print str_repeat(' ', $this->maxArgLength + 3) . $desc[$i] . PHP_EOL; - } - } - } - print PHP_EOL; + return $this->__phpunit_getInvocationHandler()->hasMatchers(); + } + /** @noinspection MagicMethodsValidityInspection */ + public function __phpunit_verify(bool $unsetInvocationMocker = \true): void + { + $this->__phpunit_getInvocationHandler()->verify(); + if ($unsetInvocationMocker) { + $this->__phpunit_invocationMocker = null; } } + public function expects(InvocationOrder $matcher): InvocationMockerBuilder + { + return $this->__phpunit_getInvocationHandler()->expects($matcher); + } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use const DIRECTORY_SEPARATOR; +use function explode; +use function implode; +use function is_object; +use function is_string; +use function preg_match; +use function preg_replace; +use function sprintf; +use function strlen; +use function strpos; +use function substr; +use function substr_count; +use function trim; +use function var_export; +use ReflectionMethod; +use ReflectionParameter; +use PHPUnitPHAR\SebastianBergmann\Template\Exception as TemplateException; +use PHPUnitPHAR\SebastianBergmann\Template\Template; +use PHPUnitPHAR\SebastianBergmann\Type\ReflectionMapper; +use PHPUnitPHAR\SebastianBergmann\Type\Type; +use PHPUnitPHAR\SebastianBergmann\Type\UnknownType; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MockMethod { - public function printResult(TestResult $result) : void; - public function write(string $buffer) : void; + /** + * @var Template[] + */ + private static $templates = []; + /** + * @var string + */ + private $className; + /** + * @var string + */ + private $methodName; + /** + * @var bool + */ + private $cloneArguments; + /** + * @var string string + */ + private $modifier; + /** + * @var string + */ + private $argumentsForDeclaration; + /** + * @var string + */ + private $argumentsForCall; + /** + * @var Type + */ + private $returnType; + /** + * @var string + */ + private $reference; + /** + * @var bool + */ + private $callOriginalMethod; + /** + * @var bool + */ + private $static; + /** + * @var ?string + */ + private $deprecation; + /** + * @throws ReflectionException + * @throws RuntimeException + */ + public static function fromReflection(ReflectionMethod $method, bool $callOriginalMethod, bool $cloneArguments): self + { + if ($method->isPrivate()) { + $modifier = 'private'; + } elseif ($method->isProtected()) { + $modifier = 'protected'; + } else { + $modifier = 'public'; + } + if ($method->isStatic()) { + $modifier .= ' static'; + } + if ($method->returnsReference()) { + $reference = '&'; + } else { + $reference = ''; + } + $docComment = $method->getDocComment(); + if (is_string($docComment) && preg_match('#\*[ \t]*+@deprecated[ \t]*+(.*?)\r?+\n[ \t]*+\*(?:[ \t]*+@|/$)#s', $docComment, $deprecation)) { + $deprecation = trim(preg_replace('#[ \t]*\r?\n[ \t]*+\*[ \t]*+#', ' ', $deprecation[1])); + } else { + $deprecation = null; + } + return new self($method->getDeclaringClass()->getName(), $method->getName(), $cloneArguments, $modifier, self::getMethodParametersForDeclaration($method), self::getMethodParametersForCall($method), (new ReflectionMapper())->fromReturnType($method), $reference, $callOriginalMethod, $method->isStatic(), $deprecation); + } + public static function fromName(string $fullClassName, string $methodName, bool $cloneArguments): self + { + return new self($fullClassName, $methodName, $cloneArguments, 'public', '', '', new UnknownType(), '', \false, \false, null); + } + public function __construct(string $className, string $methodName, bool $cloneArguments, string $modifier, string $argumentsForDeclaration, string $argumentsForCall, Type $returnType, string $reference, bool $callOriginalMethod, bool $static, ?string $deprecation) + { + $this->className = $className; + $this->methodName = $methodName; + $this->cloneArguments = $cloneArguments; + $this->modifier = $modifier; + $this->argumentsForDeclaration = $argumentsForDeclaration; + $this->argumentsForCall = $argumentsForCall; + $this->returnType = $returnType; + $this->reference = $reference; + $this->callOriginalMethod = $callOriginalMethod; + $this->static = $static; + $this->deprecation = $deprecation; + } + public function getName(): string + { + return $this->methodName; + } + /** + * @throws RuntimeException + */ + public function generateCode(): string + { + if ($this->static) { + $templateFile = 'mocked_static_method.tpl'; + } elseif ($this->returnType->isNever() || $this->returnType->isVoid()) { + $templateFile = sprintf('%s_method_never_or_void.tpl', $this->callOriginalMethod ? 'proxied' : 'mocked'); + } else { + $templateFile = sprintf('%s_method.tpl', $this->callOriginalMethod ? 'proxied' : 'mocked'); + } + $deprecation = $this->deprecation; + if (null !== $this->deprecation) { + $deprecation = "The {$this->className}::{$this->methodName} method is deprecated ({$this->deprecation})."; + $deprecationTemplate = $this->getTemplate('deprecation.tpl'); + $deprecationTemplate->setVar(['deprecation' => var_export($deprecation, \true)]); + $deprecation = $deprecationTemplate->render(); + } + $template = $this->getTemplate($templateFile); + $template->setVar(['arguments_decl' => $this->argumentsForDeclaration, 'arguments_call' => $this->argumentsForCall, 'return_declaration' => !empty($this->returnType->asString()) ? ': ' . $this->returnType->asString() : '', 'return_type' => $this->returnType->asString(), 'arguments_count' => !empty($this->argumentsForCall) ? substr_count($this->argumentsForCall, ',') + 1 : 0, 'class_name' => $this->className, 'method_name' => $this->methodName, 'modifier' => $this->modifier, 'reference' => $this->reference, 'clone_arguments' => $this->cloneArguments ? 'true' : 'false', 'deprecation' => $deprecation]); + return $template->render(); + } + public function getReturnType(): Type + { + return $this->returnType; + } + /** + * @throws RuntimeException + */ + private function getTemplate(string $template): Template + { + $filename = __DIR__ . DIRECTORY_SEPARATOR . 'Generator' . DIRECTORY_SEPARATOR . $template; + if (!isset(self::$templates[$filename])) { + try { + self::$templates[$filename] = new Template($filename); + } catch (TemplateException $e) { + throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), $e->getCode(), $e); + } + } + return self::$templates[$filename]; + } + /** + * Returns the parameters of a function or method. + * + * @throws RuntimeException + */ + private static function getMethodParametersForDeclaration(ReflectionMethod $method): string + { + $parameters = []; + $types = (new ReflectionMapper())->fromParameterTypes($method); + foreach ($method->getParameters() as $i => $parameter) { + $name = '$' . $parameter->getName(); + /* Note: PHP extensions may use empty names for reference arguments + * or "..." for methods taking a variable number of arguments. + */ + if ($name === '$' || $name === '$...') { + $name = '$arg' . $i; + } + $default = ''; + $reference = ''; + $typeDeclaration = ''; + if (!$types[$i]->type()->isUnknown()) { + $typeDeclaration = $types[$i]->type()->asString() . ' '; + } + if ($parameter->isPassedByReference()) { + $reference = '&'; + } + if ($parameter->isVariadic()) { + $name = '...' . $name; + } elseif ($parameter->isDefaultValueAvailable()) { + $default = ' = ' . self::exportDefaultValue($parameter); + } elseif ($parameter->isOptional()) { + $default = ' = null'; + } + $parameters[] = $typeDeclaration . $reference . $name . $default; + } + return implode(', ', $parameters); + } + /** + * Returns the parameters of a function or method. + * + * @throws ReflectionException + */ + private static function getMethodParametersForCall(ReflectionMethod $method): string + { + $parameters = []; + foreach ($method->getParameters() as $i => $parameter) { + $name = '$' . $parameter->getName(); + /* Note: PHP extensions may use empty names for reference arguments + * or "..." for methods taking a variable number of arguments. + */ + if ($name === '$' || $name === '$...') { + $name = '$arg' . $i; + } + if ($parameter->isVariadic()) { + continue; + } + if ($parameter->isPassedByReference()) { + $parameters[] = '&' . $name; + } else { + $parameters[] = $name; + } + } + return implode(', ', $parameters); + } + /** + * @throws ReflectionException + */ + private static function exportDefaultValue(ReflectionParameter $parameter): string + { + try { + $defaultValue = $parameter->getDefaultValue(); + if (!is_object($defaultValue)) { + return (string) var_export($defaultValue, \true); + } + $parameterAsString = $parameter->__toString(); + return (string) explode(' = ', substr(substr($parameterAsString, strpos($parameterAsString, ' ') + strlen(' ')), 0, -2))[1]; + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + } } __phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); + } +} +EOT; + private const MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT' +namespace PHPUnit\Framework\MockObject; + +trait MockedCloneMethodWithoutReturnType +{ + public function __clone() + { + $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); + } +} +EOT; + private const UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT = <<<'EOT' +namespace PHPUnit\Framework\MockObject; + +trait UnmockedCloneMethodWithVoidReturnType +{ + public function __clone(): void + { + $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); + + parent::__clone(); + } +} +EOT; + private const UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT' +namespace PHPUnit\Framework\MockObject; + +trait UnmockedCloneMethodWithoutReturnType +{ + public function __clone() + { + $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler(); + + parent::__clone(); + } +} +EOT; /** - * @var bool + * @var array */ - private $messagePrinted = \false; + private const EXCLUDED_METHOD_NAMES = ['__CLASS__' => \true, '__DIR__' => \true, '__FILE__' => \true, '__FUNCTION__' => \true, '__LINE__' => \true, '__METHOD__' => \true, '__NAMESPACE__' => \true, '__TRAIT__' => \true, '__clone' => \true, '__halt_compiler' => \true]; /** - * @var Hook[] + * @var array */ - private $extensions = []; + private static $cache = []; /** - * @var Timer + * @var Template[] */ - private $timer; - public function __construct(TestSuiteLoader $loader = null, CodeCoverageFilter $filter = null) - { - if ($filter === null) { - $filter = new CodeCoverageFilter(); - } - $this->codeCoverageFilter = $filter; - $this->loader = $loader; - $this->timer = new Timer(); - } + private static $templates = []; /** - * @throws \PHPUnit\Runner\Exception - * @throws \PHPUnit\TextUI\XmlConfiguration\Exception - * @throws Exception + * Returns a mock object for the specified class. + * + * @param null|array $methods + * + * @throws ClassAlreadyExistsException + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws DuplicateMethodException + * @throws InvalidArgumentException + * @throws InvalidMethodNameException + * @throws OriginalConstructorInvocationRequiredException + * @throws ReflectionException + * @throws RuntimeException + * @throws UnknownTypeException */ - public function run(TestSuite $suite, array $arguments = [], array $warnings = [], bool $exit = \true) : TestResult + public function getMock(string $type, $methods = [], array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \true, bool $callOriginalMethods = \false, ?object $proxyTarget = null, bool $allowMockingUnknownTypes = \true, bool $returnValueGeneration = \true): \PHPUnit\Framework\MockObject\MockObject { - if (isset($arguments['configuration'])) { - $GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] = $arguments['configuration']; - } - $this->handleConfiguration($arguments); - $warnings = array_merge($warnings, $arguments['warnings']); - if (is_int($arguments['columns']) && $arguments['columns'] < 16) { - $arguments['columns'] = 16; - $tooFewColumnsRequested = \true; - } - if (isset($arguments['bootstrap'])) { - $GLOBALS['__PHPUNIT_BOOTSTRAP'] = $arguments['bootstrap']; - } - if ($arguments['backupGlobals'] === \true) { - $suite->setBackupGlobals(\true); - } - if ($arguments['backupStaticAttributes'] === \true) { - $suite->setBackupStaticAttributes(\true); + if (!is_array($methods) && null !== $methods) { + throw InvalidArgumentException::create(2, 'array'); } - if ($arguments['beStrictAboutChangesToGlobalState'] === \true) { - $suite->setBeStrictAboutChangesToGlobalState(\true); + if ($type === 'Traversable' || $type === '\Traversable') { + $type = 'Iterator'; } - if ($arguments['executionOrder'] === TestSuiteSorter::ORDER_RANDOMIZED) { - mt_srand($arguments['randomOrderSeed']); + if (!$allowMockingUnknownTypes && !class_exists($type, $callAutoload) && !interface_exists($type, $callAutoload)) { + throw new \PHPUnit\Framework\MockObject\UnknownTypeException($type); } - if ($arguments['cacheResult']) { - if (!isset($arguments['cacheResultFile'])) { - if (isset($arguments['configurationObject'])) { - assert($arguments['configurationObject'] instanceof Configuration); - $cacheLocation = $arguments['configurationObject']->filename(); - } else { - $cacheLocation = $_SERVER['PHP_SELF']; - } - $arguments['cacheResultFile'] = null; - $cacheResultFile = realpath($cacheLocation); - if ($cacheResultFile !== \false) { - $arguments['cacheResultFile'] = dirname($cacheResultFile); + if (null !== $methods) { + foreach ($methods as $method) { + if (!preg_match('~[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*~', (string) $method)) { + throw new \PHPUnit\Framework\MockObject\InvalidMethodNameException((string) $method); } } - $cache = new DefaultTestResultCache($arguments['cacheResultFile']); - $this->addExtension(new ResultCacheExtension($cache)); - } - if ($arguments['executionOrder'] !== TestSuiteSorter::ORDER_DEFAULT || $arguments['executionOrderDefects'] !== TestSuiteSorter::ORDER_DEFAULT || $arguments['resolveDependencies']) { - $cache = $cache ?? new NullTestResultCache(); - $cache->load(); - $sorter = new TestSuiteSorter($cache); - $sorter->reorderTestsInSuite($suite, $arguments['executionOrder'], $arguments['resolveDependencies'], $arguments['executionOrderDefects']); - $originalExecutionOrder = $sorter->getOriginalExecutionOrder(); - unset($sorter); - } - if (is_int($arguments['repeat']) && $arguments['repeat'] > 0) { - $_suite = new TestSuite(); - /* @noinspection PhpUnusedLocalVariableInspection */ - foreach (range(1, $arguments['repeat']) as $step) { - $_suite->addTest($suite); + if ($methods !== array_unique($methods)) { + throw new \PHPUnit\Framework\MockObject\DuplicateMethodException($methods); } - $suite = $_suite; - unset($_suite); } - $result = $this->createTestResult(); - $listener = new TestListenerAdapter(); - $listenerNeeded = \false; - foreach ($this->extensions as $extension) { - if ($extension instanceof TestHook) { - $listener->add($extension); - $listenerNeeded = \true; + if ($mockClassName !== '' && class_exists($mockClassName, \false)) { + try { + $reflector = new ReflectionClass($mockClassName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if (!$reflector->implementsInterface(\PHPUnit\Framework\MockObject\MockObject::class)) { + throw new \PHPUnit\Framework\MockObject\ClassAlreadyExistsException($mockClassName); } } - if ($listenerNeeded) { - $result->addListener($listener); + if (!$callOriginalConstructor && $callOriginalMethods) { + throw new \PHPUnit\Framework\MockObject\OriginalConstructorInvocationRequiredException(); } - unset($listener, $listenerNeeded); - if ($arguments['convertDeprecationsToExceptions']) { - $result->convertDeprecationsToExceptions(\true); + $mock = $this->generate($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); + return $this->getObject($mock, $type, $callOriginalConstructor, $callAutoload, $arguments, $callOriginalMethods, $proxyTarget, $returnValueGeneration); + } + /** + * @psalm-param list $interfaces + * + * @throws RuntimeException + * @throws UnknownTypeException + */ + public function getMockForInterfaces(array $interfaces, bool $callAutoload = \true): \PHPUnit\Framework\MockObject\MockObject + { + if (count($interfaces) < 2) { + throw new \PHPUnit\Framework\MockObject\RuntimeException('At least two interfaces must be specified'); } - if (!$arguments['convertErrorsToExceptions']) { - $result->convertErrorsToExceptions(\false); + foreach ($interfaces as $interface) { + if (!interface_exists($interface, $callAutoload)) { + throw new \PHPUnit\Framework\MockObject\UnknownTypeException($interface); + } } - if (!$arguments['convertNoticesToExceptions']) { - $result->convertNoticesToExceptions(\false); + sort($interfaces); + $methods = []; + foreach ($interfaces as $interface) { + $methods = array_merge($methods, $this->getClassMethods($interface)); } - if (!$arguments['convertWarningsToExceptions']) { - $result->convertWarningsToExceptions(\false); + if (count(array_unique($methods)) < count($methods)) { + throw new \PHPUnit\Framework\MockObject\RuntimeException('Interfaces must not declare the same method'); } - if ($arguments['stopOnError']) { - $result->stopOnError(\true); + $unqualifiedNames = []; + foreach ($interfaces as $interface) { + $parts = explode('\\', $interface); + $unqualifiedNames[] = array_pop($parts); } - if ($arguments['stopOnFailure']) { - $result->stopOnFailure(\true); + sort($unqualifiedNames); + do { + $intersectionName = sprintf('Intersection_%s_%s', implode('_', $unqualifiedNames), substr(md5((string) mt_rand()), 0, 8)); + } while (interface_exists($intersectionName, \false)); + $template = $this->getTemplate('intersection.tpl'); + $template->setVar(['intersection' => $intersectionName, 'interfaces' => implode(', ', $interfaces)]); + eval($template->render()); + return $this->getMock($intersectionName); + } + /** + * Returns a mock object for the specified abstract class with all abstract + * methods of the class mocked. + * + * Concrete methods to mock can be specified with the $mockedMethods parameter. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + * + * @throws ClassAlreadyExistsException + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws DuplicateMethodException + * @throws InvalidArgumentException + * @throws InvalidMethodNameException + * @throws OriginalConstructorInvocationRequiredException + * @throws ReflectionException + * @throws RuntimeException + * @throws UnknownClassException + * @throws UnknownTypeException + */ + public function getMockForAbstractClass(string $originalClassName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, ?array $mockedMethods = null, bool $cloneArguments = \true): \PHPUnit\Framework\MockObject\MockObject + { + if (class_exists($originalClassName, $callAutoload) || interface_exists($originalClassName, $callAutoload)) { + try { + $reflector = new ReflectionClass($originalClassName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + $methods = $mockedMethods; + foreach ($reflector->getMethods() as $method) { + if ($method->isAbstract() && !in_array($method->getName(), $methods ?? [], \true)) { + $methods[] = $method->getName(); + } + } + if (empty($methods)) { + $methods = null; + } + return $this->getMock($originalClassName, $methods, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $cloneArguments); } - if ($arguments['stopOnWarning']) { - $result->stopOnWarning(\true); + throw new \PHPUnit\Framework\MockObject\UnknownClassException($originalClassName); + } + /** + * Returns a mock object for the specified trait with all abstract methods + * of the trait mocked. Concrete methods to mock can be specified with the + * `$mockedMethods` parameter. + * + * @psalm-param trait-string $traitName + * + * @throws ClassAlreadyExistsException + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws DuplicateMethodException + * @throws InvalidArgumentException + * @throws InvalidMethodNameException + * @throws OriginalConstructorInvocationRequiredException + * @throws ReflectionException + * @throws RuntimeException + * @throws UnknownClassException + * @throws UnknownTraitException + * @throws UnknownTypeException + */ + public function getMockForTrait(string $traitName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, ?array $mockedMethods = null, bool $cloneArguments = \true): \PHPUnit\Framework\MockObject\MockObject + { + if (!trait_exists($traitName, $callAutoload)) { + throw new \PHPUnit\Framework\MockObject\UnknownTraitException($traitName); } - if ($arguments['stopOnIncomplete']) { - $result->stopOnIncomplete(\true); + $className = $this->generateClassName($traitName, '', 'Trait_'); + $classTemplate = $this->getTemplate('trait_class.tpl'); + $classTemplate->setVar(['prologue' => 'abstract ', 'class_name' => $className['className'], 'trait_name' => $traitName]); + $mockTrait = new \PHPUnit\Framework\MockObject\MockTrait($classTemplate->render(), $className['className']); + $mockTrait->generate(); + return $this->getMockForAbstractClass($className['className'], $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); + } + /** + * Returns an object for the specified trait. + * + * @psalm-param trait-string $traitName + * + * @throws ReflectionException + * @throws RuntimeException + * @throws UnknownTraitException + */ + public function getObjectForTrait(string $traitName, string $traitClassName = '', bool $callAutoload = \true, bool $callOriginalConstructor = \false, array $arguments = []): object + { + if (!trait_exists($traitName, $callAutoload)) { + throw new \PHPUnit\Framework\MockObject\UnknownTraitException($traitName); } - if ($arguments['stopOnRisky']) { - $result->stopOnRisky(\true); + $className = $this->generateClassName($traitName, $traitClassName, 'Trait_'); + $classTemplate = $this->getTemplate('trait_class.tpl'); + $classTemplate->setVar(['prologue' => '', 'class_name' => $className['className'], 'trait_name' => $traitName]); + return $this->getObject(new \PHPUnit\Framework\MockObject\MockTrait($classTemplate->render(), $className['className']), '', $callOriginalConstructor, $callAutoload, $arguments); + } + /** + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws ReflectionException + * @throws RuntimeException + */ + public function generate(string $type, ?array $methods = null, string $mockClassName = '', bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \true, bool $callOriginalMethods = \false): \PHPUnit\Framework\MockObject\MockClass + { + if ($mockClassName !== '') { + return $this->generateMock($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); } - if ($arguments['stopOnSkipped']) { - $result->stopOnSkipped(\true); + $key = md5($type . serialize($methods) . serialize($callOriginalClone) . serialize($cloneArguments) . serialize($callOriginalMethods)); + if (!isset(self::$cache[$key])) { + self::$cache[$key] = $this->generateMock($type, $methods, $mockClassName, $callOriginalClone, $callAutoload, $cloneArguments, $callOriginalMethods); } - if ($arguments['stopOnDefect']) { - $result->stopOnDefect(\true); + return self::$cache[$key]; + } + /** + * @throws RuntimeException + * @throws SoapExtensionNotAvailableException + */ + public function generateClassFromWsdl(string $wsdlFile, string $className, array $methods = [], array $options = []): string + { + if (!extension_loaded('soap')) { + throw new \PHPUnit\Framework\MockObject\SoapExtensionNotAvailableException(); } - if ($arguments['registerMockObjectsFromTestArgumentsRecursively']) { - $result->setRegisterMockObjectsFromTestArgumentsRecursively(\true); + $options = array_merge($options, ['cache_wsdl' => WSDL_CACHE_NONE]); + try { + $client = new SoapClient($wsdlFile, $options); + $_methods = array_unique($client->__getFunctions()); + unset($client); + } catch (SoapFault $e) { + throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), $e->getCode(), $e); } - if ($this->printer === null) { - if (isset($arguments['printer'])) { - if ($arguments['printer'] instanceof \PHPUnit\TextUI\ResultPrinter) { - $this->printer = $arguments['printer']; - } elseif (is_string($arguments['printer']) && class_exists($arguments['printer'], \false)) { - try { - $reflector = new ReflectionClass($arguments['printer']); - if ($reflector->implementsInterface(\PHPUnit\TextUI\ResultPrinter::class)) { - $this->printer = $this->createPrinter($arguments['printer'], $arguments); - } - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); + sort($_methods); + $methodTemplate = $this->getTemplate('wsdl_method.tpl'); + $methodsBuffer = ''; + foreach ($_methods as $method) { + preg_match_all('/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\(/', $method, $matches, PREG_OFFSET_CAPTURE); + $lastFunction = array_pop($matches[0]); + $nameStart = $lastFunction[1]; + $nameEnd = $nameStart + strlen($lastFunction[0]) - 1; + $name = str_replace('(', '', $lastFunction[0]); + if (empty($methods) || in_array($name, $methods, \true)) { + $args = explode(',', str_replace(')', '', substr($method, $nameEnd + 1))); + foreach (range(0, count($args) - 1) as $i) { + $parameterStart = strpos($args[$i], '$'); + if (!$parameterStart) { + continue; } - // @codeCoverageIgnoreEnd + $args[$i] = substr($args[$i], $parameterStart); } - } else { - $this->printer = $this->createPrinter(\PHPUnit\TextUI\DefaultResultPrinter::class, $arguments); + $methodTemplate->setVar(['method_name' => $name, 'arguments' => implode(', ', $args)]); + $methodsBuffer .= $methodTemplate->render(); } } - if (isset($originalExecutionOrder) && $this->printer instanceof CliTestDoxPrinter) { - assert($this->printer instanceof CliTestDoxPrinter); - $this->printer->setOriginalExecutionOrder($originalExecutionOrder); - $this->printer->setShowProgressAnimation(!$arguments['noInteraction']); - } - $this->write(Version::getVersionString() . "\n"); - foreach ($arguments['listeners'] as $listener) { - $result->addListener($listener); - } - $result->addListener($this->printer); - $coverageFilterFromConfigurationFile = \false; - $coverageFilterFromOption = \false; - $codeCoverageReports = 0; - if (isset($arguments['testdoxHTMLFile'])) { - $result->addListener(new HtmlResultPrinter($arguments['testdoxHTMLFile'], $arguments['testdoxGroups'], $arguments['testdoxExcludeGroups'])); - } - if (isset($arguments['testdoxTextFile'])) { - $result->addListener(new TextResultPrinter($arguments['testdoxTextFile'], $arguments['testdoxGroups'], $arguments['testdoxExcludeGroups'])); - } - if (isset($arguments['testdoxXMLFile'])) { - $result->addListener(new XmlResultPrinter($arguments['testdoxXMLFile'])); + $optionsBuffer = '['; + foreach ($options as $key => $value) { + $optionsBuffer .= $key . ' => ' . $value; } - if (isset($arguments['teamcityLogfile'])) { - $result->addListener(new TeamCity($arguments['teamcityLogfile'])); + $optionsBuffer .= ']'; + $classTemplate = $this->getTemplate('wsdl_class.tpl'); + $namespace = ''; + if (strpos($className, '\\') !== \false) { + $parts = explode('\\', $className); + $className = array_pop($parts); + $namespace = 'namespace ' . implode('\\', $parts) . ';' . "\n\n"; } - if (isset($arguments['junitLogfile'])) { - $result->addListener(new JUnit($arguments['junitLogfile'], $arguments['reportUselessTests'])); + $classTemplate->setVar(['namespace' => $namespace, 'class_name' => $className, 'wsdl' => $wsdlFile, 'options' => $optionsBuffer, 'methods' => $methodsBuffer]); + return $classTemplate->render(); + } + /** + * @throws ReflectionException + * + * @return string[] + */ + public function getClassMethods(string $className): array + { + try { + $class = new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if (isset($arguments['coverageClover'])) { - $codeCoverageReports++; + // @codeCoverageIgnoreEnd + $methods = []; + foreach ($class->getMethods() as $method) { + if ($method->isPublic() || $method->isAbstract()) { + $methods[] = $method->getName(); + } } - if (isset($arguments['coverageCobertura'])) { - $codeCoverageReports++; + return $methods; + } + /** + * @throws ReflectionException + * + * @return MockMethod[] + */ + public function mockClassMethods(string $className, bool $callOriginalMethods, bool $cloneArguments): array + { + try { + $class = new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if (isset($arguments['coverageCrap4J'])) { - $codeCoverageReports++; + // @codeCoverageIgnoreEnd + $methods = []; + foreach ($class->getMethods() as $method) { + if (($method->isPublic() || $method->isAbstract()) && $this->canMockMethod($method)) { + $methods[] = \PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments); + } } - if (isset($arguments['coverageHtml'])) { - $codeCoverageReports++; + return $methods; + } + /** + * @throws ReflectionException + * + * @return MockMethod[] + */ + public function mockInterfaceMethods(string $interfaceName, bool $cloneArguments): array + { + try { + $class = new ReflectionClass($interfaceName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if (isset($arguments['coveragePHP'])) { - $codeCoverageReports++; + // @codeCoverageIgnoreEnd + $methods = []; + foreach ($class->getMethods() as $method) { + $methods[] = \PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, \false, $cloneArguments); } - if (isset($arguments['coverageText'])) { - $codeCoverageReports++; + return $methods; + } + /** + * @psalm-param class-string $interfaceName + * + * @throws ReflectionException + * + * @return ReflectionMethod[] + */ + private function userDefinedInterfaceMethods(string $interfaceName): array + { + try { + // @codeCoverageIgnoreStart + $interface = new ReflectionClass($interfaceName); + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if (isset($arguments['coverageXml'])) { - $codeCoverageReports++; + // @codeCoverageIgnoreEnd + $methods = []; + foreach ($interface->getMethods() as $method) { + if (!$method->isUserDefined()) { + continue; + } + $methods[] = $method; } - if ($codeCoverageReports > 0 || isset($arguments['xdebugFilterFile'])) { - if (isset($arguments['coverageFilter'])) { - if (!is_array($arguments['coverageFilter'])) { - $coverageFilterDirectories = [$arguments['coverageFilter']]; - } else { - $coverageFilterDirectories = $arguments['coverageFilter']; - } - foreach ($coverageFilterDirectories as $coverageFilterDirectory) { - $this->codeCoverageFilter->includeDirectory($coverageFilterDirectory); + return $methods; + } + /** + * @throws ReflectionException + * @throws RuntimeException + */ + private function getObject(\PHPUnit\Framework\MockObject\MockType $mockClass, $type = '', bool $callOriginalConstructor = \false, bool $callAutoload = \false, array $arguments = [], bool $callOriginalMethods = \false, ?object $proxyTarget = null, bool $returnValueGeneration = \true) + { + $className = $mockClass->generate(); + if ($callOriginalConstructor) { + if (count($arguments) === 0) { + $object = new $className(); + } else { + try { + $class = new ReflectionClass($className); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - $coverageFilterFromOption = \true; + // @codeCoverageIgnoreEnd + $object = $class->newInstanceArgs($arguments); } - if (isset($arguments['configurationObject'])) { - assert($arguments['configurationObject'] instanceof Configuration); - $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); - if ($codeCoverageConfiguration->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { - $coverageFilterFromConfigurationFile = \true; - (new FilterMapper())->map($this->codeCoverageFilter, $codeCoverageConfiguration); - } + } else { + try { + $object = (new Instantiator())->instantiate($className); + } catch (InstantiatorException $e) { + throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage()); } } - if ($codeCoverageReports > 0) { - try { - if (isset($codeCoverageConfiguration) && ($codeCoverageConfiguration->pathCoverage() || isset($arguments['pathCoverage']) && $arguments['pathCoverage'] === \true)) { - $codeCoverageDriver = (new Selector())->forLineAndPathCoverage($this->codeCoverageFilter); + if ($callOriginalMethods) { + if (!is_object($proxyTarget)) { + if (count($arguments) === 0) { + $proxyTarget = new $type(); } else { - $codeCoverageDriver = (new Selector())->forLineCoverage($this->codeCoverageFilter); - } - $codeCoverage = new CodeCoverage($codeCoverageDriver, $this->codeCoverageFilter); - if (isset($codeCoverageConfiguration) && $codeCoverageConfiguration->hasCacheDirectory()) { - $codeCoverage->cacheStaticAnalysis($codeCoverageConfiguration->cacheDirectory()->path()); - } - if (isset($arguments['coverageCacheDirectory'])) { - $codeCoverage->cacheStaticAnalysis($arguments['coverageCacheDirectory']); - } - $codeCoverage->excludeSubclassesOfThisClassFromUnintentionallyCoveredCodeCheck(Comparator::class); - if ($arguments['strictCoverage']) { - $codeCoverage->enableCheckForUnintentionallyCoveredCode(); - } - if (isset($arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'])) { - if ($arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage']) { - $codeCoverage->ignoreDeprecatedCode(); - } else { - $codeCoverage->doNotIgnoreDeprecatedCode(); + try { + $class = new ReflectionClass($type); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } + // @codeCoverageIgnoreEnd + $proxyTarget = $class->newInstanceArgs($arguments); } - if (isset($arguments['disableCodeCoverageIgnore'])) { - if ($arguments['disableCodeCoverageIgnore']) { - $codeCoverage->disableAnnotationsForIgnoringCode(); - } else { - $codeCoverage->enableAnnotationsForIgnoringCode(); - } + } + $object->__phpunit_setOriginalObject($proxyTarget); + } + if ($object instanceof \PHPUnit\Framework\MockObject\MockObject) { + $object->__phpunit_setReturnValueGeneration($returnValueGeneration); + } + return $object; + } + /** + * @throws ClassIsFinalException + * @throws ClassIsReadonlyException + * @throws ReflectionException + * @throws RuntimeException + */ + private function generateMock(string $type, ?array $explicitMethods, string $mockClassName, bool $callOriginalClone, bool $callAutoload, bool $cloneArguments, bool $callOriginalMethods): \PHPUnit\Framework\MockObject\MockClass + { + $classTemplate = $this->getTemplate('mocked_class.tpl'); + $additionalInterfaces = []; + $mockedCloneMethod = \false; + $unmockedCloneMethod = \false; + $isClass = \false; + $isInterface = \false; + $class = null; + $mockMethods = new \PHPUnit\Framework\MockObject\MockMethodSet(); + $_mockClassName = $this->generateClassName($type, $mockClassName, 'Mock_'); + if (class_exists($_mockClassName['fullClassName'], $callAutoload)) { + $isClass = \true; + } elseif (interface_exists($_mockClassName['fullClassName'], $callAutoload)) { + $isInterface = \true; + } + if (!$isClass && !$isInterface) { + $prologue = 'class ' . $_mockClassName['originalClassName'] . "\n{\n}\n\n"; + if (!empty($_mockClassName['namespaceName'])) { + $prologue = 'namespace ' . $_mockClassName['namespaceName'] . " {\n\n" . $prologue . "}\n\n" . "namespace {\n\n"; + $epilogue = "\n\n}"; + } + $mockedCloneMethod = \true; + } else { + try { + $class = new ReflectionClass($_mockClassName['fullClassName']); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($class->isFinal()) { + throw new \PHPUnit\Framework\MockObject\ClassIsFinalException($_mockClassName['fullClassName']); + } + if (method_exists($class, 'isReadOnly') && $class->isReadOnly()) { + throw new \PHPUnit\Framework\MockObject\ClassIsReadonlyException($_mockClassName['fullClassName']); + } + // @see https://github.com/sebastianbergmann/phpunit/issues/2995 + if ($isInterface && $class->implementsInterface(Throwable::class)) { + $actualClassName = Exception::class; + $additionalInterfaces[] = $class->getName(); + $isInterface = \false; + try { + $class = new ReflectionClass($actualClassName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if (isset($arguments['configurationObject'])) { - $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); - if ($codeCoverageConfiguration->hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport()) { - if ($codeCoverageConfiguration->includeUncoveredFiles()) { - $codeCoverage->includeUncoveredFiles(); - } else { - $codeCoverage->excludeUncoveredFiles(); + // @codeCoverageIgnoreEnd + foreach ($this->userDefinedInterfaceMethods($_mockClassName['fullClassName']) as $method) { + $methodName = $method->getName(); + if ($class->hasMethod($methodName)) { + try { + $classMethod = $class->getMethod($methodName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); } - if ($codeCoverageConfiguration->processUncoveredFiles()) { - $codeCoverage->processUncoveredFiles(); - } else { - $codeCoverage->doNotProcessUncoveredFiles(); + // @codeCoverageIgnoreEnd + if (!$this->canMockMethod($classMethod)) { + continue; } } + $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments)); } - if ($this->codeCoverageFilter->isEmpty()) { - if (!$coverageFilterFromConfigurationFile && !$coverageFilterFromOption) { - $warnings[] = 'No filter is configured, code coverage will not be processed'; + $_mockClassName = $this->generateClassName($actualClassName, $_mockClassName['className'], 'Mock_'); + } + // @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/103 + if ($isInterface && $class->implementsInterface(Traversable::class) && !$class->implementsInterface(Iterator::class) && !$class->implementsInterface(IteratorAggregate::class)) { + $additionalInterfaces[] = Iterator::class; + $mockMethods->addMethods(...$this->mockClassMethods(Iterator::class, $callOriginalMethods, $cloneArguments)); + } + if ($class->hasMethod('__clone')) { + try { + $cloneMethod = $class->getMethod('__clone'); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if (!$cloneMethod->isFinal()) { + if ($callOriginalClone && !$isInterface) { + $unmockedCloneMethod = \true; } else { - $warnings[] = 'Incorrect filter configuration, code coverage will not be processed'; + $mockedCloneMethod = \true; } - unset($codeCoverage); } - } catch (CodeCoverageException $e) { - $warnings[] = $e->getMessage(); - } - } - if ($arguments['verbose']) { - if (PHP_SAPI === 'phpdbg') { - $this->writeMessage('Runtime', 'PHPDBG ' . PHP_VERSION); } else { - $runtime = 'PHP ' . PHP_VERSION; - if (isset($codeCoverageDriver)) { - $runtime .= ' with ' . $codeCoverageDriver->nameAndVersion(); - } - $this->writeMessage('Runtime', $runtime); - } - if (isset($arguments['configurationObject'])) { - assert($arguments['configurationObject'] instanceof Configuration); - $this->writeMessage('Configuration', $arguments['configurationObject']->filename()); - } - foreach ($arguments['loadedExtensions'] as $extension) { - $this->writeMessage('Extension', $extension); - } - foreach ($arguments['notLoadedExtensions'] as $extension) { - $this->writeMessage('Extension', $extension); + $mockedCloneMethod = \true; } } - if ($arguments['executionOrder'] === TestSuiteSorter::ORDER_RANDOMIZED) { - $this->writeMessage('Random Seed', (string) $arguments['randomOrderSeed']); - } - if (isset($tooFewColumnsRequested)) { - $warnings[] = 'Less than 16 columns requested, number of columns set to 16'; - } - if ((new Runtime())->discardsComments()) { - $warnings[] = 'opcache.save_comments=0 set; annotations will not work'; - } - if (isset($arguments['conflictBetweenPrinterClassAndTestdox'])) { - $warnings[] = 'Directives printerClass and testdox are mutually exclusive'; + if ($isClass && $explicitMethods === []) { + $mockMethods->addMethods(...$this->mockClassMethods($_mockClassName['fullClassName'], $callOriginalMethods, $cloneArguments)); } - foreach ($warnings as $warning) { - $this->writeMessage('Warning', $warning); + if ($isInterface && ($explicitMethods === [] || $explicitMethods === null)) { + $mockMethods->addMethods(...$this->mockInterfaceMethods($_mockClassName['fullClassName'], $cloneArguments)); } - if (isset($arguments['configurationObject'])) { - assert($arguments['configurationObject'] instanceof Configuration); - if ($arguments['configurationObject']->hasValidationErrors()) { - if ((new SchemaDetector())->detect($arguments['configurationObject']->filename())->detected()) { - $this->writeMessage('Warning', 'Your XML configuration validates against a deprecated schema.'); - $this->writeMessage('Suggestion', 'Migrate your XML configuration using "--migrate-configuration"!'); + if (is_array($explicitMethods)) { + foreach ($explicitMethods as $methodName) { + if ($class !== null && $class->hasMethod($methodName)) { + try { + $method = $class->getMethod($methodName); + // @codeCoverageIgnoreStart + } catch (\ReflectionException $e) { + throw new \PHPUnit\Framework\MockObject\ReflectionException($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + if ($this->canMockMethod($method)) { + $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromReflection($method, $callOriginalMethods, $cloneArguments)); + } } else { - $this->write("\n Warning - The configuration file did not pass validation!\n The following problems have been detected:\n"); - $this->write($arguments['configurationObject']->validationErrors()); - $this->write("\n Test results may not be as expected.\n\n"); + $mockMethods->addMethods(\PHPUnit\Framework\MockObject\MockMethod::fromName($_mockClassName['fullClassName'], $methodName, $cloneArguments)); } } } - if (isset($arguments['xdebugFilterFile'], $codeCoverageConfiguration)) { - $this->write(PHP_EOL . 'Please note that --dump-xdebug-filter and --prepend are deprecated and will be removed in PHPUnit 10.' . PHP_EOL); - $script = (new XdebugFilterScriptGenerator())->generate($codeCoverageConfiguration); - if ($arguments['xdebugFilterFile'] !== 'php://stdout' && $arguments['xdebugFilterFile'] !== 'php://stderr' && !Filesystem::createDirectory(dirname($arguments['xdebugFilterFile']))) { - $this->write(sprintf('Cannot write Xdebug filter script to %s ' . PHP_EOL, $arguments['xdebugFilterFile'])); - exit(self::EXCEPTION_EXIT); - } - file_put_contents($arguments['xdebugFilterFile'], $script); - $this->write(sprintf('Wrote Xdebug filter script to %s ' . PHP_EOL . PHP_EOL, $arguments['xdebugFilterFile'])); - exit(self::SUCCESS_EXIT); - } - $this->write("\n"); - if (isset($codeCoverage)) { - $result->setCodeCoverage($codeCoverage); - } - $result->beStrictAboutTestsThatDoNotTestAnything($arguments['reportUselessTests']); - $result->beStrictAboutOutputDuringTests($arguments['disallowTestOutput']); - $result->beStrictAboutTodoAnnotatedTests($arguments['disallowTodoAnnotatedTests']); - $result->beStrictAboutResourceUsageDuringSmallTests($arguments['beStrictAboutResourceUsageDuringSmallTests']); - if ($arguments['enforceTimeLimit'] === \true && !(new Invoker())->canInvokeWithTimeout()) { - $this->writeMessage('Error', 'PHP extension pcntl is required for enforcing time limits'); + $mockedMethods = ''; + $configurable = []; + foreach ($mockMethods->asArray() as $mockMethod) { + $mockedMethods .= $mockMethod->generateCode(); + $configurable[] = new \PHPUnit\Framework\MockObject\ConfigurableMethod($mockMethod->getName(), $mockMethod->getReturnType()); } - $result->enforceTimeLimit($arguments['enforceTimeLimit']); - $result->setDefaultTimeLimit($arguments['defaultTimeLimit']); - $result->setTimeoutForSmallTests($arguments['timeoutForSmallTests']); - $result->setTimeoutForMediumTests($arguments['timeoutForMediumTests']); - $result->setTimeoutForLargeTests($arguments['timeoutForLargeTests']); - if (isset($arguments['forceCoversAnnotation']) && $arguments['forceCoversAnnotation'] === \true) { - $result->forceCoversAnnotation(); + $method = ''; + if (!$mockMethods->hasMethod('method') && (!isset($class) || !$class->hasMethod('method'))) { + $method = PHP_EOL . ' use \PHPUnit\Framework\MockObject\Method;'; } - $this->processSuiteFilters($suite, $arguments); - $suite->setRunTestInSeparateProcess($arguments['processIsolation']); - foreach ($this->extensions as $extension) { - if ($extension instanceof BeforeFirstTestHook) { - $extension->executeBeforeFirstTest(); - } + $cloneTrait = ''; + if ($mockedCloneMethod) { + $cloneTrait = $this->mockedCloneMethod(); } - $testSuiteWarningsPrinted = \false; - foreach ($suite->warnings() as $warning) { - $this->writeMessage('Warning', $warning); - $testSuiteWarningsPrinted = \true; + if ($unmockedCloneMethod) { + $cloneTrait = $this->unmockedCloneMethod(); } - if ($testSuiteWarningsPrinted) { - $this->write(PHP_EOL); + $classTemplate->setVar(['prologue' => $prologue ?? '', 'epilogue' => $epilogue ?? '', 'class_declaration' => $this->generateMockClassDeclaration($_mockClassName, $isInterface, $additionalInterfaces), 'clone' => $cloneTrait, 'mock_class_name' => $_mockClassName['className'], 'mocked_methods' => $mockedMethods, 'method' => $method]); + return new \PHPUnit\Framework\MockObject\MockClass($classTemplate->render(), $_mockClassName['className'], $configurable); + } + private function generateClassName(string $type, string $className, string $prefix): array + { + if ($type[0] === '\\') { + $type = substr($type, 1); } - $suite->run($result); - foreach ($this->extensions as $extension) { - if ($extension instanceof AfterLastTestHook) { - $extension->executeAfterLastTest(); - } + $classNameParts = explode('\\', $type); + if (count($classNameParts) > 1) { + $type = array_pop($classNameParts); + $namespaceName = implode('\\', $classNameParts); + $fullClassName = $namespaceName . '\\' . $type; + } else { + $namespaceName = ''; + $fullClassName = $type; } - $result->flushListeners(); - $this->printer->printResult($result); - if (isset($codeCoverage)) { - if (isset($arguments['coverageClover'])) { - $this->codeCoverageGenerationStart('Clover XML'); - try { - $writer = new CloverReport(); - $writer->process($codeCoverage, $arguments['coverageClover']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } - if (isset($arguments['coverageCobertura'])) { - $this->codeCoverageGenerationStart('Cobertura XML'); - try { - $writer = new CoberturaReport(); - $writer->process($codeCoverage, $arguments['coverageCobertura']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } - if (isset($arguments['coverageCrap4J'])) { - $this->codeCoverageGenerationStart('Crap4J XML'); - try { - $writer = new Crap4jReport($arguments['crap4jThreshold']); - $writer->process($codeCoverage, $arguments['coverageCrap4J']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } - if (isset($arguments['coverageHtml'])) { - $this->codeCoverageGenerationStart('HTML'); - try { - $writer = new HtmlReport($arguments['reportLowUpperBound'], $arguments['reportHighLowerBound'], sprintf(' and PHPUnit %s', Version::id())); - $writer->process($codeCoverage, $arguments['coverageHtml']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } - if (isset($arguments['coveragePHP'])) { - $this->codeCoverageGenerationStart('PHP'); - try { - $writer = new PhpReport(); - $writer->process($codeCoverage, $arguments['coveragePHP']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } - if (isset($arguments['coverageText'])) { - if ($arguments['coverageText'] === 'php://stdout') { - $outputStream = $this->printer; - $colors = $arguments['colors'] && $arguments['colors'] !== \PHPUnit\TextUI\DefaultResultPrinter::COLOR_NEVER; - } else { - $outputStream = new Printer($arguments['coverageText']); - $colors = \false; - } - $processor = new TextReport($arguments['reportLowUpperBound'], $arguments['reportHighLowerBound'], $arguments['coverageTextShowUncoveredFiles'], $arguments['coverageTextShowOnlySummary']); - $outputStream->write($processor->process($codeCoverage, $colors)); - } - if (isset($arguments['coverageXml'])) { - $this->codeCoverageGenerationStart('PHPUnit XML'); - try { - $writer = new XmlReport(Version::id()); - $writer->process($codeCoverage, $arguments['coverageXml']); - $this->codeCoverageGenerationSucceeded(); - unset($writer); - } catch (CodeCoverageException $e) { - $this->codeCoverageGenerationFailed($e); - } - } + if ($className === '') { + do { + $className = $prefix . $type . '_' . substr(md5((string) mt_rand()), 0, 8); + } while (class_exists($className, \false)); } - if ($exit) { - if (isset($arguments['failOnEmptyTestSuite']) && $arguments['failOnEmptyTestSuite'] === \true && count($result) === 0) { - exit(self::FAILURE_EXIT); - } - if ($result->wasSuccessfulIgnoringWarnings()) { - if ($arguments['failOnRisky'] && !$result->allHarmless()) { - exit(self::FAILURE_EXIT); - } - if ($arguments['failOnWarning'] && $result->warningCount() > 0) { - exit(self::FAILURE_EXIT); - } - if ($arguments['failOnIncomplete'] && $result->notImplementedCount() > 0) { - exit(self::FAILURE_EXIT); - } - if ($arguments['failOnSkipped'] && $result->skippedCount() > 0) { - exit(self::FAILURE_EXIT); + return ['className' => $className, 'originalClassName' => $type, 'fullClassName' => $fullClassName, 'namespaceName' => $namespaceName]; + } + private function generateMockClassDeclaration(array $mockClassName, bool $isInterface, array $additionalInterfaces = []): string + { + $buffer = 'class '; + $additionalInterfaces[] = \PHPUnit\Framework\MockObject\MockObject::class; + $interfaces = implode(', ', $additionalInterfaces); + if ($isInterface) { + $buffer .= sprintf('%s implements %s', $mockClassName['className'], $interfaces); + if (!in_array($mockClassName['originalClassName'], $additionalInterfaces, \true)) { + $buffer .= ', '; + if (!empty($mockClassName['namespaceName'])) { + $buffer .= $mockClassName['namespaceName'] . '\\'; } - exit(self::SUCCESS_EXIT); - } - if ($result->errorCount() > 0) { - exit(self::EXCEPTION_EXIT); + $buffer .= $mockClassName['originalClassName']; } - if ($result->failureCount() > 0) { - exit(self::FAILURE_EXIT); + } else { + $buffer .= sprintf('%s extends %s%s implements %s', $mockClassName['className'], !empty($mockClassName['namespaceName']) ? $mockClassName['namespaceName'] . '\\' : '', $mockClassName['originalClassName'], $interfaces); + } + return $buffer; + } + private function canMockMethod(ReflectionMethod $method): bool + { + return !($this->isConstructor($method) || $method->isFinal() || $method->isPrivate() || $this->isMethodNameExcluded($method->getName())); + } + private function isMethodNameExcluded(string $name): bool + { + return isset(self::EXCLUDED_METHOD_NAMES[$name]); + } + /** + * @throws RuntimeException + */ + private function getTemplate(string $template): Template + { + $filename = __DIR__ . DIRECTORY_SEPARATOR . 'Generator' . DIRECTORY_SEPARATOR . $template; + if (!isset(self::$templates[$filename])) { + try { + self::$templates[$filename] = new Template($filename); + } catch (TemplateException $e) { + throw new \PHPUnit\Framework\MockObject\RuntimeException($e->getMessage(), $e->getCode(), $e); } } - return $result; + return self::$templates[$filename]; } /** - * Returns the loader to be used. + * @see https://github.com/sebastianbergmann/phpunit/issues/4139#issuecomment-605409765 */ - public function getLoader() : TestSuiteLoader + private function isConstructor(ReflectionMethod $method): bool { - if ($this->loader === null) { - $this->loader = new StandardTestSuiteLoader(); + $methodName = strtolower($method->getName()); + if ($methodName === '__construct') { + return \true; } - return $this->loader; + if (PHP_MAJOR_VERSION >= 8) { + return \false; + } + $className = strtolower($method->getDeclaringClass()->getName()); + return $methodName === $className; } - public function addExtension(Hook $extension) : void + private function mockedCloneMethod(): string { - $this->extensions[] = $extension; + if (PHP_MAJOR_VERSION >= 8) { + if (!trait_exists('\PHPUnit\Framework\MockObject\MockedCloneMethodWithVoidReturnType')) { + eval(self::MOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT); + } + return PHP_EOL . ' use \PHPUnit\Framework\MockObject\MockedCloneMethodWithVoidReturnType;'; + } + if (!trait_exists('\PHPUnit\Framework\MockObject\MockedCloneMethodWithoutReturnType')) { + eval(self::MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT); + } + return PHP_EOL . ' use \PHPUnit\Framework\MockObject\MockedCloneMethodWithoutReturnType;'; + } + private function unmockedCloneMethod(): string + { + if (PHP_MAJOR_VERSION >= 8) { + if (!trait_exists('\PHPUnit\Framework\MockObject\UnmockedCloneMethodWithVoidReturnType')) { + eval(self::UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT); + } + return PHP_EOL . ' use \PHPUnit\Framework\MockObject\UnmockedCloneMethodWithVoidReturnType;'; + } + if (!trait_exists('\PHPUnit\Framework\MockObject\UnmockedCloneMethodWithoutReturnType')) { + eval(self::UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT); + } + return PHP_EOL . ' use \PHPUnit\Framework\MockObject\UnmockedCloneMethodWithoutReturnType;'; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function strtolower; +use Exception; +use PHPUnit\Framework\MockObject\Builder\InvocationMocker; +use PHPUnit\Framework\MockObject\Rule\InvocationOrder; +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvocationHandler +{ /** - * Override to define how to handle a failed loading of - * a test suite. + * @var Matcher[] */ - protected function runFailed(string $message) : void + private $matchers = []; + /** + * @var Matcher[] + */ + private $matcherMap = []; + /** + * @var ConfigurableMethod[] + */ + private $configurableMethods; + /** + * @var bool + */ + private $returnValueGeneration; + /** + * @var Throwable + */ + private $deferredError; + public function __construct(array $configurableMethods, bool $returnValueGeneration) { - $this->write($message . PHP_EOL); - exit(self::FAILURE_EXIT); + $this->configurableMethods = $configurableMethods; + $this->returnValueGeneration = $returnValueGeneration; } - private function createTestResult() : TestResult + public function hasMatchers(): bool { - return new TestResult(); + foreach ($this->matchers as $matcher) { + if ($matcher->hasMatchers()) { + return \true; + } + } + return \false; } - private function write(string $buffer) : void + /** + * Looks up the match builder with identification $id and returns it. + * + * @param string $id The identification of the match builder + */ + public function lookupMatcher(string $id): ?\PHPUnit\Framework\MockObject\Matcher { - if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') { - $buffer = htmlspecialchars($buffer); + if (isset($this->matcherMap[$id])) { + return $this->matcherMap[$id]; } - if ($this->printer !== null) { - $this->printer->write($buffer); - } else { - print $buffer; + return null; + } + /** + * Registers a matcher with the identification $id. The matcher can later be + * looked up using lookupMatcher() to figure out if it has been invoked. + * + * @param string $id The identification of the matcher + * @param Matcher $matcher The builder which is being registered + * + * @throws MatcherAlreadyRegisteredException + */ + public function registerMatcher(string $id, \PHPUnit\Framework\MockObject\Matcher $matcher): void + { + if (isset($this->matcherMap[$id])) { + throw new \PHPUnit\Framework\MockObject\MatcherAlreadyRegisteredException($id); } + $this->matcherMap[$id] = $matcher; + } + public function expects(InvocationOrder $rule): InvocationMocker + { + $matcher = new \PHPUnit\Framework\MockObject\Matcher($rule); + $this->addMatcher($matcher); + return new InvocationMocker($this, $matcher, ...$this->configurableMethods); } /** - * @throws \PHPUnit\TextUI\XmlConfiguration\Exception * @throws Exception + * @throws RuntimeException */ - private function handleConfiguration(array &$arguments) : void + public function invoke(\PHPUnit\Framework\MockObject\Invocation $invocation) { - if (!isset($arguments['configurationObject']) && isset($arguments['configuration'])) { - $arguments['configurationObject'] = (new Loader())->load($arguments['configuration']); - } - if (!isset($arguments['warnings'])) { - $arguments['warnings'] = []; - } - $arguments['debug'] = $arguments['debug'] ?? \false; - $arguments['filter'] = $arguments['filter'] ?? \false; - $arguments['listeners'] = $arguments['listeners'] ?? []; - if (isset($arguments['configurationObject'])) { - (new PhpHandler())->handle($arguments['configurationObject']->php()); - $codeCoverageConfiguration = $arguments['configurationObject']->codeCoverage(); - if (!isset($arguments['noCoverage'])) { - if (!isset($arguments['coverageClover']) && $codeCoverageConfiguration->hasClover()) { - $arguments['coverageClover'] = $codeCoverageConfiguration->clover()->target()->path(); - } - if (!isset($arguments['coverageCobertura']) && $codeCoverageConfiguration->hasCobertura()) { - $arguments['coverageCobertura'] = $codeCoverageConfiguration->cobertura()->target()->path(); - } - if (!isset($arguments['coverageCrap4J']) && $codeCoverageConfiguration->hasCrap4j()) { - $arguments['coverageCrap4J'] = $codeCoverageConfiguration->crap4j()->target()->path(); - if (!isset($arguments['crap4jThreshold'])) { - $arguments['crap4jThreshold'] = $codeCoverageConfiguration->crap4j()->threshold(); - } - } - if (!isset($arguments['coverageHtml']) && $codeCoverageConfiguration->hasHtml()) { - $arguments['coverageHtml'] = $codeCoverageConfiguration->html()->target()->path(); - if (!isset($arguments['reportLowUpperBound'])) { - $arguments['reportLowUpperBound'] = $codeCoverageConfiguration->html()->lowUpperBound(); - } - if (!isset($arguments['reportHighLowerBound'])) { - $arguments['reportHighLowerBound'] = $codeCoverageConfiguration->html()->highLowerBound(); + $exception = null; + $hasReturnValue = \false; + $returnValue = null; + foreach ($this->matchers as $match) { + try { + if ($match->matches($invocation)) { + $value = $match->invoked($invocation); + if (!$hasReturnValue) { + $returnValue = $value; + $hasReturnValue = \true; } } - if (!isset($arguments['coveragePHP']) && $codeCoverageConfiguration->hasPhp()) { - $arguments['coveragePHP'] = $codeCoverageConfiguration->php()->target()->path(); - } - if (!isset($arguments['coverageText']) && $codeCoverageConfiguration->hasText()) { - $arguments['coverageText'] = $codeCoverageConfiguration->text()->target()->path(); - $arguments['coverageTextShowUncoveredFiles'] = $codeCoverageConfiguration->text()->showUncoveredFiles(); - $arguments['coverageTextShowOnlySummary'] = $codeCoverageConfiguration->text()->showOnlySummary(); - } - if (!isset($arguments['coverageXml']) && $codeCoverageConfiguration->hasXml()) { - $arguments['coverageXml'] = $codeCoverageConfiguration->xml()->target()->path(); - } - } - $phpunitConfiguration = $arguments['configurationObject']->phpunit(); - $arguments['backupGlobals'] = $arguments['backupGlobals'] ?? $phpunitConfiguration->backupGlobals(); - $arguments['backupStaticAttributes'] = $arguments['backupStaticAttributes'] ?? $phpunitConfiguration->backupStaticAttributes(); - $arguments['beStrictAboutChangesToGlobalState'] = $arguments['beStrictAboutChangesToGlobalState'] ?? $phpunitConfiguration->beStrictAboutChangesToGlobalState(); - $arguments['cacheResult'] = $arguments['cacheResult'] ?? $phpunitConfiguration->cacheResult(); - $arguments['colors'] = $arguments['colors'] ?? $phpunitConfiguration->colors(); - $arguments['convertDeprecationsToExceptions'] = $arguments['convertDeprecationsToExceptions'] ?? $phpunitConfiguration->convertDeprecationsToExceptions(); - $arguments['convertErrorsToExceptions'] = $arguments['convertErrorsToExceptions'] ?? $phpunitConfiguration->convertErrorsToExceptions(); - $arguments['convertNoticesToExceptions'] = $arguments['convertNoticesToExceptions'] ?? $phpunitConfiguration->convertNoticesToExceptions(); - $arguments['convertWarningsToExceptions'] = $arguments['convertWarningsToExceptions'] ?? $phpunitConfiguration->convertWarningsToExceptions(); - $arguments['processIsolation'] = $arguments['processIsolation'] ?? $phpunitConfiguration->processIsolation(); - $arguments['stopOnDefect'] = $arguments['stopOnDefect'] ?? $phpunitConfiguration->stopOnDefect(); - $arguments['stopOnError'] = $arguments['stopOnError'] ?? $phpunitConfiguration->stopOnError(); - $arguments['stopOnFailure'] = $arguments['stopOnFailure'] ?? $phpunitConfiguration->stopOnFailure(); - $arguments['stopOnWarning'] = $arguments['stopOnWarning'] ?? $phpunitConfiguration->stopOnWarning(); - $arguments['stopOnIncomplete'] = $arguments['stopOnIncomplete'] ?? $phpunitConfiguration->stopOnIncomplete(); - $arguments['stopOnRisky'] = $arguments['stopOnRisky'] ?? $phpunitConfiguration->stopOnRisky(); - $arguments['stopOnSkipped'] = $arguments['stopOnSkipped'] ?? $phpunitConfiguration->stopOnSkipped(); - $arguments['failOnEmptyTestSuite'] = $arguments['failOnEmptyTestSuite'] ?? $phpunitConfiguration->failOnEmptyTestSuite(); - $arguments['failOnIncomplete'] = $arguments['failOnIncomplete'] ?? $phpunitConfiguration->failOnIncomplete(); - $arguments['failOnRisky'] = $arguments['failOnRisky'] ?? $phpunitConfiguration->failOnRisky(); - $arguments['failOnSkipped'] = $arguments['failOnSkipped'] ?? $phpunitConfiguration->failOnSkipped(); - $arguments['failOnWarning'] = $arguments['failOnWarning'] ?? $phpunitConfiguration->failOnWarning(); - $arguments['enforceTimeLimit'] = $arguments['enforceTimeLimit'] ?? $phpunitConfiguration->enforceTimeLimit(); - $arguments['defaultTimeLimit'] = $arguments['defaultTimeLimit'] ?? $phpunitConfiguration->defaultTimeLimit(); - $arguments['timeoutForSmallTests'] = $arguments['timeoutForSmallTests'] ?? $phpunitConfiguration->timeoutForSmallTests(); - $arguments['timeoutForMediumTests'] = $arguments['timeoutForMediumTests'] ?? $phpunitConfiguration->timeoutForMediumTests(); - $arguments['timeoutForLargeTests'] = $arguments['timeoutForLargeTests'] ?? $phpunitConfiguration->timeoutForLargeTests(); - $arguments['reportUselessTests'] = $arguments['reportUselessTests'] ?? $phpunitConfiguration->beStrictAboutTestsThatDoNotTestAnything(); - $arguments['strictCoverage'] = $arguments['strictCoverage'] ?? $phpunitConfiguration->beStrictAboutCoversAnnotation(); - $arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'] = $arguments['ignoreDeprecatedCodeUnitsFromCodeCoverage'] ?? $codeCoverageConfiguration->ignoreDeprecatedCodeUnits(); - $arguments['disallowTestOutput'] = $arguments['disallowTestOutput'] ?? $phpunitConfiguration->beStrictAboutOutputDuringTests(); - $arguments['disallowTodoAnnotatedTests'] = $arguments['disallowTodoAnnotatedTests'] ?? $phpunitConfiguration->beStrictAboutTodoAnnotatedTests(); - $arguments['beStrictAboutResourceUsageDuringSmallTests'] = $arguments['beStrictAboutResourceUsageDuringSmallTests'] ?? $phpunitConfiguration->beStrictAboutResourceUsageDuringSmallTests(); - $arguments['verbose'] = $arguments['verbose'] ?? $phpunitConfiguration->verbose(); - $arguments['reverseDefectList'] = $arguments['reverseDefectList'] ?? $phpunitConfiguration->reverseDefectList(); - $arguments['forceCoversAnnotation'] = $arguments['forceCoversAnnotation'] ?? $phpunitConfiguration->forceCoversAnnotation(); - $arguments['disableCodeCoverageIgnore'] = $arguments['disableCodeCoverageIgnore'] ?? $codeCoverageConfiguration->disableCodeCoverageIgnore(); - $arguments['registerMockObjectsFromTestArgumentsRecursively'] = $arguments['registerMockObjectsFromTestArgumentsRecursively'] ?? $phpunitConfiguration->registerMockObjectsFromTestArgumentsRecursively(); - $arguments['noInteraction'] = $arguments['noInteraction'] ?? $phpunitConfiguration->noInteraction(); - $arguments['executionOrder'] = $arguments['executionOrder'] ?? $phpunitConfiguration->executionOrder(); - $arguments['resolveDependencies'] = $arguments['resolveDependencies'] ?? $phpunitConfiguration->resolveDependencies(); - if (!isset($arguments['bootstrap']) && $phpunitConfiguration->hasBootstrap()) { - $arguments['bootstrap'] = $phpunitConfiguration->bootstrap(); - } - if (!isset($arguments['cacheResultFile']) && $phpunitConfiguration->hasCacheResultFile()) { - $arguments['cacheResultFile'] = $phpunitConfiguration->cacheResultFile(); - } - if (!isset($arguments['executionOrderDefects'])) { - $arguments['executionOrderDefects'] = $phpunitConfiguration->defectsFirst() ? TestSuiteSorter::ORDER_DEFECTS_FIRST : TestSuiteSorter::ORDER_DEFAULT; - } - if ($phpunitConfiguration->conflictBetweenPrinterClassAndTestdox()) { - $arguments['conflictBetweenPrinterClassAndTestdox'] = \true; - } - $groupCliArgs = []; - if (!empty($arguments['groups'])) { - $groupCliArgs = $arguments['groups']; - } - $groupConfiguration = $arguments['configurationObject']->groups(); - if (!isset($arguments['groups']) && $groupConfiguration->hasInclude()) { - $arguments['groups'] = $groupConfiguration->include()->asArrayOfStrings(); - } - if (!isset($arguments['excludeGroups']) && $groupConfiguration->hasExclude()) { - $arguments['excludeGroups'] = array_diff($groupConfiguration->exclude()->asArrayOfStrings(), $groupCliArgs); - } - $extensionHandler = new ExtensionHandler(); - foreach ($arguments['configurationObject']->extensions() as $extension) { - $extensionHandler->registerExtension($extension, $this); - } - foreach ($arguments['configurationObject']->listeners() as $listener) { - $arguments['listeners'][] = $extensionHandler->createTestListenerInstance($listener); - } - unset($extensionHandler); - foreach ($arguments['unavailableExtensions'] as $extension) { - $arguments['warnings'][] = sprintf('Extension "%s" is not available', $extension); - } - $loggingConfiguration = $arguments['configurationObject']->logging(); - if (!isset($arguments['noLogging'])) { - if ($loggingConfiguration->hasText()) { - $arguments['listeners'][] = new \PHPUnit\TextUI\DefaultResultPrinter($loggingConfiguration->text()->target()->path(), \true); - } - if (!isset($arguments['teamcityLogfile']) && $loggingConfiguration->hasTeamCity()) { - $arguments['teamcityLogfile'] = $loggingConfiguration->teamCity()->target()->path(); - } - if (!isset($arguments['junitLogfile']) && $loggingConfiguration->hasJunit()) { - $arguments['junitLogfile'] = $loggingConfiguration->junit()->target()->path(); - } - if (!isset($arguments['testdoxHTMLFile']) && $loggingConfiguration->hasTestDoxHtml()) { - $arguments['testdoxHTMLFile'] = $loggingConfiguration->testDoxHtml()->target()->path(); - } - if (!isset($arguments['testdoxTextFile']) && $loggingConfiguration->hasTestDoxText()) { - $arguments['testdoxTextFile'] = $loggingConfiguration->testDoxText()->target()->path(); - } - if (!isset($arguments['testdoxXMLFile']) && $loggingConfiguration->hasTestDoxXml()) { - $arguments['testdoxXMLFile'] = $loggingConfiguration->testDoxXml()->target()->path(); - } + } catch (Exception $e) { + $exception = $e; } - $testdoxGroupConfiguration = $arguments['configurationObject']->testdoxGroups(); - if (!isset($arguments['testdoxGroups']) && $testdoxGroupConfiguration->hasInclude()) { - $arguments['testdoxGroups'] = $testdoxGroupConfiguration->include()->asArrayOfStrings(); + } + if ($exception !== null) { + throw $exception; + } + if ($hasReturnValue) { + return $returnValue; + } + if (!$this->returnValueGeneration) { + $exception = new \PHPUnit\Framework\MockObject\ReturnValueNotConfiguredException($invocation); + if (strtolower($invocation->getMethodName()) === '__tostring') { + $this->deferredError = $exception; + return ''; } - if (!isset($arguments['testdoxExcludeGroups']) && $testdoxGroupConfiguration->hasExclude()) { - $arguments['testdoxExcludeGroups'] = $testdoxGroupConfiguration->exclude()->asArrayOfStrings(); + throw $exception; + } + return $invocation->generateReturnValue(); + } + public function matches(\PHPUnit\Framework\MockObject\Invocation $invocation): bool + { + foreach ($this->matchers as $matcher) { + if (!$matcher->matches($invocation)) { + return \false; } } - $extensionHandler = new ExtensionHandler(); - foreach ($arguments['extensions'] as $extension) { - $extensionHandler->registerExtension($extension, $this); + return \true; + } + /** + * @throws Throwable + */ + public function verify(): void + { + foreach ($this->matchers as $matcher) { + $matcher->verify(); } - unset($extensionHandler); - $arguments['backupGlobals'] = $arguments['backupGlobals'] ?? null; - $arguments['backupStaticAttributes'] = $arguments['backupStaticAttributes'] ?? null; - $arguments['beStrictAboutChangesToGlobalState'] = $arguments['beStrictAboutChangesToGlobalState'] ?? null; - $arguments['beStrictAboutResourceUsageDuringSmallTests'] = $arguments['beStrictAboutResourceUsageDuringSmallTests'] ?? \false; - $arguments['cacheResult'] = $arguments['cacheResult'] ?? \true; - $arguments['colors'] = $arguments['colors'] ?? \PHPUnit\TextUI\DefaultResultPrinter::COLOR_DEFAULT; - $arguments['columns'] = $arguments['columns'] ?? 80; - $arguments['convertDeprecationsToExceptions'] = $arguments['convertDeprecationsToExceptions'] ?? \false; - $arguments['convertErrorsToExceptions'] = $arguments['convertErrorsToExceptions'] ?? \true; - $arguments['convertNoticesToExceptions'] = $arguments['convertNoticesToExceptions'] ?? \true; - $arguments['convertWarningsToExceptions'] = $arguments['convertWarningsToExceptions'] ?? \true; - $arguments['crap4jThreshold'] = $arguments['crap4jThreshold'] ?? 30; - $arguments['disallowTestOutput'] = $arguments['disallowTestOutput'] ?? \false; - $arguments['disallowTodoAnnotatedTests'] = $arguments['disallowTodoAnnotatedTests'] ?? \false; - $arguments['defaultTimeLimit'] = $arguments['defaultTimeLimit'] ?? 0; - $arguments['enforceTimeLimit'] = $arguments['enforceTimeLimit'] ?? \false; - $arguments['excludeGroups'] = $arguments['excludeGroups'] ?? []; - $arguments['executionOrder'] = $arguments['executionOrder'] ?? TestSuiteSorter::ORDER_DEFAULT; - $arguments['executionOrderDefects'] = $arguments['executionOrderDefects'] ?? TestSuiteSorter::ORDER_DEFAULT; - $arguments['failOnIncomplete'] = $arguments['failOnIncomplete'] ?? \false; - $arguments['failOnRisky'] = $arguments['failOnRisky'] ?? \false; - $arguments['failOnSkipped'] = $arguments['failOnSkipped'] ?? \false; - $arguments['failOnWarning'] = $arguments['failOnWarning'] ?? \false; - $arguments['groups'] = $arguments['groups'] ?? []; - $arguments['noInteraction'] = $arguments['noInteraction'] ?? \false; - $arguments['processIsolation'] = $arguments['processIsolation'] ?? \false; - $arguments['randomOrderSeed'] = $arguments['randomOrderSeed'] ?? time(); - $arguments['registerMockObjectsFromTestArgumentsRecursively'] = $arguments['registerMockObjectsFromTestArgumentsRecursively'] ?? \false; - $arguments['repeat'] = $arguments['repeat'] ?? \false; - $arguments['reportHighLowerBound'] = $arguments['reportHighLowerBound'] ?? 90; - $arguments['reportLowUpperBound'] = $arguments['reportLowUpperBound'] ?? 50; - $arguments['reportUselessTests'] = $arguments['reportUselessTests'] ?? \true; - $arguments['reverseList'] = $arguments['reverseList'] ?? \false; - $arguments['resolveDependencies'] = $arguments['resolveDependencies'] ?? \true; - $arguments['stopOnError'] = $arguments['stopOnError'] ?? \false; - $arguments['stopOnFailure'] = $arguments['stopOnFailure'] ?? \false; - $arguments['stopOnIncomplete'] = $arguments['stopOnIncomplete'] ?? \false; - $arguments['stopOnRisky'] = $arguments['stopOnRisky'] ?? \false; - $arguments['stopOnSkipped'] = $arguments['stopOnSkipped'] ?? \false; - $arguments['stopOnWarning'] = $arguments['stopOnWarning'] ?? \false; - $arguments['stopOnDefect'] = $arguments['stopOnDefect'] ?? \false; - $arguments['strictCoverage'] = $arguments['strictCoverage'] ?? \false; - $arguments['testdoxExcludeGroups'] = $arguments['testdoxExcludeGroups'] ?? []; - $arguments['testdoxGroups'] = $arguments['testdoxGroups'] ?? []; - $arguments['timeoutForLargeTests'] = $arguments['timeoutForLargeTests'] ?? 60; - $arguments['timeoutForMediumTests'] = $arguments['timeoutForMediumTests'] ?? 10; - $arguments['timeoutForSmallTests'] = $arguments['timeoutForSmallTests'] ?? 1; - $arguments['verbose'] = $arguments['verbose'] ?? \false; - if ($arguments['reportLowUpperBound'] > $arguments['reportHighLowerBound']) { - $arguments['reportLowUpperBound'] = 50; - $arguments['reportHighLowerBound'] = 90; + if ($this->deferredError) { + throw $this->deferredError; } } - private function processSuiteFilters(TestSuite $suite, array $arguments) : void + private function addMatcher(\PHPUnit\Framework\MockObject\Matcher $matcher): void + { + $this->matchers[] = $matcher; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +use PHPUnit\Framework\MockObject\Stub\Stub; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +interface InvocationStubber +{ + public function will(Stub $stub): \PHPUnit\Framework\MockObject\Builder\Identity; + /** @return self */ + public function willReturn($value, ...$nextValues); + /** + * @param mixed $reference + * + * @return self + */ + public function willReturnReference(&$reference); + /** + * @param array> $valueMap + * + * @return self + */ + public function willReturnMap(array $valueMap); + /** + * @param int $argumentIndex + * + * @return self + */ + public function willReturnArgument($argumentIndex); + /** + * @param callable $callback + * + * @return self + */ + public function willReturnCallback($callback); + /** @return self */ + public function willReturnSelf(); + /** + * @param mixed $values + * + * @return self + */ + public function willReturnOnConsecutiveCalls(...$values); + /** @return self */ + public function willThrowException(Throwable $exception); +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +use function array_map; +use function array_merge; +use function count; +use function in_array; +use function is_string; +use function strtolower; +use PHPUnit\Framework\Constraint\Constraint; +use PHPUnit\Framework\InvalidArgumentException; +use PHPUnit\Framework\MockObject\ConfigurableMethod; +use PHPUnit\Framework\MockObject\IncompatibleReturnValueException; +use PHPUnit\Framework\MockObject\InvocationHandler; +use PHPUnit\Framework\MockObject\Matcher; +use PHPUnit\Framework\MockObject\MatcherAlreadyRegisteredException; +use PHPUnit\Framework\MockObject\MethodCannotBeConfiguredException; +use PHPUnit\Framework\MockObject\MethodNameAlreadyConfiguredException; +use PHPUnit\Framework\MockObject\MethodNameNotConfiguredException; +use PHPUnit\Framework\MockObject\MethodParametersAlreadyConfiguredException; +use PHPUnit\Framework\MockObject\Rule; +use PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls; +use PHPUnit\Framework\MockObject\Stub\Exception; +use PHPUnit\Framework\MockObject\Stub\ReturnArgument; +use PHPUnit\Framework\MockObject\Stub\ReturnCallback; +use PHPUnit\Framework\MockObject\Stub\ReturnReference; +use PHPUnit\Framework\MockObject\Stub\ReturnSelf; +use PHPUnit\Framework\MockObject\Stub\ReturnStub; +use PHPUnit\Framework\MockObject\Stub\ReturnValueMap; +use PHPUnit\Framework\MockObject\Stub\Stub; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class InvocationMocker implements \PHPUnit\Framework\MockObject\Builder\InvocationStubber, \PHPUnit\Framework\MockObject\Builder\MethodNameMatch +{ + /** + * @var InvocationHandler + */ + private $invocationHandler; + /** + * @var Matcher + */ + private $matcher; + /** + * @var ConfigurableMethod[] + */ + private $configurableMethods; + public function __construct(InvocationHandler $handler, Matcher $matcher, ConfigurableMethod ...$configurableMethods) + { + $this->invocationHandler = $handler; + $this->matcher = $matcher; + $this->configurableMethods = $configurableMethods; + } + /** + * @throws MatcherAlreadyRegisteredException + * + * @return $this + */ + public function id($id): self { - if (!$arguments['filter'] && empty($arguments['groups']) && empty($arguments['excludeGroups']) && empty($arguments['testsCovering']) && empty($arguments['testsUsing'])) { - return; + $this->invocationHandler->registerMatcher($id, $this->matcher); + return $this; + } + /** + * @return $this + */ + public function will(Stub $stub): \PHPUnit\Framework\MockObject\Builder\Identity + { + $this->matcher->setStub($stub); + return $this; + } + /** + * @param mixed $value + * @param mixed[] $nextValues + * + * @throws IncompatibleReturnValueException + */ + public function willReturn($value, ...$nextValues): self + { + if (count($nextValues) === 0) { + $this->ensureTypeOfReturnValues([$value]); + $stub = $value instanceof Stub ? $value : new ReturnStub($value); + } else { + $values = array_merge([$value], $nextValues); + $this->ensureTypeOfReturnValues($values); + $stub = new ConsecutiveCalls($values); } - $filterFactory = new Factory(); - if (!empty($arguments['excludeGroups'])) { - $filterFactory->addFilter(new ReflectionClass(ExcludeGroupFilterIterator::class), $arguments['excludeGroups']); + return $this->will($stub); + } + public function willReturnReference(&$reference): self + { + $stub = new ReturnReference($reference); + return $this->will($stub); + } + public function willReturnMap(array $valueMap): self + { + $stub = new ReturnValueMap($valueMap); + return $this->will($stub); + } + public function willReturnArgument($argumentIndex): self + { + $stub = new ReturnArgument($argumentIndex); + return $this->will($stub); + } + public function willReturnCallback($callback): self + { + $stub = new ReturnCallback($callback); + return $this->will($stub); + } + public function willReturnSelf(): self + { + $stub = new ReturnSelf(); + return $this->will($stub); + } + public function willReturnOnConsecutiveCalls(...$values): self + { + $stub = new ConsecutiveCalls($values); + return $this->will($stub); + } + public function willThrowException(Throwable $exception): self + { + $stub = new Exception($exception); + return $this->will($stub); + } + /** + * @return $this + */ + public function after($id): self + { + $this->matcher->setAfterMatchBuilderId($id); + return $this; + } + /** + * @param mixed[] $arguments + * + * @throws \PHPUnit\Framework\Exception + * @throws MethodNameNotConfiguredException + * @throws MethodParametersAlreadyConfiguredException + * + * @return $this + */ + public function with(...$arguments): self + { + $this->ensureParametersCanBeConfigured(); + $this->matcher->setParametersRule(new Rule\Parameters($arguments)); + return $this; + } + /** + * @param array ...$arguments + * + * @throws \PHPUnit\Framework\Exception + * @throws MethodNameNotConfiguredException + * @throws MethodParametersAlreadyConfiguredException + * + * @return $this + * + * @deprecated + */ + public function withConsecutive(...$arguments): self + { + $this->ensureParametersCanBeConfigured(); + $this->matcher->setParametersRule(new Rule\ConsecutiveParameters($arguments)); + return $this; + } + /** + * @throws MethodNameNotConfiguredException + * @throws MethodParametersAlreadyConfiguredException + * + * @return $this + */ + public function withAnyParameters(): self + { + $this->ensureParametersCanBeConfigured(); + $this->matcher->setParametersRule(new Rule\AnyParameters()); + return $this; + } + /** + * @param Constraint|string $constraint + * + * @throws InvalidArgumentException + * @throws MethodCannotBeConfiguredException + * @throws MethodNameAlreadyConfiguredException + * + * @return $this + */ + public function method($constraint): self + { + if ($this->matcher->hasMethodNameRule()) { + throw new MethodNameAlreadyConfiguredException(); } - if (!empty($arguments['groups'])) { - $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), $arguments['groups']); + $configurableMethodNames = array_map(static function (ConfigurableMethod $configurable) { + return strtolower($configurable->getName()); + }, $this->configurableMethods); + if (is_string($constraint) && !in_array(strtolower($constraint), $configurableMethodNames, \true)) { + throw new MethodCannotBeConfiguredException($constraint); } - if (!empty($arguments['testsCovering'])) { - $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), array_map(static function (string $name) : string { - return '__phpunit_covers_' . $name; - }, $arguments['testsCovering'])); + $this->matcher->setMethodNameRule(new Rule\MethodName($constraint)); + return $this; + } + /** + * @throws MethodNameNotConfiguredException + * @throws MethodParametersAlreadyConfiguredException + */ + private function ensureParametersCanBeConfigured(): void + { + if (!$this->matcher->hasMethodNameRule()) { + throw new MethodNameNotConfiguredException(); } - if (!empty($arguments['testsUsing'])) { - $filterFactory->addFilter(new ReflectionClass(IncludeGroupFilterIterator::class), array_map(static function (string $name) : string { - return '__phpunit_uses_' . $name; - }, $arguments['testsUsing'])); + if ($this->matcher->hasParametersRule()) { + throw new MethodParametersAlreadyConfiguredException(); } - if ($arguments['filter']) { - $filterFactory->addFilter(new ReflectionClass(NameFilterIterator::class), $arguments['filter']); + } + private function getConfiguredMethod(): ?ConfigurableMethod + { + $configuredMethod = null; + foreach ($this->configurableMethods as $configurableMethod) { + if ($this->matcher->getMethodNameRule()->matchesName($configurableMethod->getName())) { + if ($configuredMethod !== null) { + return null; + } + $configuredMethod = $configurableMethod; + } } - $suite->injectFilter($filterFactory); + return $configuredMethod; } - private function writeMessage(string $type, string $message) : void + /** + * @throws IncompatibleReturnValueException + */ + private function ensureTypeOfReturnValues(array $values): void { - if (!$this->messagePrinted) { - $this->write("\n"); + $configuredMethod = $this->getConfiguredMethod(); + if ($configuredMethod === null) { + return; } - $this->write(sprintf("%-15s%s\n", $type . ':', $message)); - $this->messagePrinted = \true; + foreach ($values as $value) { + if (!$configuredMethod->mayReturn($value)) { + throw new IncompatibleReturnValueException($configuredMethod, $value); + } + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface ParametersMatch extends \PHPUnit\Framework\MockObject\Builder\Stub +{ + /** + * Defines the expectation which must occur before the current is valid. + * + * @param string $id the identification of the expectation that should + * occur before this one + * + * @return Stub + */ + public function after($id); + /** + * Sets the parameters to match for, each parameter to this function will + * be part of match. To perform specific matches or constraints create a + * new PHPUnit\Framework\Constraint\Constraint and use it for the parameter. + * If the parameter value is not a constraint it will use the + * PHPUnit\Framework\Constraint\IsEqual for the value. + * + * Some examples: + * + * // match first parameter with value 2 + * $b->with(2); + * // match first parameter with value 'smock' and second identical to 42 + * $b->with('smock', new PHPUnit\Framework\Constraint\IsEqual(42)); + * + * + * @return ParametersMatch + */ + public function with(...$arguments); + /** + * Sets a rule which allows any kind of parameters. + * + * Some examples: + * + * // match any number of parameters + * $b->withAnyParameters(); + * + * + * @return ParametersMatch + */ + public function withAnyParameters(); +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface Identity +{ + /** + * Sets the identification of the expectation to $id. + * + * @note The identifier is unique per mock object. + * + * @param string $id unique identification of expectation + */ + public function id($id); +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +use PHPUnit\Framework\MockObject\Stub\Stub as BaseStub; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface Stub extends \PHPUnit\Framework\MockObject\Builder\Identity +{ + /** + * Stubs the matching method with the stub object $stub. Any invocations of + * the matched method will now be handled by the stub instead. + */ + public function will(BaseStub $stub): \PHPUnit\Framework\MockObject\Builder\Identity; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject\Builder; + +use PHPUnit\Framework\Constraint\Constraint; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface MethodNameMatch extends \PHPUnit\Framework\MockObject\Builder\ParametersMatch +{ + /** + * Adds a new method name match and returns the parameter match object for + * further matching possibilities. + * + * @param Constraint $constraint Constraint for matching method, if a string is passed it will use the PHPUnit_Framework_Constraint_IsEqual + * + * @return ParametersMatch + */ + public function method($constraint); +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MatchBuilderNotFoundException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $id) + { + parent::__construct(sprintf('No builder found for match builder identification <%s>', $id)); } - private function createPrinter(string $class, array $arguments) : \PHPUnit\TextUI\ResultPrinter +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MatcherAlreadyRegisteredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $id) { - $object = new $class(isset($arguments['stderr']) && $arguments['stderr'] === \true ? 'php://stderr' : null, $arguments['verbose'], $arguments['colors'], $arguments['debug'], $arguments['columns'], $arguments['reverseList']); - assert($object instanceof \PHPUnit\TextUI\ResultPrinter); - return $object; + parent::__construct(sprintf('Matcher with id <%s> is already registered', $id)); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MethodParametersAlreadyConfiguredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct() + { + parent::__construct('Method parameters already configured'); } - private function codeCoverageGenerationStart(string $format) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ConfigurableMethodsAlreadyInitializedException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ClassAlreadyExistsException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $className) { - $this->write(sprintf("\nGenerating code coverage report in %s format ... ", $format)); - $this->timer->start(); + parent::__construct(sprintf('Class "%s" already exists', $className)); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class CannotUseAddMethodsException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $type, string $methodName) + { + parent::__construct(sprintf('Trying to configure method "%s" with addMethods(), but it exists in class "%s". Use onlyMethods() for methods that exist in the class', $methodName, $type)); } - private function codeCoverageGenerationSucceeded() : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MethodNameAlreadyConfiguredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct() { - $this->write(sprintf("done [%s]\n", $this->timer->stop()->asString())); + parent::__construct('Method name is already configured'); } - private function codeCoverageGenerationFailed(\Exception $e) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use RuntimeException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ReflectionException extends RuntimeException implements \PHPUnit\Framework\MockObject\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function array_diff_assoc; +use function array_unique; +use function implode; +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class DuplicateMethodException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + /** + * @psalm-param list $methods + */ + public function __construct(array $methods) { - $this->write(sprintf("failed [%s]\n%s\n", $this->timer->stop()->asString(), $e->getMessage())); + parent::__construct(sprintf('Cannot double using a method list that contains duplicates: "%s" (duplicate: "%s")', implode(', ', $methods), implode(', ', array_unique(array_diff_assoc($methods, array_unique($methods)))))); } } name(), $filterAsArray, \true)) { - continue; - } - $testSuite = new TestSuiteObject($testSuiteConfiguration->name()); - $testSuiteEmpty = \true; - $exclude = []; - foreach ($testSuiteConfiguration->exclude()->asArray() as $file) { - $exclude[] = $file->path(); - } - foreach ($testSuiteConfiguration->directories() as $directory) { - if (!version_compare(PHP_VERSION, $directory->phpVersion(), $directory->phpVersionOperator()->asString())) { - continue; - } - $files = (new Facade())->getFilesAsArray($directory->path(), $directory->suffix(), $directory->prefix(), $exclude); - if (!empty($files)) { - $testSuite->addTestFiles($files); - $testSuiteEmpty = \false; - } elseif (strpos($directory->path(), '*') === \false && !is_dir($directory->path())) { - throw new \PHPUnit\TextUI\TestDirectoryNotFoundException($directory->path()); - } - } - foreach ($testSuiteConfiguration->files() as $file) { - if (!is_file($file->path())) { - throw new \PHPUnit\TextUI\TestFileNotFoundException($file->path()); - } - if (!version_compare(PHP_VERSION, $file->phpVersion(), $file->phpVersionOperator()->asString())) { - continue; - } - $testSuite->addTestFile($file->path()); - $testSuiteEmpty = \false; - } - if (!$testSuiteEmpty) { - $result->addTest($testSuite); - } - } - return $result; - } catch (FrameworkException $e) { - throw new \PHPUnit\TextUI\RuntimeException($e->getMessage(), (int) $e->getCode(), $e); - } + parent::__construct(sprintf('Class "%s" does not exist', $className)); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -final class CodeCoverage +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvalidMethodNameException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception { - /** - * @var ?Directory - */ - private $cacheDirectory; - /** - * @var DirectoryCollection - */ - private $directories; - /** - * @var FileCollection - */ - private $files; - /** - * @var DirectoryCollection - */ - private $excludeDirectories; - /** - * @var FileCollection - */ - private $excludeFiles; - /** - * @var bool - */ - private $pathCoverage; - /** - * @var bool - */ - private $includeUncoveredFiles; - /** - * @var bool - */ - private $processUncoveredFiles; - /** - * @var bool - */ - private $ignoreDeprecatedCodeUnits; - /** - * @var bool - */ - private $disableCodeCoverageIgnore; - /** - * @var ?Clover - */ - private $clover; - /** - * @var ?Cobertura - */ - private $cobertura; - /** - * @var ?Crap4j - */ - private $crap4j; - /** - * @var ?Html - */ - private $html; - /** - * @var ?Php - */ - private $php; - /** - * @var ?Text - */ - private $text; - /** - * @var ?Xml - */ - private $xml; - public function __construct(?Directory $cacheDirectory, DirectoryCollection $directories, FileCollection $files, DirectoryCollection $excludeDirectories, FileCollection $excludeFiles, bool $pathCoverage, bool $includeUncoveredFiles, bool $processUncoveredFiles, bool $ignoreDeprecatedCodeUnits, bool $disableCodeCoverageIgnore, ?Clover $clover, ?Cobertura $cobertura, ?Crap4j $crap4j, ?Html $html, ?Php $php, ?Text $text, ?Xml $xml) - { - $this->cacheDirectory = $cacheDirectory; - $this->directories = $directories; - $this->files = $files; - $this->excludeDirectories = $excludeDirectories; - $this->excludeFiles = $excludeFiles; - $this->pathCoverage = $pathCoverage; - $this->includeUncoveredFiles = $includeUncoveredFiles; - $this->processUncoveredFiles = $processUncoveredFiles; - $this->ignoreDeprecatedCodeUnits = $ignoreDeprecatedCodeUnits; - $this->disableCodeCoverageIgnore = $disableCodeCoverageIgnore; - $this->clover = $clover; - $this->cobertura = $cobertura; - $this->crap4j = $crap4j; - $this->html = $html; - $this->php = $php; - $this->text = $text; - $this->xml = $xml; - } - /** - * @psalm-assert-if-true !null $this->cacheDirectory - */ - public function hasCacheDirectory() : bool - { - return $this->cacheDirectory !== null; - } - /** - * @throws Exception - */ - public function cacheDirectory() : Directory - { - if (!$this->hasCacheDirectory()) { - throw new Exception('No cache directory has been configured'); - } - return $this->cacheDirectory; - } - public function hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport() : bool - { - return count($this->directories) > 0 || count($this->files) > 0; - } - public function directories() : DirectoryCollection - { - return $this->directories; - } - public function files() : FileCollection - { - return $this->files; - } - public function excludeDirectories() : DirectoryCollection - { - return $this->excludeDirectories; - } - public function excludeFiles() : FileCollection - { - return $this->excludeFiles; - } - public function pathCoverage() : bool - { - return $this->pathCoverage; - } - public function includeUncoveredFiles() : bool - { - return $this->includeUncoveredFiles; - } - public function ignoreDeprecatedCodeUnits() : bool - { - return $this->ignoreDeprecatedCodeUnits; - } - public function disableCodeCoverageIgnore() : bool - { - return $this->disableCodeCoverageIgnore; - } - public function processUncoveredFiles() : bool - { - return $this->processUncoveredFiles; - } - /** - * @psalm-assert-if-true !null $this->clover - */ - public function hasClover() : bool - { - return $this->clover !== null; - } - /** - * @throws Exception - */ - public function clover() : Clover - { - if (!$this->hasClover()) { - throw new Exception('Code Coverage report "Clover XML" has not been configured'); - } - return $this->clover; - } - /** - * @psalm-assert-if-true !null $this->cobertura - */ - public function hasCobertura() : bool - { - return $this->cobertura !== null; - } - /** - * @throws Exception - */ - public function cobertura() : Cobertura - { - if (!$this->hasCobertura()) { - throw new Exception('Code Coverage report "Cobertura XML" has not been configured'); - } - return $this->cobertura; - } - /** - * @psalm-assert-if-true !null $this->crap4j - */ - public function hasCrap4j() : bool - { - return $this->crap4j !== null; - } - /** - * @throws Exception - */ - public function crap4j() : Crap4j - { - if (!$this->hasCrap4j()) { - throw new Exception('Code Coverage report "Crap4J" has not been configured'); - } - return $this->crap4j; - } - /** - * @psalm-assert-if-true !null $this->html - */ - public function hasHtml() : bool + public function __construct(string $method) { - return $this->html !== null; + parent::__construct(sprintf('Cannot double method with invalid name "%s"', $method)); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function get_class; +use function gettype; +use function is_object; +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class IncompatibleReturnValueException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ /** - * @throws Exception + * @param mixed $value */ - public function html() : Html + public function __construct(\PHPUnit\Framework\MockObject\ConfigurableMethod $method, $value) { - if (!$this->hasHtml()) { - throw new Exception('Code Coverage report "HTML" has not been configured'); - } - return $this->html; + parent::__construct(sprintf('Method %s may not return value of type %s, its declared return type is "%s"', $method->getName(), is_object($value) ? get_class($value) : gettype($value), $method->getReturnTypeDeclaration())); } - /** - * @psalm-assert-if-true !null $this->php - */ - public function hasPhp() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class UnknownTypeException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $type) { - return $this->php !== null; + parent::__construct(sprintf('Class or interface "%s" does not exist', $type)); } - /** - * @throws Exception - */ - public function php() : Php +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class OriginalConstructorInvocationRequiredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct() { - if (!$this->hasPhp()) { - throw new Exception('Code Coverage report "PHP" has not been configured'); - } - return $this->php; + parent::__construct('Proxying to original methods requires invoking the original constructor'); } - /** - * @psalm-assert-if-true !null $this->text - */ - public function hasText() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class BadMethodCallException extends \BadMethodCallException implements \PHPUnit\Framework\MockObject\Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class UnknownTraitException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $traitName) { - return $this->text !== null; + parent::__construct(sprintf('Trait "%s" does not exist', $traitName)); } - /** - * @throws Exception - */ - public function text() : Text +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ClassIsFinalException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $className) { - if (!$this->hasText()) { - throw new Exception('Code Coverage report "Text" has not been configured'); - } - return $this->text; + parent::__construct(sprintf('Class "%s" is declared "final" and cannot be doubled', $className)); } - /** - * @psalm-assert-if-true !null $this->xml - */ - public function hasXml() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MethodCannotBeConfiguredException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $method) { - return $this->xml !== null; + parent::__construct(sprintf('Trying to configure method "%s" which cannot be configured because it does not exist, has not been specified, is final, or is static', $method)); } - /** - * @throws Exception - */ - public function xml() : Xml +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\MockObject; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ClassIsReadonlyException extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\MockObject\Exception +{ + public function __construct(string $className) { - if (!$this->hasXml()) { - throw new Exception('Code Coverage report "XML" has not been configured'); - } - return $this->xml; + parent::__construct(sprintf('Class "%s" is declared "readonly" and cannot be doubled', $className)); } } path = $path; - $this->prefix = $prefix; - $this->suffix = $suffix; - $this->group = $group; - } - public function path() : string - { - return $this->path; - } - public function prefix() : string - { - return $this->prefix; - } - public function suffix() : string - { - return $this->suffix; - } - public function group() : string + public function __construct(string $type, string $methodName) { - return $this->group; + parent::__construct(sprintf('Trying to configure method "%s" with onlyMethods(), but it does not exist in class "%s". Use addMethods() for methods that do not exist in the class', $methodName, $type)); } } directories = $directories; - } - /** - * @return Directory[] - */ - public function asArray() : array - { - return $this->directories; - } - public function count() : int - { - return count($this->directories); - } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollectionIterator + public function __construct() { - return new \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollectionIterator($this); + parent::__construct('Method name is not configured'); } } directories = $directories->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->directories); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\Directory - { - return $this->directories[$this->position]; - } - public function next() : void + public function __construct() { - $this->position++; + parent::__construct('The SOAP extension is required to generate a test double from WSDL'); } } directories() as $directory) { - $filter->includeDirectory($directory->path(), $directory->suffix(), $directory->prefix()); - } - foreach ($configuration->files() as $file) { - $filter->includeFile($file->path()); - } - foreach ($configuration->excludeDirectories() as $directory) { - $filter->excludeDirectory($directory->path(), $directory->suffix(), $directory->prefix()); - } - foreach ($configuration->excludeFiles() as $file) { - $filter->excludeFile($file->path()); - } + parent::__construct(sprintf('Return value inference disabled and no expectation set up for %s::%s()', $invocation->getClassName(), $invocation->getMethodName())); } } target = $target; - } - public function target() : File - { - return $this->target; - } } target = $target; - } - public function target() : File - { - return $this->target; - } + public function verify(): void; } target = $target; - $this->threshold = $threshold; + $this->classCode = $classCode; + $this->mockName = $mockName; } - public function target() : File + /** + * @psalm-return class-string + */ + public function generate(): string { - return $this->target; + if (!class_exists($this->mockName, \false)) { + eval($this->classCode); + } + return $this->mockName; } - public function threshold() : int + public function getClassCode(): string { - return $this->threshold; + return $this->classCode; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -final class Html +namespace PHPUnit\Framework\Error; + +use PHPUnit\Framework\Exception; +/** + * @internal + */ +class Error extends Exception { - /** - * @var Directory - */ - private $target; - /** - * @var int - */ - private $lowUpperBound; - /** - * @var int - */ - private $highLowerBound; - public function __construct(Directory $target, int $lowUpperBound, int $highLowerBound) - { - $this->target = $target; - $this->lowUpperBound = $lowUpperBound; - $this->highLowerBound = $highLowerBound; - } - public function target() : Directory - { - return $this->target; - } - public function lowUpperBound() : int - { - return $this->lowUpperBound; - } - public function highLowerBound() : int + public function __construct(string $message, int $code, string $file, int $line, ?\Exception $previous = null) { - return $this->highLowerBound; + parent::__construct($message, $code, $previous); + $this->file = $file; + $this->line = $line; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ -final class Php +namespace PHPUnit\Framework\Error; + +/** + * @internal + */ +final class Deprecated extends \PHPUnit\Framework\Error\Error +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use const LC_ALL; +use const LC_COLLATE; +use const LC_CTYPE; +use const LC_MONETARY; +use const LC_NUMERIC; +use const LC_TIME; +use const PATHINFO_FILENAME; +use const PHP_EOL; +use const PHP_URL_PATH; +use function array_filter; +use function array_flip; +use function array_keys; +use function array_merge; +use function array_pop; +use function array_search; +use function array_unique; +use function array_values; +use function basename; +use function call_user_func; +use function chdir; +use function class_exists; +use function clearstatcache; +use function count; +use function debug_backtrace; +use function defined; +use function explode; +use function get_class; +use function get_include_path; +use function getcwd; +use function implode; +use function in_array; +use function ini_set; +use function is_array; +use function is_callable; +use function is_int; +use function is_object; +use function is_string; +use function libxml_clear_errors; +use function method_exists; +use function ob_end_clean; +use function ob_get_contents; +use function ob_get_level; +use function ob_start; +use function parse_url; +use function pathinfo; +use function preg_replace; +use function serialize; +use function setlocale; +use function sprintf; +use function strpos; +use function substr; +use function sys_get_temp_dir; +use function tempnam; +use function trim; +use function var_export; +use PHPUnitPHAR\DeepCopy\DeepCopy; +use PHPUnit\Framework\Constraint\Exception as ExceptionConstraint; +use PHPUnit\Framework\Constraint\ExceptionCode; +use PHPUnit\Framework\Constraint\ExceptionMessage; +use PHPUnit\Framework\Constraint\ExceptionMessageRegularExpression; +use PHPUnit\Framework\Constraint\LogicalOr; +use PHPUnit\Framework\Error\Deprecated; +use PHPUnit\Framework\Error\Error; +use PHPUnit\Framework\Error\Notice; +use PHPUnit\Framework\Error\Warning as WarningError; +use PHPUnit\Framework\MockObject\Generator as MockGenerator; +use PHPUnit\Framework\MockObject\MockBuilder; +use PHPUnit\Framework\MockObject\MockObject; +use PHPUnit\Framework\MockObject\Rule\AnyInvokedCount as AnyInvokedCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtIndex as InvokedAtIndexMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastCount as InvokedAtLeastCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtLeastOnce as InvokedAtLeastOnceMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedAtMostCount as InvokedAtMostCountMatcher; +use PHPUnit\Framework\MockObject\Rule\InvokedCount as InvokedCountMatcher; +use PHPUnit\Framework\MockObject\Stub; +use PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls as ConsecutiveCallsStub; +use PHPUnit\Framework\MockObject\Stub\Exception as ExceptionStub; +use PHPUnit\Framework\MockObject\Stub\ReturnArgument as ReturnArgumentStub; +use PHPUnit\Framework\MockObject\Stub\ReturnCallback as ReturnCallbackStub; +use PHPUnit\Framework\MockObject\Stub\ReturnSelf as ReturnSelfStub; +use PHPUnit\Framework\MockObject\Stub\ReturnStub; +use PHPUnit\Framework\MockObject\Stub\ReturnValueMap as ReturnValueMapStub; +use PHPUnit\Runner\BaseTestRunner; +use PHPUnit\Runner\PhptTestCase; +use PHPUnit\Util\Cloner; +use PHPUnit\Util\Exception as UtilException; +use PHPUnit\Util\GlobalState; +use PHPUnit\Util\PHP\AbstractPhpProcess; +use PHPUnit\Util\Test as TestUtil; +use Prophecy\Exception\Doubler\ClassNotFoundException; +use Prophecy\Exception\Doubler\DoubleException; +use Prophecy\Exception\Doubler\InterfaceNotFoundException; +use Prophecy\Exception\Prediction\PredictionException; +use Prophecy\Prophecy\MethodProphecy; +use Prophecy\Prophecy\ObjectProphecy; +use Prophecy\Prophet; +use ReflectionClass; +use ReflectionException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException; +use PHPUnitPHAR\SebastianBergmann\Comparator\Comparator; +use PHPUnitPHAR\SebastianBergmann\Comparator\Factory as ComparatorFactory; +use PHPUnitPHAR\SebastianBergmann\Diff\Differ; +use PHPUnitPHAR\SebastianBergmann\Exporter\Exporter; +use PHPUnitPHAR\SebastianBergmann\GlobalState\ExcludeList; +use PHPUnitPHAR\SebastianBergmann\GlobalState\Restorer; +use PHPUnitPHAR\SebastianBergmann\GlobalState\Snapshot; +use PHPUnitPHAR\SebastianBergmann\ObjectEnumerator\Enumerator; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +use PHPUnitPHAR\SebastianBergmann\Template\Template; +use SoapClient; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +abstract class TestCase extends \PHPUnit\Framework\Assert implements \PHPUnit\Framework\Reorderable, \PHPUnit\Framework\SelfDescribing, \PHPUnit\Framework\Test { + private const LOCALE_CATEGORIES = [LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME]; + /** + * @var ?bool + */ + protected $backupGlobals; + /** + * @var string[] + */ + protected $backupGlobalsExcludeList = []; + /** + * @var string[] + * + * @deprecated Use $backupGlobalsExcludeList instead + */ + protected $backupGlobalsBlacklist = []; + /** + * @var ?bool + */ + protected $backupStaticAttributes; + /** + * @var array> + */ + protected $backupStaticAttributesExcludeList = []; + /** + * @var array> + * + * @deprecated Use $backupStaticAttributesExcludeList instead + */ + protected $backupStaticAttributesBlacklist = []; + /** + * @var ?bool + */ + protected $runTestInSeparateProcess; + /** + * @var bool + */ + protected $preserveGlobalState = \true; + /** + * @var list + */ + protected $providedTests = []; + /** + * @var ?bool + */ + private $runClassInSeparateProcess; + /** + * @var bool + */ + private $inIsolation = \false; + /** + * @var array + */ + private $data; + /** + * @var int|string + */ + private $dataName; + /** + * @var null|string + */ + private $expectedException; + /** + * @var null|string + */ + private $expectedExceptionMessage; + /** + * @var null|string + */ + private $expectedExceptionMessageRegExp; + /** + * @var null|int|string + */ + private $expectedExceptionCode; + /** + * @var string + */ + private $name = ''; + /** + * @var list + */ + private $dependencies = []; + /** + * @var array + */ + private $dependencyInput = []; + /** + * @var array + */ + private $iniSettings = []; + /** + * @var array + */ + private $locale = []; + /** + * @var MockObject[] + */ + private $mockObjects = []; + /** + * @var MockGenerator + */ + private $mockObjectGenerator; /** - * @var File + * @var int */ - private $target; - public function __construct(File $target) - { - $this->target = $target; - } - public function target() : File - { - return $this->target; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Text -{ + private $status = BaseTestRunner::STATUS_UNKNOWN; /** - * @var File + * @var string */ - private $target; + private $statusMessage = ''; /** - * @var bool + * @var int */ - private $showUncoveredFiles; + private $numAssertions = 0; /** - * @var bool + * @var TestResult */ - private $showOnlySummary; - public function __construct(File $target, bool $showUncoveredFiles, bool $showOnlySummary) - { - $this->target = $target; - $this->showUncoveredFiles = $showUncoveredFiles; - $this->showOnlySummary = $showOnlySummary; - } - public function target() : File - { - return $this->target; - } - public function showUncoveredFiles() : bool - { - return $this->showUncoveredFiles; - } - public function showOnlySummary() : bool - { - return $this->showOnlySummary; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report; - -use PHPUnit\TextUI\XmlConfiguration\Directory; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Xml -{ + private $result; /** - * @var Directory + * @var mixed */ - private $target; - public function __construct(Directory $target) - { - $this->target = $target; - } - public function target() : Directory - { - return $this->target; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\CodeCoverage; -use PHPUnit\TextUI\XmlConfiguration\Logging\Logging; -use PHPUnit\Util\Xml\ValidationResult; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Configuration -{ + private $testResult; /** * @var string */ - private $filename; + private $output = ''; /** - * @var ValidationResult + * @var ?string */ - private $validationResult; + private $outputExpectedRegex; /** - * @var ExtensionCollection + * @var ?string */ - private $extensions; + private $outputExpectedString; /** - * @var CodeCoverage + * @var mixed */ - private $codeCoverage; + private $outputCallback = \false; /** - * @var Groups + * @var bool */ - private $groups; + private $outputBufferingActive = \false; /** - * @var Groups + * @var int */ - private $testdoxGroups; + private $outputBufferingLevel; /** - * @var ExtensionCollection + * @var bool */ - private $listeners; + private $outputRetrievedForAssertion = \false; /** - * @var Logging + * @var ?Snapshot */ - private $logging; + private $snapshot; /** - * @var Php + * @var Prophet */ - private $php; + private $prophet; /** - * @var PHPUnit + * @var bool */ - private $phpunit; + private $beStrictAboutChangesToGlobalState = \false; /** - * @var TestSuiteCollection + * @var bool */ - private $testSuite; - public function __construct(string $filename, ValidationResult $validationResult, \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection $extensions, CodeCoverage $codeCoverage, \PHPUnit\TextUI\XmlConfiguration\Groups $groups, \PHPUnit\TextUI\XmlConfiguration\Groups $testdoxGroups, \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection $listeners, Logging $logging, \PHPUnit\TextUI\XmlConfiguration\Php $php, \PHPUnit\TextUI\XmlConfiguration\PHPUnit $phpunit, \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection $testSuite) - { - $this->filename = $filename; - $this->validationResult = $validationResult; - $this->extensions = $extensions; - $this->codeCoverage = $codeCoverage; - $this->groups = $groups; - $this->testdoxGroups = $testdoxGroups; - $this->listeners = $listeners; - $this->logging = $logging; - $this->php = $php; - $this->phpunit = $phpunit; - $this->testSuite = $testSuite; - } - public function filename() : string - { - return $this->filename; - } - public function hasValidationErrors() : bool - { - return $this->validationResult->hasValidationErrors(); - } - public function validationErrors() : string - { - return $this->validationResult->asString(); - } - public function extensions() : \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection - { - return $this->extensions; - } - public function codeCoverage() : CodeCoverage - { - return $this->codeCoverage; - } - public function groups() : \PHPUnit\TextUI\XmlConfiguration\Groups - { - return $this->groups; - } - public function testdoxGroups() : \PHPUnit\TextUI\XmlConfiguration\Groups - { - return $this->testdoxGroups; - } - public function listeners() : \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection - { - return $this->listeners; - } - public function logging() : Logging - { - return $this->logging; - } - public function php() : \PHPUnit\TextUI\XmlConfiguration\Php - { - return $this->php; - } - public function phpunit() : \PHPUnit\TextUI\XmlConfiguration\PHPUnit - { - return $this->phpunit; - } - public function testSuite() : \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection - { - return $this->testSuite; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Exception extends RuntimeException implements \PHPUnit\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Directory -{ + private $registerMockObjectsFromTestArgumentsRecursively = \false; /** - * @var string + * @var string[] */ - private $path; - public function __construct(string $path) - { - $this->path = $path; - } - public function path() : string - { - return $this->path; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function count; -use Countable; -use IteratorAggregate; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class DirectoryCollection implements Countable, IteratorAggregate -{ + private $warnings = []; /** - * @var Directory[] + * @var string[] */ - private $directories; + private $groups = []; /** - * @param Directory[] $directories + * @var bool */ - public static function fromArray(array $directories) : self - { - return new self(...$directories); - } - private function __construct(\PHPUnit\TextUI\XmlConfiguration\Directory ...$directories) - { - $this->directories = $directories; - } + private $doesNotPerformAssertions = \false; /** - * @return Directory[] + * @var Comparator[] + */ + private $customComparators = []; + /** + * @var string[] + */ + private $doubledTypes = []; + /** + * Returns a matcher that matches when the method is executed + * zero or more times. */ - public function asArray() : array + public static function any(): AnyInvokedCountMatcher { - return $this->directories; + return new AnyInvokedCountMatcher(); } - public function count() : int + /** + * Returns a matcher that matches when the method is never executed. + */ + public static function never(): InvokedCountMatcher { - return count($this->directories); + return new InvokedCountMatcher(0); } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\DirectoryCollectionIterator + /** + * Returns a matcher that matches when the method is executed + * at least N times. + */ + public static function atLeast(int $requiredInvocations): InvokedAtLeastCountMatcher { - return new \PHPUnit\TextUI\XmlConfiguration\DirectoryCollectionIterator($this); + return new InvokedAtLeastCountMatcher($requiredInvocations); } - public function isEmpty() : bool + /** + * Returns a matcher that matches when the method is executed at least once. + */ + public static function atLeastOnce(): InvokedAtLeastOnceMatcher { - return $this->count() === 0; + return new InvokedAtLeastOnceMatcher(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function count; -use function iterator_count; -use Countable; -use Iterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class DirectoryCollectionIterator implements Countable, Iterator -{ /** - * @var Directory[] + * Returns a matcher that matches when the method is executed exactly once. */ - private $directories; + public static function once(): InvokedCountMatcher + { + return new InvokedCountMatcher(1); + } /** - * @var int + * Returns a matcher that matches when the method is executed + * exactly $count times. */ - private $position; - public function __construct(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection $directories) + public static function exactly(int $count): InvokedCountMatcher { - $this->directories = $directories->asArray(); + return new InvokedCountMatcher($count); } - public function count() : int + /** + * Returns a matcher that matches when the method is executed + * at most N times. + */ + public static function atMost(int $allowedInvocations): InvokedAtMostCountMatcher { - return iterator_count($this); + return new InvokedAtMostCountMatcher($allowedInvocations); } - public function rewind() : void + /** + * Returns a matcher that matches when the method is executed + * at the given index. + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4297 + * + * @codeCoverageIgnore + */ + public static function at(int $index): InvokedAtIndexMatcher { - $this->position = 0; + $stack = debug_backtrace(); + while (!empty($stack)) { + $frame = array_pop($stack); + if (isset($frame['object']) && $frame['object'] instanceof self) { + $frame['object']->addWarning('The at() matcher has been deprecated. It will be removed in PHPUnit 10. Please refactor your test to not rely on the order in which methods are invoked.'); + break; + } + } + return new InvokedAtIndexMatcher($index); } - public function valid() : bool + public static function returnValue($value): ReturnStub { - return $this->position < count($this->directories); + return new ReturnStub($value); } - public function key() : int + public static function returnValueMap(array $valueMap): ReturnValueMapStub { - return $this->position; + return new ReturnValueMapStub($valueMap); } - public function current() : \PHPUnit\TextUI\XmlConfiguration\Directory + public static function returnArgument(int $argumentIndex): ReturnArgumentStub { - return $this->directories[$this->position]; + return new ReturnArgumentStub($argumentIndex); } - public function next() : void + public static function returnCallback($callback): ReturnCallbackStub { - $this->position++; + return new ReturnCallbackStub($callback); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class File -{ /** - * @var string + * Returns the current object. + * + * This method is useful when mocking a fluent interface. */ - private $path; - public function __construct(string $path) - { - $this->path = $path; - } - public function path() : string + public static function returnSelf(): ReturnSelfStub { - return $this->path; + return new ReturnSelfStub(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function count; -use Countable; -use IteratorAggregate; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class FileCollection implements Countable, IteratorAggregate -{ - /** - * @var File[] - */ - private $files; - /** - * @param File[] $files - */ - public static function fromArray(array $files) : self + public static function throwException(Throwable $exception): ExceptionStub { - return new self(...$files); + return new ExceptionStub($exception); } - private function __construct(\PHPUnit\TextUI\XmlConfiguration\File ...$files) + public static function onConsecutiveCalls(...$args): ConsecutiveCallsStub { - $this->files = $files; + return new ConsecutiveCallsStub($args); } /** - * @return File[] + * @param int|string $dataName + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - public function asArray() : array + public function __construct(?string $name = null, array $data = [], $dataName = '') { - return $this->files; + if ($name !== null) { + $this->setName($name); + } + $this->data = $data; + $this->dataName = $dataName; } - public function count() : int + /** + * This method is called before the first test of this test class is run. + */ + public static function setUpBeforeClass(): void { - return count($this->files); } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\FileCollectionIterator + /** + * This method is called after the last test of this test class is run. + */ + public static function tearDownAfterClass(): void { - return new \PHPUnit\TextUI\XmlConfiguration\FileCollectionIterator($this); } - public function isEmpty() : bool + /** + * This method is called before each test. + */ + protected function setUp(): void { - return $this->count() === 0; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function count; -use function iterator_count; -use Countable; -use Iterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class FileCollectionIterator implements Countable, Iterator -{ /** - * @var File[] + * Performs assertions shared by all tests of a test case. + * + * This method is called between setUp() and test. */ - private $files; + protected function assertPreConditions(): void + { + } /** - * @var int + * Performs assertions shared by all tests of a test case. + * + * This method is called between test and tearDown(). */ - private $position; - public function __construct(\PHPUnit\TextUI\XmlConfiguration\FileCollection $files) + protected function assertPostConditions(): void { - $this->files = $files->asArray(); } - public function count() : int + /** + * This method is called after each test. + */ + protected function tearDown(): void { - return iterator_count($this); } - public function rewind() : void + /** + * Returns a string representation of the test case. + * + * @throws Exception + * @throws InvalidArgumentException + */ + public function toString(): string { - $this->position = 0; + try { + $class = new ReflectionClass($this); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + $buffer = sprintf('%s::%s', $class->name, $this->getName(\false)); + return $buffer . $this->getDataSetAsString(); } - public function valid() : bool + public function count(): int { - return $this->position < count($this->files); + return 1; } - public function key() : int + public function getActualOutputForAssertion(): string { - return $this->position; + $this->outputRetrievedForAssertion = \true; + return $this->getActualOutput(); } - public function current() : \PHPUnit\TextUI\XmlConfiguration\File + public function expectOutputRegex(string $expectedRegex): void { - return $this->files[$this->position]; + $this->outputExpectedRegex = $expectedRegex; } - public function next() : void + public function expectOutputString(string $expectedString): void { - $this->position++; + $this->outputExpectedString = $expectedString; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function str_replace; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Generator -{ /** - * @var string + * @psalm-param class-string<\Throwable> $exception */ - private const TEMPLATE = <<<'EOT' - - - - - {tests_directory} - - - - - - {src_directory} - - - - -EOT; - public function generateDefaultConfiguration(string $phpunitVersion, string $bootstrapScript, string $testsDirectory, string $srcDirectory, string $cacheDirectory) : string + public function expectException(string $exception): void { - return str_replace(['{phpunit_version}', '{bootstrap_script}', '{tests_directory}', '{src_directory}', '{cache_directory}'], [$phpunitVersion, $bootstrapScript, $testsDirectory, $srcDirectory, $cacheDirectory], self::TEMPLATE); + // @codeCoverageIgnoreStart + switch ($exception) { + case Deprecated::class: + $this->addWarning('Expecting E_DEPRECATED and E_USER_DEPRECATED is deprecated and will no longer be possible in PHPUnit 10.'); + break; + case Error::class: + $this->addWarning('Expecting E_ERROR and E_USER_ERROR is deprecated and will no longer be possible in PHPUnit 10.'); + break; + case Notice::class: + $this->addWarning('Expecting E_STRICT, E_NOTICE, and E_USER_NOTICE is deprecated and will no longer be possible in PHPUnit 10.'); + break; + case WarningError::class: + $this->addWarning('Expecting E_WARNING and E_USER_WARNING is deprecated and will no longer be possible in PHPUnit 10.'); + break; + } + // @codeCoverageIgnoreEnd + $this->expectedException = $exception; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Group -{ /** - * @var string + * @param int|string $code */ - private $name; - public function __construct(string $name) + public function expectExceptionCode($code): void { - $this->name = $name; + $this->expectedExceptionCode = $code; } - public function name() : string + public function expectExceptionMessage(string $message): void { - return $this->name; + $this->expectedExceptionMessage = $message; + } + public function expectExceptionMessageMatches(string $regularExpression): void + { + $this->expectedExceptionMessageRegExp = $regularExpression; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use IteratorAggregate; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class GroupCollection implements IteratorAggregate -{ - /** - * @var Group[] - */ - private $groups; /** - * @param Group[] $groups + * Sets up an expectation for an exception to be raised by the code under test. + * Information for expected exception class, expected exception message, and + * expected exception code are retrieved from a given Exception object. */ - public static function fromArray(array $groups) : self + public function expectExceptionObject(\Exception $exception): void { - return new self(...$groups); + $this->expectException(get_class($exception)); + $this->expectExceptionMessage($exception->getMessage()); + $this->expectExceptionCode($exception->getCode()); } - private function __construct(\PHPUnit\TextUI\XmlConfiguration\Group ...$groups) + public function expectNotToPerformAssertions(): void { - $this->groups = $groups; + $this->doesNotPerformAssertions = \true; } /** - * @return Group[] + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - public function asArray() : array + public function expectDeprecation(): void { - return $this->groups; + $this->addWarning('Expecting E_DEPRECATED and E_USER_DEPRECATED is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectedException = Deprecated::class; } /** - * @return string[] + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - public function asArrayOfStrings() : array - { - $result = []; - foreach ($this->groups as $group) { - $result[] = $group->name(); - } - return $result; - } - public function isEmpty() : bool + public function expectDeprecationMessage(string $message): void { - return empty($this->groups); - } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\GroupCollectionIterator - { - return new \PHPUnit\TextUI\XmlConfiguration\GroupCollectionIterator($this); + $this->addWarning('Expecting E_DEPRECATED and E_USER_DEPRECATED is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessage($message); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function count; -use function iterator_count; -use Countable; -use Iterator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class GroupCollectionIterator implements Countable, Iterator -{ /** - * @var Group[] + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - private $groups; + public function expectDeprecationMessageMatches(string $regularExpression): void + { + $this->addWarning('Expecting E_DEPRECATED and E_USER_DEPRECATED is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessageMatches($regularExpression); + } /** - * @var int + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - private $position; - public function __construct(\PHPUnit\TextUI\XmlConfiguration\GroupCollection $groups) + public function expectNotice(): void { - $this->groups = $groups->asArray(); + $this->addWarning('Expecting E_STRICT, E_NOTICE, and E_USER_NOTICE is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectedException = Notice::class; } - public function count() : int + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectNoticeMessage(string $message): void { - return iterator_count($this); + $this->addWarning('Expecting E_STRICT, E_NOTICE, and E_USER_NOTICE is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessage($message); } - public function rewind() : void + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectNoticeMessageMatches(string $regularExpression): void { - $this->position = 0; + $this->addWarning('Expecting E_STRICT, E_NOTICE, and E_USER_NOTICE is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessageMatches($regularExpression); } - public function valid() : bool + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectWarning(): void { - return $this->position < count($this->groups); + $this->addWarning('Expecting E_WARNING and E_USER_WARNING is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectedException = WarningError::class; } - public function key() : int + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectWarningMessage(string $message): void { - return $this->position; + $this->addWarning('Expecting E_WARNING and E_USER_WARNING is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessage($message); } - public function current() : \PHPUnit\TextUI\XmlConfiguration\Group + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectWarningMessageMatches(string $regularExpression): void { - return $this->groups[$this->position]; + $this->addWarning('Expecting E_WARNING and E_USER_WARNING is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessageMatches($regularExpression); } - public function next() : void + /** + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 + */ + public function expectError(): void { - $this->position++; + $this->addWarning('Expecting E_ERROR and E_USER_ERROR is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectedException = Error::class; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Groups -{ /** - * @var GroupCollection + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - private $include; + public function expectErrorMessage(string $message): void + { + $this->addWarning('Expecting E_ERROR and E_USER_ERROR is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessage($message); + } /** - * @var GroupCollection + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/5062 */ - private $exclude; - public function __construct(\PHPUnit\TextUI\XmlConfiguration\GroupCollection $include, \PHPUnit\TextUI\XmlConfiguration\GroupCollection $exclude) + public function expectErrorMessageMatches(string $regularExpression): void { - $this->include = $include; - $this->exclude = $exclude; + $this->addWarning('Expecting E_ERROR and E_USER_ERROR is deprecated and will no longer be possible in PHPUnit 10.'); + $this->expectExceptionMessageMatches($regularExpression); } - public function hasInclude() : bool + public function getStatus(): int { - return !$this->include->isEmpty(); + return $this->status; } - public function include() : \PHPUnit\TextUI\XmlConfiguration\GroupCollection + public function markAsRisky(): void { - return $this->include; + $this->status = BaseTestRunner::STATUS_RISKY; } - public function hasExclude() : bool + public function getStatusMessage(): string { - return !$this->exclude->isEmpty(); + return $this->statusMessage; } - public function exclude() : \PHPUnit\TextUI\XmlConfiguration\GroupCollection + public function hasFailed(): bool { - return $this->exclude; + $status = $this->getStatus(); + return $status === BaseTestRunner::STATUS_FAILURE || $status === BaseTestRunner::STATUS_ERROR; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use const DIRECTORY_SEPARATOR; -use const PHP_VERSION; -use function assert; -use function defined; -use function dirname; -use function explode; -use function is_file; -use function is_numeric; -use function preg_match; -use function stream_resolve_include_path; -use function strlen; -use function strpos; -use function strtolower; -use function substr; -use function trim; -use DOMDocument; -use DOMElement; -use DOMNodeList; -use DOMXPath; -use PHPUnit\Runner\TestSuiteSorter; -use PHPUnit\Runner\Version; -use PHPUnit\TextUI\DefaultResultPrinter; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\CodeCoverage; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\Directory as FilterDirectory; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Filter\DirectoryCollection as FilterDirectoryCollection; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Clover; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Cobertura; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Crap4j; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Html as CodeCoverageHtml; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Php as CodeCoveragePhp; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Text as CodeCoverageText; -use PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Xml as CodeCoverageXml; -use PHPUnit\TextUI\XmlConfiguration\Logging\Junit; -use PHPUnit\TextUI\XmlConfiguration\Logging\Logging; -use PHPUnit\TextUI\XmlConfiguration\Logging\TeamCity; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Html as TestDoxHtml; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Text as TestDoxText; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Xml as TestDoxXml; -use PHPUnit\TextUI\XmlConfiguration\Logging\Text; -use PHPUnit\TextUI\XmlConfiguration\TestSuite as TestSuiteConfiguration; -use PHPUnit\Util\TestDox\CliTestDoxPrinter; -use PHPUnit\Util\VersionComparisonOperator; -use PHPUnit\Util\Xml; -use PHPUnit\Util\Xml\Exception as XmlException; -use PHPUnit\Util\Xml\Loader as XmlLoader; -use PHPUnit\Util\Xml\SchemaFinder; -use PHPUnit\Util\Xml\Validator; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Loader -{ /** - * @throws Exception + * Runs the test case and collects the results in a TestResult object. + * If no TestResult object is passed a new one will be created. + * + * @throws \SebastianBergmann\CodeCoverage\InvalidArgumentException + * @throws CodeCoverageException + * @throws InvalidArgumentException + * @throws UnintentionallyCoveredCodeException + * @throws UtilException */ - public function load(string $filename) : \PHPUnit\TextUI\XmlConfiguration\Configuration - { - try { - $document = (new XmlLoader())->loadFile($filename, \false, \true, \true); - } catch (XmlException $e) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - $xpath = new DOMXPath($document); - try { - $xsdFilename = (new SchemaFinder())->find(Version::series()); - } catch (XmlException $e) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - return new \PHPUnit\TextUI\XmlConfiguration\Configuration($filename, (new Validator())->validate($document, $xsdFilename), $this->extensions($filename, $xpath), $this->codeCoverage($filename, $xpath, $document), $this->groups($xpath), $this->testdoxGroups($xpath), $this->listeners($filename, $xpath), $this->logging($filename, $xpath), $this->php($filename, $xpath), $this->phpunit($filename, $document), $this->testSuite($filename, $xpath)); - } - public function logging(string $filename, DOMXPath $xpath) : Logging + public function run(?\PHPUnit\Framework\TestResult $result = null): \PHPUnit\Framework\TestResult { - if ($xpath->query('logging/log')->length !== 0) { - return $this->legacyLogging($filename, $xpath); - } - $junit = null; - $element = $this->element($xpath, 'logging/junit'); - if ($element) { - $junit = new Junit(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $text = null; - $element = $this->element($xpath, 'logging/text'); - if ($element) { - $text = new Text(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $teamCity = null; - $element = $this->element($xpath, 'logging/teamcity'); - if ($element) { - $teamCity = new TeamCity(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $testDoxHtml = null; - $element = $this->element($xpath, 'logging/testdoxHtml'); - if ($element) { - $testDoxHtml = new TestDoxHtml(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + if ($result === null) { + $result = $this->createResult(); } - $testDoxText = null; - $element = $this->element($xpath, 'logging/testdoxText'); - if ($element) { - $testDoxText = new TestDoxText(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + if (!$this instanceof \PHPUnit\Framework\ErrorTestCase && !$this instanceof \PHPUnit\Framework\WarningTestCase) { + $this->setTestResultObject($result); } - $testDoxXml = null; - $element = $this->element($xpath, 'logging/testdoxXml'); - if ($element) { - $testDoxXml = new TestDoxXml(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); + if (!$this instanceof \PHPUnit\Framework\ErrorTestCase && !$this instanceof \PHPUnit\Framework\WarningTestCase && !$this instanceof \PHPUnit\Framework\SkippedTestCase && !$this->handleDependencies()) { + return $result; } - return new Logging($junit, $text, $teamCity, $testDoxHtml, $testDoxText, $testDoxXml); - } - public function legacyLogging(string $filename, DOMXPath $xpath) : Logging - { - $junit = null; - $teamCity = null; - $testDoxHtml = null; - $testDoxText = null; - $testDoxXml = null; - $text = null; - foreach ($xpath->query('logging/log') as $log) { - assert($log instanceof DOMElement); - $type = (string) $log->getAttribute('type'); - $target = (string) $log->getAttribute('target'); - if (!$target) { - continue; + if ($this->runInSeparateProcess()) { + $runEntireClass = $this->runClassInSeparateProcess && !$this->runTestInSeparateProcess; + try { + $class = new ReflectionClass($this); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } - $target = $this->toAbsolutePath($filename, $target); - switch ($type) { - case 'plain': - $text = new Text(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'junit': - $junit = new Junit(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'teamcity': - $teamCity = new TeamCity(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'testdox-html': - $testDoxHtml = new TestDoxHtml(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'testdox-text': - $testDoxText = new TestDoxText(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'testdox-xml': - $testDoxXml = new TestDoxXml(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; + // @codeCoverageIgnoreEnd + if ($runEntireClass) { + $template = new Template(__DIR__ . '/../Util/PHP/Template/TestCaseClass.tpl'); + } else { + $template = new Template(__DIR__ . '/../Util/PHP/Template/TestCaseMethod.tpl'); + } + if ($this->preserveGlobalState) { + $constants = GlobalState::getConstantsAsString(); + $globals = GlobalState::getGlobalsAsString(); + $includedFiles = GlobalState::getIncludedFilesAsString(); + $iniSettings = GlobalState::getIniSettingsAsString(); + } else { + $constants = ''; + if (!empty($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { + $globals = '$GLOBALS[\'__PHPUNIT_BOOTSTRAP\'] = ' . var_export($GLOBALS['__PHPUNIT_BOOTSTRAP'], \true) . ";\n"; + } else { + $globals = ''; + } + $includedFiles = ''; + $iniSettings = ''; + } + $coverage = $result->getCollectCodeCoverageInformation() ? 'true' : 'false'; + $isStrictAboutTestsThatDoNotTestAnything = $result->isStrictAboutTestsThatDoNotTestAnything() ? 'true' : 'false'; + $isStrictAboutOutputDuringTests = $result->isStrictAboutOutputDuringTests() ? 'true' : 'false'; + $enforcesTimeLimit = $result->enforcesTimeLimit() ? 'true' : 'false'; + $isStrictAboutTodoAnnotatedTests = $result->isStrictAboutTodoAnnotatedTests() ? 'true' : 'false'; + $isStrictAboutResourceUsageDuringSmallTests = $result->isStrictAboutResourceUsageDuringSmallTests() ? 'true' : 'false'; + if (defined('PHPUNIT_COMPOSER_INSTALL')) { + $composerAutoload = var_export(PHPUNIT_COMPOSER_INSTALL, \true); + } else { + $composerAutoload = '\'\''; + } + if (defined('__PHPUNIT_PHAR__')) { + $phar = var_export(__PHPUNIT_PHAR__, \true); + } else { + $phar = '\'\''; + } + $codeCoverage = $result->getCodeCoverage(); + $codeCoverageFilter = null; + $cachesStaticAnalysis = 'false'; + $codeCoverageCacheDirectory = null; + $driverMethod = 'forLineCoverage'; + if ($codeCoverage) { + $codeCoverageFilter = $codeCoverage->filter(); + if ($codeCoverage->collectsBranchAndPathCoverage()) { + $driverMethod = 'forLineAndPathCoverage'; + } + if ($codeCoverage->cachesStaticAnalysis()) { + $cachesStaticAnalysis = 'true'; + $codeCoverageCacheDirectory = $codeCoverage->cacheDirectory(); + } + } + $data = var_export(serialize($this->data), \true); + $dataName = var_export($this->dataName, \true); + $dependencyInput = var_export(serialize($this->dependencyInput), \true); + $includePath = var_export(get_include_path(), \true); + $codeCoverageFilter = var_export(serialize($codeCoverageFilter), \true); + $codeCoverageCacheDirectory = var_export(serialize($codeCoverageCacheDirectory), \true); + // must do these fixes because TestCaseMethod.tpl has unserialize('{data}') in it, and we can't break BC + // the lines above used to use addcslashes() rather than var_export(), which breaks null byte escape sequences + $data = "'." . $data . ".'"; + $dataName = "'.(" . $dataName . ").'"; + $dependencyInput = "'." . $dependencyInput . ".'"; + $includePath = "'." . $includePath . ".'"; + $codeCoverageFilter = "'." . $codeCoverageFilter . ".'"; + $codeCoverageCacheDirectory = "'." . $codeCoverageCacheDirectory . ".'"; + $configurationFilePath = $GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] ?? ''; + $processResultFile = tempnam(sys_get_temp_dir(), 'phpunit_'); + $var = ['composerAutoload' => $composerAutoload, 'phar' => $phar, 'filename' => $class->getFileName(), 'className' => $class->getName(), 'collectCodeCoverageInformation' => $coverage, 'cachesStaticAnalysis' => $cachesStaticAnalysis, 'codeCoverageCacheDirectory' => $codeCoverageCacheDirectory, 'driverMethod' => $driverMethod, 'data' => $data, 'dataName' => $dataName, 'dependencyInput' => $dependencyInput, 'constants' => $constants, 'globals' => $globals, 'include_path' => $includePath, 'included_files' => $includedFiles, 'iniSettings' => $iniSettings, 'isStrictAboutTestsThatDoNotTestAnything' => $isStrictAboutTestsThatDoNotTestAnything, 'isStrictAboutOutputDuringTests' => $isStrictAboutOutputDuringTests, 'enforcesTimeLimit' => $enforcesTimeLimit, 'isStrictAboutTodoAnnotatedTests' => $isStrictAboutTodoAnnotatedTests, 'isStrictAboutResourceUsageDuringSmallTests' => $isStrictAboutResourceUsageDuringSmallTests, 'codeCoverageFilter' => $codeCoverageFilter, 'configurationFilePath' => $configurationFilePath, 'name' => $this->getName(\false), 'processResultFile' => $processResultFile]; + if (!$runEntireClass) { + $var['methodName'] = $this->name; } + $template->setVar($var); + $php = AbstractPhpProcess::factory(); + $php->runTestJob($template->render(), $this, $result, $processResultFile); + } else { + $result->run($this); } - return new Logging($junit, $text, $teamCity, $testDoxHtml, $testDoxText, $testDoxXml); + $this->result = null; + return $result; } - private function extensions(string $filename, DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection + /** + * Returns a builder object to create mock objects using a fluent interface. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $className + * + * @psalm-return MockBuilder + */ + public function getMockBuilder(string $className): MockBuilder { - $extensions = []; - foreach ($xpath->query('extensions/extension') as $extension) { - assert($extension instanceof DOMElement); - $extensions[] = $this->getElementConfigurationParameters($filename, $extension); - } - return \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection::fromArray($extensions); + $this->recordDoubledType($className); + return new MockBuilder($this, $className); } - private function getElementConfigurationParameters(string $filename, DOMElement $element) : \PHPUnit\TextUI\XmlConfiguration\Extension + public function registerComparator(Comparator $comparator): void { - /** @psalm-var class-string $class */ - $class = (string) $element->getAttribute('class'); - $file = ''; - $arguments = $this->getConfigurationArguments($filename, $element->childNodes); - if ($element->getAttribute('file')) { - $file = $this->toAbsolutePath($filename, (string) $element->getAttribute('file'), \true); - } - return new \PHPUnit\TextUI\XmlConfiguration\Extension($class, $file, $arguments); + ComparatorFactory::getInstance()->register($comparator); + $this->customComparators[] = $comparator; } - private function toAbsolutePath(string $filename, string $path, bool $useIncludePath = \false) : string + /** + * @return string[] + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function doubledTypes(): array { - $path = trim($path); - if (strpos($path, '/') === 0) { - return $path; - } - // Matches the following on Windows: - // - \\NetworkComputer\Path - // - \\.\D: - // - \\.\c: - // - C:\Windows - // - C:\windows - // - C:/windows - // - c:/windows - if (defined('PHP_WINDOWS_VERSION_BUILD') && ($path[0] === '\\' || strlen($path) >= 3 && preg_match('#^[A-Z]\\:[/\\\\]#i', substr($path, 0, 3)))) { - return $path; - } - if (strpos($path, '://') !== \false) { - return $path; - } - $file = dirname($filename) . DIRECTORY_SEPARATOR . $path; - if ($useIncludePath && !is_file($file)) { - $includePathFile = stream_resolve_include_path($path); - if ($includePathFile) { - $file = $includePathFile; - } - } - return $file; + return array_unique($this->doubledTypes); } - private function getConfigurationArguments(string $filename, DOMNodeList $nodes) : array + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getGroups(): array { - $arguments = []; - if ($nodes->length === 0) { - return $arguments; - } - foreach ($nodes as $node) { - if (!$node instanceof DOMElement) { - continue; - } - if ($node->tagName !== 'arguments') { - continue; - } - foreach ($node->childNodes as $argument) { - if (!$argument instanceof DOMElement) { - continue; - } - if ($argument->tagName === 'file' || $argument->tagName === 'directory') { - $arguments[] = $this->toAbsolutePath($filename, (string) $argument->textContent); - } else { - $arguments[] = Xml::xmlToVariable($argument); - } - } - } - return $arguments; + return $this->groups; } - private function codeCoverage(string $filename, DOMXPath $xpath, DOMDocument $document) : CodeCoverage + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setGroups(array $groups): void { - if ($xpath->query('filter/whitelist')->length !== 0) { - return $this->legacyCodeCoverage($filename, $xpath, $document); - } - $cacheDirectory = null; - $pathCoverage = \false; - $includeUncoveredFiles = \true; - $processUncoveredFiles = \false; - $ignoreDeprecatedCodeUnits = \false; - $disableCodeCoverageIgnore = \false; - $element = $this->element($xpath, 'coverage'); - if ($element) { - $cacheDirectory = $this->getStringAttribute($element, 'cacheDirectory'); - if ($cacheDirectory !== null) { - $cacheDirectory = new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, $cacheDirectory)); - } - $pathCoverage = $this->getBooleanAttribute($element, 'pathCoverage', \false); - $includeUncoveredFiles = $this->getBooleanAttribute($element, 'includeUncoveredFiles', \true); - $processUncoveredFiles = $this->getBooleanAttribute($element, 'processUncoveredFiles', \false); - $ignoreDeprecatedCodeUnits = $this->getBooleanAttribute($element, 'ignoreDeprecatedCodeUnits', \false); - $disableCodeCoverageIgnore = $this->getBooleanAttribute($element, 'disableCodeCoverageIgnore', \false); - } - $clover = null; - $element = $this->element($xpath, 'coverage/report/clover'); - if ($element) { - $clover = new Clover(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $cobertura = null; - $element = $this->element($xpath, 'coverage/report/cobertura'); - if ($element) { - $cobertura = new Cobertura(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $crap4j = null; - $element = $this->element($xpath, 'coverage/report/crap4j'); - if ($element) { - $crap4j = new Crap4j(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile'))), $this->getIntegerAttribute($element, 'threshold', 30)); - } - $html = null; - $element = $this->element($xpath, 'coverage/report/html'); - if ($element) { - $html = new CodeCoverageHtml(new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputDirectory'))), $this->getIntegerAttribute($element, 'lowUpperBound', 50), $this->getIntegerAttribute($element, 'highLowerBound', 90)); - } - $php = null; - $element = $this->element($xpath, 'coverage/report/php'); - if ($element) { - $php = new CodeCoveragePhp(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile')))); - } - $text = null; - $element = $this->element($xpath, 'coverage/report/text'); - if ($element) { - $text = new CodeCoverageText(new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputFile'))), $this->getBooleanAttribute($element, 'showUncoveredFiles', \false), $this->getBooleanAttribute($element, 'showOnlySummary', \false)); - } - $xml = null; - $element = $this->element($xpath, 'coverage/report/xml'); - if ($element) { - $xml = new CodeCoverageXml(new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, (string) $this->getStringAttribute($element, 'outputDirectory')))); - } - return new CodeCoverage($cacheDirectory, $this->readFilterDirectories($filename, $xpath, 'coverage/include/directory'), $this->readFilterFiles($filename, $xpath, 'coverage/include/file'), $this->readFilterDirectories($filename, $xpath, 'coverage/exclude/directory'), $this->readFilterFiles($filename, $xpath, 'coverage/exclude/file'), $pathCoverage, $includeUncoveredFiles, $processUncoveredFiles, $ignoreDeprecatedCodeUnits, $disableCodeCoverageIgnore, $clover, $cobertura, $crap4j, $html, $php, $text, $xml); + $this->groups = $groups; } /** - * @deprecated + * @throws InvalidArgumentException + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private function legacyCodeCoverage(string $filename, DOMXPath $xpath, DOMDocument $document) : CodeCoverage + public function getName(bool $withDataSet = \true): string { - $ignoreDeprecatedCodeUnits = $this->getBooleanAttribute($document->documentElement, 'ignoreDeprecatedCodeUnitsFromCodeCoverage', \false); - $disableCodeCoverageIgnore = $this->getBooleanAttribute($document->documentElement, 'disableCodeCoverageIgnore', \false); - $includeUncoveredFiles = \true; - $processUncoveredFiles = \false; - $element = $this->element($xpath, 'filter/whitelist'); - if ($element) { - if ($element->hasAttribute('addUncoveredFilesFromWhitelist')) { - $includeUncoveredFiles = (bool) $this->getBoolean((string) $element->getAttribute('addUncoveredFilesFromWhitelist'), \true); - } - if ($element->hasAttribute('processUncoveredFilesFromWhitelist')) { - $processUncoveredFiles = (bool) $this->getBoolean((string) $element->getAttribute('processUncoveredFilesFromWhitelist'), \false); - } - } - $clover = null; - $cobertura = null; - $crap4j = null; - $html = null; - $php = null; - $text = null; - $xml = null; - foreach ($xpath->query('logging/log') as $log) { - assert($log instanceof DOMElement); - $type = (string) $log->getAttribute('type'); - $target = (string) $log->getAttribute('target'); - if (!$target) { - continue; - } - $target = $this->toAbsolutePath($filename, $target); - switch ($type) { - case 'coverage-clover': - $clover = new Clover(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'coverage-cobertura': - $cobertura = new Cobertura(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'coverage-crap4j': - $crap4j = new Crap4j(new \PHPUnit\TextUI\XmlConfiguration\File($target), $this->getIntegerAttribute($log, 'threshold', 30)); - break; - case 'coverage-html': - $html = new CodeCoverageHtml(new \PHPUnit\TextUI\XmlConfiguration\Directory($target), $this->getIntegerAttribute($log, 'lowUpperBound', 50), $this->getIntegerAttribute($log, 'highLowerBound', 90)); - break; - case 'coverage-php': - $php = new CodeCoveragePhp(new \PHPUnit\TextUI\XmlConfiguration\File($target)); - break; - case 'coverage-text': - $text = new CodeCoverageText(new \PHPUnit\TextUI\XmlConfiguration\File($target), $this->getBooleanAttribute($log, 'showUncoveredFiles', \false), $this->getBooleanAttribute($log, 'showOnlySummary', \false)); - break; - case 'coverage-xml': - $xml = new CodeCoverageXml(new \PHPUnit\TextUI\XmlConfiguration\Directory($target)); - break; - } + if ($withDataSet) { + return $this->name . $this->getDataSetAsString(\false); } - return new CodeCoverage(null, $this->readFilterDirectories($filename, $xpath, 'filter/whitelist/directory'), $this->readFilterFiles($filename, $xpath, 'filter/whitelist/file'), $this->readFilterDirectories($filename, $xpath, 'filter/whitelist/exclude/directory'), $this->readFilterFiles($filename, $xpath, 'filter/whitelist/exclude/file'), \false, $includeUncoveredFiles, $processUncoveredFiles, $ignoreDeprecatedCodeUnits, $disableCodeCoverageIgnore, $clover, $cobertura, $crap4j, $html, $php, $text, $xml); + return $this->name; } /** - * If $value is 'false' or 'true', this returns the value that $value represents. - * Otherwise, returns $default, which may be a string in rare cases. + * Returns the size of the test. * - * @see \PHPUnit\TextUI\XmlConfigurationTest::testPHPConfigurationIsReadCorrectly + * @throws InvalidArgumentException * - * @param bool|string $default + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getSize(): int + { + return TestUtil::getSize(static::class, $this->getName(\false)); + } + /** + * @throws InvalidArgumentException * - * @return bool|string + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private function getBoolean(string $value, $default) + public function hasSize(): bool { - if (strtolower($value) === 'false') { - return \false; - } - if (strtolower($value) === 'true') { - return \true; - } - return $default; + return $this->getSize() !== TestUtil::UNKNOWN; } - private function readFilterDirectories(string $filename, DOMXPath $xpath, string $query) : FilterDirectoryCollection + /** + * @throws InvalidArgumentException + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function isSmall(): bool { - $directories = []; - foreach ($xpath->query($query) as $directoryNode) { - assert($directoryNode instanceof DOMElement); - $directoryPath = (string) $directoryNode->textContent; - if (!$directoryPath) { - continue; - } - $directories[] = new FilterDirectory($this->toAbsolutePath($filename, $directoryPath), $directoryNode->hasAttribute('prefix') ? (string) $directoryNode->getAttribute('prefix') : '', $directoryNode->hasAttribute('suffix') ? (string) $directoryNode->getAttribute('suffix') : '.php', $directoryNode->hasAttribute('group') ? (string) $directoryNode->getAttribute('group') : 'DEFAULT'); - } - return FilterDirectoryCollection::fromArray($directories); + return $this->getSize() === TestUtil::SMALL; } - private function readFilterFiles(string $filename, DOMXPath $xpath, string $query) : \PHPUnit\TextUI\XmlConfiguration\FileCollection + /** + * @throws InvalidArgumentException + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function isMedium(): bool { - $files = []; - foreach ($xpath->query($query) as $file) { - $filePath = (string) $file->textContent; - if ($filePath) { - $files[] = new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, $filePath)); - } - } - return \PHPUnit\TextUI\XmlConfiguration\FileCollection::fromArray($files); + return $this->getSize() === TestUtil::MEDIUM; } - private function groups(DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\Groups + /** + * @throws InvalidArgumentException + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function isLarge(): bool { - return $this->parseGroupConfiguration($xpath, 'groups'); + return $this->getSize() === TestUtil::LARGE; } - private function testdoxGroups(DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\Groups + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getActualOutput(): string { - return $this->parseGroupConfiguration($xpath, 'testdoxGroups'); + if (!$this->outputBufferingActive) { + return $this->output; + } + return (string) ob_get_contents(); } - private function parseGroupConfiguration(DOMXPath $xpath, string $root) : \PHPUnit\TextUI\XmlConfiguration\Groups + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function hasOutput(): bool { - $include = []; - $exclude = []; - foreach ($xpath->query($root . '/include/group') as $group) { - $include[] = new \PHPUnit\TextUI\XmlConfiguration\Group((string) $group->textContent); + if ($this->output === '') { + return \false; } - foreach ($xpath->query($root . '/exclude/group') as $group) { - $exclude[] = new \PHPUnit\TextUI\XmlConfiguration\Group((string) $group->textContent); + if ($this->hasExpectationOnOutput()) { + return \false; } - return new \PHPUnit\TextUI\XmlConfiguration\Groups(\PHPUnit\TextUI\XmlConfiguration\GroupCollection::fromArray($include), \PHPUnit\TextUI\XmlConfiguration\GroupCollection::fromArray($exclude)); + return \true; } - private function listeners(string $filename, DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function doesNotPerformAssertions(): bool { - $listeners = []; - foreach ($xpath->query('listeners/listener') as $listener) { - assert($listener instanceof DOMElement); - $listeners[] = $this->getElementConfigurationParameters($filename, $listener); - } - return \PHPUnit\TextUI\XmlConfiguration\ExtensionCollection::fromArray($listeners); + return $this->doesNotPerformAssertions; } - private function getBooleanAttribute(DOMElement $element, string $attribute, bool $default) : bool + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function hasExpectationOnOutput(): bool { - if (!$element->hasAttribute($attribute)) { - return $default; - } - return (bool) $this->getBoolean((string) $element->getAttribute($attribute), \false); + return is_string($this->outputExpectedString) || is_string($this->outputExpectedRegex) || $this->outputRetrievedForAssertion; } - private function getIntegerAttribute(DOMElement $element, string $attribute, int $default) : int + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getExpectedException(): ?string { - if (!$element->hasAttribute($attribute)) { - return $default; - } - return $this->getInteger((string) $element->getAttribute($attribute), $default); + return $this->expectedException; } - private function getStringAttribute(DOMElement $element, string $attribute) : ?string + /** + * @return null|int|string + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getExpectedExceptionCode() { - if (!$element->hasAttribute($attribute)) { - return null; - } - return (string) $element->getAttribute($attribute); + return $this->expectedExceptionCode; } - private function getInteger(string $value, int $default) : int + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getExpectedExceptionMessage(): ?string { - if (is_numeric($value)) { - return (int) $value; - } - return $default; + return $this->expectedExceptionMessage; } - private function php(string $filename, DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\Php + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getExpectedExceptionMessageRegExp(): ?string { - $includePaths = []; - foreach ($xpath->query('php/includePath') as $includePath) { - $path = (string) $includePath->textContent; - if ($path) { - $includePaths[] = new \PHPUnit\TextUI\XmlConfiguration\Directory($this->toAbsolutePath($filename, $path)); - } - } - $iniSettings = []; - foreach ($xpath->query('php/ini') as $ini) { - assert($ini instanceof DOMElement); - $iniSettings[] = new \PHPUnit\TextUI\XmlConfiguration\IniSetting((string) $ini->getAttribute('name'), (string) $ini->getAttribute('value')); - } - $constants = []; - foreach ($xpath->query('php/const') as $const) { - assert($const instanceof DOMElement); - $value = (string) $const->getAttribute('value'); - $constants[] = new \PHPUnit\TextUI\XmlConfiguration\Constant((string) $const->getAttribute('name'), $this->getBoolean($value, $value)); - } - $variables = ['var' => [], 'env' => [], 'post' => [], 'get' => [], 'cookie' => [], 'server' => [], 'files' => [], 'request' => []]; - foreach (['var', 'env', 'post', 'get', 'cookie', 'server', 'files', 'request'] as $array) { - foreach ($xpath->query('php/' . $array) as $var) { - assert($var instanceof DOMElement); - $name = (string) $var->getAttribute('name'); - $value = (string) $var->getAttribute('value'); - $force = \false; - $verbatim = \false; - if ($var->hasAttribute('force')) { - $force = (bool) $this->getBoolean($var->getAttribute('force'), \false); - } - if ($var->hasAttribute('verbatim')) { - $verbatim = $this->getBoolean($var->getAttribute('verbatim'), \false); - } - if (!$verbatim) { - $value = $this->getBoolean($value, $value); - } - $variables[$array][] = new \PHPUnit\TextUI\XmlConfiguration\Variable($name, $value, $force); - } - } - return new \PHPUnit\TextUI\XmlConfiguration\Php(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection::fromArray($includePaths), \PHPUnit\TextUI\XmlConfiguration\IniSettingCollection::fromArray($iniSettings), \PHPUnit\TextUI\XmlConfiguration\ConstantCollection::fromArray($constants), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['var']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['env']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['post']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['get']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['cookie']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['server']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['files']), \PHPUnit\TextUI\XmlConfiguration\VariableCollection::fromArray($variables['request'])); + return $this->expectedExceptionMessageRegExp; } - private function phpunit(string $filename, DOMDocument $document) : \PHPUnit\TextUI\XmlConfiguration\PHPUnit + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setRegisterMockObjectsFromTestArgumentsRecursively(bool $flag): void { - $executionOrder = TestSuiteSorter::ORDER_DEFAULT; - $defectsFirst = \false; - $resolveDependencies = $this->getBooleanAttribute($document->documentElement, 'resolveDependencies', \true); - if ($document->documentElement->hasAttribute('executionOrder')) { - foreach (explode(',', $document->documentElement->getAttribute('executionOrder')) as $order) { - switch ($order) { - case 'default': - $executionOrder = TestSuiteSorter::ORDER_DEFAULT; - $defectsFirst = \false; - $resolveDependencies = \true; - break; - case 'depends': - $resolveDependencies = \true; - break; - case 'no-depends': - $resolveDependencies = \false; - break; - case 'defects': - $defectsFirst = \true; - break; - case 'duration': - $executionOrder = TestSuiteSorter::ORDER_DURATION; - break; - case 'random': - $executionOrder = TestSuiteSorter::ORDER_RANDOMIZED; - break; - case 'reverse': - $executionOrder = TestSuiteSorter::ORDER_REVERSED; - break; - case 'size': - $executionOrder = TestSuiteSorter::ORDER_SIZE; - break; + $this->registerMockObjectsFromTestArgumentsRecursively = $flag; + } + /** + * @throws Throwable + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function runBare(): void + { + $this->numAssertions = 0; + $this->snapshotGlobalState(); + $this->startOutputBuffering(); + clearstatcache(); + $currentWorkingDirectory = getcwd(); + $hookMethods = TestUtil::getHookMethods(static::class); + $hasMetRequirements = \false; + try { + $this->checkRequirements(); + $hasMetRequirements = \true; + if ($this->inIsolation) { + foreach ($hookMethods['beforeClass'] as $method) { + $this->{$method}(); } } + $this->setDoesNotPerformAssertionsFromAnnotation(); + foreach ($hookMethods['before'] as $method) { + $this->{$method}(); + } + foreach ($hookMethods['preCondition'] as $method) { + $this->{$method}(); + } + $this->testResult = $this->runTest(); + $this->verifyMockObjects(); + foreach ($hookMethods['postCondition'] as $method) { + $this->{$method}(); + } + if (!empty($this->warnings)) { + throw new \PHPUnit\Framework\Warning(implode("\n", array_unique($this->warnings))); + } + $this->status = BaseTestRunner::STATUS_PASSED; + } catch (\PHPUnit\Framework\IncompleteTest $e) { + $this->status = BaseTestRunner::STATUS_INCOMPLETE; + $this->statusMessage = $e->getMessage(); + } catch (\PHPUnit\Framework\SkippedTest $e) { + $this->status = BaseTestRunner::STATUS_SKIPPED; + $this->statusMessage = $e->getMessage(); + } catch (\PHPUnit\Framework\Warning $e) { + $this->status = BaseTestRunner::STATUS_WARNING; + $this->statusMessage = $e->getMessage(); + } catch (\PHPUnit\Framework\AssertionFailedError $e) { + $this->status = BaseTestRunner::STATUS_FAILURE; + $this->statusMessage = $e->getMessage(); + } catch (PredictionException $e) { + $this->status = BaseTestRunner::STATUS_FAILURE; + $this->statusMessage = $e->getMessage(); + } catch (Throwable $_e) { + $e = $_e; + $this->status = BaseTestRunner::STATUS_ERROR; + $this->statusMessage = $_e->getMessage(); } - $printerClass = $this->getStringAttribute($document->documentElement, 'printerClass'); - $testdox = $this->getBooleanAttribute($document->documentElement, 'testdox', \false); - $conflictBetweenPrinterClassAndTestdox = \false; - if ($testdox) { - if ($printerClass !== null) { - $conflictBetweenPrinterClassAndTestdox = \true; + $this->mockObjects = []; + $this->prophet = null; + // Tear down the fixture. An exception raised in tearDown() will be + // caught and passed on when no exception was raised before. + try { + if ($hasMetRequirements) { + foreach ($hookMethods['after'] as $method) { + $this->{$method}(); + } + if ($this->inIsolation) { + foreach ($hookMethods['afterClass'] as $method) { + $this->{$method}(); + } + } } - $printerClass = CliTestDoxPrinter::class; + } catch (Throwable $_e) { + $e = $e ?? $_e; } - $cacheResultFile = $this->getStringAttribute($document->documentElement, 'cacheResultFile'); - if ($cacheResultFile !== null) { - $cacheResultFile = $this->toAbsolutePath($filename, $cacheResultFile); + try { + $this->stopOutputBuffering(); + } catch (\PHPUnit\Framework\RiskyTestError $_e) { + $e = $e ?? $_e; } - $bootstrap = $this->getStringAttribute($document->documentElement, 'bootstrap'); - if ($bootstrap !== null) { - $bootstrap = $this->toAbsolutePath($filename, $bootstrap); + if (isset($_e)) { + $this->status = BaseTestRunner::STATUS_ERROR; + $this->statusMessage = $_e->getMessage(); } - $extensionsDirectory = $this->getStringAttribute($document->documentElement, 'extensionsDirectory'); - if ($extensionsDirectory !== null) { - $extensionsDirectory = $this->toAbsolutePath($filename, $extensionsDirectory); + clearstatcache(); + if ($currentWorkingDirectory !== getcwd()) { + chdir($currentWorkingDirectory); } - $testSuiteLoaderFile = $this->getStringAttribute($document->documentElement, 'testSuiteLoaderFile'); - if ($testSuiteLoaderFile !== null) { - $testSuiteLoaderFile = $this->toAbsolutePath($filename, $testSuiteLoaderFile); + $this->restoreGlobalState(); + $this->unregisterCustomComparators(); + $this->cleanupIniSettings(); + $this->cleanupLocaleSettings(); + libxml_clear_errors(); + // Perform assertion on output. + if (!isset($e)) { + try { + if ($this->outputExpectedRegex !== null) { + $this->assertMatchesRegularExpression($this->outputExpectedRegex, $this->output); + } elseif ($this->outputExpectedString !== null) { + $this->assertEquals($this->outputExpectedString, $this->output); + } + } catch (Throwable $_e) { + $e = $_e; + } } - $printerFile = $this->getStringAttribute($document->documentElement, 'printerFile'); - if ($printerFile !== null) { - $printerFile = $this->toAbsolutePath($filename, $printerFile); + // Workaround for missing "finally". + if (isset($e)) { + if ($e instanceof PredictionException) { + $e = new \PHPUnit\Framework\AssertionFailedError($e->getMessage()); + } + $this->onNotSuccessfulTest($e); } - return new \PHPUnit\TextUI\XmlConfiguration\PHPUnit($this->getBooleanAttribute($document->documentElement, 'cacheResult', \true), $cacheResultFile, $this->getColumns($document), $this->getColors($document), $this->getBooleanAttribute($document->documentElement, 'stderr', \false), $this->getBooleanAttribute($document->documentElement, 'noInteraction', \false), $this->getBooleanAttribute($document->documentElement, 'verbose', \false), $this->getBooleanAttribute($document->documentElement, 'reverseDefectList', \false), $this->getBooleanAttribute($document->documentElement, 'convertDeprecationsToExceptions', \false), $this->getBooleanAttribute($document->documentElement, 'convertErrorsToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'convertNoticesToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'convertWarningsToExceptions', \true), $this->getBooleanAttribute($document->documentElement, 'forceCoversAnnotation', \false), $bootstrap, $this->getBooleanAttribute($document->documentElement, 'processIsolation', \false), $this->getBooleanAttribute($document->documentElement, 'failOnEmptyTestSuite', \false), $this->getBooleanAttribute($document->documentElement, 'failOnIncomplete', \false), $this->getBooleanAttribute($document->documentElement, 'failOnRisky', \false), $this->getBooleanAttribute($document->documentElement, 'failOnSkipped', \false), $this->getBooleanAttribute($document->documentElement, 'failOnWarning', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnDefect', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnError', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnFailure', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnWarning', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnIncomplete', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnRisky', \false), $this->getBooleanAttribute($document->documentElement, 'stopOnSkipped', \false), $extensionsDirectory, $this->getStringAttribute($document->documentElement, 'testSuiteLoaderClass'), $testSuiteLoaderFile, $printerClass, $printerFile, $this->getBooleanAttribute($document->documentElement, 'beStrictAboutChangesToGlobalState', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutOutputDuringTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutResourceUsageDuringSmallTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutTestsThatDoNotTestAnything', \true), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutTodoAnnotatedTests', \false), $this->getBooleanAttribute($document->documentElement, 'beStrictAboutCoversAnnotation', \false), $this->getBooleanAttribute($document->documentElement, 'enforceTimeLimit', \false), $this->getIntegerAttribute($document->documentElement, 'defaultTimeLimit', 1), $this->getIntegerAttribute($document->documentElement, 'timeoutForSmallTests', 1), $this->getIntegerAttribute($document->documentElement, 'timeoutForMediumTests', 10), $this->getIntegerAttribute($document->documentElement, 'timeoutForLargeTests', 60), $this->getStringAttribute($document->documentElement, 'defaultTestSuite'), $executionOrder, $resolveDependencies, $defectsFirst, $this->getBooleanAttribute($document->documentElement, 'backupGlobals', \false), $this->getBooleanAttribute($document->documentElement, 'backupStaticAttributes', \false), $this->getBooleanAttribute($document->documentElement, 'registerMockObjectsFromTestArgumentsRecursively', \false), $conflictBetweenPrinterClassAndTestdox); } - private function getColors(DOMDocument $document) : string + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setName(string $name): void { - $colors = DefaultResultPrinter::COLOR_DEFAULT; - if ($document->documentElement->hasAttribute('colors')) { - /* only allow boolean for compatibility with previous versions - 'always' only allowed from command line */ - if ($this->getBoolean($document->documentElement->getAttribute('colors'), \false)) { - $colors = DefaultResultPrinter::COLOR_AUTO; - } else { - $colors = DefaultResultPrinter::COLOR_NEVER; - } + $this->name = $name; + if (is_callable($this->sortId(), \true)) { + $this->providedTests = [new \PHPUnit\Framework\ExecutionOrderDependency($this->sortId())]; } - return $colors; } /** - * @return int|string + * @param list $dependencies + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private function getColumns(DOMDocument $document) + public function setDependencies(array $dependencies): void { - $columns = 80; - if ($document->documentElement->hasAttribute('columns')) { - $columns = (string) $document->documentElement->getAttribute('columns'); - if ($columns !== 'max') { - $columns = $this->getInteger($columns, 80); - } - } - return $columns; + $this->dependencies = $dependencies; } - private function testSuite(string $filename, DOMXPath $xpath) : \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setDependencyInput(array $dependencyInput): void { - $testSuites = []; - foreach ($this->getTestSuiteElements($xpath) as $element) { - $exclude = []; - foreach ($element->getElementsByTagName('exclude') as $excludeNode) { - $excludeFile = (string) $excludeNode->textContent; - if ($excludeFile) { - $exclude[] = new \PHPUnit\TextUI\XmlConfiguration\File($this->toAbsolutePath($filename, $excludeFile)); - } - } - $directories = []; - foreach ($element->getElementsByTagName('directory') as $directoryNode) { - assert($directoryNode instanceof DOMElement); - $directory = (string) $directoryNode->textContent; - if (empty($directory)) { - continue; - } - $prefix = ''; - if ($directoryNode->hasAttribute('prefix')) { - $prefix = (string) $directoryNode->getAttribute('prefix'); - } - $suffix = 'Test.php'; - if ($directoryNode->hasAttribute('suffix')) { - $suffix = (string) $directoryNode->getAttribute('suffix'); - } - $phpVersion = PHP_VERSION; - if ($directoryNode->hasAttribute('phpVersion')) { - $phpVersion = (string) $directoryNode->getAttribute('phpVersion'); - } - $phpVersionOperator = new VersionComparisonOperator('>='); - if ($directoryNode->hasAttribute('phpVersionOperator')) { - $phpVersionOperator = new VersionComparisonOperator((string) $directoryNode->getAttribute('phpVersionOperator')); - } - $directories[] = new \PHPUnit\TextUI\XmlConfiguration\TestDirectory($this->toAbsolutePath($filename, $directory), $prefix, $suffix, $phpVersion, $phpVersionOperator); - } - $files = []; - foreach ($element->getElementsByTagName('file') as $fileNode) { - assert($fileNode instanceof DOMElement); - $file = (string) $fileNode->textContent; - if (empty($file)) { - continue; - } - $phpVersion = PHP_VERSION; - if ($fileNode->hasAttribute('phpVersion')) { - $phpVersion = (string) $fileNode->getAttribute('phpVersion'); - } - $phpVersionOperator = new VersionComparisonOperator('>='); - if ($fileNode->hasAttribute('phpVersionOperator')) { - $phpVersionOperator = new VersionComparisonOperator((string) $fileNode->getAttribute('phpVersionOperator')); - } - $files[] = new \PHPUnit\TextUI\XmlConfiguration\TestFile($this->toAbsolutePath($filename, $file), $phpVersion, $phpVersionOperator); - } - $testSuites[] = new TestSuiteConfiguration((string) $element->getAttribute('name'), \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection::fromArray($directories), \PHPUnit\TextUI\XmlConfiguration\TestFileCollection::fromArray($files), \PHPUnit\TextUI\XmlConfiguration\FileCollection::fromArray($exclude)); + $this->dependencyInput = $dependencyInput; + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setBeStrictAboutChangesToGlobalState(?bool $beStrictAboutChangesToGlobalState): void + { + $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setBackupGlobals(?bool $backupGlobals): void + { + if ($this->backupGlobals === null && $backupGlobals !== null) { + $this->backupGlobals = $backupGlobals; } - return \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollection::fromArray($testSuites); } /** - * @return DOMElement[] + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private function getTestSuiteElements(DOMXPath $xpath) : array + public function setBackupStaticAttributes(?bool $backupStaticAttributes): void { - /** @var DOMElement[] $elements */ - $elements = []; - $testSuiteNodes = $xpath->query('testsuites/testsuite'); - if ($testSuiteNodes->length === 0) { - $testSuiteNodes = $xpath->query('testsuite'); + if ($this->backupStaticAttributes === null && $backupStaticAttributes !== null) { + $this->backupStaticAttributes = $backupStaticAttributes; } - if ($testSuiteNodes->length === 1) { - $element = $testSuiteNodes->item(0); - assert($element instanceof DOMElement); - $elements[] = $element; - } else { - foreach ($testSuiteNodes as $testSuiteNode) { - assert($testSuiteNode instanceof DOMElement); - $elements[] = $testSuiteNode; - } + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setRunTestInSeparateProcess(bool $runTestInSeparateProcess): void + { + if ($this->runTestInSeparateProcess === null) { + $this->runTestInSeparateProcess = $runTestInSeparateProcess; } - return $elements; } - private function element(DOMXPath $xpath, string $element) : ?DOMElement + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setRunClassInSeparateProcess(bool $runClassInSeparateProcess): void { - $nodes = $xpath->query($element); - if ($nodes->length === 1) { - $node = $nodes->item(0); - assert($node instanceof DOMElement); - return $node; + if ($this->runClassInSeparateProcess === null) { + $this->runClassInSeparateProcess = $runClassInSeparateProcess; } - return null; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Junit -{ /** - * @var File + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $target; - public function __construct(File $target) + public function setPreserveGlobalState(bool $preserveGlobalState): void { - $this->target = $target; + $this->preserveGlobalState = $preserveGlobalState; } - public function target() : File + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function setInIsolation(bool $inIsolation): void { - return $this->target; + $this->inIsolation = $inIsolation; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging; - -use PHPUnit\TextUI\XmlConfiguration\Exception; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Html as TestDoxHtml; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Text as TestDoxText; -use PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Xml as TestDoxXml; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Logging -{ /** - * @var ?Junit + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $junit; + public function isInIsolation(): bool + { + return $this->inIsolation; + } /** - * @var ?Text + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $text; + public function getResult() + { + return $this->testResult; + } /** - * @var ?TeamCity + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $teamCity; + public function setResult($result): void + { + $this->testResult = $result; + } /** - * @var ?TestDoxHtml + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $testDoxHtml; + public function setOutputCallback(callable $callback): void + { + $this->outputCallback = $callback; + } /** - * @var ?TestDoxText + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $testDoxText; + public function getTestResultObject(): ?\PHPUnit\Framework\TestResult + { + return $this->result; + } /** - * @var ?TestDoxXml + * @internal This method is not covered by the backward compatibility promise for PHPUnit */ - private $testDoxXml; - public function __construct(?\PHPUnit\TextUI\XmlConfiguration\Logging\Junit $junit, ?\PHPUnit\TextUI\XmlConfiguration\Logging\Text $text, ?\PHPUnit\TextUI\XmlConfiguration\Logging\TeamCity $teamCity, ?TestDoxHtml $testDoxHtml, ?TestDoxText $testDoxText, ?TestDoxXml $testDoxXml) + public function setTestResultObject(\PHPUnit\Framework\TestResult $result): void { - $this->junit = $junit; - $this->text = $text; - $this->teamCity = $teamCity; - $this->testDoxHtml = $testDoxHtml; - $this->testDoxText = $testDoxText; - $this->testDoxXml = $testDoxXml; + $this->result = $result; } - public function hasJunit() : bool + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function registerMockObject(MockObject $mockObject): void { - return $this->junit !== null; + $this->mockObjects[] = $mockObject; + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function addToAssertionCount(int $count): void + { + $this->numAssertions += $count; } - public function junit() : \PHPUnit\TextUI\XmlConfiguration\Logging\Junit + /** + * Returns the number of assertions performed by this test. + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getNumAssertions(): int { - if ($this->junit === null) { - throw new Exception('Logger "JUnit XML" is not configured'); + return $this->numAssertions; + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function usesDataProvider(): bool + { + return !empty($this->data); + } + /** + * @return int|string + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function dataName() + { + return $this->dataName; + } + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getDataSetAsString(bool $includeData = \true): string + { + $buffer = ''; + if (!empty($this->data)) { + if (is_int($this->dataName)) { + $buffer .= sprintf(' with data set #%d', $this->dataName); + } else { + $buffer .= sprintf(' with data set "%s"', $this->dataName); + } + if ($includeData) { + $exporter = new Exporter(); + $buffer .= sprintf(' (%s)', $exporter->shortenedRecursiveExport($this->data)); + } } - return $this->junit; + return $buffer; + } + /** + * Gets the data set of a TestCase. + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function getProvidedData(): array + { + return $this->data; } - public function hasText() : bool + /** + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + public function addWarning(string $warning): void { - return $this->text !== null; + $this->warnings[] = $warning; } - public function text() : \PHPUnit\TextUI\XmlConfiguration\Logging\Text + public function sortId(): string { - if ($this->text === null) { - throw new Exception('Logger "Text" is not configured'); + $id = $this->name; + if (strpos($id, '::') === \false) { + $id = static::class . '::' . $id; } - return $this->text; + if ($this->usesDataProvider()) { + $id .= $this->getDataSetAsString(\false); + } + return $id; } - public function hasTeamCity() : bool + /** + * Returns the normalized test name as class::method. + * + * @return list + */ + public function provides(): array { - return $this->teamCity !== null; + return $this->providedTests; } - public function teamCity() : \PHPUnit\TextUI\XmlConfiguration\Logging\TeamCity + /** + * Returns a list of normalized dependency names, class::method. + * + * This list can differ from the raw dependencies as the resolver has + * no need for the [!][shallow]clone prefix that is filtered out + * during normalization. + * + * @return list + */ + public function requires(): array { - if ($this->teamCity === null) { - throw new Exception('Logger "Team City" is not configured'); + return $this->dependencies; + } + /** + * Override to run the test and assert its state. + * + * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException + * @throws AssertionFailedError + * @throws Exception + * @throws ExpectationFailedException + * @throws Throwable + */ + protected function runTest() + { + if (trim($this->name) === '') { + throw new \PHPUnit\Framework\Exception('PHPUnit\Framework\TestCase::$name must be a non-blank string.'); } - return $this->teamCity; + $testArguments = array_merge($this->data, $this->dependencyInput); + $this->registerMockObjectsFromTestArguments($testArguments); + try { + $testResult = $this->{$this->name}(...array_values($testArguments)); + } catch (Throwable $exception) { + if (!$this->checkExceptionExpectations($exception)) { + throw $exception; + } + if ($this->expectedException !== null) { + if ($this->expectedException === Error::class) { + $this->assertThat($exception, LogicalOr::fromConstraints(new ExceptionConstraint(Error::class), new ExceptionConstraint(\Error::class))); + } else { + $this->assertThat($exception, new ExceptionConstraint($this->expectedException)); + } + } + if ($this->expectedExceptionMessage !== null) { + $this->assertThat($exception, new ExceptionMessage($this->expectedExceptionMessage)); + } + if ($this->expectedExceptionMessageRegExp !== null) { + $this->assertThat($exception, new ExceptionMessageRegularExpression($this->expectedExceptionMessageRegExp)); + } + if ($this->expectedExceptionCode !== null) { + $this->assertThat($exception, new ExceptionCode($this->expectedExceptionCode)); + } + return; + } + if ($this->expectedException !== null) { + $this->assertThat(null, new ExceptionConstraint($this->expectedException)); + } elseif ($this->expectedExceptionMessage !== null) { + $this->numAssertions++; + throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with message "%s" is thrown', $this->expectedExceptionMessage)); + } elseif ($this->expectedExceptionMessageRegExp !== null) { + $this->numAssertions++; + throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with message matching "%s" is thrown', $this->expectedExceptionMessageRegExp)); + } elseif ($this->expectedExceptionCode !== null) { + $this->numAssertions++; + throw new \PHPUnit\Framework\AssertionFailedError(sprintf('Failed asserting that exception with code "%s" is thrown', $this->expectedExceptionCode)); + } + return $testResult; } - public function hasTestDoxHtml() : bool + /** + * This method is a wrapper for the ini_set() function that automatically + * resets the modified php.ini setting to its original value after the + * test is run. + * + * @throws Exception + */ + protected function iniSet(string $varName, string $newValue): void { - return $this->testDoxHtml !== null; + $currentValue = ini_set($varName, $newValue); + if ($currentValue !== \false) { + $this->iniSettings[$varName] = $currentValue; + } else { + throw new \PHPUnit\Framework\Exception(sprintf('INI setting "%s" could not be set to "%s".', $varName, $newValue)); + } } - public function testDoxHtml() : TestDoxHtml + /** + * This method is a wrapper for the setlocale() function that automatically + * resets the locale to its original value after the test is run. + * + * @throws Exception + */ + protected function setLocale(...$args): void { - if ($this->testDoxHtml === null) { - throw new Exception('Logger "TestDox HTML" is not configured'); + if (count($args) < 2) { + throw new \PHPUnit\Framework\Exception(); + } + [$category, $locale] = $args; + if (!in_array($category, self::LOCALE_CATEGORIES, \true)) { + throw new \PHPUnit\Framework\Exception(); + } + if (!is_array($locale) && !is_string($locale)) { + throw new \PHPUnit\Framework\Exception(); + } + $this->locale[$category] = setlocale($category, 0); + $result = setlocale(...$args); + if ($result === \false) { + throw new \PHPUnit\Framework\Exception('The locale functionality is not implemented on your platform, ' . 'the specified locale does not exist or the category name is ' . 'invalid.'); } - return $this->testDoxHtml; } - public function hasTestDoxText() : bool + /** + * Makes configurable stub for the specified class. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return Stub&RealInstanceType + */ + protected function createStub(string $originalClassName): Stub { - return $this->testDoxText !== null; + return $this->createMockObject($originalClassName); + } + /** + * Returns a mock object for the specified class. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + */ + protected function createMock(string $originalClassName): MockObject + { + return $this->createMockObject($originalClassName); + } + /** + * Returns a configured mock object for the specified class. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + */ + protected function createConfiguredMock(string $originalClassName, array $configuration): MockObject + { + $o = $this->createMockObject($originalClassName); + foreach ($configuration as $method => $return) { + $o->method($method)->willReturn($return); + } + return $o; } - public function testDoxText() : TestDoxText + /** + * Returns a partial mock object for the specified class. + * + * @param string[] $methods + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + */ + protected function createPartialMock(string $originalClassName, array $methods): MockObject { - if ($this->testDoxText === null) { - throw new Exception('Logger "TestDox Text" is not configured'); + try { + $reflector = new ReflectionClass($originalClassName); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } - return $this->testDoxText; - } - public function hasTestDoxXml() : bool - { - return $this->testDoxXml !== null; - } - public function testDoxXml() : TestDoxXml - { - if ($this->testDoxXml === null) { - throw new Exception('Logger "TestDox XML" is not configured'); + // @codeCoverageIgnoreEnd + $mockedMethodsThatDontExist = array_filter($methods, static function (string $method) use ($reflector) { + return !$reflector->hasMethod($method); + }); + if ($mockedMethodsThatDontExist) { + $this->addWarning(sprintf('createPartialMock() called with method(s) %s that do not exist in %s. This will not be allowed in future versions of PHPUnit.', implode(', ', $mockedMethodsThatDontExist), $originalClassName)); } - return $this->testDoxXml; + return $this->getMockBuilder($originalClassName)->disableOriginalConstructor()->disableOriginalClone()->disableArgumentCloning()->disallowMockingUnknownTypes()->setMethods(empty($methods) ? null : $methods)->getMock(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class TeamCity -{ /** - * @var File + * Returns a test proxy for the specified class. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType */ - private $target; - public function __construct(File $target) + protected function createTestProxy(string $originalClassName, array $constructorArguments = []): MockObject { - $this->target = $target; + return $this->getMockBuilder($originalClassName)->setConstructorArgs($constructorArguments)->enableProxyingToOriginalMethods()->getMock(); } - public function target() : File + /** + * Mocks the specified class and returns the name of the mocked class. + * + * @param null|array $methods $methods + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string|string $originalClassName + * + * @psalm-return class-string + * + * @deprecated + */ + protected function getMockClass(string $originalClassName, $methods = [], array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \false, bool $callOriginalClone = \true, bool $callAutoload = \true, bool $cloneArguments = \false): string { - return $this->target; + $this->addWarning('PHPUnit\Framework\TestCase::getMockClass() is deprecated and will be removed in PHPUnit 10.'); + $this->recordDoubledType($originalClassName); + $mock = $this->getMockObjectGenerator()->getMock($originalClassName, $methods, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $cloneArguments); + return get_class($mock); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging\TestDox; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Html -{ /** - * @var File + * Returns a mock object for the specified abstract class with all abstract + * methods of the class mocked. Concrete methods are not mocked by default. + * To mock concrete methods, use the 7th parameter ($mockedMethods). + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType */ - private $target; - public function __construct(File $target) + protected function getMockForAbstractClass(string $originalClassName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = [], bool $cloneArguments = \false): MockObject { - $this->target = $target; + $this->recordDoubledType($originalClassName); + $mockObject = $this->getMockObjectGenerator()->getMockForAbstractClass($originalClassName, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); + $this->registerMockObject($mockObject); + return $mockObject; } - public function target() : File + /** + * Returns a mock object based on the given WSDL file. + * + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string|string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + */ + protected function getMockFromWsdl(string $wsdlFile, string $originalClassName = '', string $mockClassName = '', array $methods = [], bool $callOriginalConstructor = \true, array $options = []): MockObject { - return $this->target; + $this->recordDoubledType(SoapClient::class); + if ($originalClassName === '') { + $fileName = pathinfo(basename(parse_url($wsdlFile, PHP_URL_PATH)), PATHINFO_FILENAME); + $originalClassName = preg_replace('/\W/', '', $fileName); + } + if (!class_exists($originalClassName)) { + eval($this->getMockObjectGenerator()->generateClassFromWsdl($wsdlFile, $originalClassName, $methods, $options)); + } + $mockObject = $this->getMockObjectGenerator()->getMock($originalClassName, $methods, ['', $options], $mockClassName, $callOriginalConstructor, \false, \false); + $this->registerMockObject($mockObject); + return $mockObject; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging\TestDox; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Text -{ /** - * @var File + * Returns a mock object for the specified trait with all abstract methods + * of the trait mocked. Concrete methods to mock can be specified with the + * `$mockedMethods` parameter. + * + * @psalm-param trait-string $traitName */ - private $target; - public function __construct(File $target) + protected function getMockForTrait(string $traitName, array $arguments = [], string $mockClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true, array $mockedMethods = [], bool $cloneArguments = \false): MockObject { - $this->target = $target; + $this->recordDoubledType($traitName); + $mockObject = $this->getMockObjectGenerator()->getMockForTrait($traitName, $arguments, $mockClassName, $callOriginalConstructor, $callOriginalClone, $callAutoload, $mockedMethods, $cloneArguments); + $this->registerMockObject($mockObject); + return $mockObject; } - public function target() : File + /** + * Returns an object for the specified trait. + * + * @psalm-param trait-string $traitName + */ + protected function getObjectForTrait(string $traitName, array $arguments = [], string $traitClassName = '', bool $callOriginalConstructor = \true, bool $callOriginalClone = \true, bool $callAutoload = \true): object { - return $this->target; + $this->recordDoubledType($traitName); + return $this->getMockObjectGenerator()->getObjectForTrait($traitName, $traitClassName, $callAutoload, $callOriginalConstructor, $arguments); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging\TestDox; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Xml -{ /** - * @var File + * @throws ClassNotFoundException + * @throws DoubleException + * @throws InterfaceNotFoundException + * + * @psalm-param class-string|null $classOrInterface + * + * @deprecated https://github.com/sebastianbergmann/phpunit/issues/4141 */ - private $target; - public function __construct(File $target) + protected function prophesize(?string $classOrInterface = null): ObjectProphecy { - $this->target = $target; + if (!class_exists(Prophet::class)) { + throw new \PHPUnit\Framework\Exception('This test uses TestCase::prophesize(), but phpspec/prophecy is not installed. Please run "composer require --dev phpspec/prophecy".'); + } + $this->addWarning('PHPUnit\Framework\TestCase::prophesize() is deprecated and will be removed in PHPUnit 10. Please use the trait provided by phpspec/prophecy-phpunit.'); + if (is_string($classOrInterface)) { + $this->recordDoubledType($classOrInterface); + } + return $this->getProphet()->prophesize($classOrInterface); } - public function target() : File + /** + * Creates a default TestResult object. + * + * @internal This method is not covered by the backward compatibility promise for PHPUnit + */ + protected function createResult(): \PHPUnit\Framework\TestResult { - return $this->target; + return new \PHPUnit\Framework\TestResult(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration\Logging; - -use PHPUnit\TextUI\XmlConfiguration\File; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - * - * @psalm-immutable - */ -final class Text -{ /** - * @var File + * This method is called when a test method did not execute successfully. + * + * @throws Throwable */ - private $target; - public function __construct(File $target) + protected function onNotSuccessfulTest(Throwable $t): void { - $this->target = $target; + throw $t; } - public function target() : File + protected function recordDoubledType(string $originalClassName): void { - return $this->target; + $this->doubledTypes[] = $originalClassName; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function array_key_exists; -use function sprintf; -use function version_compare; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MigrationBuilder -{ - private const AVAILABLE_MIGRATIONS = ['8.5' => [\PHPUnit\TextUI\XmlConfiguration\RemoveLogTypes::class], '9.2' => [\PHPUnit\TextUI\XmlConfiguration\RemoveCacheTokensAttribute::class, \PHPUnit\TextUI\XmlConfiguration\IntroduceCoverageElement::class, \PHPUnit\TextUI\XmlConfiguration\MoveAttributesFromRootToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveAttributesFromFilterWhitelistToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveWhitelistDirectoriesToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\MoveWhitelistExcludesToCoverage::class, \PHPUnit\TextUI\XmlConfiguration\RemoveEmptyFilter::class, \PHPUnit\TextUI\XmlConfiguration\CoverageCloverToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageCrap4jToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageHtmlToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoveragePhpToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageTextToReport::class, \PHPUnit\TextUI\XmlConfiguration\CoverageXmlToReport::class, \PHPUnit\TextUI\XmlConfiguration\ConvertLogTypes::class, \PHPUnit\TextUI\XmlConfiguration\UpdateSchemaLocationTo93::class]]; /** - * @throws MigrationBuilderException + * @throws Throwable */ - public function build(string $fromVersion) : array + private function verifyMockObjects(): void { - if (!array_key_exists($fromVersion, self::AVAILABLE_MIGRATIONS)) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationBuilderException(sprintf('Migration from schema version %s is not supported', $fromVersion)); - } - $stack = []; - foreach (self::AVAILABLE_MIGRATIONS as $version => $migrations) { - if (version_compare($version, $fromVersion, '<')) { - continue; + foreach ($this->mockObjects as $mockObject) { + if ($mockObject->__phpunit_hasMatchers()) { + $this->numAssertions++; } - foreach ($migrations as $migration) { - $stack[] = new $migration(); + $mockObject->__phpunit_verify($this->shouldInvocationMockerBeReset($mockObject)); + } + if ($this->prophet !== null) { + try { + $this->prophet->checkPredictions(); + } finally { + foreach ($this->prophet->getProphecies() as $objectProphecy) { + foreach ($objectProphecy->getMethodProphecies() as $methodProphecies) { + foreach ($methodProphecies as $methodProphecy) { + /* @var MethodProphecy $methodProphecy */ + $this->numAssertions += count($methodProphecy->getCheckedPredictions()); + } + } + } } } - return $stack; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MigrationBuilderException extends RuntimeException implements \PHPUnit\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use RuntimeException; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MigrationException extends RuntimeException implements \PHPUnit\Exception -{ -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class ConvertLogTypes implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ - public function migrate(DOMDocument $document) : void + /** + * @throws SkippedTestError + * @throws SyntheticSkippedError + * @throws Warning + */ + private function checkRequirements(): void { - $logging = $document->getElementsByTagName('logging')->item(0); - if (!$logging instanceof DOMElement) { + if (!$this->name || !method_exists($this, $this->name)) { return; } - $types = ['junit' => 'junit', 'teamcity' => 'teamcity', 'testdox-html' => 'testdoxHtml', 'testdox-text' => 'testdoxText', 'testdox-xml' => 'testdoxXml', 'plain' => 'text']; - $logNodes = []; - foreach ($logging->getElementsByTagName('log') as $logNode) { - if (!isset($types[$logNode->getAttribute('type')])) { - continue; - } - $logNodes[] = $logNode; - } - foreach ($logNodes as $oldNode) { - $newLogNode = $document->createElement($types[$oldNode->getAttribute('type')]); - $newLogNode->setAttribute('outputFile', $oldNode->getAttribute('target')); - $logging->replaceChild($newLogNode, $oldNode); + $missingRequirements = TestUtil::getMissingRequirements(static::class, $this->name); + if (!empty($missingRequirements)) { + $this->markTestSkipped(implode(PHP_EOL, $missingRequirements)); } } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoverageCloverToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string - { - return 'coverage-clover'; - } - protected function toReportFormat(DOMElement $logNode) : DOMElement - { - $clover = $logNode->ownerDocument->createElement('clover'); - $clover->setAttribute('outputFile', $logNode->getAttribute('target')); - return $clover; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoverageCrap4jToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string - { - return 'coverage-crap4j'; - } - protected function toReportFormat(DOMElement $logNode) : DOMElement - { - $crap4j = $logNode->ownerDocument->createElement('crap4j'); - $crap4j->setAttribute('outputFile', $logNode->getAttribute('target')); - $this->migrateAttributes($logNode, $crap4j, ['threshold']); - return $crap4j; - } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoverageHtmlToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string - { - return 'coverage-html'; - } - protected function toReportFormat(DOMElement $logNode) : DOMElement + private function handleDependencies(): bool { - $html = $logNode->ownerDocument->createElement('html'); - $html->setAttribute('outputDirectory', $logNode->getAttribute('target')); - $this->migrateAttributes($logNode, $html, ['lowUpperBound', 'highLowerBound']); - return $html; + if ([] === $this->dependencies || $this->inIsolation) { + return \true; + } + $passed = $this->result->passed(); + $passedKeys = array_keys($passed); + $numKeys = count($passedKeys); + for ($i = 0; $i < $numKeys; $i++) { + $pos = strpos($passedKeys[$i], ' with data set'); + if ($pos !== \false) { + $passedKeys[$i] = substr($passedKeys[$i], 0, $pos); + } + } + $passedKeys = array_flip(array_unique($passedKeys)); + foreach ($this->dependencies as $dependency) { + if (!$dependency->isValid()) { + $this->markSkippedForNotSpecifyingDependency(); + return \false; + } + if ($dependency->targetIsClass()) { + $dependencyClassName = $dependency->getTargetClassName(); + if (array_search($dependencyClassName, $this->result->passedClasses(), \true) === \false) { + $this->markSkippedForMissingDependency($dependency); + return \false; + } + continue; + } + $dependencyTarget = $dependency->getTarget(); + if (!isset($passedKeys[$dependencyTarget])) { + if (!$this->isCallableTestMethod($dependencyTarget)) { + $this->markWarningForUncallableDependency($dependency); + } else { + $this->markSkippedForMissingDependency($dependency); + } + return \false; + } + if (isset($passed[$dependencyTarget])) { + if ($passed[$dependencyTarget]['size'] != TestUtil::UNKNOWN && $this->getSize() != TestUtil::UNKNOWN && $passed[$dependencyTarget]['size'] > $this->getSize()) { + $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError('This test depends on a test that is larger than itself.'), 0); + return \false; + } + if ($dependency->useDeepClone()) { + $deepCopy = new DeepCopy(); + $deepCopy->skipUncloneable(\false); + $this->dependencyInput[$dependencyTarget] = $deepCopy->copy($passed[$dependencyTarget]['result']); + } elseif ($dependency->useShallowClone()) { + $this->dependencyInput[$dependencyTarget] = clone $passed[$dependencyTarget]['result']; + } else { + $this->dependencyInput[$dependencyTarget] = $passed[$dependencyTarget]['result']; + } + } else { + $this->dependencyInput[$dependencyTarget] = null; + } + } + return \true; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoveragePhpToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string + private function markSkippedForNotSpecifyingDependency(): void { - return 'coverage-php'; + $this->status = BaseTestRunner::STATUS_SKIPPED; + $this->result->startTest($this); + $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError('This method has an invalid @depends annotation.'), 0); + $this->result->endTest($this, 0); } - protected function toReportFormat(DOMElement $logNode) : DOMElement + private function markSkippedForMissingDependency(\PHPUnit\Framework\ExecutionOrderDependency $dependency): void { - $php = $logNode->ownerDocument->createElement('php'); - $php->setAttribute('outputFile', $logNode->getAttribute('target')); - return $php; + $this->status = BaseTestRunner::STATUS_SKIPPED; + $this->result->startTest($this); + $this->result->addError($this, new \PHPUnit\Framework\SkippedTestError(sprintf('This test depends on "%s" to pass.', $dependency->getTarget())), 0); + $this->result->endTest($this, 0); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoverageTextToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string + private function markWarningForUncallableDependency(\PHPUnit\Framework\ExecutionOrderDependency $dependency): void { - return 'coverage-text'; + $this->status = BaseTestRunner::STATUS_WARNING; + $this->result->startTest($this); + $this->result->addWarning($this, new \PHPUnit\Framework\Warning(sprintf('This test depends on "%s" which does not exist.', $dependency->getTarget())), 0); + $this->result->endTest($this, 0); } - protected function toReportFormat(DOMElement $logNode) : DOMElement + /** + * Get the mock object generator, creating it if it doesn't exist. + */ + private function getMockObjectGenerator(): MockGenerator { - $text = $logNode->ownerDocument->createElement('text'); - $text->setAttribute('outputFile', $logNode->getAttribute('target')); - $this->migrateAttributes($logNode, $text, ['showUncoveredFiles', 'showOnlySummary']); - return $text; + if ($this->mockObjectGenerator === null) { + $this->mockObjectGenerator = new MockGenerator(); + } + return $this->mockObjectGenerator; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class CoverageXmlToReport extends \PHPUnit\TextUI\XmlConfiguration\LogToReportMigration -{ - protected function forType() : string + private function startOutputBuffering(): void { - return 'coverage-xml'; + ob_start(); + $this->outputBufferingActive = \true; + $this->outputBufferingLevel = ob_get_level(); } - protected function toReportFormat(DOMElement $logNode) : DOMElement + /** + * @throws RiskyTestError + */ + private function stopOutputBuffering(): void { - $xml = $logNode->ownerDocument->createElement('xml'); - $xml->setAttribute('outputDirectory', $logNode->getAttribute('target')); - return $xml; + if (ob_get_level() !== $this->outputBufferingLevel) { + while (ob_get_level() >= $this->outputBufferingLevel) { + ob_end_clean(); + } + throw new \PHPUnit\Framework\RiskyTestError('Test code or tested code did not (only) close its own output buffers'); + } + $this->output = ob_get_contents(); + if ($this->outputCallback !== \false) { + $this->output = (string) call_user_func($this->outputCallback, $this->output); + } + ob_end_clean(); + $this->outputBufferingActive = \false; + $this->outputBufferingLevel = ob_get_level(); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class IntroduceCoverageElement implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ - public function migrate(DOMDocument $document) : void + private function snapshotGlobalState(): void { - $coverage = $document->createElement('coverage'); - $document->documentElement->insertBefore($coverage, $document->documentElement->firstChild); + if ($this->runTestInSeparateProcess || $this->inIsolation || !$this->backupGlobals && !$this->backupStaticAttributes) { + return; + } + $this->snapshot = $this->createGlobalStateSnapshot($this->backupGlobals === \true); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function sprintf; -use DOMDocument; -use DOMElement; -use DOMXPath; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -abstract class LogToReportMigration implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ /** - * @throws MigrationException + * @throws InvalidArgumentException + * @throws RiskyTestError */ - public function migrate(DOMDocument $document) : void + private function restoreGlobalState(): void { - $coverage = $document->getElementsByTagName('coverage')->item(0); - if (!$coverage instanceof DOMElement) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); - } - $logNode = $this->findLogNode($document); - if ($logNode === null) { + if (!$this->snapshot instanceof Snapshot) { return; } - $reportChild = $this->toReportFormat($logNode); - $report = $coverage->getElementsByTagName('report')->item(0); - if ($report === null) { - $report = $coverage->appendChild($document->createElement('report')); + if ($this->beStrictAboutChangesToGlobalState) { + try { + $this->compareGlobalStateSnapshots($this->snapshot, $this->createGlobalStateSnapshot($this->backupGlobals === \true)); + } catch (\PHPUnit\Framework\RiskyTestError $rte) { + // Intentionally left empty + } + } + $restorer = new Restorer(); + if ($this->backupGlobals) { + $restorer->restoreGlobalVariables($this->snapshot); + } + if ($this->backupStaticAttributes) { + $restorer->restoreStaticAttributes($this->snapshot); + } + $this->snapshot = null; + if (isset($rte)) { + throw $rte; } - $report->appendChild($reportChild); - $logNode->parentNode->removeChild($logNode); } - protected function migrateAttributes(DOMElement $src, DOMElement $dest, array $attributes) : void + private function createGlobalStateSnapshot(bool $backupGlobals): Snapshot { - foreach ($attributes as $attr) { - if (!$src->hasAttribute($attr)) { - continue; + $excludeList = new ExcludeList(); + foreach ($this->backupGlobalsExcludeList as $globalVariable) { + $excludeList->addGlobalVariable($globalVariable); + } + if (!empty($this->backupGlobalsBlacklist)) { + $this->addWarning('PHPUnit\Framework\TestCase::$backupGlobalsBlacklist is deprecated and will be removed in PHPUnit 10. Please use PHPUnit\Framework\TestCase::$backupGlobalsExcludeList instead.'); + foreach ($this->backupGlobalsBlacklist as $globalVariable) { + $excludeList->addGlobalVariable($globalVariable); + } + } + if (!defined('PHPUNIT_TESTSUITE')) { + $excludeList->addClassNamePrefix('PHPUnit'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\SebastianBergmann\CodeCoverage'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\SebastianBergmann\FileIterator'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\SebastianBergmann\Invoker'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\SebastianBergmann\Template'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\SebastianBergmann\Timer'); + $excludeList->addClassNamePrefix('PHPUnitPHAR\Doctrine\Instantiator'); + $excludeList->addClassNamePrefix('Prophecy'); + $excludeList->addStaticAttribute(ComparatorFactory::class, 'instance'); + foreach ($this->backupStaticAttributesExcludeList as $class => $attributes) { + foreach ($attributes as $attribute) { + $excludeList->addStaticAttribute($class, $attribute); + } + } + if (!empty($this->backupStaticAttributesBlacklist)) { + $this->addWarning('PHPUnit\Framework\TestCase::$backupStaticAttributesBlacklist is deprecated and will be removed in PHPUnit 10. Please use PHPUnit\Framework\TestCase::$backupStaticAttributesExcludeList instead.'); + foreach ($this->backupStaticAttributesBlacklist as $class => $attributes) { + foreach ($attributes as $attribute) { + $excludeList->addStaticAttribute($class, $attribute); + } + } } - $dest->setAttribute($attr, $src->getAttribute($attr)); - $src->removeAttribute($attr); } + return new Snapshot($excludeList, $backupGlobals, (bool) $this->backupStaticAttributes, \false, \false, \false, \false, \false, \false, \false); } - protected abstract function forType() : string; - protected abstract function toReportFormat(DOMElement $logNode) : DOMElement; - private function findLogNode(DOMDocument $document) : ?DOMElement + /** + * @throws InvalidArgumentException + * @throws RiskyTestError + */ + private function compareGlobalStateSnapshots(Snapshot $before, Snapshot $after): void { - $logNode = (new DOMXPath($document))->query(sprintf('//logging/log[@type="%s"]', $this->forType()))->item(0); - if (!$logNode instanceof DOMElement) { - return null; + $backupGlobals = $this->backupGlobals === null || $this->backupGlobals; + if ($backupGlobals) { + $this->compareGlobalStateSnapshotPart($before->globalVariables(), $after->globalVariables(), "--- Global variables before the test\n+++ Global variables after the test\n"); + $this->compareGlobalStateSnapshotPart($before->superGlobalVariables(), $after->superGlobalVariables(), "--- Super-global variables before the test\n+++ Super-global variables after the test\n"); + } + if ($this->backupStaticAttributes) { + $this->compareGlobalStateSnapshotPart($before->staticAttributes(), $after->staticAttributes(), "--- Static attributes before the test\n+++ Static attributes after the test\n"); } - return $logNode; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -interface Migration -{ - public function migrate(DOMDocument $document) : void; -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MoveAttributesFromFilterWhitelistToCoverage implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ /** - * @throws MigrationException + * @throws RiskyTestError */ - public function migrate(DOMDocument $document) : void + private function compareGlobalStateSnapshotPart(array $before, array $after, string $header): void { - $whitelist = $document->getElementsByTagName('whitelist')->item(0); - if (!$whitelist) { - return; - } - $coverage = $document->getElementsByTagName('coverage')->item(0); - if (!$coverage instanceof DOMElement) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + if ($before != $after) { + $differ = new Differ($header); + $exporter = new Exporter(); + $diff = $differ->diff($exporter->export($before), $exporter->export($after)); + throw new \PHPUnit\Framework\RiskyTestError($diff); } - $map = ['addUncoveredFilesFromWhitelist' => 'includeUncoveredFiles', 'processUncoveredFilesFromWhitelist' => 'processUncoveredFiles']; - foreach ($map as $old => $new) { - if (!$whitelist->hasAttribute($old)) { - continue; - } - $coverage->setAttribute($new, $whitelist->getAttribute($old)); - $whitelist->removeAttribute($old); + } + private function getProphet(): Prophet + { + if ($this->prophet === null) { + $this->prophet = new Prophet(); } + return $this->prophet; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -use DOMElement; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MoveAttributesFromRootToCoverage implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ /** - * @throws MigrationException + * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException */ - public function migrate(DOMDocument $document) : void + private function shouldInvocationMockerBeReset(MockObject $mock): bool { - $map = ['disableCodeCoverageIgnore' => 'disableCodeCoverageIgnore', 'ignoreDeprecatedCodeUnitsFromCodeCoverage' => 'ignoreDeprecatedCodeUnits']; - $root = $document->documentElement; - $coverage = $document->getElementsByTagName('coverage')->item(0); - if (!$coverage instanceof DOMElement) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); - } - foreach ($map as $old => $new) { - if (!$root->hasAttribute($old)) { - continue; + $enumerator = new Enumerator(); + foreach ($enumerator->enumerate($this->dependencyInput) as $object) { + if ($mock === $object) { + return \false; } - $coverage->setAttribute($new, $root->getAttribute($old)); - $root->removeAttribute($old); } + if (!is_array($this->testResult) && !is_object($this->testResult)) { + return \true; + } + return !in_array($mock, $enumerator->enumerate($this->testResult), \true); } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use DOMDocument; -use DOMElement; -use PHPUnit\Util\Xml\SnapshotNodeList; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MoveWhitelistDirectoriesToCoverage implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ /** - * @throws MigrationException + * @throws \SebastianBergmann\ObjectEnumerator\InvalidArgumentException + * @throws \SebastianBergmann\ObjectReflector\InvalidArgumentException + * @throws InvalidArgumentException */ - public function migrate(DOMDocument $document) : void + private function registerMockObjectsFromTestArguments(array $testArguments, array &$visited = []): void { - $whitelist = $document->getElementsByTagName('whitelist')->item(0); - if ($whitelist === null) { - return; + if ($this->registerMockObjectsFromTestArgumentsRecursively) { + foreach ((new Enumerator())->enumerate($testArguments) as $object) { + if ($object instanceof MockObject) { + $this->registerMockObject($object); + } + } + } else { + foreach ($testArguments as $testArgument) { + if ($testArgument instanceof MockObject) { + $testArgument = Cloner::clone($testArgument); + $this->registerMockObject($testArgument); + } elseif (is_array($testArgument) && !in_array($testArgument, $visited, \true)) { + $visited[] = $testArgument; + $this->registerMockObjectsFromTestArguments($testArgument, $visited); + } + } } - $coverage = $document->getElementsByTagName('coverage')->item(0); - if (!$coverage instanceof DOMElement) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + } + private function setDoesNotPerformAssertionsFromAnnotation(): void + { + $annotations = TestUtil::parseTestMethodAnnotations(static::class, $this->name); + if (isset($annotations['method']['doesNotPerformAssertions'])) { + $this->doesNotPerformAssertions = \true; } - $include = $document->createElement('include'); - $coverage->appendChild($include); - foreach (SnapshotNodeList::fromNodeList($whitelist->childNodes) as $child) { - if (!$child instanceof DOMElement || $child->nodeName !== 'directory') { - continue; - } - $include->appendChild($child); + } + private function unregisterCustomComparators(): void + { + $factory = ComparatorFactory::getInstance(); + foreach ($this->customComparators as $comparator) { + $factory->unregister($comparator); } + $this->customComparators = []; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\TextUI\XmlConfiguration; - -use function assert; -use function in_array; -use DOMDocument; -use DOMElement; -use PHPUnit\Util\Xml\SnapshotNodeList; -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class MoveWhitelistExcludesToCoverage implements \PHPUnit\TextUI\XmlConfiguration\Migration -{ - /** - * @throws MigrationException - */ - public function migrate(DOMDocument $document) : void + private function cleanupIniSettings(): void { - $whitelist = $document->getElementsByTagName('whitelist')->item(0); - if ($whitelist === null) { - return; + foreach ($this->iniSettings as $varName => $oldValue) { + ini_set($varName, $oldValue); } - $excludeNodes = SnapshotNodeList::fromNodeList($whitelist->getElementsByTagName('exclude')); - if ($excludeNodes->count() === 0) { - return; + $this->iniSettings = []; + } + private function cleanupLocaleSettings(): void + { + foreach ($this->locale as $category => $locale) { + setlocale($category, $locale); } - $coverage = $document->getElementsByTagName('coverage')->item(0); - if (!$coverage instanceof DOMElement) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Unexpected state - No coverage element'); + $this->locale = []; + } + /** + * @throws Exception + */ + private function checkExceptionExpectations(Throwable $throwable): bool + { + $result = \false; + if ($this->expectedException !== null || $this->expectedExceptionCode !== null || $this->expectedExceptionMessage !== null || $this->expectedExceptionMessageRegExp !== null) { + $result = \true; } - $targetExclude = $coverage->getElementsByTagName('exclude')->item(0); - if ($targetExclude === null) { - $targetExclude = $coverage->appendChild($document->createElement('exclude')); + if ($throwable instanceof \PHPUnit\Framework\Exception) { + $result = \false; } - foreach ($excludeNodes as $excludeNode) { - assert($excludeNode instanceof DOMElement); - foreach (SnapshotNodeList::fromNodeList($excludeNode->childNodes) as $child) { - if (!$child instanceof DOMElement || !in_array($child->nodeName, ['directory', 'file'], \true)) { - continue; - } - $targetExclude->appendChild($child); + if (is_string($this->expectedException)) { + try { + $reflector = new ReflectionClass($this->expectedException); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Framework\Exception($e->getMessage(), $e->getCode(), $e); } - if ($excludeNode->getElementsByTagName('*')->count() !== 0) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException('Dangling child elements in exclude found.'); + // @codeCoverageIgnoreEnd + if ($this->expectedException === 'PHPUnit\Framework\Exception' || $this->expectedException === '\PHPUnit\Framework\Exception' || $reflector->isSubclassOf(\PHPUnit\Framework\Exception::class)) { + $result = \true; } - $whitelist->removeChild($excludeNode); } + return $result; + } + private function runInSeparateProcess(): bool + { + return ($this->runTestInSeparateProcess || $this->runClassInSeparateProcess) && !$this->inIsolation && !$this instanceof PhptTestCase; + } + private function isCallableTestMethod(string $dependency): bool + { + [$className, $methodName] = explode('::', $dependency); + if (!class_exists($className)) { + return \false; + } + try { + $class = new ReflectionClass($className); + } catch (ReflectionException $e) { + return \false; + } + if (!$class->isSubclassOf(__CLASS__)) { + return \false; + } + if (!$class->hasMethod($methodName)) { + return \false; + } + try { + $method = $class->getMethod($methodName); + } catch (ReflectionException $e) { + return \false; + } + return TestUtil::isTestMethod($method); + } + /** + * @psalm-template RealInstanceType of object + * + * @psalm-param class-string $originalClassName + * + * @psalm-return MockObject&RealInstanceType + */ + private function createMockObject(string $originalClassName): MockObject + { + return $this->getMockBuilder($originalClassName)->disableOriginalConstructor()->disableOriginalClone()->disableArgumentCloning()->disallowMockingUnknownTypes()->getMock(); } } documentElement; - if ($root->hasAttribute('cacheTokens')) { - $root->removeAttribute('cacheTokens'); - } + return $this->getMessage(); } } getElementsByTagName('whitelist')->item(0); - if ($whitelist instanceof DOMElement) { - $this->ensureEmpty($whitelist); - $whitelist->parentNode->removeChild($whitelist); - } - $filter = $document->getElementsByTagName('filter')->item(0); - if ($filter instanceof DOMElement) { - $this->ensureEmpty($filter); - $filter->parentNode->removeChild($filter); - } - } - /** - * @throws MigrationException - */ - private function ensureEmpty(DOMElement $element) : void - { - if ($element->attributes->length > 0) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException(sprintf('%s element has unexpected attributes', $element->nodeName)); - } - if ($element->getElementsByTagName('*')->length > 0) { - throw new \PHPUnit\TextUI\XmlConfiguration\MigrationException(sprintf('%s element has unexpected children', $element->nodeName)); - } - } } getElementsByTagName('logging')->item(0); - if (!$logging instanceof DOMElement) { - return; - } - foreach (SnapshotNodeList::fromNodeList($logging->getElementsByTagName('log')) as $logNode) { - switch ($logNode->getAttribute('type')) { - case 'json': - case 'tap': - $logging->removeChild($logNode); - } - } + $this->comparisonFailure = $comparisonFailure; + parent::__construct($message, 0, $previous); + } + public function getComparisonFailure(): ?ComparisonFailure + { + return $this->comparisonFailure; } } documentElement->setAttributeNS('http://www.w3.org/2001/XMLSchema-instance', 'xsi:noNamespaceSchemaLocation', 'https://schema.phpunit.de/9.3/phpunit.xsd'); - } } detect($filename); - if (!$origin->detected()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception(sprintf('"%s" is not a valid PHPUnit XML configuration file that can be migrated', $filename)); - } - $configurationDocument = (new XmlLoader())->loadFile($filename, \false, \true, \true); - foreach ((new \PHPUnit\TextUI\XmlConfiguration\MigrationBuilder())->build($origin->version()) as $migration) { - $migration->migrate($configurationDocument); - } - $configurationDocument->formatOutput = \true; - $configurationDocument->preserveWhiteSpace = \false; - return $configurationDocument->saveXML(); + parent::__construct(sprintf('%s is not an accepted argument type for comparison method %s::%s().', $type, $className, $methodName), 0, null); + } + public function __toString(): string + { + return $this->getMessage() . PHP_EOL; } } name = $name; - $this->value = $value; - } - public function name() : string + public function __construct(string $className, string $methodName) { - return $this->name; + parent::__construct(sprintf('Comparison method %s::%s() does not declare bool return type.', $className, $methodName), 0, null); } - public function value() + public function __toString(): string { - return $this->value; + return $this->getMessage() . PHP_EOL; } } constants = $constants; - } - /** - * @return Constant[] - */ - public function asArray() : array - { - return $this->constants; - } - public function count() : int + public function __construct(string $className, string $methodName) { - return count($this->constants); + parent::__construct(sprintf('Comparison method %s::%s() does not declare exactly one parameter.', $className, $methodName), 0, null); } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\ConstantCollectionIterator + public function __toString(): string { - return new \PHPUnit\TextUI\XmlConfiguration\ConstantCollectionIterator($this); + return $this->getMessage() . PHP_EOL; } } constants = $constants->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->constants); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\Constant - { - return $this->constants[$this->position]; - } - public function next() : void - { - $this->position++; - } } name = $name; - $this->value = $value; - } - public function name() : string - { - return $this->name; - } - public function value() : string - { - return $this->value; - } } iniSettings = $iniSettings; - } - /** - * @return IniSetting[] - */ - public function asArray() : array - { - return $this->iniSettings; - } - public function count() : int - { - return count($this->iniSettings); - } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\IniSettingCollectionIterator - { - return new \PHPUnit\TextUI\XmlConfiguration\IniSettingCollectionIterator($this); - } } iniSettings = $iniSettings->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->iniSettings); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\IniSetting + public function __construct() { - return $this->iniSettings[$this->position]; + parent::__construct('Actual value is not an object', 0, null); } - public function next() : void + public function __toString(): string { - $this->position++; + return $this->getMessage() . PHP_EOL; } } includePaths = $includePaths; - $this->iniSettings = $iniSettings; - $this->constants = $constants; - $this->globalVariables = $globalVariables; - $this->envVariables = $envVariables; - $this->postVariables = $postVariables; - $this->getVariables = $getVariables; - $this->cookieVariables = $cookieVariables; - $this->serverVariables = $serverVariables; - $this->filesVariables = $filesVariables; - $this->requestVariables = $requestVariables; - } - public function includePaths() : \PHPUnit\TextUI\XmlConfiguration\DirectoryCollection - { - return $this->includePaths; - } - public function iniSettings() : \PHPUnit\TextUI\XmlConfiguration\IniSettingCollection - { - return $this->iniSettings; - } - public function constants() : \PHPUnit\TextUI\XmlConfiguration\ConstantCollection - { - return $this->constants; - } - public function globalVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->globalVariables; - } - public function envVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->envVariables; - } - public function postVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->postVariables; - } - public function getVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->getVariables; - } - public function cookieVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->cookieVariables; - } - public function serverVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->serverVariables; - } - public function filesVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->filesVariables; - } - public function requestVariables() : \PHPUnit\TextUI\XmlConfiguration\VariableCollection - { - return $this->requestVariables; - } } handleIncludePaths($configuration->includePaths()); - $this->handleIniSettings($configuration->iniSettings()); - $this->handleConstants($configuration->constants()); - $this->handleGlobalVariables($configuration->globalVariables()); - $this->handleServerVariables($configuration->serverVariables()); - $this->handleEnvVariables($configuration->envVariables()); - $this->handleVariables('_POST', $configuration->postVariables()); - $this->handleVariables('_GET', $configuration->getVariables()); - $this->handleVariables('_COOKIE', $configuration->cookieVariables()); - $this->handleVariables('_FILES', $configuration->filesVariables()); - $this->handleVariables('_REQUEST', $configuration->requestVariables()); - } - private function handleIncludePaths(\PHPUnit\TextUI\XmlConfiguration\DirectoryCollection $includePaths) : void - { - if (!$includePaths->isEmpty()) { - $includePathsAsStrings = []; - foreach ($includePaths as $includePath) { - $includePathsAsStrings[] = $includePath->path(); - } - ini_set('include_path', implode(PATH_SEPARATOR, $includePathsAsStrings) . PATH_SEPARATOR . ini_get('include_path')); - } - } - private function handleIniSettings(\PHPUnit\TextUI\XmlConfiguration\IniSettingCollection $iniSettings) : void - { - foreach ($iniSettings as $iniSetting) { - $value = $iniSetting->value(); - if (defined($value)) { - $value = (string) constant($value); - } - ini_set($iniSetting->name(), $value); - } - } - private function handleConstants(\PHPUnit\TextUI\XmlConfiguration\ConstantCollection $constants) : void - { - foreach ($constants as $constant) { - if (!defined($constant->name())) { - define($constant->name(), $constant->value()); - } - } - } - private function handleGlobalVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables) : void - { - foreach ($variables as $variable) { - $GLOBALS[$variable->name()] = $variable->value(); - } - } - private function handleServerVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables) : void - { - foreach ($variables as $variable) { - $_SERVER[$variable->name()] = $variable->value(); - } - } - private function handleVariables(string $target, \PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables) : void - { - foreach ($variables as $variable) { - $GLOBALS[$target][$variable->name()] = $variable->value(); - } - } - private function handleEnvVariables(\PHPUnit\TextUI\XmlConfiguration\VariableCollection $variables) : void - { - foreach ($variables as $variable) { - $name = $variable->name(); - $value = $variable->value(); - $force = $variable->force(); - if ($force || getenv($name) === \false) { - putenv("{$name}={$value}"); - } - $value = getenv($name); - if ($force || !isset($_ENV[$name])) { - $_ENV[$name] = $value; - } - } - } +final class SkippedTestError extends \PHPUnit\Framework\AssertionFailedError implements \PHPUnit\Framework\SkippedTest +{ } name = $name; - $this->value = $value; - $this->force = $force; + parent::__construct($message, $code); + $this->syntheticFile = $file; + $this->syntheticLine = $line; + $this->syntheticTrace = $trace; } - public function name() : string + public function getSyntheticFile(): string { - return $this->name; + return $this->syntheticFile; } - public function value() + public function getSyntheticLine(): int { - return $this->value; + return $this->syntheticLine; } - public function force() : bool + public function getSyntheticTrace(): array { - return $this->force; + return $this->syntheticTrace; } } variables = $variables; - } - /** - * @return Variable[] + * @var string */ - public function asArray() : array - { - return $this->variables; - } - public function count() : int + private $diff; + public function __construct(string $message, int $code, string $file, int $line, array $trace, string $diff) { - return count($this->variables); + parent::__construct($message, $code, $file, $line, $trace); + $this->diff = $diff; } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\VariableCollectionIterator + public function getDiff(): string { - return new \PHPUnit\TextUI\XmlConfiguration\VariableCollectionIterator($this); + return $this->diff; } } variables = $variables->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->variables); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\Variable - { - return $this->variables[$this->position]; - } - public function next() : void - { - $this->position++; - } } className = $className; - $this->sourceFile = $sourceFile; - $this->arguments = $arguments; - } - /** - * @psalm-return class-string - */ - public function className() : string - { - return $this->className; - } - public function hasSourceFile() : bool - { - return $this->sourceFile !== ''; - } - public function sourceFile() : string - { - return $this->sourceFile; - } - public function hasArguments() : bool - { - return !empty($this->arguments); - } - public function arguments() : array - { - return $this->arguments; - } } extensions = $extensions; - } - /** - * @return Extension[] - */ - public function asArray() : array + public static function create(int $argument, string $type): self { - return $this->extensions; + $stack = debug_backtrace(); + $function = $stack[1]['function']; + if (isset($stack[1]['class'])) { + $function = sprintf('%s::%s', $stack[1]['class'], $stack[1]['function']); + } + return new self(sprintf('Argument #%d of %s() must be %s %s', $argument, $function, in_array(lcfirst($type)[0], ['a', 'e', 'i', 'o', 'u'], \true) ? 'an' : 'a', $type)); } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\ExtensionCollectionIterator + private function __construct(string $message = '', int $code = 0, ?\Exception $previous = null) { - return new \PHPUnit\TextUI\XmlConfiguration\ExtensionCollectionIterator($this); + parent::__construct($message, $code, $previous); } } extensions = $extensions->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->extensions); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\Extension - { - return $this->extensions[$this->position]; - } - public function next() : void - { - $this->position++; - } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class Error extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\SelfDescribing { /** - * @var bool - */ - private $cacheResult; - /** - * @var ?string - */ - private $cacheResultFile; - /** - * @var int|string - */ - private $columns; - /** - * @var string - */ - private $colors; - /** - * @var bool - */ - private $stderr; - /** - * @var bool - */ - private $noInteraction; - /** - * @var bool - */ - private $verbose; - /** - * @var bool - */ - private $reverseDefectList; - /** - * @var bool - */ - private $convertDeprecationsToExceptions; - /** - * @var bool - */ - private $convertErrorsToExceptions; - /** - * @var bool - */ - private $convertNoticesToExceptions; - /** - * @var bool - */ - private $convertWarningsToExceptions; - /** - * @var bool - */ - private $forceCoversAnnotation; - /** - * @var ?string - */ - private $bootstrap; - /** - * @var bool - */ - private $processIsolation; - /** - * @var bool - */ - private $failOnEmptyTestSuite; - /** - * @var bool - */ - private $failOnIncomplete; - /** - * @var bool - */ - private $failOnRisky; - /** - * @var bool - */ - private $failOnSkipped; - /** - * @var bool - */ - private $failOnWarning; - /** - * @var bool - */ - private $stopOnDefect; - /** - * @var bool - */ - private $stopOnError; - /** - * @var bool - */ - private $stopOnFailure; - /** - * @var bool - */ - private $stopOnWarning; - /** - * @var bool - */ - private $stopOnIncomplete; - /** - * @var bool - */ - private $stopOnRisky; - /** - * @var bool - */ - private $stopOnSkipped; - /** - * @var ?string - */ - private $extensionsDirectory; - /** - * @var ?string - * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 - */ - private $testSuiteLoaderClass; - /** - * @var ?string - * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 - */ - private $testSuiteLoaderFile; - /** - * @var ?string - */ - private $printerClass; - /** - * @var ?string - */ - private $printerFile; - /** - * @var bool - */ - private $beStrictAboutChangesToGlobalState; - /** - * @var bool - */ - private $beStrictAboutOutputDuringTests; - /** - * @var bool - */ - private $beStrictAboutResourceUsageDuringSmallTests; - /** - * @var bool - */ - private $beStrictAboutTestsThatDoNotTestAnything; - /** - * @var bool - */ - private $beStrictAboutTodoAnnotatedTests; - /** - * @var bool - */ - private $beStrictAboutCoversAnnotation; - /** - * @var bool - */ - private $enforceTimeLimit; - /** - * @var int - */ - private $defaultTimeLimit; - /** - * @var int - */ - private $timeoutForSmallTests; - /** - * @var int - */ - private $timeoutForMediumTests; - /** - * @var int - */ - private $timeoutForLargeTests; - /** - * @var ?string - */ - private $defaultTestSuite; - /** - * @var int - */ - private $executionOrder; - /** - * @var bool - */ - private $resolveDependencies; - /** - * @var bool - */ - private $defectsFirst; - /** - * @var bool - */ - private $backupGlobals; - /** - * @var bool - */ - private $backupStaticAttributes; - /** - * @var bool - */ - private $registerMockObjectsFromTestArgumentsRecursively; - /** - * @var bool - */ - private $conflictBetweenPrinterClassAndTestdox; - public function __construct(bool $cacheResult, ?string $cacheResultFile, $columns, string $colors, bool $stderr, bool $noInteraction, bool $verbose, bool $reverseDefectList, bool $convertDeprecationsToExceptions, bool $convertErrorsToExceptions, bool $convertNoticesToExceptions, bool $convertWarningsToExceptions, bool $forceCoversAnnotation, ?string $bootstrap, bool $processIsolation, bool $failOnEmptyTestSuite, bool $failOnIncomplete, bool $failOnRisky, bool $failOnSkipped, bool $failOnWarning, bool $stopOnDefect, bool $stopOnError, bool $stopOnFailure, bool $stopOnWarning, bool $stopOnIncomplete, bool $stopOnRisky, bool $stopOnSkipped, ?string $extensionsDirectory, ?string $testSuiteLoaderClass, ?string $testSuiteLoaderFile, ?string $printerClass, ?string $printerFile, bool $beStrictAboutChangesToGlobalState, bool $beStrictAboutOutputDuringTests, bool $beStrictAboutResourceUsageDuringSmallTests, bool $beStrictAboutTestsThatDoNotTestAnything, bool $beStrictAboutTodoAnnotatedTests, bool $beStrictAboutCoversAnnotation, bool $enforceTimeLimit, int $defaultTimeLimit, int $timeoutForSmallTests, int $timeoutForMediumTests, int $timeoutForLargeTests, ?string $defaultTestSuite, int $executionOrder, bool $resolveDependencies, bool $defectsFirst, bool $backupGlobals, bool $backupStaticAttributes, bool $registerMockObjectsFromTestArgumentsRecursively, bool $conflictBetweenPrinterClassAndTestdox) - { - $this->cacheResult = $cacheResult; - $this->cacheResultFile = $cacheResultFile; - $this->columns = $columns; - $this->colors = $colors; - $this->stderr = $stderr; - $this->noInteraction = $noInteraction; - $this->verbose = $verbose; - $this->reverseDefectList = $reverseDefectList; - $this->convertDeprecationsToExceptions = $convertDeprecationsToExceptions; - $this->convertErrorsToExceptions = $convertErrorsToExceptions; - $this->convertNoticesToExceptions = $convertNoticesToExceptions; - $this->convertWarningsToExceptions = $convertWarningsToExceptions; - $this->forceCoversAnnotation = $forceCoversAnnotation; - $this->bootstrap = $bootstrap; - $this->processIsolation = $processIsolation; - $this->failOnEmptyTestSuite = $failOnEmptyTestSuite; - $this->failOnIncomplete = $failOnIncomplete; - $this->failOnRisky = $failOnRisky; - $this->failOnSkipped = $failOnSkipped; - $this->failOnWarning = $failOnWarning; - $this->stopOnDefect = $stopOnDefect; - $this->stopOnError = $stopOnError; - $this->stopOnFailure = $stopOnFailure; - $this->stopOnWarning = $stopOnWarning; - $this->stopOnIncomplete = $stopOnIncomplete; - $this->stopOnRisky = $stopOnRisky; - $this->stopOnSkipped = $stopOnSkipped; - $this->extensionsDirectory = $extensionsDirectory; - $this->testSuiteLoaderClass = $testSuiteLoaderClass; - $this->testSuiteLoaderFile = $testSuiteLoaderFile; - $this->printerClass = $printerClass; - $this->printerFile = $printerFile; - $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState; - $this->beStrictAboutOutputDuringTests = $beStrictAboutOutputDuringTests; - $this->beStrictAboutResourceUsageDuringSmallTests = $beStrictAboutResourceUsageDuringSmallTests; - $this->beStrictAboutTestsThatDoNotTestAnything = $beStrictAboutTestsThatDoNotTestAnything; - $this->beStrictAboutTodoAnnotatedTests = $beStrictAboutTodoAnnotatedTests; - $this->beStrictAboutCoversAnnotation = $beStrictAboutCoversAnnotation; - $this->enforceTimeLimit = $enforceTimeLimit; - $this->defaultTimeLimit = $defaultTimeLimit; - $this->timeoutForSmallTests = $timeoutForSmallTests; - $this->timeoutForMediumTests = $timeoutForMediumTests; - $this->timeoutForLargeTests = $timeoutForLargeTests; - $this->defaultTestSuite = $defaultTestSuite; - $this->executionOrder = $executionOrder; - $this->resolveDependencies = $resolveDependencies; - $this->defectsFirst = $defectsFirst; - $this->backupGlobals = $backupGlobals; - $this->backupStaticAttributes = $backupStaticAttributes; - $this->registerMockObjectsFromTestArgumentsRecursively = $registerMockObjectsFromTestArgumentsRecursively; - $this->conflictBetweenPrinterClassAndTestdox = $conflictBetweenPrinterClassAndTestdox; - } - public function cacheResult() : bool - { - return $this->cacheResult; - } - /** - * @psalm-assert-if-true !null $this->cacheResultFile - */ - public function hasCacheResultFile() : bool - { - return $this->cacheResultFile !== null; - } - /** - * @throws Exception + * Wrapper for getMessage() which is declared as final. */ - public function cacheResultFile() : string + public function toString(): string { - if (!$this->hasCacheResultFile()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Cache result file is not configured'); - } - return (string) $this->cacheResultFile; + return $this->getMessage(); } - public function columns() +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use const PHP_EOL; +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ComparisonMethodDoesNotDeclareParameterTypeException extends \PHPUnit\Framework\Exception +{ + public function __construct(string $className, string $methodName) { - return $this->columns; + parent::__construct(sprintf('Parameter of comparison method %s::%s() does not have a declared type.', $className, $methodName), 0, null); } - public function colors() : string + public function __toString(): string { - return $this->colors; + return $this->getMessage() . PHP_EOL; } - public function stderr() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class InvalidCoversTargetException extends \PHPUnit\Framework\CodeCoverageException +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use const PHP_EOL; +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ComparisonMethodDoesNotExistException extends \PHPUnit\Framework\Exception +{ + public function __construct(string $className, string $methodName) { - return $this->stderr; + parent::__construct(sprintf('Comparison method %s::%s() does not exist.', $className, $methodName), 0, null); } - public function noInteraction() : bool + public function __toString(): string { - return $this->noInteraction; + return $this->getMessage() . PHP_EOL; } - public function verbose() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class MissingCoversAnnotationException extends \PHPUnit\Framework\RiskyTestError +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function array_keys; +use function get_object_vars; +use PHPUnit\Util\Filter; +use RuntimeException; +use Throwable; +/** + * Base class for all PHPUnit Framework exceptions. + * + * Ensures that exceptions thrown during a test run do not leave stray + * references behind. + * + * Every Exception contains a stack trace. Each stack frame contains the 'args' + * of the called function. The function arguments can contain references to + * instantiated objects. The references prevent the objects from being + * destructed (until test results are eventually printed), so memory cannot be + * freed up. + * + * With enabled process isolation, test results are serialized in the child + * process and unserialized in the parent process. The stack trace of Exceptions + * may contain objects that cannot be serialized or unserialized (e.g., PDO + * connections). Unserializing user-space objects from the child process into + * the parent would break the intended encapsulation of process isolation. + * + * @see http://fabien.potencier.org/article/9/php-serialization-stack-traces-and-exceptions + * + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +class Exception extends RuntimeException implements \PHPUnit\Exception +{ + /** + * @var array + */ + protected $serializableTrace; + public function __construct($message = '', $code = 0, ?Throwable $previous = null) { - return $this->verbose; + parent::__construct($message, $code, $previous); + $this->serializableTrace = $this->getTrace(); + foreach (array_keys($this->serializableTrace) as $key) { + unset($this->serializableTrace[$key]['args']); + } } - public function reverseDefectList() : bool + public function __toString(): string { - return $this->reverseDefectList; + $string = \PHPUnit\Framework\TestFailure::exceptionToString($this); + if ($trace = Filter::getFilteredStacktrace($this)) { + $string .= "\n" . $trace; + } + return $string; } - public function convertDeprecationsToExceptions() : bool + public function __sleep(): array { - return $this->convertDeprecationsToExceptions; + return array_keys(get_object_vars($this)); } - public function convertErrorsToExceptions() : bool + /** + * Returns the serializable trace (without 'args'). + */ + public function getSerializableTrace(): array { - return $this->convertErrorsToExceptions; + return $this->serializableTrace; } - public function convertNoticesToExceptions() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +class AssertionFailedError extends \PHPUnit\Framework\Exception implements \PHPUnit\Framework\SelfDescribing +{ + /** + * Wrapper for getMessage() which is declared as final. + */ + public function toString(): string { - return $this->convertNoticesToExceptions; + return $this->getMessage(); } - public function convertWarningsToExceptions() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class WarningTestCase extends \PHPUnit\Framework\TestCase +{ + /** + * @var ?bool + */ + protected $backupGlobals = \false; + /** + * @var ?bool + */ + protected $backupStaticAttributes = \false; + /** + * @var ?bool + */ + protected $runTestInSeparateProcess = \false; + /** + * @var string + */ + private $message; + public function __construct(string $message = '') { - return $this->convertWarningsToExceptions; + $this->message = $message; + parent::__construct('Warning'); } - public function forceCoversAnnotation() : bool + public function getMessage(): string { - return $this->forceCoversAnnotation; + return $this->message; } /** - * @psalm-assert-if-true !null $this->bootstrap + * Returns a string representation of the test case. */ - public function hasBootstrap() : bool + public function toString(): string { - return $this->bootstrap !== null; + return 'Warning'; } /** * @throws Exception + * + * @psalm-return never-return */ - public function bootstrap() : string - { - if (!$this->hasBootstrap()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Bootstrap script is not configured'); - } - return (string) $this->bootstrap; - } - public function processIsolation() : bool - { - return $this->processIsolation; - } - public function failOnEmptyTestSuite() : bool - { - return $this->failOnEmptyTestSuite; - } - public function failOnIncomplete() : bool - { - return $this->failOnIncomplete; - } - public function failOnRisky() : bool - { - return $this->failOnRisky; - } - public function failOnSkipped() : bool - { - return $this->failOnSkipped; - } - public function failOnWarning() : bool - { - return $this->failOnWarning; - } - public function stopOnDefect() : bool - { - return $this->stopOnDefect; - } - public function stopOnError() : bool - { - return $this->stopOnError; - } - public function stopOnFailure() : bool - { - return $this->stopOnFailure; - } - public function stopOnWarning() : bool - { - return $this->stopOnWarning; - } - public function stopOnIncomplete() : bool - { - return $this->stopOnIncomplete; - } - public function stopOnRisky() : bool - { - return $this->stopOnRisky; - } - public function stopOnSkipped() : bool + protected function runTest(): void { - return $this->stopOnSkipped; + throw new \PHPUnit\Framework\Warning($this->message); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class LessThan extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @psalm-assert-if-true !null $this->extensionsDirectory + * @var float|int */ - public function hasExtensionsDirectory() : bool - { - return $this->extensionsDirectory !== null; - } + private $value; /** - * @throws Exception + * @param float|int $value */ - public function extensionsDirectory() : string + public function __construct($value) { - if (!$this->hasExtensionsDirectory()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Extensions directory is not configured'); - } - return (string) $this->extensionsDirectory; + $this->value = $value; } /** - * @psalm-assert-if-true !null $this->testSuiteLoaderClass + * Returns a string representation of the constraint. * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + * @throws InvalidArgumentException */ - public function hasTestSuiteLoaderClass() : bool + public function toString(): string { - return $this->testSuiteLoaderClass !== null; + return 'is less than ' . $this->exporter()->export($this->value); } /** - * @throws Exception + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + * @param mixed $other value or object to evaluate */ - public function testSuiteLoaderClass() : string + protected function matches($other): bool { - if (!$this->hasTestSuiteLoaderClass()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('TestSuiteLoader class is not configured'); - } - return (string) $this->testSuiteLoaderClass; + return $this->value > $other; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function count; +use function gettype; +use function sprintf; +use function strpos; +use Countable; +use EmptyIterator; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsEmpty extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @psalm-assert-if-true !null $this->testSuiteLoaderFile - * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + * Returns a string representation of the constraint. */ - public function hasTestSuiteLoaderFile() : bool + public function toString(): string { - return $this->testSuiteLoaderFile !== null; + return 'is empty'; } /** - * @throws Exception + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + * @param mixed $other value or object to evaluate */ - public function testSuiteLoaderFile() : string + protected function matches($other): bool { - if (!$this->hasTestSuiteLoaderFile()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('TestSuiteLoader sourcecode file is not configured'); + if ($other instanceof EmptyIterator) { + return \true; } - return (string) $this->testSuiteLoaderFile; + if ($other instanceof Countable) { + return count($other) === 0; + } + return empty($other); } /** - * @psalm-assert-if-true !null $this->printerClass + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object */ - public function hasPrinterClass() : bool + protected function failureDescription($other): string { - return $this->printerClass !== null; + $type = gettype($other); + return sprintf('%s %s %s', strpos($type, 'a') === 0 || strpos($type, 'o') === 0 ? 'an' : 'a', $type, $this->toString()); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function count; +use function is_array; +use function iterator_count; +use function sprintf; +use Countable; +use EmptyIterator; +use Generator; +use Iterator; +use IteratorAggregate; +use PHPUnit\Framework\Exception; +use Traversable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +class Count extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @throws Exception + * @var int */ - public function printerClass() : string + private $expectedCount; + public function __construct(int $expected) { - if (!$this->hasPrinterClass()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('ResultPrinter class is not configured'); - } - return (string) $this->printerClass; + $this->expectedCount = $expected; + } + public function toString(): string + { + return sprintf('count matches %d', $this->expectedCount); } /** - * @psalm-assert-if-true !null $this->printerFile + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @throws Exception */ - public function hasPrinterFile() : bool + protected function matches($other): bool { - return $this->printerFile !== null; + return $this->expectedCount === $this->getCountOf($other); } /** * @throws Exception */ - public function printerFile() : string + protected function getCountOf($other): ?int { - if (!$this->hasPrinterFile()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('ResultPrinter sourcecode file is not configured'); + if ($other instanceof Countable || is_array($other)) { + return count($other); } - return (string) $this->printerFile; - } - public function beStrictAboutChangesToGlobalState() : bool - { - return $this->beStrictAboutChangesToGlobalState; - } - public function beStrictAboutOutputDuringTests() : bool - { - return $this->beStrictAboutOutputDuringTests; - } - public function beStrictAboutResourceUsageDuringSmallTests() : bool - { - return $this->beStrictAboutResourceUsageDuringSmallTests; - } - public function beStrictAboutTestsThatDoNotTestAnything() : bool - { - return $this->beStrictAboutTestsThatDoNotTestAnything; - } - public function beStrictAboutTodoAnnotatedTests() : bool - { - return $this->beStrictAboutTodoAnnotatedTests; - } - public function beStrictAboutCoversAnnotation() : bool - { - return $this->beStrictAboutCoversAnnotation; - } - public function enforceTimeLimit() : bool - { - return $this->enforceTimeLimit; - } - public function defaultTimeLimit() : int - { - return $this->defaultTimeLimit; - } - public function timeoutForSmallTests() : int - { - return $this->timeoutForSmallTests; - } - public function timeoutForMediumTests() : int - { - return $this->timeoutForMediumTests; - } - public function timeoutForLargeTests() : int - { - return $this->timeoutForLargeTests; + if ($other instanceof EmptyIterator) { + return 0; + } + if ($other instanceof Traversable) { + while ($other instanceof IteratorAggregate) { + try { + $other = $other->getIterator(); + } catch (\Exception $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + } + $iterator = $other; + if ($iterator instanceof Generator) { + return $this->getCountOfGenerator($iterator); + } + if (!$iterator instanceof Iterator) { + return iterator_count($iterator); + } + $key = $iterator->key(); + $count = iterator_count($iterator); + // Manually rewind $iterator to previous key, since iterator_count + // moves pointer. + if ($key !== null) { + $iterator->rewind(); + while ($iterator->valid() && $key !== $iterator->key()) { + $iterator->next(); + } + } + return $count; + } + return null; } /** - * @psalm-assert-if-true !null $this->defaultTestSuite + * Returns the total number of iterations from a generator. + * This will fully exhaust the generator. */ - public function hasDefaultTestSuite() : bool + protected function getCountOfGenerator(Generator $generator): int { - return $this->defaultTestSuite !== null; + for ($count = 0; $generator->valid(); $generator->next()) { + $count++; + } + return $count; } /** - * @throws Exception + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object */ - public function defaultTestSuite() : string - { - if (!$this->hasDefaultTestSuite()) { - throw new \PHPUnit\TextUI\XmlConfiguration\Exception('Default test suite is not configured'); - } - return (string) $this->defaultTestSuite; - } - public function executionOrder() : int - { - return $this->executionOrder; - } - public function resolveDependencies() : bool + protected function failureDescription($other): string { - return $this->resolveDependencies; - } - public function defectsFirst() : bool - { - return $this->defectsFirst; - } - public function backupGlobals() : bool - { - return $this->backupGlobals; - } - public function backupStaticAttributes() : bool - { - return $this->backupStaticAttributes; - } - public function registerMockObjectsFromTestArgumentsRecursively() : bool - { - return $this->registerMockObjectsFromTestArgumentsRecursively; + return sprintf('actual size %d matches expected size %d', (int) $this->getCountOf($other), $this->expectedCount); } - public function conflictBetweenPrinterClassAndTestdox() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class SameSize extends \PHPUnit\Framework\Constraint\Count +{ + public function __construct(iterable $expected) { - return $this->conflictBetweenPrinterClassAndTestdox; + parent::__construct((int) $this->getCountOf($expected)); } } path = $path; - $this->prefix = $prefix; - $this->suffix = $suffix; - $this->phpVersion = $phpVersion; - $this->phpVersionOperator = $phpVersionOperator; - } - public function path() : string - { - return $this->path; - } - public function prefix() : string - { - return $this->prefix; - } - public function suffix() : string + public function __construct($value) { - return $this->suffix; + $this->value = $value; } - public function phpVersion() : string + /** + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException + */ + public function toString(): string { - return $this->phpVersion; + return 'is greater than ' . $this->exporter()->export($this->value); } - public function phpVersionOperator() : VersionComparisonOperator + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return $this->phpVersionOperator; + return $this->value < $other; } } directories = $directories; + return $returnResult ? \true : null; } /** - * @return TestDirectory[] + * Returns a string representation of the constraint. */ - public function asArray() : array - { - return $this->directories; - } - public function count() : int - { - return count($this->directories); - } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollectionIterator + public function toString(): string { - return new \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollectionIterator($this); + return 'is anything'; } - public function isEmpty() : bool + /** + * Counts the number of constraint elements. + */ + public function count(): int { - return $this->count() === 0; + return 0; } } directories = $directories->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool - { - return $this->position < count($this->directories); - } - public function key() : int - { - return $this->position; - } - public function current() : \PHPUnit\TextUI\XmlConfiguration\TestDirectory - { - return $this->directories[$this->position]; - } - public function next() : void + protected function matches($other): bool { - $this->position++; + if ($other instanceof SplObjectStorage) { + return $other->contains($this->value()); + } + foreach ($other as $element) { + if ($this->value() === $element) { + return \true; + } + } + return \false; } } path = $path; - $this->phpVersion = $phpVersion; - $this->phpVersionOperator = $phpVersionOperator; - } - public function path() : string + public function __construct(string $type, bool $isNativeType = \true) { - return $this->path; + if ($isNativeType) { + $this->constraint = new \PHPUnit\Framework\Constraint\IsType($type); + } else { + $this->constraint = new \PHPUnit\Framework\Constraint\IsInstanceOf($type); + } + $this->type = $type; } - public function phpVersion() : string + /** + * Evaluates the constraint for parameter $other. + * + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @param mixed|Traversable $other + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + */ + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - return $this->phpVersion; + $success = \true; + foreach ($other as $item) { + if (!$this->constraint->evaluate($item, '', \true)) { + $success = \false; + break; + } + } + if ($returnResult) { + return $success; + } + if (!$success) { + $this->fail($other, $description); + } + return null; } - public function phpVersionOperator() : VersionComparisonOperator + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - return $this->phpVersionOperator; + return 'contains only values of type "' . $this->type . '"'; } } files = $files; + $this->key = $key; } /** - * @return TestFile[] + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException */ - public function asArray() : array - { - return $this->files; - } - public function count() : int + public function toString(): string { - return count($this->files); + return 'has the key ' . $this->exporter()->export($this->key); } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\TestFileCollectionIterator + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return new \PHPUnit\TextUI\XmlConfiguration\TestFileCollectionIterator($this); + if (is_array($other)) { + return array_key_exists($this->key, $other); + } + if ($other instanceof ArrayAccess) { + return $other->offsetExists($this->key); + } + return \false; } - public function isEmpty() : bool + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException + */ + protected function failureDescription($other): string { - return $this->count() === 0; + return 'an array ' . $this->toString(); } } value = $value; + } /** - * @var int + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException */ - private $position; - public function __construct(\PHPUnit\TextUI\XmlConfiguration\TestFileCollection $files) + public function toString(): string { - $this->files = $files->asArray(); + return 'contains ' . $this->exporter()->export($this->value); } - public function count() : int + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException + */ + protected function failureDescription($other): string { - return iterator_count($this); + return sprintf('%s %s', is_array($other) ? 'an array' : 'a traversable', $this->toString()); } - public function rewind() : void + protected function value() { - $this->position = 0; + return $this->value; } - public function valid() : bool +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use SplObjectStorage; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class TraversableContainsEqual extends \PHPUnit\Framework\Constraint\TraversableContains +{ + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return $this->position < count($this->files); + if ($other instanceof SplObjectStorage) { + return $other->contains($this->value()); + } + foreach ($other as $element) { + /* @noinspection TypeUnsafeComparisonInspection */ + if ($this->value() == $element) { + return \true; + } + } + return \false; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function json_decode; +use function sprintf; +use PHPUnit\Framework\Exception; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnit\Util\Json; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class JsonMatches extends \PHPUnit\Framework\Constraint\Constraint +{ + /** + * @var string + */ + private $value; + public function __construct(string $value) + { + $this->value = $value; } - public function key() : int + /** + * Returns a string representation of the object. + */ + public function toString(): string { - return $this->position; + return sprintf('matches JSON string "%s"', $this->value); } - public function current() : \PHPUnit\TextUI\XmlConfiguration\TestFile + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * This method can be overridden to implement the evaluation algorithm. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return $this->files[$this->position]; + [$error, $recodedOther] = Json::canonicalize($other); + if ($error) { + return \false; + } + [$error, $recodedValue] = Json::canonicalize($this->value); + if ($error) { + return \false; + } + return $recodedOther == $recodedValue; } - public function next() : void + /** + * Throws an exception for the given compared value and test description. + * + * @param mixed $other evaluated value or object + * @param string $description Additional information about the test + * + * @throws Exception + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-return never-return + */ + protected function fail($other, $description, ?ComparisonFailure $comparisonFailure = null): void { - $this->position++; + if ($comparisonFailure === null) { + [$error, $recodedOther] = Json::canonicalize($other); + if ($error) { + parent::fail($other, $description); + } + [$error, $recodedValue] = Json::canonicalize($this->value); + if ($error) { + parent::fail($other, $description); + } + $comparisonFailure = new ComparisonFailure(json_decode($this->value), json_decode($other), Json::prettify($recodedValue), Json::prettify($recodedOther), \false, 'Failed asserting that two json values are equal.'); + } + parent::fail($other, $description, $comparisonFailure); } } name = $name; - $this->directories = $directories; - $this->files = $files; - $this->exclude = $exclude; - } - public function name() : string + public function toString(): string { - return $this->name; - } - public function directories() : \PHPUnit\TextUI\XmlConfiguration\TestDirectoryCollection - { - return $this->directories; + return 'is readable'; } - public function files() : \PHPUnit\TextUI\XmlConfiguration\TestFileCollection + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return $this->files; + return is_readable($other); } - public function exclude() : \PHPUnit\TextUI\XmlConfiguration\FileCollection + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string { - return $this->exclude; + return sprintf('"%s" is readable', $other); } } testSuites = $testSuites; + return 'directory exists'; } /** - * @return TestSuite[] + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - public function asArray() : array - { - return $this->testSuites; - } - public function count() : int + protected function matches($other): bool { - return count($this->testSuites); - } - public function getIterator() : \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollectionIterator - { - return new \PHPUnit\TextUI\XmlConfiguration\TestSuiteCollectionIterator($this); + return is_dir($other); } - public function isEmpty() : bool + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string { - return $this->count() === 0; + return sprintf('directory "%s" exists', $other); } } testSuites = $testSuites->asArray(); - } - public function count() : int - { - return iterator_count($this); - } - public function rewind() : void - { - $this->position = 0; - } - public function valid() : bool + public function toString(): string { - return $this->position < count($this->testSuites); - } - public function key() : int - { - return $this->position; + return 'is writable'; } - public function current() : \PHPUnit\TextUI\XmlConfiguration\TestSuite + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return $this->testSuites[$this->position]; + return is_writable($other); } - public function next() : void + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string { - $this->position++; + return sprintf('"%s" is writable', $other); } } PHP(?:Unit)?)\\s+(?P[<>=!]{0,2})\\s*(?P[\\d\\.-]+(dev|(RC|alpha|beta)[\\d\\.])?)[ \\t]*\\r?$/m'; - private const REGEX_REQUIRES_VERSION_CONSTRAINT = '/@requires\\s+(?PPHP(?:Unit)?)\\s+(?P[\\d\\t \\-.|~^]+)[ \\t]*\\r?$/m'; - private const REGEX_REQUIRES_OS = '/@requires\\s+(?POS(?:FAMILY)?)\\s+(?P.+?)[ \\t]*\\r?$/m'; - private const REGEX_REQUIRES_SETTING = '/@requires\\s+(?Psetting)\\s+(?P([^ ]+?))\\s*(?P[\\w\\.-]+[\\w\\.]?)?[ \\t]*\\r?$/m'; - private const REGEX_REQUIRES = '/@requires\\s+(?Pfunction|extension)\\s+(?P([^\\s<>=!]+))\\s*(?P[<>=!]{0,2})\\s*(?P[\\d\\.-]+[\\d\\.]?)?[ \\t]*\\r?$/m'; - private const REGEX_TEST_WITH = '/@testWith\\s+/'; - /** @var string */ - private $docComment; - /** @var bool */ - private $isMethod; - /** @var array> pre-parsed annotations indexed by name and occurrence index */ - private $symbolAnnotations; - /** - * @var null|array - * - * @psalm-var null|(array{ - * __OFFSET: array&array{__FILE: string}, - * setting?: array, - * extension_versions?: array - * }&array< - * string, - * string|array{version: string, operator: string}|array{constraint: string}|array - * >) - */ - private $parsedRequirements; - /** @var int */ - private $startLine; - /** @var int */ - private $endLine; - /** @var string */ - private $fileName; - /** @var string */ - private $name; - /** - * @var string - * - * @psalm-var class-string - */ - private $className; - public static function ofClass(ReflectionClass $class) : self - { - $className = $class->getName(); - return new self((string) $class->getDocComment(), \false, self::extractAnnotationsFromReflector($class), $class->getStartLine(), $class->getEndLine(), $class->getFileName(), $className, $className); - } - /** - * @psalm-param class-string $classNameInHierarchy + * Returns a string representation of the constraint. */ - public static function ofMethod(ReflectionMethod $method, string $classNameInHierarchy) : self + public function toString(): string { - return new self((string) $method->getDocComment(), \true, self::extractAnnotationsFromReflector($method), $method->getStartLine(), $method->getEndLine(), $method->getFileName(), $method->getName(), $classNameInHierarchy); + return 'file exists'; } /** - * Note: we do not preserve an instance of the reflection object, since it cannot be safely (de-)serialized. - * - * @param array> $symbolAnnotations + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @psalm-param class-string $className + * @param mixed $other value or object to evaluate */ - private function __construct(string $docComment, bool $isMethod, array $symbolAnnotations, int $startLine, int $endLine, string $fileName, string $name, string $className) + protected function matches($other): bool { - $this->docComment = $docComment; - $this->isMethod = $isMethod; - $this->symbolAnnotations = $symbolAnnotations; - $this->startLine = $startLine; - $this->endLine = $endLine; - $this->fileName = $fileName; - $this->name = $name; - $this->className = $className; + return file_exists($other); } /** - * @psalm-return array{ - * __OFFSET: array&array{__FILE: string}, - * setting?: array, - * extension_versions?: array - * }&array< - * string, - * string|array{version: string, operator: string}|array{constraint: string}|array - * > + * Returns the description of the failure. * - * @throws Warning if the requirements version constraint is not well-formed - */ - public function requirements() : array - { - if ($this->parsedRequirements !== null) { - return $this->parsedRequirements; - } - $offset = $this->startLine; - $requires = []; - $recordedSettings = []; - $extensionVersions = []; - $recordedOffsets = ['__FILE' => realpath($this->fileName)]; - // Trim docblock markers, split it into lines and rewind offset to start of docblock - $lines = preg_replace(['#^/\\*{2}#', '#\\*/$#'], '', preg_split('/\\r\\n|\\r|\\n/', $this->docComment)); - $offset -= count($lines); - foreach ($lines as $line) { - if (preg_match(self::REGEX_REQUIRES_OS, $line, $matches)) { - $requires[$matches['name']] = $matches['value']; - $recordedOffsets[$matches['name']] = $offset; - } - if (preg_match(self::REGEX_REQUIRES_VERSION, $line, $matches)) { - $requires[$matches['name']] = ['version' => $matches['version'], 'operator' => $matches['operator']]; - $recordedOffsets[$matches['name']] = $offset; - } - if (preg_match(self::REGEX_REQUIRES_VERSION_CONSTRAINT, $line, $matches)) { - if (!empty($requires[$matches['name']])) { - $offset++; - continue; - } - try { - $versionConstraintParser = new VersionConstraintParser(); - $requires[$matches['name'] . '_constraint'] = ['constraint' => $versionConstraintParser->parse(trim($matches['constraint']))]; - $recordedOffsets[$matches['name'] . '_constraint'] = $offset; - } catch (\PHPUnit\PharIo\Version\Exception $e) { - throw new Warning($e->getMessage(), $e->getCode(), $e); - } - } - if (preg_match(self::REGEX_REQUIRES_SETTING, $line, $matches)) { - $recordedSettings[$matches['setting']] = $matches['value']; - $recordedOffsets['__SETTING_' . $matches['setting']] = $offset; - } - if (preg_match(self::REGEX_REQUIRES, $line, $matches)) { - $name = $matches['name'] . 's'; - if (!isset($requires[$name])) { - $requires[$name] = []; - } - $requires[$name][] = $matches['value']; - $recordedOffsets[$matches['name'] . '_' . $matches['value']] = $offset; - if ($name === 'extensions' && !empty($matches['version'])) { - $extensionVersions[$matches['value']] = ['version' => $matches['version'], 'operator' => $matches['operator']]; - } - } - $offset++; - } - return $this->parsedRequirements = array_merge($requires, ['__OFFSET' => $recordedOffsets], array_filter(['setting' => $recordedSettings, 'extension_versions' => $extensionVersions])); - } - /** - * Returns the provided data for a method. + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. * - * @throws Exception - */ - public function getProvidedData() : ?array - { - /** @noinspection SuspiciousBinaryOperationInspection */ - $data = $this->getDataFromDataProviderAnnotation($this->docComment) ?? $this->getDataFromTestWithAnnotation($this->docComment); - if ($data === null) { - return null; - } - if ($data === []) { - throw new SkippedTestError(); - } - foreach ($data as $key => $value) { - if (!is_array($value)) { - throw new InvalidDataSetException(sprintf('Data set %s is invalid.', is_int($key) ? '#' . $key : '"' . $key . '"')); - } - } - return $data; - } - /** - * @psalm-return array + * @param mixed $other evaluated value or object */ - public function getInlineAnnotations() : array - { - $code = file($this->fileName); - $lineNumber = $this->startLine; - $startLine = $this->startLine - 1; - $endLine = $this->endLine - 1; - $codeLines = array_slice($code, $startLine, $endLine - $startLine + 1); - $annotations = []; - foreach ($codeLines as $line) { - if (preg_match('#/\\*\\*?\\s*@(?P[A-Za-z_-]+)(?:[ \\t]+(?P.*?))?[ \\t]*\\r?\\*/$#m', $line, $matches)) { - $annotations[strtolower($matches['name'])] = ['line' => $lineNumber, 'value' => $matches['value']]; - } - $lineNumber++; - } - return $annotations; - } - public function symbolAnnotations() : array - { - return $this->symbolAnnotations; - } - public function isHookToBeExecutedBeforeClass() : bool - { - return $this->isMethod && \false !== strpos($this->docComment, '@beforeClass'); - } - public function isHookToBeExecutedAfterClass() : bool - { - return $this->isMethod && \false !== strpos($this->docComment, '@afterClass'); - } - public function isToBeExecutedBeforeTest() : bool - { - return 1 === preg_match('/@before\\b/', $this->docComment); - } - public function isToBeExecutedAfterTest() : bool + protected function failureDescription($other): string { - return 1 === preg_match('/@after\\b/', $this->docComment); - } - public function isToBeExecutedAsPreCondition() : bool - { - return 1 === preg_match('/@preCondition\\b/', $this->docComment); - } - public function isToBeExecutedAsPostCondition() : bool - { - return 1 === preg_match('/@postCondition\\b/', $this->docComment); - } - private function getDataFromDataProviderAnnotation(string $docComment) : ?array - { - $methodName = null; - $className = $this->className; - if ($this->isMethod) { - $methodName = $this->name; - } - if (!preg_match_all(self::REGEX_DATA_PROVIDER, $docComment, $matches)) { - return null; - } - $result = []; - foreach ($matches[1] as $match) { - $dataProviderMethodNameNamespace = explode('\\', $match); - $leaf = explode('::', array_pop($dataProviderMethodNameNamespace)); - $dataProviderMethodName = array_pop($leaf); - if (empty($dataProviderMethodNameNamespace)) { - $dataProviderMethodNameNamespace = ''; - } else { - $dataProviderMethodNameNamespace = implode('\\', $dataProviderMethodNameNamespace) . '\\'; - } - if (empty($leaf)) { - $dataProviderClassName = $className; - } else { - /** @psalm-var class-string $dataProviderClassName */ - $dataProviderClassName = $dataProviderMethodNameNamespace . array_pop($leaf); - } - try { - $dataProviderClass = new ReflectionClass($dataProviderClassName); - $dataProviderMethod = $dataProviderClass->getMethod($dataProviderMethodName); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - // @codeCoverageIgnoreEnd - } - if ($dataProviderMethod->isStatic()) { - $object = null; - } else { - $object = $dataProviderClass->newInstance(); - } - if ($dataProviderMethod->getNumberOfParameters() === 0) { - $data = $dataProviderMethod->invoke($object); - } else { - $data = $dataProviderMethod->invoke($object, $methodName); - } - if ($data instanceof Traversable) { - $origData = $data; - $data = []; - foreach ($origData as $key => $value) { - if (is_int($key)) { - $data[] = $value; - } elseif (array_key_exists($key, $data)) { - throw new InvalidDataProviderException(sprintf('The key "%s" has already been defined in the data provider "%s".', $key, $match)); - } else { - $data[$key] = $value; - } - } - } - if (is_array($data)) { - $result = array_merge($result, $data); - } - } - return $result; + return sprintf('file "%s" exists', $other); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function is_nan; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsNan extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @throws Exception - */ - private function getDataFromTestWithAnnotation(string $docComment) : ?array - { - $docComment = $this->cleanUpMultiLineAnnotation($docComment); - if (!preg_match(self::REGEX_TEST_WITH, $docComment, $matches, PREG_OFFSET_CAPTURE)) { - return null; - } - $offset = strlen($matches[0][0]) + $matches[0][1]; - $annotationContent = substr($docComment, $offset); - $data = []; - foreach (explode("\n", $annotationContent) as $candidateRow) { - $candidateRow = trim($candidateRow); - if ($candidateRow[0] !== '[') { - break; - } - $dataSet = json_decode($candidateRow, \true); - if (json_last_error() !== JSON_ERROR_NONE) { - throw new Exception('The data set for the @testWith annotation cannot be parsed: ' . json_last_error_msg()); - } - $data[] = $dataSet; - } - if (!$data) { - throw new Exception('The data set for the @testWith annotation cannot be parsed.'); - } - return $data; - } - private function cleanUpMultiLineAnnotation(string $docComment) : string - { - //removing initial ' * ' for docComment - $docComment = str_replace("\r\n", "\n", $docComment); - $docComment = preg_replace('/' . '\\n' . '\\s*' . '\\*' . '\\s?' . '/', "\n", $docComment); - $docComment = (string) substr($docComment, 0, -1); - return rtrim($docComment, "\n"); - } - /** @return array> */ - private static function parseDocBlock(string $docBlock) : array - { - // Strip away the docblock header and footer to ease parsing of one line annotations - $docBlock = (string) substr($docBlock, 3, -2); - $annotations = []; - if (preg_match_all('/@(?P[A-Za-z_-]+)(?:[ \\t]+(?P.*?))?[ \\t]*\\r?$/m', $docBlock, $matches)) { - $numMatches = count($matches[0]); - for ($i = 0; $i < $numMatches; $i++) { - $annotations[$matches['name'][$i]][] = (string) $matches['value'][$i]; - } - } - return $annotations; + * Returns a string representation of the constraint. + */ + public function toString(): string + { + return 'is nan'; } - /** @param ReflectionClass|ReflectionFunctionAbstract $reflector */ - private static function extractAnnotationsFromReflector(Reflector $reflector) : array + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - $annotations = []; - if ($reflector instanceof ReflectionClass) { - $annotations = array_merge($annotations, ...array_map(static function (ReflectionClass $trait) : array { - return self::parseDocBlock((string) $trait->getDocComment()); - }, array_values($reflector->getTraits()))); - } - return array_merge($annotations, self::parseDocBlock((string) $reflector->getDocComment())); + return is_nan($other); } } indexed by class name */ - private $classDocBlocks = []; - /** @var array> indexed by class name and method name */ - private $methodDocBlocks = []; - public static function getInstance() : self + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - return self::$instance ?? (self::$instance = new self()); + return 'is infinite'; } - private function __construct() + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { + return is_infinite($other); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function is_finite; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsFinite extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @throws Exception - * - * @psalm-param class-string $class + * Returns a string representation of the constraint. */ - public function forClassName(string $class) : \PHPUnit\Util\Annotation\DocBlock + public function toString(): string { - if (array_key_exists($class, $this->classDocBlocks)) { - return $this->classDocBlocks[$class]; - } - try { - $reflection = new ReflectionClass($class); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - return $this->classDocBlocks[$class] = \PHPUnit\Util\Annotation\DocBlock::ofClass($reflection); + return 'is finite'; } /** - * @throws Exception + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @psalm-param class-string $classInHierarchy + * @param mixed $other value or object to evaluate */ - public function forMethod(string $classInHierarchy, string $method) : \PHPUnit\Util\Annotation\DocBlock + protected function matches($other): bool { - if (isset($this->methodDocBlocks[$classInHierarchy][$method])) { - return $this->methodDocBlocks[$classInHierarchy][$method]; - } - try { - $reflection = new ReflectionMethod($classInHierarchy, $method); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - return $this->methodDocBlocks[$classInHierarchy][$method] = \PHPUnit\Util\Annotation\DocBlock::ofMethod($reflection, $classInHierarchy); + return is_finite($other); } } value = $value; } /** - * @throws Exception + * Evaluates the constraint for parameter $other. * - * @return string[] + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException */ - public function getBlacklistedDirectories() : array + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - return (new \PHPUnit\Util\ExcludeList())->getExcludedDirectories(); + // If $this->value and $other are identical, they are also equal. + // This is the most common path and will allow us to skip + // initialization of all the comparators. + if ($this->value === $other) { + return \true; + } + $comparatorFactory = ComparatorFactory::getInstance(); + try { + $comparator = $comparatorFactory->getComparatorFor($this->value, $other); + $comparator->assertEquals($this->value, $other, 0.0, \false, \true); + } catch (ComparisonFailure $f) { + if ($returnResult) { + return \false; + } + throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); + } + return \true; } /** - * @throws Exception + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException */ - public function isBlacklisted(string $file) : bool + public function toString(): string { - return (new \PHPUnit\Util\ExcludeList())->isExcluded($file); + if (is_string($this->value)) { + if (strpos($this->value, "\n") !== \false) { + return 'is equal to '; + } + return sprintf("is equal to '%s'", $this->value); + } + return sprintf('is equal to %s', $this->exporter()->export($this->value)); } } value = $value; + $this->delta = $delta; + } + /** + * Evaluates the constraint for parameter $other. * - * @psalm-param OriginalType $original + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. * - * @psalm-return OriginalType + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException */ - public static function clone(object $original) : object + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { + // If $this->value and $other are identical, they are also equal. + // This is the most common path and will allow us to skip + // initialization of all the comparators. + if ($this->value === $other) { + return \true; + } + $comparatorFactory = ComparatorFactory::getInstance(); try { - return clone $original; - } catch (Throwable $t) { - return $original; + $comparator = $comparatorFactory->getComparatorFor($this->value, $other); + $comparator->assertEquals($this->value, $other, $this->delta); + } catch (ComparisonFailure $f) { + if ($returnResult) { + return \false; + } + throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); } + return \true; + } + /** + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException + */ + public function toString(): string + { + return sprintf('is equal to %s with delta <%F>', $this->exporter()->export($this->value), $this->delta); } } - */ - private const WHITESPACE_MAP = [' ' => '·', "\t" => '⇥']; - /** - * @var array + * @var mixed */ - private const WHITESPACE_EOL_MAP = [' ' => '·', "\t" => '⇥', "\n" => '↵', "\r" => '⟵']; + private $value; + public function __construct($value) + { + $this->value = $value; + } /** - * @var array + * Evaluates the constraint for parameter $other. + * + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException */ - private static $ansiCodes = ['reset' => '0', 'bold' => '1', 'dim' => '2', 'dim-reset' => '22', 'underlined' => '4', 'fg-default' => '39', 'fg-black' => '30', 'fg-red' => '31', 'fg-green' => '32', 'fg-yellow' => '33', 'fg-blue' => '34', 'fg-magenta' => '35', 'fg-cyan' => '36', 'fg-white' => '37', 'bg-default' => '49', 'bg-black' => '40', 'bg-red' => '41', 'bg-green' => '42', 'bg-yellow' => '43', 'bg-blue' => '44', 'bg-magenta' => '45', 'bg-cyan' => '46', 'bg-white' => '47']; - public static function colorize(string $color, string $buffer) : string + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - if (trim($buffer) === '') { - return $buffer; + // If $this->value and $other are identical, they are also equal. + // This is the most common path and will allow us to skip + // initialization of all the comparators. + if ($this->value === $other) { + return \true; } - $codes = array_map('\\trim', explode(',', $color)); - $styles = []; - foreach ($codes as $code) { - if (isset(self::$ansiCodes[$code])) { - $styles[] = self::$ansiCodes[$code] ?? ''; + $comparatorFactory = ComparatorFactory::getInstance(); + try { + $comparator = $comparatorFactory->getComparatorFor($this->value, $other); + $comparator->assertEquals($this->value, $other, 0.0, \true, \false); + } catch (ComparisonFailure $f) { + if ($returnResult) { + return \false; } + throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); } - if (empty($styles)) { - return $buffer; - } - return self::optimizeColor(sprintf("\x1b[%sm", implode(';', $styles)) . $buffer . "\x1b[0m"); + return \true; } - public static function colorizePath(string $path, ?string $prevPath = null, bool $colorizeFilename = \false) : string + /** + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException + */ + public function toString(): string { - if ($prevPath === null) { - $prevPath = ''; - } - $path = explode(DIRECTORY_SEPARATOR, $path); - $prevPath = explode(DIRECTORY_SEPARATOR, $prevPath); - for ($i = 0; $i < min(count($path), count($prevPath)); $i++) { - if ($path[$i] == $prevPath[$i]) { - $path[$i] = self::dim($path[$i]); + if (is_string($this->value)) { + if (strpos($this->value, "\n") !== \false) { + return 'is equal to '; } + return sprintf("is equal to '%s'", $this->value); } - if ($colorizeFilename) { - $last = count($path) - 1; - $path[$last] = preg_replace_callback('/([\\-_\\.]+|phpt$)/', static function ($matches) { - return self::dim($matches[0]); - }, $path[$last]); - } - return self::optimizeColor(implode(self::dim(DIRECTORY_SEPARATOR), $path)); - } - public static function dim(string $buffer) : string - { - if (trim($buffer) === '') { - return $buffer; - } - return "\x1b[2m{$buffer}\x1b[22m"; - } - public static function visualizeWhitespace(string $buffer, bool $visualizeEOL = \false) : string - { - $replaceMap = $visualizeEOL ? self::WHITESPACE_EOL_MAP : self::WHITESPACE_MAP; - return preg_replace_callback('/\\s+/', static function ($matches) use($replaceMap) { - return self::dim(strtr($matches[0], $replaceMap)); - }, $buffer); - } - private static function optimizeColor(string $buffer) : string - { - $patterns = ["/\x1b\\[22m\x1b\\[2m/" => '', "/\x1b\\[([^m]*)m\x1b\\[([1-9][0-9;]*)m/" => "\x1b[\$1;\$2m", "/(\x1b\\[[^m]*m)+(\x1b\\[0m)/" => '$2']; - return preg_replace(array_keys($patterns), array_values($patterns), $buffer); + return sprintf('is equal to %s', $this->exporter()->export($this->value)); } } convertDeprecationsToExceptions = $convertDeprecationsToExceptions; - $this->convertErrorsToExceptions = $convertErrorsToExceptions; - $this->convertNoticesToExceptions = $convertNoticesToExceptions; - $this->convertWarningsToExceptions = $convertWarningsToExceptions; + $this->value = $value; + $this->delta = $delta; + $this->canonicalize = $canonicalize; + $this->ignoreCase = $ignoreCase; } - public function __invoke(int $errorNumber, string $errorString, string $errorFile, int $errorLine) : bool + /** + * Evaluates the constraint for parameter $other. + * + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException + */ + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - /* - * Do not raise an exception when the error suppression operator (@) was used. - * - * @see https://github.com/sebastianbergmann/phpunit/issues/3739 - */ - if (!($errorNumber & error_reporting())) { - return \false; + // If $this->value and $other are identical, they are also equal. + // This is the most common path and will allow us to skip + // initialization of all the comparators. + if ($this->value === $other) { + return \true; } - switch ($errorNumber) { - case E_NOTICE: - case E_USER_NOTICE: - case E_STRICT: - if (!$this->convertNoticesToExceptions) { - return \false; - } - throw new Notice($errorString, $errorNumber, $errorFile, $errorLine); - case E_WARNING: - case E_USER_WARNING: - if (!$this->convertWarningsToExceptions) { - return \false; - } - throw new Warning($errorString, $errorNumber, $errorFile, $errorLine); - case E_DEPRECATED: - case E_USER_DEPRECATED: - if (!$this->convertDeprecationsToExceptions) { - return \false; - } - throw new Deprecated($errorString, $errorNumber, $errorFile, $errorLine); - default: - if (!$this->convertErrorsToExceptions) { - return \false; - } - throw new Error($errorString, $errorNumber, $errorFile, $errorLine); + $comparatorFactory = ComparatorFactory::getInstance(); + try { + $comparator = $comparatorFactory->getComparatorFor($this->value, $other); + $comparator->assertEquals($this->value, $other, $this->delta, $this->canonicalize, $this->ignoreCase); + } catch (ComparisonFailure $f) { + if ($returnResult) { + return \false; + } + throw new ExpectationFailedException(trim($description . "\n" . $f->getMessage()), $f); } + return \true; } - public function register() : void + /** + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException + */ + public function toString(): string { - if ($this->registered) { - return; - } - $oldErrorHandler = set_error_handler($this); - if ($oldErrorHandler !== null) { - restore_error_handler(); - return; + $delta = ''; + if (is_string($this->value)) { + if (strpos($this->value, "\n") !== \false) { + return 'is equal to '; + } + return sprintf("is equal to '%s'", $this->value); } - $this->registered = \true; - } - public function unregister() : void - { - if (!$this->registered) { - return; + if ($this->delta != 0) { + $delta = sprintf(' with delta <%F>', $this->delta); } - restore_error_handler(); + return sprintf('is equal to %s%s', $this->exporter()->export($this->value), $delta); } } className = $className; + } + /** + * Returns a string representation of the constraint. + */ + public function toString(): string + { + return sprintf('is instance of %s "%s"', $this->getType(), $this->className); + } + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool + { + return $other instanceof $this->className; + } + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException + */ + protected function failureDescription($other): string + { + return sprintf('%s is an instance of %s "%s"', $this->exporter()->shortenedExport($other), $this->getType(), $this->className); + } + private function getType(): string + { + try { + $reflection = new ReflectionClass($this->className); + if ($reflection->isInterface()) { + return 'interface'; + } + } catch (ReflectionException $e) { + } + return 'class'; + } } + * @var string */ - private const EXCLUDED_CLASS_NAMES = [ - // composer - ClassLoader::class => 1, - // doctrine/instantiator - Instantiator::class => 1, - // myclabs/deepcopy - DeepCopy::class => 1, - // nikic/php-parser - Parser::class => 1, - // phar-io/manifest - Manifest::class => 1, - // phar-io/version - PharIoVersion::class => 1, - // phpdocumentor/reflection-common - Project::class => 1, - // phpdocumentor/reflection-docblock - DocBlock::class => 1, - // phpdocumentor/type-resolver - Type::class => 1, - // phpspec/prophecy - Prophet::class => 1, - // phpunit/phpunit - TestCase::class => 2, - // phpunit/php-code-coverage - CodeCoverage::class => 1, - // phpunit/php-file-iterator - FileIteratorFacade::class => 1, - // phpunit/php-invoker - Invoker::class => 1, - // phpunit/php-text-template - Template::class => 1, - // phpunit/php-timer - Timer::class => 1, - // sebastian/cli-parser - CliParser::class => 1, - // sebastian/code-unit - CodeUnit::class => 1, - // sebastian/code-unit-reverse-lookup - Wizard::class => 1, - // sebastian/comparator - Comparator::class => 1, - // sebastian/complexity - Calculator::class => 1, - // sebastian/diff - Diff::class => 1, - // sebastian/environment - Runtime::class => 1, - // sebastian/exporter - Exporter::class => 1, - // sebastian/global-state - Snapshot::class => 1, - // sebastian/lines-of-code - Counter::class => 1, - // sebastian/object-enumerator - Enumerator::class => 1, - // sebastian/recursion-context - Context::class => 1, - // sebastian/resource-operations - ResourceOperations::class => 1, - // sebastian/type - TypeName::class => 1, - // sebastian/version - Version::class => 1, - // theseer/tokenizer - Tokenizer::class => 1, - // webmozart/assert - Assert::class => 1, - ]; + public const TYPE_ARRAY = 'array'; /** - * @var string[] + * @var string */ - private static $directories = []; + public const TYPE_BOOL = 'bool'; /** - * @var bool + * @var string */ - private static $initialized = \false; - public static function addDirectory(string $directory) : void - { - if (!is_dir($directory)) { - throw new \PHPUnit\Util\Exception(sprintf('"%s" is not a directory', $directory)); - } - self::$directories[] = realpath($directory); - } + public const TYPE_FLOAT = 'float'; + /** + * @var string + */ + public const TYPE_INT = 'int'; + /** + * @var string + */ + public const TYPE_NULL = 'null'; + /** + * @var string + */ + public const TYPE_NUMERIC = 'numeric'; + /** + * @var string + */ + public const TYPE_OBJECT = 'object'; + /** + * @var string + */ + public const TYPE_RESOURCE = 'resource'; + /** + * @var string + */ + public const TYPE_CLOSED_RESOURCE = 'resource (closed)'; + /** + * @var string + */ + public const TYPE_STRING = 'string'; + /** + * @var string + */ + public const TYPE_SCALAR = 'scalar'; + /** + * @var string + */ + public const TYPE_CALLABLE = 'callable'; + /** + * @var string + */ + public const TYPE_ITERABLE = 'iterable'; + /** + * @var array + */ + private const KNOWN_TYPES = ['array' => \true, 'boolean' => \true, 'bool' => \true, 'double' => \true, 'float' => \true, 'integer' => \true, 'int' => \true, 'null' => \true, 'numeric' => \true, 'object' => \true, 'real' => \true, 'resource' => \true, 'resource (closed)' => \true, 'string' => \true, 'scalar' => \true, 'callable' => \true, 'iterable' => \true]; + /** + * @var string + */ + private $type; /** * @throws Exception - * - * @return string[] */ - public function getExcludedDirectories() : array + public function __construct(string $type) { - $this->initialize(); - return self::$directories; + if (!isset(self::KNOWN_TYPES[$type])) { + throw new Exception(sprintf('Type specified for PHPUnit\Framework\Constraint\IsType <%s> ' . 'is not a valid type.', $type)); + } + $this->type = $type; } /** - * @throws Exception + * Returns a string representation of the constraint. */ - public function isExcluded(string $file) : bool + public function toString(): string { - if (defined('PHPUnit\\PHPUNIT_TESTSUITE')) { - return \false; - } - $this->initialize(); - foreach (self::$directories as $directory) { - if (strpos($file, $directory) === 0) { - return \true; - } - } - return \false; + return sprintf('is of type "%s"', $this->type); } /** - * @throws Exception + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - private function initialize() : void + protected function matches($other): bool { - if (self::$initialized) { - return; - } - foreach (self::EXCLUDED_CLASS_NAMES as $className => $parent) { - if (!class_exists($className)) { - continue; - } - $directory = (new ReflectionClass($className))->getFileName(); - for ($i = 0; $i < $parent; $i++) { - $directory = dirname($directory); - } - self::$directories[] = $directory; - } - // Hide process isolation workaround on Windows. - if (DIRECTORY_SEPARATOR === '\\') { - // tempnam() prefix is limited to first 3 chars. - // @see https://php.net/manual/en/function.tempnam.php - self::$directories[] = sys_get_temp_dir() . '\\PHP'; + switch ($this->type) { + case 'numeric': + return is_numeric($other); + case 'integer': + case 'int': + return is_int($other); + case 'double': + case 'float': + case 'real': + return is_float($other); + case 'string': + return is_string($other); + case 'boolean': + case 'bool': + return is_bool($other); + case 'null': + return null === $other; + case 'array': + return is_array($other); + case 'object': + return is_object($other); + case 'resource': + $type = gettype($other); + return $type === 'resource' || $type === 'resource (closed)'; + case 'resource (closed)': + return gettype($other) === 'resource (closed)'; + case 'scalar': + return is_scalar($other); + case 'callable': + return is_callable($other); + case 'iterable': + return is_iterable($other); + default: + return \false; } - self::$initialized = \true; } } Foo/Bar/Baz.php - * - Namespace: Foo\Bar\Baz -> Foo/Bar/Baz.php + * Returns a string representation of the constraint. */ - public static function classNameToFilename(string $className) : string + public function toString(): string { - return str_replace(['_', '\\'], DIRECTORY_SEPARATOR, $className) . '.php'; + return sprintf('has static attribute "%s"', $this->attributeName()); } - public static function createDirectory(string $directory) : bool + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return !(!is_dir($directory) && !@mkdir($directory, 0777, \true) && !is_dir($directory)); + try { + $class = new ReflectionClass($other); + if ($class->hasProperty($this->attributeName())) { + return $class->getProperty($this->attributeName())->isStatic(); + } + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); + } + // @codeCoverageIgnoreEnd + return \false; } } getSyntheticTrace(); - $eFile = $t->getSyntheticFile(); - $eLine = $t->getSyntheticLine(); - } elseif ($t instanceof Exception) { - $eTrace = $t->getSerializableTrace(); - $eFile = $t->getFile(); - $eLine = $t->getLine(); - } else { - if ($t->getPrevious()) { - $t = $t->getPrevious(); - } - $eTrace = $t->getTrace(); - $eFile = $t->getFile(); - $eLine = $t->getLine(); - } - if (!self::frameExists($eTrace, $eFile, $eLine)) { - array_unshift($eTrace, ['file' => $eFile, 'line' => $eLine]); - } - $prefix = defined('__PHPUNIT_PHAR_ROOT__') ? \__PHPUNIT_PHAR_ROOT__ : \false; - $excludeList = new \PHPUnit\Util\ExcludeList(); - foreach ($eTrace as $frame) { - if (self::shouldPrintFrame($frame, $prefix, $excludeList)) { - $filteredStacktrace .= sprintf("%s:%s\n", $frame['file'], $frame['line'] ?? '?'); - } - } - return $filteredStacktrace; + $this->attributeName = $attributeName; } - private static function shouldPrintFrame(array $frame, $prefix, \PHPUnit\Util\ExcludeList $excludeList) : bool + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - if (!isset($frame['file'])) { - return \false; - } - $file = $frame['file']; - $fileIsNotPrefixed = $prefix === \false || strpos($file, $prefix) !== 0; - // @see https://github.com/sebastianbergmann/phpunit/issues/4033 - if (isset($GLOBALS['_SERVER']['SCRIPT_NAME'])) { - $script = realpath($GLOBALS['_SERVER']['SCRIPT_NAME']); - } else { - $script = ''; + return sprintf('has attribute "%s"', $this->attributeName); + } + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool + { + try { + return (new ReflectionClass($other))->hasProperty($this->attributeName); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); } - return is_file($file) && self::fileIsExcluded($file, $excludeList) && $fileIsNotPrefixed && $file !== $script; + // @codeCoverageIgnoreEnd } - private static function fileIsExcluded(string $file, \PHPUnit\Util\ExcludeList $excludeList) : bool + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string { - return (empty($GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST']) || !in_array($file, $GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'], \true)) && !$excludeList->isExcluded($file); + return sprintf('%sclass "%s" %s', is_object($other) ? 'object of ' : '', is_object($other) ? get_class($other) : $other, $this->toString()); } - private static function frameExists(array $trace, string $file, int $line) : bool + protected function attributeName(): string { - foreach ($trace as $frame) { - if (isset($frame['file'], $frame['line']) && $frame['file'] === $file && $frame['line'] === $line) { - return \true; - } - } - return \false; + return $this->attributeName; } } expected = $object; + $this->method = $method; + } + public function toString(): string + { + return 'two objects are equal'; } /** - * @param string[] $files - * - * @throws Exception + * @throws ActualValueIsNotAnObjectException + * @throws ComparisonMethodDoesNotAcceptParameterTypeException + * @throws ComparisonMethodDoesNotDeclareBoolReturnTypeException + * @throws ComparisonMethodDoesNotDeclareExactlyOneParameterException + * @throws ComparisonMethodDoesNotDeclareParameterTypeException + * @throws ComparisonMethodDoesNotExistException */ - public static function processIncludedFilesAsString(array $files) : string + protected function matches($other): bool { - $excludeList = new \PHPUnit\Util\ExcludeList(); - $prefix = \false; - $result = ''; - if (defined('__PHPUNIT_PHAR__')) { - $prefix = 'phar://' . \__PHPUNIT_PHAR__ . '/'; + if (!is_object($other)) { + throw new ActualValueIsNotAnObjectException(); + } + $object = new ReflectionObject($other); + if (!$object->hasMethod($this->method)) { + throw new ComparisonMethodDoesNotExistException(get_class($other), $this->method); + } + /** @noinspection PhpUnhandledExceptionInspection */ + $method = $object->getMethod($this->method); + if (!$method->hasReturnType()) { + throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); + } + $returnType = $method->getReturnType(); + if (!$returnType instanceof ReflectionNamedType) { + throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); } - // Do not process bootstrap script - array_shift($files); - // If bootstrap script was a Composer bin proxy, skip the second entry as well - if (substr(strtr($files[0], '\\', '/'), -24) === '/phpunit/phpunit/phpunit') { - array_shift($files); + if ($returnType->allowsNull()) { + throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); } - foreach (array_reverse($files) as $file) { - if (!empty($GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST']) && in_array($file, $GLOBALS['__PHPUNIT_ISOLATION_EXCLUDE_LIST'], \true)) { - continue; - } - if ($prefix !== \false && strpos($file, $prefix) === 0) { - continue; - } - // Skip virtual file system protocols - if (preg_match('/^(vfs|phpvfs[a-z0-9]+):/', $file)) { - continue; - } - if (!$excludeList->isExcluded($file) && is_file($file)) { - $result = 'require_once \'' . $file . "';\n" . $result; - } + if ($returnType->getName() !== 'bool') { + throw new ComparisonMethodDoesNotDeclareBoolReturnTypeException(get_class($other), $this->method); } - return $result; - } - public static function getIniSettingsAsString() : string - { - $result = ''; - foreach (ini_get_all(null, \false) as $key => $value) { - $result .= sprintf('@ini_set(%s, %s);' . "\n", self::exportVariable($key), self::exportVariable((string) $value)); + if ($method->getNumberOfParameters() !== 1 || $method->getNumberOfRequiredParameters() !== 1) { + throw new ComparisonMethodDoesNotDeclareExactlyOneParameterException(get_class($other), $this->method); } - return $result; - } - public static function getConstantsAsString() : string - { - $constants = get_defined_constants(\true); - $result = ''; - if (isset($constants['user'])) { - foreach ($constants['user'] as $name => $value) { - $result .= sprintf('if (!defined(\'%s\')) define(\'%s\', %s);' . "\n", $name, $name, self::exportVariable($value)); - } + $parameter = $method->getParameters()[0]; + if (!$parameter->hasType()) { + throw new ComparisonMethodDoesNotDeclareParameterTypeException(get_class($other), $this->method); } - return $result; - } - public static function getGlobalsAsString() : string - { - $result = ''; - foreach (self::SUPER_GLOBAL_ARRAYS as $superGlobalArray) { - if (isset($GLOBALS[$superGlobalArray]) && is_array($GLOBALS[$superGlobalArray])) { - foreach (array_keys($GLOBALS[$superGlobalArray]) as $key) { - if ($GLOBALS[$superGlobalArray][$key] instanceof Closure) { - continue; - } - $result .= sprintf('$GLOBALS[\'%s\'][\'%s\'] = %s;' . "\n", $superGlobalArray, $key, self::exportVariable($GLOBALS[$superGlobalArray][$key])); - } - } + $type = $parameter->getType(); + if (!$type instanceof ReflectionNamedType) { + throw new ComparisonMethodDoesNotDeclareParameterTypeException(get_class($other), $this->method); } - $excludeList = self::SUPER_GLOBAL_ARRAYS; - $excludeList[] = 'GLOBALS'; - foreach (array_keys($GLOBALS) as $key) { - if (!$GLOBALS[$key] instanceof Closure && !in_array($key, $excludeList, \true)) { - $result .= sprintf('$GLOBALS[\'%s\'] = %s;' . "\n", $key, self::exportVariable($GLOBALS[$key])); - } + $typeName = $type->getName(); + if ($typeName === 'self') { + $typeName = get_class($other); } - return $result; - } - private static function exportVariable($variable) : string - { - if (is_scalar($variable) || $variable === null || is_array($variable) && self::arrayOnlyContainsScalars($variable)) { - return var_export($variable, \true); + if (!$this->expected instanceof $typeName) { + throw new ComparisonMethodDoesNotAcceptParameterTypeException(get_class($other), $this->method, get_class($this->expected)); } - return 'unserialize(' . var_export(serialize($variable), \true) . ')'; + return $other->{$this->method}($this->expected); } - private static function arrayOnlyContainsScalars(array $array) : bool + protected function failureDescription($other): string { - $result = \true; - foreach ($array as $element) { - if (is_array($element)) { - $result = self::arrayOnlyContainsScalars($element); - } elseif (!is_scalar($element) && $element !== null) { - $result = \false; - } - if (!$result) { - break; - } - } - return $result; + return $this->toString(); } } hasProperty($this->attributeName()); + } } propertyName = $propertyName; } /** - * To allow comparison of JSON strings, first process them into a consistent - * format so that they can be compared as strings. + * Returns a string representation of the constraint. + */ + public function toString(): string + { + return sprintf('has property "%s"', $this->propertyName); + } + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @return array ($error, $canonicalized_json) The $error parameter is used - * to indicate an error decoding the json. This is used to avoid ambiguity - * with JSON strings consisting entirely of 'null' or 'false'. + * @param mixed $other value or object to evaluate */ - public static function canonicalize(string $json) : array + protected function matches($other): bool { - $decodedJson = json_decode($json); - if (json_last_error()) { - return [\true, null]; + if (!is_object($other)) { + return \false; } - self::recursiveSort($decodedJson); - $reencodedJson = json_encode($decodedJson); - return [\false, $reencodedJson]; + return (new ReflectionObject($other))->hasProperty($this->propertyName); } /** - * JSON object keys are unordered while PHP array keys are ordered. + * Returns the description of the failure. * - * Sort all array keys to ensure both the expected and actual values have - * their keys in the same order. + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object */ - private static function recursiveSort(&$json) : void + protected function failureDescription($other): string { - if (!is_array($json)) { - // If the object is not empty, change it to an associative array - // so we can sort the keys (and we will still re-encode it - // correctly, since PHP encodes associative arrays as JSON objects.) - // But EMPTY objects MUST remain empty objects. (Otherwise we will - // re-encode it as a JSON array rather than a JSON object.) - // See #2919. - if (is_object($json) && count((array) $json) > 0) { - $json = (array) $json; - } else { - return; - } - } - ksort($json); - foreach ($json as $key => &$value) { - self::recursiveSort($value); + if (is_object($other)) { + return sprintf('object of class "%s" %s', get_class($other), $this->toString()); } + return sprintf('"%s" (%s) %s', $other, gettype($other), $this->toString()); } } document = new DOMDocument('1.0', 'UTF-8'); - $this->document->formatOutput = \true; - $this->root = $this->document->createElement('testsuites'); - $this->document->appendChild($this->root); - parent::__construct($out); - $this->reportRiskyTests = $reportRiskyTests; - } - /** - * Flush buffer and close output. - */ - public function flush() : void - { - $this->write($this->getXML()); - parent::flush(); - } - /** - * An error occurred. - */ - public function addError(Test $test, Throwable $t, float $time) : void - { - $this->doAddFault($test, $t, 'error'); - $this->testSuiteErrors[$this->testSuiteLevel]++; - } - /** - * A warning occurred. + * @var ?Exporter */ - public function addWarning(Test $test, Warning $e, float $time) : void - { - $this->doAddFault($test, $e, 'warning'); - $this->testSuiteWarnings[$this->testSuiteLevel]++; - } + private $exporter; /** - * A failure occurred. + * Evaluates the constraint for parameter $other. + * + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - $this->doAddFault($test, $e, 'failure'); - $this->testSuiteFailures[$this->testSuiteLevel]++; + $success = \false; + if ($this->matches($other)) { + $success = \true; + } + if ($returnResult) { + return $success; + } + if (!$success) { + $this->fail($other, $description); + } + return null; } /** - * Incomplete test. + * Counts the number of constraint elements. */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + public function count(): int { - $this->doAddSkipped(); + return 1; } - /** - * Risky test. - */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void + protected function exporter(): Exporter { - if (!$this->reportRiskyTests) { - return; + if ($this->exporter === null) { + $this->exporter = new Exporter(); } - $this->doAddFault($test, $t, 'error'); - $this->testSuiteErrors[$this->testSuiteLevel]++; + return $this->exporter; } /** - * Skipped test. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * This method can be overridden to implement the evaluation algorithm. + * + * @param mixed $other value or object to evaluate + * + * @codeCoverageIgnore */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + protected function matches($other): bool { - $this->doAddSkipped(); + return \false; } /** - * A testsuite started. + * Throws an exception for the given compared value and test description. + * + * @param mixed $other evaluated value or object + * @param string $description Additional information about the test + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException + * + * @psalm-return never-return */ - public function startTestSuite(TestSuite $suite) : void + protected function fail($other, $description, ?ComparisonFailure $comparisonFailure = null): void { - $testSuite = $this->document->createElement('testsuite'); - $testSuite->setAttribute('name', $suite->getName()); - if (class_exists($suite->getName(), \false)) { - try { - $class = new ReflectionClass($suite->getName()); - $testSuite->setAttribute('file', $class->getFileName()); - } catch (ReflectionException $e) { - } + $failureDescription = sprintf('Failed asserting that %s.', $this->failureDescription($other)); + $additionalFailureDescription = $this->additionalFailureDescription($other); + if ($additionalFailureDescription) { + $failureDescription .= "\n" . $additionalFailureDescription; } - if ($this->testSuiteLevel > 0) { - $this->testSuites[$this->testSuiteLevel]->appendChild($testSuite); - } else { - $this->root->appendChild($testSuite); + if (!empty($description)) { + $failureDescription = $description . "\n" . $failureDescription; } - $this->testSuiteLevel++; - $this->testSuites[$this->testSuiteLevel] = $testSuite; - $this->testSuiteTests[$this->testSuiteLevel] = 0; - $this->testSuiteAssertions[$this->testSuiteLevel] = 0; - $this->testSuiteErrors[$this->testSuiteLevel] = 0; - $this->testSuiteWarnings[$this->testSuiteLevel] = 0; - $this->testSuiteFailures[$this->testSuiteLevel] = 0; - $this->testSuiteSkipped[$this->testSuiteLevel] = 0; - $this->testSuiteTimes[$this->testSuiteLevel] = 0; + throw new ExpectationFailedException($failureDescription, $comparisonFailure); } /** - * A testsuite ended. + * Return additional failure description where needed. + * + * The function can be overridden to provide additional failure + * information like a diff + * + * @param mixed $other evaluated value or object */ - public function endTestSuite(TestSuite $suite) : void + protected function additionalFailureDescription($other): string { - $this->testSuites[$this->testSuiteLevel]->setAttribute('tests', (string) $this->testSuiteTests[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('assertions', (string) $this->testSuiteAssertions[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('errors', (string) $this->testSuiteErrors[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('warnings', (string) $this->testSuiteWarnings[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('failures', (string) $this->testSuiteFailures[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('skipped', (string) $this->testSuiteSkipped[$this->testSuiteLevel]); - $this->testSuites[$this->testSuiteLevel]->setAttribute('time', sprintf('%F', $this->testSuiteTimes[$this->testSuiteLevel])); - if ($this->testSuiteLevel > 1) { - $this->testSuiteTests[$this->testSuiteLevel - 1] += $this->testSuiteTests[$this->testSuiteLevel]; - $this->testSuiteAssertions[$this->testSuiteLevel - 1] += $this->testSuiteAssertions[$this->testSuiteLevel]; - $this->testSuiteErrors[$this->testSuiteLevel - 1] += $this->testSuiteErrors[$this->testSuiteLevel]; - $this->testSuiteWarnings[$this->testSuiteLevel - 1] += $this->testSuiteWarnings[$this->testSuiteLevel]; - $this->testSuiteFailures[$this->testSuiteLevel - 1] += $this->testSuiteFailures[$this->testSuiteLevel]; - $this->testSuiteSkipped[$this->testSuiteLevel - 1] += $this->testSuiteSkipped[$this->testSuiteLevel]; - $this->testSuiteTimes[$this->testSuiteLevel - 1] += $this->testSuiteTimes[$this->testSuiteLevel]; - } - $this->testSuiteLevel--; + return ''; } /** - * A test started. + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * To provide additional failure information additionalFailureDescription + * can be used. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException */ - public function startTest(Test $test) : void + protected function failureDescription($other): string { - $usesDataprovider = \false; - if (method_exists($test, 'usesDataProvider')) { - $usesDataprovider = $test->usesDataProvider(); - } - $testCase = $this->document->createElement('testcase'); - $testCase->setAttribute('name', $test->getName()); - try { - $class = new ReflectionClass($test); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $methodName = $test->getName(!$usesDataprovider); - if ($class->hasMethod($methodName)) { - try { - $method = $class->getMethod($methodName); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - $testCase->setAttribute('class', $class->getName()); - $testCase->setAttribute('classname', str_replace('\\', '.', $class->getName())); - $testCase->setAttribute('file', $class->getFileName()); - $testCase->setAttribute('line', (string) $method->getStartLine()); - } - $this->currentTestCase = $testCase; + return $this->exporter()->export($other) . ' ' . $this->toString(); } /** - * A test ended. + * Returns a custom string representation of the constraint object when it + * appears in context of an $operator expression. + * + * The purpose of this method is to provide meaningful descriptive string + * in context of operators such as LogicalNot. Native PHPUnit constraints + * are supported out of the box by LogicalNot, but externally developed + * ones had no way to provide correct strings in this context. + * + * The method shall return empty string, when it does not handle + * customization by itself. + * + * @param Operator $operator the $operator of the expression + * @param mixed $role role of $this constraint in the $operator expression */ - public function endTest(Test $test, float $time) : void + protected function toStringInContext(\PHPUnit\Framework\Constraint\Operator $operator, $role): string { - $numAssertions = 0; - if (method_exists($test, 'getNumAssertions')) { - $numAssertions = $test->getNumAssertions(); - } - $this->testSuiteAssertions[$this->testSuiteLevel] += $numAssertions; - $this->currentTestCase->setAttribute('assertions', (string) $numAssertions); - $this->currentTestCase->setAttribute('time', sprintf('%F', $time)); - $this->testSuites[$this->testSuiteLevel]->appendChild($this->currentTestCase); - $this->testSuiteTests[$this->testSuiteLevel]++; - $this->testSuiteTimes[$this->testSuiteLevel] += $time; - $testOutput = ''; - if (method_exists($test, 'hasOutput') && method_exists($test, 'getActualOutput')) { - $testOutput = $test->hasOutput() ? $test->getActualOutput() : ''; - } - if (!empty($testOutput)) { - $systemOut = $this->document->createElement('system-out', Xml::prepareString($testOutput)); - $this->currentTestCase->appendChild($systemOut); - } - $this->currentTestCase = null; + return ''; } /** - * Returns the XML as a string. + * Returns the description of the failure when this constraint appears in + * context of an $operator expression. + * + * The purpose of this method is to provide meaningful failure description + * in context of operators such as LogicalNot. Native PHPUnit constraints + * are supported out of the box by LogicalNot, but externally developed + * ones had no way to provide correct messages in this context. + * + * The method shall return empty string, when it does not handle + * customization by itself. + * + * @param Operator $operator the $operator of the expression + * @param mixed $role role of $this constraint in the $operator expression + * @param mixed $other evaluated value or object */ - public function getXML() : string - { - return $this->document->saveXML(); - } - private function doAddFault(Test $test, Throwable $t, string $type) : void + protected function failureDescriptionInContext(\PHPUnit\Framework\Constraint\Operator $operator, $role, $other): string { - if ($this->currentTestCase === null) { - return; - } - if ($test instanceof SelfDescribing) { - $buffer = $test->toString() . "\n"; - } else { - $buffer = ''; - } - $buffer .= trim(TestFailure::exceptionToString($t) . "\n" . Filter::getFilteredStacktrace($t)); - $fault = $this->document->createElement($type, Xml::prepareString($buffer)); - if ($t instanceof ExceptionWrapper) { - $fault->setAttribute('type', $t->getClassName()); - } else { - $fault->setAttribute('type', get_class($t)); + $string = $this->toStringInContext($operator, $role); + if ($string === '') { + return ''; } - $this->currentTestCase->appendChild($fault); + return $this->exporter()->export($other) . ' ' . $string; } - private function doAddSkipped() : void + /** + * Reduces the sub-expression starting at $this by skipping degenerate + * sub-expression and returns first descendant constraint that starts + * a non-reducible sub-expression. + * + * Returns $this for terminal constraints and for operators that start + * non-reducible sub-expression, or the nearest descendant of $this that + * starts a non-reducible sub-expression. + * + * A constraint expression may be modelled as a tree with non-terminal + * nodes (operators) and terminal nodes. For example: + * + * LogicalOr (operator, non-terminal) + * + LogicalAnd (operator, non-terminal) + * | + IsType('int') (terminal) + * | + GreaterThan(10) (terminal) + * + LogicalNot (operator, non-terminal) + * + IsType('array') (terminal) + * + * A degenerate sub-expression is a part of the tree, that effectively does + * not contribute to the evaluation of the expression it appears in. An example + * of degenerate sub-expression is a BinaryOperator constructed with single + * operand or nested BinaryOperators, each with single operand. An + * expression involving a degenerate sub-expression is equivalent to a + * reduced expression with the degenerate sub-expression removed, for example + * + * LogicalAnd (operator) + * + LogicalOr (degenerate operator) + * | + LogicalAnd (degenerate operator) + * | + IsType('int') (terminal) + * + GreaterThan(10) (terminal) + * + * is equivalent to + * + * LogicalAnd (operator) + * + IsType('int') (terminal) + * + GreaterThan(10) (terminal) + * + * because the subexpression + * + * + LogicalOr + * + LogicalAnd + * + - + * + * is degenerate. Calling reduce() on the LogicalOr object above, as well + * as on LogicalAnd, shall return the IsType('int') instance. + * + * Other specific reductions can be implemented, for example cascade of + * LogicalNot operators + * + * + LogicalNot + * + LogicalNot + * +LogicalNot + * + IsTrue + * + * can be reduced to + * + * LogicalNot + * + IsTrue + */ + protected function reduce(): self { - if ($this->currentTestCase === null) { - return; - } - $skipped = $this->document->createElement('skipped'); - $this->currentTestCase->appendChild($skipped); - $this->testSuiteSkipped[$this->testSuiteLevel]++; + return $this; } } printHeader($result); - $this->printFooter($result); + return 'is false'; } /** - * An error occurred. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - public function addError(Test $test, Throwable $t, float $time) : void + protected function matches($other): bool { - $this->printEvent('testFailed', ['name' => $test->getName(), 'message' => self::getMessage($t), 'details' => self::getDetails($t), 'duration' => self::toMilliseconds($time)]); + return $other === \false; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsTrue extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * A warning occurred. + * Returns a string representation of the constraint. */ - public function addWarning(Test $test, Warning $e, float $time) : void + public function toString(): string { - $this->write(self::getMessage($e) . \PHP_EOL); + return 'is true'; } /** - * A failure occurred. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void + protected function matches($other): bool { - $parameters = ['name' => $test->getName(), 'message' => self::getMessage($e), 'details' => self::getDetails($e), 'duration' => self::toMilliseconds($time)]; - if ($e instanceof ExpectationFailedException) { - $comparisonFailure = $e->getComparisonFailure(); - if ($comparisonFailure instanceof ComparisonFailure) { - $expectedString = $comparisonFailure->getExpectedAsString(); - if ($expectedString === null || empty($expectedString)) { - $expectedString = self::getPrimitiveValueAsString($comparisonFailure->getExpected()); - } - $actualString = $comparisonFailure->getActualAsString(); - if ($actualString === null || empty($actualString)) { - $actualString = self::getPrimitiveValueAsString($comparisonFailure->getActual()); - } - if ($actualString !== null && $expectedString !== null) { - $parameters['type'] = 'comparisonFailure'; - $parameters['actual'] = $actualString; - $parameters['expected'] = $expectedString; - } - } - } - $this->printEvent('testFailed', $parameters); + return $other === \true; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function get_class; +use function is_array; +use function is_object; +use function is_string; +use function sprintf; +use PHPUnit\Framework\ExpectationFailedException; +use PHPUnitPHAR\SebastianBergmann\Comparator\ComparisonFailure; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsIdentical extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * Incomplete test. + * @var mixed */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + private $value; + public function __construct($value) { - $this->printIgnoredTest($test->getName(), $t, $time); + $this->value = $value; } /** - * Risky test. + * Evaluates the constraint for parameter $other. + * + * If $returnResult is set to false (the default), an exception is thrown + * in case of a failure. null is returned otherwise. + * + * If $returnResult is true, the result of the evaluation is returned as + * a boolean value instead: true in case of success, false in case of a + * failure. + * + * @throws ExpectationFailedException + * @throws InvalidArgumentException */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void + public function evaluate($other, string $description = '', bool $returnResult = \false): ?bool { - $this->addError($test, $t, $time); + $success = $this->value === $other; + if ($returnResult) { + return $success; + } + if (!$success) { + $f = null; + // if both values are strings, make sure a diff is generated + if (is_string($this->value) && is_string($other)) { + $f = new ComparisonFailure($this->value, $other, sprintf("'%s'", $this->value), sprintf("'%s'", $other)); + } + // if both values are array, make sure a diff is generated + if (is_array($this->value) && is_array($other)) { + $f = new ComparisonFailure($this->value, $other, $this->exporter()->export($this->value), $this->exporter()->export($other)); + } + $this->fail($other, $description, $f); + } + return null; } /** - * Skipped test. + * Returns a string representation of the constraint. + * + * @throws InvalidArgumentException */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + public function toString(): string { - $testName = $test->getName(); - if ($this->startedTestName !== $testName) { - $this->startTest($test); - $this->printIgnoredTest($testName, $t, $time); - $this->endTest($test, $time); - } else { - $this->printIgnoredTest($testName, $t, $time); + if (is_object($this->value)) { + return 'is identical to an object of class "' . get_class($this->value) . '"'; } - } - public function printIgnoredTest(string $testName, Throwable $t, float $time) : void - { - $this->printEvent('testIgnored', ['name' => $testName, 'message' => self::getMessage($t), 'details' => self::getDetails($t), 'duration' => self::toMilliseconds($time)]); + return 'is identical to ' . $this->exporter()->export($this->value); } /** - * A testsuite started. + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException */ - public function startTestSuite(TestSuite $suite) : void + protected function failureDescription($other): string { - if (stripos(ini_get('disable_functions'), 'getmypid') === \false) { - $this->flowId = getmypid(); - } else { - $this->flowId = \false; - } - if (!$this->isSummaryTestCountPrinted) { - $this->isSummaryTestCountPrinted = \true; - $this->printEvent('testCount', ['count' => count($suite)]); + if (is_object($this->value) && is_object($other)) { + return 'two variables reference the same object'; } - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; + if (is_string($this->value) && is_string($other)) { + return 'two strings are identical'; } - $parameters = ['name' => $suiteName]; - if (class_exists($suiteName, \false)) { - $fileName = self::getFileName($suiteName); - $parameters['locationHint'] = "php_qn://{$fileName}::\\{$suiteName}"; - } else { - $split = explode('::', $suiteName); - if (count($split) === 2 && class_exists($split[0]) && method_exists($split[0], $split[1])) { - $fileName = self::getFileName($split[0]); - $parameters['locationHint'] = "php_qn://{$fileName}::\\{$suiteName}"; - $parameters['name'] = $split[1]; - } + if (is_array($this->value) && is_array($other)) { + return 'two arrays are identical'; } - $this->printEvent('testSuiteStarted', $parameters); + return parent::failureDescription($other); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use const JSON_ERROR_CTRL_CHAR; +use const JSON_ERROR_DEPTH; +use const JSON_ERROR_NONE; +use const JSON_ERROR_STATE_MISMATCH; +use const JSON_ERROR_SYNTAX; +use const JSON_ERROR_UTF8; +use function strtolower; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class JsonMatchesErrorMessageProvider +{ /** - * A testsuite ended. + * Translates JSON error to a human readable string. */ - public function endTestSuite(TestSuite $suite) : void + public static function determineJsonError(string $error, string $prefix = ''): ?string { - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; - } - $parameters = ['name' => $suiteName]; - if (!class_exists($suiteName, \false)) { - $split = explode('::', $suiteName); - if (count($split) === 2 && class_exists($split[0]) && method_exists($split[0], $split[1])) { - $parameters['name'] = $split[1]; - } + switch ($error) { + case JSON_ERROR_NONE: + return null; + case JSON_ERROR_DEPTH: + return $prefix . 'Maximum stack depth exceeded'; + case JSON_ERROR_STATE_MISMATCH: + return $prefix . 'Underflow or the modes mismatch'; + case JSON_ERROR_CTRL_CHAR: + return $prefix . 'Unexpected control character found'; + case JSON_ERROR_SYNTAX: + return $prefix . 'Syntax error, malformed JSON'; + case JSON_ERROR_UTF8: + return $prefix . 'Malformed UTF-8 characters, possibly incorrectly encoded'; + default: + return $prefix . 'Unknown error'; } - $this->printEvent('testSuiteFinished', $parameters); } /** - * A test started. + * Translates a given type to a human readable message prefix. */ - public function startTest(Test $test) : void + public static function translateTypeToPrefix(string $type): string { - $testName = $test->getName(); - $this->startedTestName = $testName; - $params = ['name' => $testName]; - if ($test instanceof TestCase) { - $className = get_class($test); - $fileName = self::getFileName($className); - $params['locationHint'] = "php_qn://{$fileName}::\\{$className}::{$testName}"; + switch (strtolower($type)) { + case 'expected': + $prefix = 'Expected value JSON decode error - '; + break; + case 'actual': + $prefix = 'Actual value JSON decode error - '; + break; + default: + $prefix = ''; + break; } - $this->printEvent('testStarted', $params); + return $prefix; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function preg_match; +use function sprintf; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +class RegularExpression extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * A test ended. + * @var string */ - public function endTest(Test $test, float $time) : void + private $pattern; + public function __construct(string $pattern) { - parent::endTest($test, $time); - $this->printEvent('testFinished', ['name' => $test->getName(), 'duration' => self::toMilliseconds($time)]); + $this->pattern = $pattern; } - protected function writeProgress(string $progress) : void + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { + return sprintf('matches PCRE pattern "%s"', $this->pattern); } - private function printEvent(string $eventName, array $params = []) : void + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - $this->write("\n##teamcity[{$eventName}"); - if ($this->flowId) { - $params['flowId'] = $this->flowId; - } - foreach ($params as $key => $value) { - $escapedValue = self::escapeValue((string) $value); - $this->write(" {$key}='{$escapedValue}'"); - } - $this->write("]\n"); + return preg_match($this->pattern, $other) > 0; } - private static function getMessage(Throwable $t) : string +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function strpos; +use PHPUnit\Framework\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class StringStartsWith extends \PHPUnit\Framework\Constraint\Constraint +{ + /** + * @var string + */ + private $prefix; + public function __construct(string $prefix) { - $message = ''; - if ($t instanceof ExceptionWrapper) { - if ($t->getClassName() !== '') { - $message .= $t->getClassName(); - } - if ($message !== '' && $t->getMessage() !== '') { - $message .= ' : '; - } + if ($prefix === '') { + throw InvalidArgumentException::create(1, 'non-empty string'); } - return $message . $t->getMessage(); + $this->prefix = $prefix; } - private static function getDetails(Throwable $t) : string + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - $stackTrace = Filter::getFilteredStacktrace($t); - $previous = $t instanceof ExceptionWrapper ? $t->getPreviousWrapped() : $t->getPrevious(); - while ($previous) { - $stackTrace .= "\nCaused by\n" . TestFailure::exceptionToString($previous) . "\n" . Filter::getFilteredStacktrace($previous); - $previous = $previous instanceof ExceptionWrapper ? $previous->getPreviousWrapped() : $previous->getPrevious(); - } - return ' ' . str_replace("\n", "\n ", $stackTrace); + return 'starts with "' . $this->prefix . '"'; } - private static function getPrimitiveValueAsString($value) : ?string + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - if ($value === null) { - return 'null'; - } - if (is_bool($value)) { - return $value ? 'true' : 'false'; - } - if (is_scalar($value)) { - return print_r($value, \true); - } - return null; + return strpos((string) $other, $this->prefix) === 0; } - private static function escapeValue(string $text) : string +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function json_decode; +use function json_last_error; +use function sprintf; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class IsJson extends \PHPUnit\Framework\Constraint\Constraint +{ + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - return str_replace(['|', "'", "\n", "\r", ']', '['], ['||', "|'", '|n', '|r', '|]', '|['], $text); + return 'is valid JSON'; } /** - * @param string $className + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - private static function getFileName($className) : string + protected function matches($other): bool { - try { - return (new ReflectionClass($className))->getFileName(); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); + if ($other === '') { + return \false; } - // @codeCoverageIgnoreEnd + json_decode($other); + if (json_last_error()) { + return \false; + } + return \true; } /** - * @param float $time microseconds + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException */ - private static function toMilliseconds(float $time) : int + protected function failureDescription($other): string { - return (int) round($time * 1000); + if ($other === '') { + return 'an empty string is valid JSON'; + } + json_decode($other); + $error = (string) \PHPUnit\Framework\Constraint\JsonMatchesErrorMessageProvider::determineJsonError((string) json_last_error()); + return sprintf('%s is valid JSON (%s)', $this->exporter()->shortenedExport($other), $error); } } - */ - protected $env = []; - /** - * @var int - */ - protected $timeout = 0; - public static function factory() : self - { - if (DIRECTORY_SEPARATOR === '\\') { - return new \PHPUnit\Util\PHP\WindowsPhpProcess(); - } - return new \PHPUnit\Util\PHP\DefaultPhpProcess(); - } - public function __construct() + private $string; + public function __construct(string $string) { - $this->runtime = new Runtime(); + parent::__construct($this->createPatternFromFormat($this->convertNewlines($string))); + $this->string = $string; } /** - * Defines if should use STDERR redirection or not. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * Then $stderrRedirection is TRUE, STDERR is redirected to STDOUT. - */ - public function setUseStderrRedirection(bool $stderrRedirection) : void - { - $this->stderrRedirection = $stderrRedirection; - } - /** - * Returns TRUE if uses STDERR redirection or FALSE if not. - */ - public function useStderrRedirection() : bool - { - return $this->stderrRedirection; - } - /** - * Sets the input string to be sent via STDIN. + * @param mixed $other value or object to evaluate */ - public function setStdin(string $stdin) : void + protected function matches($other): bool { - $this->stdin = $stdin; + return parent::matches($this->convertNewlines($other)); } - /** - * Returns the input string to be sent via STDIN. - */ - public function getStdin() : string + protected function failureDescription($other): string { - return $this->stdin; + return 'string matches format description'; } - /** - * Sets the string of arguments to pass to the php job. - */ - public function setArgs(string $args) : void + protected function additionalFailureDescription($other): string { - $this->args = $args; + $from = explode("\n", $this->string); + $to = explode("\n", $this->convertNewlines($other)); + foreach ($from as $index => $line) { + if (isset($to[$index]) && $line !== $to[$index]) { + $line = $this->createPatternFromFormat($line); + if (preg_match($line, $to[$index]) > 0) { + $from[$index] = $to[$index]; + } + } + } + $this->string = implode("\n", $from); + $other = implode("\n", $to); + return (new Differ(new UnifiedDiffOutputBuilder("--- Expected\n+++ Actual\n")))->diff($this->string, $other); } - /** - * Returns the string of arguments to pass to the php job. - */ - public function getArgs() : string + private function createPatternFromFormat(string $string): string { - return $this->args; + $string = strtr(preg_quote($string, '/'), ['%%' => '%', '%e' => '\\' . DIRECTORY_SEPARATOR, '%s' => '[^\r\n]+', '%S' => '[^\r\n]*', '%a' => '.+', '%A' => '.*', '%w' => '\s*', '%i' => '[+-]?\d+', '%d' => '\d+', '%x' => '[0-9a-fA-F]+', '%f' => '[+-]?\.?\d+\.?\d*(?:[Ee][+-]?\d+)?', '%c' => '.']); + return '/^' . $string . '$/s'; } - /** - * Sets the array of environment variables to start the child process with. - * - * @param array $env - */ - public function setEnv(array $env) : void + private function convertNewlines(string $text): string { - $this->env = $env; + return preg_replace('/\r\n/', "\n", $text); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function mb_stripos; +use function mb_strtolower; +use function sprintf; +use function strpos; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class StringContains extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * Returns the array of environment variables to start the child process with. + * @var string */ - public function getEnv() : array - { - return $this->env; - } + private $string; /** - * Sets the amount of seconds to wait before timing out. + * @var bool */ - public function setTimeout(int $timeout) : void + private $ignoreCase; + public function __construct(string $string, bool $ignoreCase = \false) { - $this->timeout = $timeout; + $this->string = $string; + $this->ignoreCase = $ignoreCase; } /** - * Returns the amount of seconds to wait before timing out. + * Returns a string representation of the constraint. */ - public function getTimeout() : int + public function toString(): string { - return $this->timeout; + if ($this->ignoreCase) { + $string = mb_strtolower($this->string, 'UTF-8'); + } else { + $string = $this->string; + } + return sprintf('contains "%s"', $string); } /** - * Runs a single test in a separate PHP process. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function runTestJob(string $job, Test $test, TestResult $result) : void - { - $result->startTest($test); - $_result = $this->runJob($job); - $this->processChildResult($test, $result, $_result['stdout'], $_result['stderr']); - } - /** - * Returns the command based into the configurations. + * @param mixed $other value or object to evaluate */ - public function getCommand(array $settings, string $file = null) : string + protected function matches($other): bool { - $command = $this->runtime->getBinary(); - if ($this->runtime->hasPCOV()) { - $settings = array_merge($settings, $this->runtime->getCurrentSettings(array_keys(ini_get_all('pcov')))); - } elseif ($this->runtime->hasXdebug()) { - $settings = array_merge($settings, $this->runtime->getCurrentSettings(array_keys(ini_get_all('xdebug')))); - } - $command .= $this->settingsToParameters($settings); - if (PHP_SAPI === 'phpdbg') { - $command .= ' -qrr'; - if (!$file) { - $command .= 's='; - } - } - if ($file) { - $command .= ' ' . escapeshellarg($file); - } - if ($this->args) { - if (!$file) { - $command .= ' --'; - } - $command .= ' ' . $this->args; + if ('' === $this->string) { + return \true; } - if ($this->stderrRedirection) { - $command .= ' 2>&1'; + if ($this->ignoreCase) { + /* + * We must use the multi byte safe version so we can accurately compare non latin upper characters with + * their lowercase equivalents. + */ + return mb_stripos($other, $this->string, 0, 'UTF-8') !== \false; } - return $command; + /* + * Use the non multi byte safe functions to see if the string is contained in $other. + * + * This function is very fast and we don't care about the character position in the string. + * + * Additionally, we want this method to be binary safe so we can check if some binary data is in other binary + * data. + */ + return strpos($other, $this->string) !== \false; } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function strlen; +use function substr; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class StringEndsWith extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * Runs a single job (PHP code) using a separate PHP process. + * @var string */ - public abstract function runJob(string $job, array $settings = []) : array; - protected function settingsToParameters(array $settings) : string + private $suffix; + public function __construct(string $suffix) { - $buffer = ''; - foreach ($settings as $setting) { - $buffer .= ' -d ' . escapeshellarg($setting); - } - return $buffer; + $this->suffix = $suffix; } /** - * Processes the TestResult object from an isolated process. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Returns a string representation of the constraint. */ - private function processChildResult(Test $test, TestResult $result, string $stdout, string $stderr) : void + public function toString(): string { - $time = 0; - if (!empty($stderr)) { - $result->addError($test, new Exception(trim($stderr)), $time); - } else { - set_error_handler( - /** - * @throws ErrorException - */ - static function ($errno, $errstr, $errfile, $errline) : void { - throw new ErrorException($errstr, $errno, $errno, $errfile, $errline); - } - ); - try { - if (strpos($stdout, "#!/usr/bin/env php\n") === 0) { - $stdout = substr($stdout, 19); - } - $childResult = unserialize(str_replace("#!/usr/bin/env php\n", '', $stdout)); - restore_error_handler(); - if ($childResult === \false) { - $result->addFailure($test, new AssertionFailedError('Test was run in child process and ended unexpectedly'), $time); - } - } catch (ErrorException $e) { - restore_error_handler(); - $childResult = \false; - $result->addError($test, new Exception(trim($stdout), 0, $e), $time); - } - if ($childResult !== \false) { - if (!empty($childResult['output'])) { - $output = $childResult['output']; - } - /* @var TestCase $test */ - $test->setResult($childResult['testResult']); - $test->addToAssertionCount($childResult['numAssertions']); - $childResult = $childResult['result']; - assert($childResult instanceof TestResult); - if ($result->getCollectCodeCoverageInformation()) { - $result->getCodeCoverage()->merge($childResult->getCodeCoverage()); - } - $time = $childResult->time(); - $notImplemented = $childResult->notImplemented(); - $risky = $childResult->risky(); - $skipped = $childResult->skipped(); - $errors = $childResult->errors(); - $warnings = $childResult->warnings(); - $failures = $childResult->failures(); - if (!empty($notImplemented)) { - $result->addError($test, $this->getException($notImplemented[0]), $time); - } elseif (!empty($risky)) { - $result->addError($test, $this->getException($risky[0]), $time); - } elseif (!empty($skipped)) { - $result->addError($test, $this->getException($skipped[0]), $time); - } elseif (!empty($errors)) { - $result->addError($test, $this->getException($errors[0]), $time); - } elseif (!empty($warnings)) { - $result->addWarning($test, $this->getException($warnings[0]), $time); - } elseif (!empty($failures)) { - $result->addFailure($test, $this->getException($failures[0]), $time); - } - } - } - $result->endTest($test, $time); - if (!empty($output)) { - print $output; - } + return 'ends with "' . $this->suffix . '"'; } /** - * Gets the thrown exception from a PHPUnit\Framework\TestFailure. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. * - * @see https://github.com/sebastianbergmann/phpunit/issues/74 + * @param mixed $other value or object to evaluate */ - private function getException(TestFailure $error) : Exception + protected function matches($other): bool { - $exception = $error->thrownException(); - if ($exception instanceof __PHP_Incomplete_Class) { - $exceptionArray = []; - foreach ((array) $exception as $key => $value) { - $key = substr($key, strrpos($key, "\x00") + 1); - $exceptionArray[$key] = $value; - } - $exception = new SyntheticError(sprintf('%s: %s', $exceptionArray['_PHP_Incomplete_Class_Name'], $exceptionArray['message']), $exceptionArray['code'], $exceptionArray['file'], $exceptionArray['line'], $exceptionArray['trace']); - } - return $exception; + return substr($other, 0 - strlen($this->suffix)) === $this->suffix; } } expectedMessageRegExp = $expected; + } + public function toString(): string + { + return 'exception message matches '; + } /** - * Runs a single job (PHP code) using a separate PHP process. + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param \PHPUnit\Framework\Exception $other * + * @throws \PHPUnit\Framework\Exception * @throws Exception */ - public function runJob(string $job, array $settings = []) : array + protected function matches($other): bool { - if ($this->stdin || $this->useTemporaryFile()) { - if (!($this->tempFile = tempnam(sys_get_temp_dir(), 'PHPUnit')) || file_put_contents($this->tempFile, $job) === \false) { - throw new Exception('Unable to write temporary file'); - } - $job = $this->stdin; + $match = RegularExpressionUtil::safeMatch($this->expectedMessageRegExp, $other->getMessage()); + if ($match === \false) { + throw new \PHPUnit\Framework\Exception("Invalid expected exception message regex given: '{$this->expectedMessageRegExp}'"); } - return $this->runProcess($job, $settings); - } - /** - * Returns an array of file handles to be used in place of pipes. - */ - protected function getHandles() : array - { - return []; + return $match === 1; } /** - * Handles creating the child process and returning the STDOUT and STDERR. + * Returns the description of the failure. * - * @throws Exception + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object */ - protected function runProcess(string $job, array $settings) : array + protected function failureDescription($other): string { - $handles = $this->getHandles(); - $env = null; - if ($this->env) { - $env = $_SERVER ?? []; - unset($env['argv'], $env['argc']); - $env = array_merge($env, $this->env); - foreach ($env as $envKey => $envVar) { - if (is_array($envVar)) { - unset($env[$envKey]); - } - } - } - $pipeSpec = [0 => $handles[0] ?? ['pipe', 'r'], 1 => $handles[1] ?? ['pipe', 'w'], 2 => $handles[2] ?? ['pipe', 'w']]; - $process = proc_open($this->getCommand($settings, $this->tempFile), $pipeSpec, $pipes, null, $env); - if (!is_resource($process)) { - throw new Exception('Unable to spawn worker process'); - } - if ($job) { - $this->process($pipes[0], $job); - } - fclose($pipes[0]); - $stderr = $stdout = ''; - if ($this->timeout) { - unset($pipes[0]); - while (\true) { - $r = $pipes; - $w = null; - $e = null; - $n = @stream_select($r, $w, $e, $this->timeout); - if ($n === \false) { - break; - } - if ($n === 0) { - proc_terminate($process, 9); - throw new Exception(sprintf('Job execution aborted after %d seconds', $this->timeout)); - } - if ($n > 0) { - foreach ($r as $pipe) { - $pipeOffset = 0; - foreach ($pipes as $i => $origPipe) { - if ($pipe === $origPipe) { - $pipeOffset = $i; - break; - } - } - if (!$pipeOffset) { - break; - } - $line = fread($pipe, 8192); - if ($line === '' || $line === \false) { - fclose($pipes[$pipeOffset]); - unset($pipes[$pipeOffset]); - } elseif ($pipeOffset === 1) { - $stdout .= $line; - } else { - $stderr .= $line; - } - } - if (empty($pipes)) { - break; - } - } - } - } else { - if (isset($pipes[1])) { - $stdout = stream_get_contents($pipes[1]); - fclose($pipes[1]); - } - if (isset($pipes[2])) { - $stderr = stream_get_contents($pipes[2]); - fclose($pipes[2]); - } - } - if (isset($handles[1])) { - rewind($handles[1]); - $stdout = stream_get_contents($handles[1]); - fclose($handles[1]); - } - if (isset($handles[2])) { - rewind($handles[2]); - $stderr = stream_get_contents($handles[2]); - fclose($handles[2]); - } - proc_close($process); - $this->cleanup(); - return ['stdout' => $stdout, 'stderr' => $stderr]; + return sprintf("exception message '%s' matches '%s'", $other->getMessage(), $this->expectedMessageRegExp); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function sprintf; +use function strpos; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class ExceptionMessage extends \PHPUnit\Framework\Constraint\Constraint +{ /** - * @param resource $pipe + * @var string */ - protected function process($pipe, string $job) : void + private $expectedMessage; + public function __construct(string $expected) { - fwrite($pipe, $job); + $this->expectedMessage = $expected; } - protected function cleanup() : void + public function toString(): string { - if ($this->tempFile) { - unlink($this->tempFile); + if ($this->expectedMessage === '') { + return 'exception message is empty'; } + return 'exception message contains '; } - protected function useTemporaryFile() : bool + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param Throwable $other + */ + protected function matches($other): bool { - return \false; - } -} -{driverMethod}($filter), - $filter - ); - - if ({codeCoverageCacheDirectory}) { - $coverage->cacheStaticAnalysis({codeCoverageCacheDirectory}); + if ($this->expectedMessage === '') { + return $other->getMessage() === ''; + } + return strpos((string) $other->getMessage(), $this->expectedMessage) !== \false; } - - $coverage->start(__FILE__); -} - -register_shutdown_function( - function() use ($coverage) { - $output = null; - - if ($coverage) { - $output = $coverage->stop(); + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string + { + if ($this->expectedMessage === '') { + return sprintf("exception message is empty but is '%s'", $other->getMessage()); } - - file_put_contents('{coverageFile}', serialize($output)); + return sprintf("exception message '%s' contains '%s'", $other->getMessage(), $this->expectedMessage); } -); - -ob_end_clean(); - -require '{job}'; - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; -function __phpunit_run_isolated_test() +use function get_class; +use function sprintf; +use PHPUnit\Util\Filter; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class Exception extends \PHPUnit\Framework\Constraint\Constraint { - if (!class_exists('{className}')) { - require_once '{filename}'; + /** + * @var string + */ + private $className; + public function __construct(string $className) + { + $this->className = $className; } - - $result = new PHPUnit\Framework\TestResult; - - if ({collectCodeCoverageInformation}) { - $filter = unserialize('{codeCoverageFilter}'); - - $codeCoverage = new CodeCoverage( - (new Selector)->{driverMethod}($filter), - $filter - ); - - if ({cachesStaticAnalysis}) { - $codeCoverage->cacheStaticAnalysis(unserialize('{codeCoverageCacheDirectory}')); - } - - $result->setCodeCoverage($codeCoverage); + /** + * Returns a string representation of the constraint. + */ + public function toString(): string + { + return sprintf('exception of type "%s"', $this->className); } - - $result->beStrictAboutTestsThatDoNotTestAnything({isStrictAboutTestsThatDoNotTestAnything}); - $result->beStrictAboutOutputDuringTests({isStrictAboutOutputDuringTests}); - $result->enforceTimeLimit({enforcesTimeLimit}); - $result->beStrictAboutTodoAnnotatedTests({isStrictAboutTodoAnnotatedTests}); - $result->beStrictAboutResourceUsageDuringSmallTests({isStrictAboutResourceUsageDuringSmallTests}); - - $test = new {className}('{name}', unserialize('{data}'), '{dataName}'); - $test->setDependencyInput(unserialize('{dependencyInput}')); - $test->setInIsolation(TRUE); - - ob_end_clean(); - $test->run($result); - $output = ''; - if (!$test->hasExpectationOnOutput()) { - $output = $test->getActualOutput(); + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool + { + return $other instanceof $this->className; } - - ini_set('xdebug.scream', '0'); - @rewind(STDOUT); /* @ as not every STDOUT target stream is rewindable */ - if ($stdout = @stream_get_contents(STDOUT)) { - $output = $stdout . $output; - $streamMetaData = stream_get_meta_data(STDOUT); - if (!empty($streamMetaData['stream_type']) && 'STDIO' === $streamMetaData['stream_type']) { - @ftruncate(STDOUT, 0); - @rewind(STDOUT); + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + */ + protected function failureDescription($other): string + { + if ($other !== null) { + $message = ''; + if ($other instanceof Throwable) { + $message = '. Message was: "' . $other->getMessage() . '" at' . "\n" . Filter::getFilteredStacktrace($other); + } + return sprintf('exception of type "%s" matches expected exception "%s"%s', get_class($other), $this->className, $message); } + return sprintf('exception of type "%s" is thrown', $this->className); } - - print serialize( - [ - 'testResult' => $test->getResult(), - 'numAssertions' => $test->getNumAssertions(), - 'result' => $result, - 'output' => $output - ] - ); -} - -$configurationFilePath = '{configurationFilePath}'; - -if ('' !== $configurationFilePath) { - $configuration = (new Loader)->load($configurationFilePath); - - (new PhpHandler)->handle($configuration->php()); - - unset($configuration); -} - -function __phpunit_error_handler($errno, $errstr, $errfile, $errline) -{ - return true; -} - -set_error_handler('__phpunit_error_handler'); - -{constants} -{included_files} -{globals} - -restore_error_handler(); - -if (isset($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { - require_once $GLOBALS['__PHPUNIT_BOOTSTRAP']; - unset($GLOBALS['__PHPUNIT_BOOTSTRAP']); } - -__phpunit_run_isolated_test(); + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; -function __phpunit_run_isolated_test() +use function sprintf; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +use Throwable; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class ExceptionCode extends \PHPUnit\Framework\Constraint\Constraint { - if (!class_exists('{className}')) { - require_once '{filename}'; + /** + * @var int|string + */ + private $expectedCode; + /** + * @param int|string $expected + */ + public function __construct($expected) + { + $this->expectedCode = $expected; } - - $result = new PHPUnit\Framework\TestResult; - - if ({collectCodeCoverageInformation}) { - $filter = unserialize('{codeCoverageFilter}'); - - $codeCoverage = new CodeCoverage( - (new Selector)->{driverMethod}($filter), - $filter - ); - - if ({cachesStaticAnalysis}) { - $codeCoverage->cacheStaticAnalysis(unserialize('{codeCoverageCacheDirectory}')); - } - - $result->setCodeCoverage($codeCoverage); + public function toString(): string + { + return 'exception code is '; } - - $result->beStrictAboutTestsThatDoNotTestAnything({isStrictAboutTestsThatDoNotTestAnything}); - $result->beStrictAboutOutputDuringTests({isStrictAboutOutputDuringTests}); - $result->enforceTimeLimit({enforcesTimeLimit}); - $result->beStrictAboutTodoAnnotatedTests({isStrictAboutTodoAnnotatedTests}); - $result->beStrictAboutResourceUsageDuringSmallTests({isStrictAboutResourceUsageDuringSmallTests}); - - $test = new {className}('{methodName}', unserialize('{data}'), '{dataName}'); - \assert($test instanceof TestCase); - - $test->setDependencyInput(unserialize('{dependencyInput}')); - $test->setInIsolation(true); - - ob_end_clean(); - $test->run($result); - $output = ''; - if (!$test->hasExpectationOnOutput()) { - $output = $test->getActualOutput(); + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param Throwable $other + */ + protected function matches($other): bool + { + return (string) $other->getCode() === (string) $this->expectedCode; } - - ini_set('xdebug.scream', '0'); - @rewind(STDOUT); /* @ as not every STDOUT target stream is rewindable */ - if ($stdout = @stream_get_contents(STDOUT)) { - $output = $stdout . $output; - $streamMetaData = stream_get_meta_data(STDOUT); - if (!empty($streamMetaData['stream_type']) && 'STDIO' === $streamMetaData['stream_type']) { - @ftruncate(STDOUT, 0); - @rewind(STDOUT); - } + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException + */ + protected function failureDescription($other): string + { + return sprintf('%s is equal to expected exception code %s', $this->exporter()->export($other->getCode()), $this->exporter()->export($this->expectedCode)); } - - print serialize( - [ - 'testResult' => $test->getResult(), - 'numAssertions' => $test->getNumAssertions(), - 'result' => $result, - 'output' => $output - ] - ); } - -$configurationFilePath = '{configurationFilePath}'; - -if ('' !== $configurationFilePath) { - $configuration = (new Loader)->load($configurationFilePath); - - (new PhpHandler)->handle($configuration->php()); - - unset($configuration); -} - -function __phpunit_error_handler($errno, $errstr, $errfile, $errline) -{ - return true; -} - -set_error_handler('__phpunit_error_handler'); - -{constants} -{included_files} -{globals} - -restore_error_handler(); - -if (isset($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { - require_once $GLOBALS['__PHPUNIT_BOOTSTRAP']; - unset($GLOBALS['__PHPUNIT_BOOTSTRAP']); -} - -__phpunit_run_isolated_test(); callback = $callback; } /** - * @throws Exception + * Returns a string representation of the constraint. */ - protected function getHandles() : array + public function toString(): string { - if (\false === ($stdout_handle = tmpfile())) { - throw new Exception('A temporary file could not be created; verify that your TEMP environment variable is writable'); - } - return [1 => $stdout_handle]; + return 'is accepted by specified callback'; } - protected function useTemporaryFile() : bool + /** + * Evaluates the constraint for parameter $value. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + * + * @psalm-param CallbackInput $other + */ + protected function matches($other): bool { - return \true; + return ($this->callback)($other); } } stream = $out; - return; - } - if (!is_string($out)) { - return; - } - if (strpos($out, 'socket://') === 0) { - $tmp = explode(':', str_replace('socket://', '', $out)); - if (count($tmp) !== 2) { - throw new \PHPUnit\Util\Exception(sprintf('"%s" does not match "socket://hostname:port" format', $out)); - } - $this->stream = fsockopen($tmp[0], (int) $tmp[1]); - return; - } - if (strpos($out, 'php://') === \false && !\PHPUnit\Util\Filesystem::createDirectory(dirname($out))) { - throw new \PHPUnit\Util\Exception(sprintf('Directory "%s" was not created', dirname($out))); - } - $this->stream = fopen($out, 'wb'); - $this->isPhpStream = strncmp($out, 'php://', 6) !== 0; + return 'or'; } - public function write(string $buffer) : void + /** + * Returns this operator's precedence. + * + * @see https://www.php.net/manual/en/language.operators.precedence.php + */ + public function precedence(): int { - if ($this->stream) { - assert(is_resource($this->stream)); - fwrite($this->stream, $buffer); - } else { - if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') { - $buffer = htmlspecialchars($buffer, ENT_COMPAT | ENT_SUBSTITUTE); - } - print $buffer; - } + return 24; } - public function flush() : void + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + public function matches($other): bool { - if ($this->stream && $this->isPhpStream) { - assert(is_resource($this->stream)); - fclose($this->stream); + foreach ($this->constraints() as $constraint) { + if ($constraint->evaluate($other, '', \true)) { + return \true; + } } + return \false; } } + * Returns the name of this operator. */ - public function publicMethodsInTestClass(ReflectionClass $class) : array + public function operator(): string { - return $this->filterMethods($class, ReflectionMethod::IS_PUBLIC); + return 'and'; } /** - * @psalm-return list + * Returns this operator's precedence. + * + * @see https://www.php.net/manual/en/language.operators.precedence.php */ - public function methodsInTestClass(ReflectionClass $class) : array + public function precedence(): int { - return $this->filterMethods($class, null); + return 22; } /** - * @psalm-return list + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate */ - private function filterMethods(ReflectionClass $class, ?int $filter) : array + protected function matches($other): bool { - $methods = []; - // PHP <7.3.5 throw error when null is passed - // to ReflectionClass::getMethods() when strict_types is enabled. - $classMethods = $filter === null ? $class->getMethods() : $class->getMethods($filter); - foreach ($classMethods as $method) { - if ($method->getDeclaringClass()->getName() === TestCase::class) { - continue; - } - if ($method->getDeclaringClass()->getName() === Assert::class) { - continue; + foreach ($this->constraints() as $constraint) { + if (!$constraint->evaluate($other, '', \true)) { + return \false; } - $methods[] = $method; } - return $methods; + return [] !== $this->constraints(); } } constraints(); + $initial = array_shift($constraints); + if ($initial === null) { + return \false; + } + return array_reduce($constraints, static function (bool $matches, \PHPUnit\Framework\Constraint\Constraint $constraint) use ($other): bool { + return $matches xor $constraint->evaluate($other, '', \true); + }, $initial->evaluate($other, '', \true)); } } getName()]; - } - if ($test instanceof SelfDescribing) { - return ['', $test->toString()]; - } - return ['', get_class($test)]; - } - public static function describeAsString(\PHPUnit\Framework\Test $test) : string + protected function checkConstraint($constraint): \PHPUnit\Framework\Constraint\Constraint { - if ($test instanceof SelfDescribing) { - return $test->toString(); + if (!$constraint instanceof \PHPUnit\Framework\Constraint\Constraint) { + return new \PHPUnit\Framework\Constraint\IsEqual($constraint); } - return get_class($test); + return $constraint; } /** - * @throws CodeCoverageException - * - * @return array|bool - * - * @psalm-param class-string $className + * Returns true if the $constraint needs to be wrapped with braces. */ - public static function getLinesToBeCovered(string $className, string $methodName) + protected function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint): bool { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - if (!self::shouldCoversAnnotationBeUsed($annotations)) { - return \false; - } - return self::getLinesToBeCoveredOrUsed($className, $methodName, 'covers'); + return $constraint instanceof self && $constraint->arity() > 1 && $this->precedence() <= $constraint->precedence(); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function array_map; +use function array_values; +use function count; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +abstract class BinaryOperator extends \PHPUnit\Framework\Constraint\Operator +{ /** - * Returns lines of code specified with the @uses annotation. - * - * @throws CodeCoverageException - * - * @psalm-param class-string $className + * @var Constraint[] */ - public static function getLinesToBeUsed(string $className, string $methodName) : array + private $constraints = []; + public static function fromConstraints(\PHPUnit\Framework\Constraint\Constraint ...$constraints): self { - return self::getLinesToBeCoveredOrUsed($className, $methodName, 'uses'); + $constraint = new static(); + $constraint->constraints = $constraints; + return $constraint; } - public static function requiresCodeCoverageDataCollection(TestCase $test) : bool + /** + * @param mixed[] $constraints + */ + public function setConstraints(array $constraints): void { - $annotations = self::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); - // If there is no @covers annotation but a @coversNothing annotation on - // the test method then code coverage data does not need to be collected - if (isset($annotations['method']['coversNothing'])) { - // @see https://github.com/sebastianbergmann/phpunit/issues/4947#issuecomment-1084480950 - // return false; - } - // If there is at least one @covers annotation then - // code coverage data needs to be collected - if (isset($annotations['method']['covers'])) { - return \true; - } - // If there is no @covers annotation but a @coversNothing annotation - // then code coverage data does not need to be collected - if (isset($annotations['class']['coversNothing'])) { - // @see https://github.com/sebastianbergmann/phpunit/issues/4947#issuecomment-1084480950 - // return false; - } - // If there is no @coversNothing annotation then - // code coverage data may be collected - return \true; + $this->constraints = array_map(function ($constraint): \PHPUnit\Framework\Constraint\Constraint { + return $this->checkConstraint($constraint); + }, array_values($constraints)); } /** - * @throws Exception - * - * @psalm-param class-string $className + * Returns the number of operands (constraints). */ - public static function getRequirements(string $className, string $methodName) : array + final public function arity(): int { - return self::mergeArraysRecursively(Registry::getInstance()->forClassName($className)->requirements(), Registry::getInstance()->forMethod($className, $methodName)->requirements()); + return count($this->constraints); } /** - * Returns the missing requirements for a test. - * - * @throws Exception - * @throws Warning - * - * @psalm-param class-string $className + * Returns a string representation of the constraint. */ - public static function getMissingRequirements(string $className, string $methodName) : array + public function toString(): string { - $required = self::getRequirements($className, $methodName); - $missing = []; - $hint = null; - if (!empty($required['PHP'])) { - $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($required['PHP']['operator']) ? '>=' : $required['PHP']['operator']); - if (!version_compare(PHP_VERSION, $required['PHP']['version'], $operator->asString())) { - $missing[] = sprintf('PHP %s %s is required.', $operator->asString(), $required['PHP']['version']); - $hint = 'PHP'; - } - } elseif (!empty($required['PHP_constraint'])) { - $version = new \PHPUnit\PharIo\Version\Version(self::sanitizeVersionNumber(PHP_VERSION)); - if (!$required['PHP_constraint']['constraint']->complies($version)) { - $missing[] = sprintf('PHP version does not match the required constraint %s.', $required['PHP_constraint']['constraint']->asString()); - $hint = 'PHP_constraint'; - } - } - if (!empty($required['PHPUnit'])) { - $phpunitVersion = Version::id(); - $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($required['PHPUnit']['operator']) ? '>=' : $required['PHPUnit']['operator']); - if (!version_compare($phpunitVersion, $required['PHPUnit']['version'], $operator->asString())) { - $missing[] = sprintf('PHPUnit %s %s is required.', $operator->asString(), $required['PHPUnit']['version']); - $hint = $hint ?? 'PHPUnit'; - } - } elseif (!empty($required['PHPUnit_constraint'])) { - $phpunitVersion = new \PHPUnit\PharIo\Version\Version(self::sanitizeVersionNumber(Version::id())); - if (!$required['PHPUnit_constraint']['constraint']->complies($phpunitVersion)) { - $missing[] = sprintf('PHPUnit version does not match the required constraint %s.', $required['PHPUnit_constraint']['constraint']->asString()); - $hint = $hint ?? 'PHPUnit_constraint'; - } - } - if (!empty($required['OSFAMILY']) && $required['OSFAMILY'] !== (new OperatingSystem())->getFamily()) { - $missing[] = sprintf('Operating system %s is required.', $required['OSFAMILY']); - $hint = $hint ?? 'OSFAMILY'; - } - if (!empty($required['OS'])) { - $requiredOsPattern = sprintf('/%s/i', addcslashes($required['OS'], '/')); - if (!preg_match($requiredOsPattern, PHP_OS)) { - $missing[] = sprintf('Operating system matching %s is required.', $requiredOsPattern); - $hint = $hint ?? 'OS'; - } - } - if (!empty($required['functions'])) { - foreach ($required['functions'] as $function) { - $pieces = explode('::', $function); - if (count($pieces) === 2 && class_exists($pieces[0]) && method_exists($pieces[0], $pieces[1])) { - continue; - } - if (function_exists($function)) { - continue; - } - $missing[] = sprintf('Function %s is required.', $function); - $hint = $hint ?? 'function_' . $function; - } - } - if (!empty($required['setting'])) { - foreach ($required['setting'] as $setting => $value) { - if (ini_get($setting) !== $value) { - $missing[] = sprintf('Setting "%s" must be "%s".', $setting, $value); - $hint = $hint ?? '__SETTING_' . $setting; - } - } - } - if (!empty($required['extensions'])) { - foreach ($required['extensions'] as $extension) { - if (isset($required['extension_versions'][$extension])) { - continue; - } - if (!extension_loaded($extension)) { - $missing[] = sprintf('Extension %s is required.', $extension); - $hint = $hint ?? 'extension_' . $extension; - } - } - } - if (!empty($required['extension_versions'])) { - foreach ($required['extension_versions'] as $extension => $req) { - $actualVersion = phpversion($extension); - $operator = new \PHPUnit\Util\VersionComparisonOperator(empty($req['operator']) ? '>=' : $req['operator']); - if ($actualVersion === \false || !version_compare($actualVersion, $req['version'], $operator->asString())) { - $missing[] = sprintf('Extension %s %s %s is required.', $extension, $operator->asString(), $req['version']); - $hint = $hint ?? 'extension_' . $extension; - } - } + $reduced = $this->reduce(); + if ($reduced !== $this) { + return $reduced->toString(); } - if ($hint && isset($required['__OFFSET'])) { - array_unshift($missing, '__OFFSET_FILE=' . $required['__OFFSET']['__FILE']); - array_unshift($missing, '__OFFSET_LINE=' . ($required['__OFFSET'][$hint] ?? 1)); + $text = ''; + foreach ($this->constraints as $key => $constraint) { + $constraint = $constraint->reduce(); + $text .= $this->constraintToString($constraint, $key); } - return $missing; + return $text; } /** - * Returns the provided data for a method. - * - * @throws Exception - * - * @psalm-param class-string $className + * Counts the number of constraint elements. */ - public static function getProvidedData(string $className, string $methodName) : ?array + public function count(): int { - return Registry::getInstance()->forMethod($className, $methodName)->getProvidedData(); + $count = 0; + foreach ($this->constraints as $constraint) { + $count += count($constraint); + } + return $count; } /** - * @psalm-param class-string $className + * Returns the nested constraints. */ - public static function parseTestMethodAnnotations(string $className, ?string $methodName = '') : array + final protected function constraints(): array { - $registry = Registry::getInstance(); - if ($methodName !== null) { - try { - return ['method' => $registry->forMethod($className, $methodName)->symbolAnnotations(), 'class' => $registry->forClassName($className)->symbolAnnotations()]; - } catch (\PHPUnit\Util\Exception $methodNotFound) { - // ignored - } - } - return ['method' => null, 'class' => $registry->forClassName($className)->symbolAnnotations()]; + return $this->constraints; } /** - * @psalm-param class-string $className + * Returns true if the $constraint needs to be wrapped with braces. */ - public static function getInlineAnnotations(string $className, string $methodName) : array + final protected function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint): bool { - return Registry::getInstance()->forMethod($className, $methodName)->getInlineAnnotations(); - } - /** @psalm-param class-string $className */ - public static function getBackupSettings(string $className, string $methodName) : array - { - return ['backupGlobals' => self::getBooleanAnnotationSetting($className, $methodName, 'backupGlobals'), 'backupStaticAttributes' => self::getBooleanAnnotationSetting($className, $methodName, 'backupStaticAttributes')]; + return $this->arity() > 1 && parent::constraintNeedsParentheses($constraint); } /** - * @psalm-param class-string $className + * Reduces the sub-expression starting at $this by skipping degenerate + * sub-expression and returns first descendant constraint that starts + * a non-reducible sub-expression. * - * @return ExecutionOrderDependency[] + * See Constraint::reduce() for more. */ - public static function getDependencies(string $className, string $methodName) : array + protected function reduce(): \PHPUnit\Framework\Constraint\Constraint { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - $dependsAnnotations = $annotations['class']['depends'] ?? []; - if (isset($annotations['method']['depends'])) { - $dependsAnnotations = array_merge($dependsAnnotations, $annotations['method']['depends']); - } - // Normalize dependency name to className::methodName - $dependencies = []; - foreach ($dependsAnnotations as $value) { - $dependencies[] = ExecutionOrderDependency::createFromDependsAnnotation($className, $value); + if ($this->arity() === 1 && $this->constraints[0] instanceof \PHPUnit\Framework\Constraint\Operator) { + return $this->constraints[0]->reduce(); } - return array_unique($dependencies); + return parent::reduce(); } - /** @psalm-param class-string $className */ - public static function getGroups(string $className, ?string $methodName = '') : array + /** + * Returns string representation of given operand in context of this operator. + * + * @param Constraint $constraint operand constraint + * @param int $position position of $constraint in this expression + */ + private function constraintToString(\PHPUnit\Framework\Constraint\Constraint $constraint, int $position): string { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - $groups = []; - if (isset($annotations['method']['author'])) { - $groups[] = $annotations['method']['author']; - } elseif (isset($annotations['class']['author'])) { - $groups[] = $annotations['class']['author']; - } - if (isset($annotations['class']['group'])) { - $groups[] = $annotations['class']['group']; - } - if (isset($annotations['method']['group'])) { - $groups[] = $annotations['method']['group']; - } - if (isset($annotations['class']['ticket'])) { - $groups[] = $annotations['class']['ticket']; - } - if (isset($annotations['method']['ticket'])) { - $groups[] = $annotations['method']['ticket']; + $prefix = ''; + if ($position > 0) { + $prefix = ' ' . $this->operator() . ' '; } - foreach (['method', 'class'] as $element) { - foreach (['small', 'medium', 'large'] as $size) { - if (isset($annotations[$element][$size])) { - $groups[] = [$size]; - break 2; - } - } + if ($this->constraintNeedsParentheses($constraint)) { + return $prefix . '( ' . $constraint->toString() . ' )'; } - foreach (['method', 'class'] as $element) { - if (isset($annotations[$element]['covers'])) { - foreach ($annotations[$element]['covers'] as $coversTarget) { - $groups[] = ['__phpunit_covers_' . self::canonicalizeName($coversTarget)]; - } - } - if (isset($annotations[$element]['uses'])) { - foreach ($annotations[$element]['uses'] as $usesTarget) { - $groups[] = ['__phpunit_uses_' . self::canonicalizeName($usesTarget)]; - } - } + $string = $constraint->toStringInContext($this, $position); + if ($string === '') { + $string = $constraint->toString(); } - return array_unique(array_merge([], ...$groups)); + return $prefix . $string; } - /** @psalm-param class-string $className */ - public static function getSize(string $className, ?string $methodName) : int +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function array_map; +use function count; +use function preg_match; +use function preg_quote; +use function preg_replace; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class LogicalNot extends \PHPUnit\Framework\Constraint\UnaryOperator +{ + public static function negate(string $string): string { - $groups = array_flip(self::getGroups($className, $methodName)); - if (isset($groups['large'])) { - return self::LARGE; - } - if (isset($groups['medium'])) { - return self::MEDIUM; + $positives = ['contains ', 'exists', 'has ', 'is ', 'are ', 'matches ', 'starts with ', 'ends with ', 'reference ', 'not not ']; + $negatives = ['does not contain ', 'does not exist', 'does not have ', 'is not ', 'are not ', 'does not match ', 'starts not with ', 'ends not with ', 'don\'t reference ', 'not ']; + preg_match('/(\'[\w\W]*\')([\w\W]*)("[\w\W]*")/i', $string, $matches); + if (count($matches) === 0) { + preg_match('/(\'[\w\W]*\')([\w\W]*)(\'[\w\W]*\')/i', $string, $matches); } - if (isset($groups['small'])) { - return self::SMALL; + $positives = array_map(static function (string $s) { + return '/\b' . preg_quote($s, '/') . '/'; + }, $positives); + if (count($matches) > 0) { + $nonInput = $matches[2]; + $negatedString = preg_replace('/' . preg_quote($nonInput, '/') . '/', preg_replace($positives, $negatives, $nonInput), $string); + } else { + $negatedString = preg_replace($positives, $negatives, $string); } - return self::UNKNOWN; + return $negatedString; } - /** @psalm-param class-string $className */ - public static function getProcessIsolationSettings(string $className, string $methodName) : bool + /** + * Returns the name of this operator. + */ + public function operator(): string { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - return isset($annotations['class']['runTestsInSeparateProcesses']) || isset($annotations['method']['runInSeparateProcess']); + return 'not'; } - /** @psalm-param class-string $className */ - public static function getClassProcessIsolationSettings(string $className, string $methodName) : bool + /** + * Returns this operator's precedence. + * + * @see https://www.php.net/manual/en/language.operators.precedence.php + */ + public function precedence(): int { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - return isset($annotations['class']['runClassInSeparateProcess']); + return 5; } - /** @psalm-param class-string $className */ - public static function getPreserveGlobalStateSettings(string $className, string $methodName) : ?bool + /** + * Evaluates the constraint for parameter $other. Returns true if the + * constraint is met, false otherwise. + * + * @param mixed $other value or object to evaluate + */ + protected function matches($other): bool { - return self::getBooleanAnnotationSetting($className, $methodName, 'preserveGlobalState'); + return !$this->constraint()->evaluate($other, '', \true); } - /** @psalm-param class-string $className */ - public static function getHookMethods(string $className) : array + /** + * Applies additional transformation to strings returned by toString() or + * failureDescription(). + */ + protected function transformString(string $string): string { - if (!class_exists($className, \false)) { - return self::emptyHookMethodsArray(); - } - if (!isset(self::$hookMethods[$className])) { - self::$hookMethods[$className] = self::emptyHookMethodsArray(); - try { - foreach ((new \PHPUnit\Util\Reflection())->methodsInTestClass(new ReflectionClass($className)) as $method) { - $docBlock = Registry::getInstance()->forMethod($className, $method->getName()); - if ($method->isStatic()) { - if ($docBlock->isHookToBeExecutedBeforeClass()) { - array_unshift(self::$hookMethods[$className]['beforeClass'], $method->getName()); - } - if ($docBlock->isHookToBeExecutedAfterClass()) { - self::$hookMethods[$className]['afterClass'][] = $method->getName(); - } - } - if ($docBlock->isToBeExecutedBeforeTest()) { - array_unshift(self::$hookMethods[$className]['before'], $method->getName()); - } - if ($docBlock->isToBeExecutedAsPreCondition()) { - array_unshift(self::$hookMethods[$className]['preCondition'], $method->getName()); - } - if ($docBlock->isToBeExecutedAsPostCondition()) { - self::$hookMethods[$className]['postCondition'][] = $method->getName(); - } - if ($docBlock->isToBeExecutedAfterTest()) { - self::$hookMethods[$className]['after'][] = $method->getName(); - } - } - } catch (ReflectionException $e) { - } - } - return self::$hookMethods[$className]; + return self::negate($string); } - public static function isTestMethod(ReflectionMethod $method) : bool + /** + * Reduces the sub-expression starting at $this by skipping degenerate + * sub-expression and returns first descendant constraint that starts + * a non-reducible sub-expression. + * + * See Constraint::reduce() for more. + */ + protected function reduce(): \PHPUnit\Framework\Constraint\Constraint { - if (!$method->isPublic()) { - return \false; - } - if (strpos($method->getName(), 'test') === 0) { - return \true; + $constraint = $this->constraint(); + if ($constraint instanceof self) { + return $constraint->constraint()->reduce(); } - return array_key_exists('test', Registry::getInstance()->forMethod($method->getDeclaringClass()->getName(), $method->getName())->symbolAnnotations()); + return parent::reduce(); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework\Constraint; + +use function count; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\InvalidArgumentException; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +abstract class UnaryOperator extends \PHPUnit\Framework\Constraint\Operator +{ /** - * @throws CodeCoverageException - * - * @psalm-param class-string $className + * @var Constraint + */ + private $constraint; + /** + * @param Constraint|mixed $constraint */ - private static function getLinesToBeCoveredOrUsed(string $className, string $methodName, string $mode) : array + public function __construct($constraint) { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - $classShortcut = null; - if (!empty($annotations['class'][$mode . 'DefaultClass'])) { - if (count($annotations['class'][$mode . 'DefaultClass']) > 1) { - throw new CodeCoverageException(sprintf('More than one @%sClass annotation in class or interface "%s".', $mode, $className)); - } - $classShortcut = $annotations['class'][$mode . 'DefaultClass'][0]; - } - $list = $annotations['class'][$mode] ?? []; - if (isset($annotations['method'][$mode])) { - $list = array_merge($list, $annotations['method'][$mode]); - } - $codeUnits = CodeUnitCollection::fromArray([]); - $mapper = new Mapper(); - foreach (array_unique($list) as $element) { - if ($classShortcut && strncmp($element, '::', 2) === 0) { - $element = $classShortcut . $element; - } - $element = preg_replace('/[\\s()]+$/', '', $element); - $element = explode(' ', $element); - $element = $element[0]; - if ($mode === 'covers' && interface_exists($element)) { - throw new InvalidCoversTargetException(sprintf('Trying to @cover interface "%s".', $element)); - } - try { - $codeUnits = $codeUnits->mergeWith($mapper->stringToCodeUnits($element)); - } catch (InvalidCodeUnitException $e) { - throw new InvalidCoversTargetException(sprintf('"@%s %s" is invalid', $mode, $element), (int) $e->getCode(), $e); - } - } - return $mapper->codeUnitsToSourceLines($codeUnits); + $this->constraint = $this->checkConstraint($constraint); } - private static function emptyHookMethodsArray() : array + /** + * Returns the number of operands (constraints). + */ + public function arity(): int { - return ['beforeClass' => ['setUpBeforeClass'], 'before' => ['setUp'], 'preCondition' => ['assertPreConditions'], 'postCondition' => ['assertPostConditions'], 'after' => ['tearDown'], 'afterClass' => ['tearDownAfterClass']]; + return 1; } - /** @psalm-param class-string $className */ - private static function getBooleanAnnotationSetting(string $className, ?string $methodName, string $settingName) : ?bool + /** + * Returns a string representation of the constraint. + */ + public function toString(): string { - $annotations = self::parseTestMethodAnnotations($className, $methodName); - if (isset($annotations['method'][$settingName])) { - if ($annotations['method'][$settingName][0] === 'enabled') { - return \true; - } - if ($annotations['method'][$settingName][0] === 'disabled') { - return \false; - } + $reduced = $this->reduce(); + if ($reduced !== $this) { + return $reduced->toString(); } - if (isset($annotations['class'][$settingName])) { - if ($annotations['class'][$settingName][0] === 'enabled') { - return \true; - } - if ($annotations['class'][$settingName][0] === 'disabled') { - return \false; - } + $constraint = $this->constraint->reduce(); + if ($this->constraintNeedsParentheses($constraint)) { + return $this->operator() . '( ' . $constraint->toString() . ' )'; } - return null; + $string = $constraint->toStringInContext($this, 0); + if ($string === '') { + return $this->transformString($constraint->toString()); + } + return $string; } /** - * Trims any extensions from version string that follows after - * the .[.] format. + * Counts the number of constraint elements. */ - private static function sanitizeVersionNumber(string $version) + public function count(): int { - return preg_replace('/^(\\d+\\.\\d+(?:.\\d+)?).*$/', '$1', $version); + return count($this->constraint); } - private static function shouldCoversAnnotationBeUsed(array $annotations) : bool + /** + * Returns the description of the failure. + * + * The beginning of failure messages is "Failed asserting that" in most + * cases. This method should return the second part of that sentence. + * + * @param mixed $other evaluated value or object + * + * @throws InvalidArgumentException + */ + protected function failureDescription($other): string { - if (isset($annotations['method']['coversNothing'])) { - return \false; + $reduced = $this->reduce(); + if ($reduced !== $this) { + return $reduced->failureDescription($other); } - if (isset($annotations['method']['covers'])) { - return \true; + $constraint = $this->constraint->reduce(); + if ($this->constraintNeedsParentheses($constraint)) { + return $this->operator() . '( ' . $constraint->failureDescription($other) . ' )'; } - if (isset($annotations['class']['coversNothing'])) { - return \false; + $string = $constraint->failureDescriptionInContext($this, 0, $other); + if ($string === '') { + return $this->transformString($constraint->failureDescription($other)); } - return \true; + return $string; } /** - * Merge two arrays together. - * - * If an integer key exists in both arrays and preserveNumericKeys is false, the value - * from the second array will be appended to the first array. If both values are arrays, they - * are merged together, else the value of the second array overwrites the one of the first array. - * - * This implementation is copied from https://github.com/zendframework/zend-stdlib/blob/76b653c5e99b40eccf5966e3122c90615134ae46/src/ArrayUtils.php - * - * Zend Framework (http://framework.zend.com/) + * Transforms string returned by the member constraint's toString() or + * failureDescription() such that it reflects constraint's participation in + * this expression. * - * @see http://github.com/zendframework/zf2 for the canonical source repository + * The method may be overwritten in a subclass to apply default + * transformation in case the operand constraint does not provide its own + * custom strings via toStringInContext() or failureDescriptionInContext(). * - * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) - * @license http://framework.zend.com/license/new-bsd New BSD License + * @param string $string the string to be transformed */ - private static function mergeArraysRecursively(array $a, array $b) : array + protected function transformString(string $string): string { - foreach ($b as $key => $value) { - if (array_key_exists($key, $a)) { - if (is_int($key)) { - $a[] = $value; - } elseif (is_array($value) && is_array($a[$key])) { - $a[$key] = self::mergeArraysRecursively($a[$key], $value); - } else { - $a[$key] = $value; - } - } else { - $a[$key] = $value; - } - } - return $a; + return $string; } - private static function canonicalizeName(string $name) : string + /** + * Provides access to $this->constraint for subclasses. + */ + final protected function constraint(): \PHPUnit\Framework\Constraint\Constraint { - return strtolower(trim($name, '\\')); + return $this->constraint; + } + /** + * Returns true if the $constraint needs to be wrapped with parentheses. + */ + protected function constraintNeedsParentheses(\PHPUnit\Framework\Constraint\Constraint $constraint): bool + { + $constraint = $constraint->reduce(); + return $constraint instanceof self || parent::constraintNeedsParentheses($constraint); } } '│', 'start' => '│', 'message' => '│', 'diff' => '│', 'trace' => '│', 'last' => '│']; - /** - * Colored Testdox use box-drawing for a more textured map of the message. + * @var ?bool */ - private const PREFIX_DECORATED = ['default' => '│', 'start' => 'â”', 'message' => '├', 'diff' => '┊', 'trace' => '╵', 'last' => 'â”´']; - private const SPINNER_ICONS = [" \x1b[36mâ—\x1b[0m running tests", " \x1b[36mâ—“\x1b[0m running tests", " \x1b[36mâ—‘\x1b[0m running tests", " \x1b[36mâ—’\x1b[0m running tests"]; - private const STATUS_STYLES = [BaseTestRunner::STATUS_PASSED => ['symbol' => '✔', 'color' => 'fg-green'], BaseTestRunner::STATUS_ERROR => ['symbol' => '✘', 'color' => 'fg-yellow', 'message' => 'bg-yellow,fg-black'], BaseTestRunner::STATUS_FAILURE => ['symbol' => '✘', 'color' => 'fg-red', 'message' => 'bg-red,fg-white'], BaseTestRunner::STATUS_SKIPPED => ['symbol' => '↩', 'color' => 'fg-cyan', 'message' => 'fg-cyan'], BaseTestRunner::STATUS_RISKY => ['symbol' => '☢', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_INCOMPLETE => ['symbol' => '∅', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_WARNING => ['symbol' => 'âš ', 'color' => 'fg-yellow', 'message' => 'fg-yellow'], BaseTestRunner::STATUS_UNKNOWN => ['symbol' => '?', 'color' => 'fg-blue', 'message' => 'fg-white,bg-blue']]; + protected $backupGlobals = \false; /** - * @var int[] + * @var ?bool */ - private $nonSuccessfulTestResults = []; + protected $backupStaticAttributes = \false; /** - * @var Timer + * @var ?bool */ - private $timer; + protected $runTestInSeparateProcess = \false; /** - * @param null|resource|string $out - * @param int|string $numberOfColumns - * - * @throws \PHPUnit\Framework\Exception + * @var string */ - public function __construct($out = null, bool $verbose = \false, string $colors = self::COLOR_DEFAULT, bool $debug = \false, $numberOfColumns = 80, bool $reverse = \false) - { - parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); - $this->timer = new Timer(); - $this->timer->start(); - } - public function printResult(TestResult $result) : void - { - $this->printHeader($result); - $this->printNonSuccessfulTestsSummary($result->count()); - $this->printFooter($result); - } - protected function printHeader(TestResult $result) : void + private $message; + public function __construct(string $className, string $methodName, string $message = '') { - $this->write("\n" . (new ResourceUsageFormatter())->resourceUsage($this->timer->stop()) . "\n\n"); + parent::__construct($className . '::' . $methodName); + $this->message = $message; } - protected function formatClassName(Test $test) : string + public function getMessage(): string { - if ($test instanceof TestCase) { - return $this->prettifier->prettifyTestClass(get_class($test)); - } - return get_class($test); + return $this->message; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Returns a string representation of the test case. + * + * @throws InvalidArgumentException */ - protected function registerTestResult(Test $test, ?Throwable $t, int $status, float $time, bool $verbose) : void + public function toString(): string { - if ($status !== BaseTestRunner::STATUS_PASSED) { - $this->nonSuccessfulTestResults[] = $this->testIndex; - } - parent::registerTestResult($test, $t, $status, $time, $verbose); + return $this->getName(); } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - protected function formatTestName(Test $test) : string + protected function runTest(): void { - if ($test instanceof TestCase) { - return $this->prettifier->prettifyTestCase($test); - } - return parent::formatTestName($test); + $this->markTestIncomplete($this->message); } - protected function writeTestResult(array $prevResult, array $result) : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Framework; + +use function get_class; +use function sprintf; +use function trim; +use PHPUnit\Framework\Error\Error; +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TestFailure +{ + /** + * @var null|Test + */ + private $failedTest; + /** + * @var Throwable + */ + private $thrownException; + /** + * @var string + */ + private $testName; + /** + * Returns a description for an exception. + */ + public static function exceptionToString(Throwable $e): string { - // spacer line for new suite headers and after verbose messages - if ($prevResult['testName'] !== '' && (!empty($prevResult['message']) || $prevResult['className'] !== $result['className'])) { - $this->write(PHP_EOL); + if ($e instanceof \PHPUnit\Framework\SelfDescribing) { + $buffer = $e->toString(); + if ($e instanceof \PHPUnit\Framework\ExpectationFailedException && $e->getComparisonFailure()) { + $buffer .= $e->getComparisonFailure()->getDiff(); + } + if ($e instanceof \PHPUnit\Framework\PHPTAssertionFailedError) { + $buffer .= $e->getDiff(); + } + if (!empty($buffer)) { + $buffer = trim($buffer) . "\n"; + } + return $buffer; } - // suite header - if ($prevResult['className'] !== $result['className']) { - $this->write($this->colorizeTextBox('underlined', $result['className']) . PHP_EOL); + if ($e instanceof Error) { + return $e->getMessage() . "\n"; } - // test result line - if ($this->colors && $result['className'] === PhptTestCase::class) { - $testName = Color::colorizePath($result['testName'], $prevResult['testName'], \true); - } else { - $testName = $result['testMethod']; + if ($e instanceof \PHPUnit\Framework\ExceptionWrapper) { + return $e->getClassName() . ': ' . $e->getMessage() . "\n"; } - $style = self::STATUS_STYLES[$result['status']]; - $line = sprintf(' %s %s%s' . PHP_EOL, $this->colorizeTextBox($style['color'], $style['symbol']), $testName, $this->verbose ? ' ' . $this->formatRuntime($result['time'], $style['color']) : ''); - $this->write($line); - // additional information when verbose - $this->write($result['message']); - } - protected function formatThrowable(Throwable $t, ?int $status = null) : string - { - return trim(\PHPUnit\Framework\TestFailure::exceptionToString($t)); + return get_class($e) . ': ' . $e->getMessage() . "\n"; } - protected function colorizeMessageAndDiff(string $style, string $buffer) : array + /** + * Constructs a TestFailure with the given test and exception. + */ + public function __construct(\PHPUnit\Framework\Test $failedTest, Throwable $t) { - $lines = $buffer ? array_map('\\rtrim', explode(PHP_EOL, $buffer)) : []; - $message = []; - $diff = []; - $insideDiff = \false; - foreach ($lines as $line) { - if ($line === '--- Expected') { - $insideDiff = \true; - } - if (!$insideDiff) { - $message[] = $line; - } else { - if (strpos($line, '-') === 0) { - $line = Color::colorize('fg-red', Color::visualizeWhitespace($line, \true)); - } elseif (strpos($line, '+') === 0) { - $line = Color::colorize('fg-green', Color::visualizeWhitespace($line, \true)); - } elseif ($line === '@@ @@') { - $line = Color::colorize('fg-cyan', $line); - } - $diff[] = $line; - } + if ($failedTest instanceof \PHPUnit\Framework\SelfDescribing) { + $this->testName = $failedTest->toString(); + } else { + $this->testName = get_class($failedTest); } - $diff = implode(PHP_EOL, $diff); - if (!empty($message)) { - $message = $this->colorizeTextBox($style, implode(PHP_EOL, $message)); + if (!$failedTest instanceof \PHPUnit\Framework\TestCase || !$failedTest->isInIsolation()) { + $this->failedTest = $failedTest; } - return [$message, $diff]; + $this->thrownException = $t; + } + /** + * Returns a short description of the failure. + */ + public function toString(): string + { + return sprintf('%s: %s', $this->testName, $this->thrownException->getMessage()); } - protected function formatStacktrace(Throwable $t) : string + /** + * Returns a description for the thrown exception. + */ + public function getExceptionAsString(): string { - $trace = \PHPUnit\Util\Filter::getFilteredStacktrace($t); - if (!$this->colors) { - return $trace; - } - $lines = []; - $prevPath = ''; - foreach (explode(PHP_EOL, $trace) as $line) { - if (preg_match('/^(.*):(\\d+)$/', $line, $matches)) { - $lines[] = Color::colorizePath($matches[1], $prevPath) . Color::dim(':') . Color::colorize('fg-blue', $matches[2]) . "\n"; - $prevPath = $matches[1]; - } else { - $lines[] = $line; - $prevPath = ''; - } - } - return implode('', $lines); + return self::exceptionToString($this->thrownException); } - protected function formatTestResultMessage(Throwable $t, array $result, ?string $prefix = null) : string + /** + * Returns the name of the failing test (including data set, if any). + */ + public function getTestName(): string { - $message = $this->formatThrowable($t, $result['status']); - $diff = ''; - if (!($this->verbose || $result['verbose'])) { - return ''; - } - if ($message && $this->colors) { - $style = self::STATUS_STYLES[$result['status']]['message'] ?? ''; - [$message, $diff] = $this->colorizeMessageAndDiff($style, $message); - } - if ($prefix === null || !$this->colors) { - $prefix = self::PREFIX_SIMPLE; - } - if ($this->colors) { - $color = self::STATUS_STYLES[$result['status']]['color'] ?? ''; - $prefix = array_map(static function ($p) use($color) { - return Color::colorize($color, $p); - }, self::PREFIX_DECORATED); - } - $trace = $this->formatStacktrace($t); - $out = $this->prefixLines($prefix['start'], PHP_EOL) . PHP_EOL; - if ($message) { - $out .= $this->prefixLines($prefix['message'], $message . PHP_EOL) . PHP_EOL; - } - if ($diff) { - $out .= $this->prefixLines($prefix['diff'], $diff . PHP_EOL) . PHP_EOL; - } - if ($trace) { - if ($message || $diff) { - $out .= $this->prefixLines($prefix['default'], PHP_EOL) . PHP_EOL; - } - $out .= $this->prefixLines($prefix['trace'], $trace . PHP_EOL) . PHP_EOL; - } - $out .= $this->prefixLines($prefix['last'], PHP_EOL) . PHP_EOL; - return $out; + return $this->testName; } - protected function drawSpinner() : void + /** + * Returns the failing test. + * + * Note: The test object is not set when the test is executed in process + * isolation. + * + * @see Exception + */ + public function failedTest(): ?\PHPUnit\Framework\Test { - if ($this->colors) { - $id = $this->spinState % count(self::SPINNER_ICONS); - $this->write(self::SPINNER_ICONS[$id]); - } + return $this->failedTest; } - protected function undrawSpinner() : void + /** + * Gets the thrown exception. + */ + public function thrownException(): Throwable { - if ($this->colors) { - $id = $this->spinState % count(self::SPINNER_ICONS); - $this->write("\x1b[1K\x1b[" . strlen(self::SPINNER_ICONS[$id]) . 'D'); - } + return $this->thrownException; } - private function formatRuntime(float $time, string $color = '') : string + /** + * Returns the exception's message. + */ + public function exceptionMessage(): string { - if (!$this->colors) { - return sprintf('[%.2f ms]', $time * 1000); - } - if ($time > 1) { - $color = 'fg-magenta'; - } - return Color::colorize($color, ' ' . (int) ceil($time * 1000) . ' ' . Color::dim('ms')); + return $this->thrownException()->getMessage(); } - private function printNonSuccessfulTestsSummary(int $numberOfExecutedTests) : void + /** + * Returns true if the thrown exception + * is of type AssertionFailedError. + */ + public function isFailure(): bool { - if (empty($this->nonSuccessfulTestResults)) { - return; - } - if (count($this->nonSuccessfulTestResults) / $numberOfExecutedTests >= 0.7) { - return; - } - $this->write("Summary of non-successful tests:\n\n"); - $prevResult = $this->getEmptyTestResult(); - foreach ($this->nonSuccessfulTestResults as $testIndex) { - $result = $this->testResults[$testIndex]; - $this->writeTestResult($prevResult, $result); - $prevResult = $result; - } + return $this->thrownException() instanceof \PHPUnit\Framework\AssertionFailedError; } } - - - - Test Documentation - - - -EOT; + protected $backupGlobals = \false; /** - * @var string + * @var ?bool */ - private const CLASS_HEADER = <<<'EOT' - -

      %s

      -
        - -EOT; + protected $backupStaticAttributes = \false; /** - * @var string + * @var ?bool */ - private const CLASS_FOOTER = <<<'EOT' -
      -EOT; + protected $runTestInSeparateProcess = \false; /** * @var string */ - private const PAGE_FOOTER = <<<'EOT' - - - -EOT; - public function printResult(TestResult $result) : void - { - } - /** - * Handler for 'start run' event. - */ - protected function startRun() : void - { - $this->write(self::PAGE_HEADER); - } - /** - * Handler for 'start class' event. - */ - protected function startClass(string $name) : void + private $message; + public function __construct(string $className, string $methodName, string $message = '') { - $this->write(sprintf(self::CLASS_HEADER, $name, $this->currentTestClassPrettified)); + parent::__construct($className . '::' . $methodName); + $this->message = $message; } - /** - * Handler for 'on test' event. - */ - protected function onTest(string $name, bool $success = \true) : void + public function getMessage(): string { - $this->write(sprintf("
    • %s %s
    • \n", $success ? '#555753' : '#ef2929', $success ? '✓' : 'âŒ', $name)); + return $this->message; } /** - * Handler for 'end class' event. + * Returns a string representation of the test case. + * + * @throws InvalidArgumentException */ - protected function endClass(string $name) : void + public function toString(): string { - $this->write(self::CLASS_FOOTER); + return $this->getName(); } /** - * Handler for 'end run' event. + * @throws Exception */ - protected function endRun() : void + protected function runTest(): void { - $this->write(self::PAGE_FOOTER); + $this->markTestSkipped($this->message); } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner\Extension; + +use function count; use function explode; -use function get_class; -use function gettype; use function implode; -use function in_array; -use function is_bool; -use function is_float; -use function is_int; -use function is_numeric; -use function is_object; -use function is_scalar; -use function is_string; -use function ord; -use function preg_quote; -use function preg_replace; -use function range; -use function sprintf; -use function str_replace; -use function strlen; +use function is_file; use function strpos; -use function strtolower; -use function strtoupper; -use function substr; -use function trim; -use PHPUnit\Framework\TestCase; -use PHPUnit\Util\Color; -use PHPUnit\Util\Exception as UtilException; -use PHPUnit\Util\Test; -use ReflectionException; -use ReflectionMethod; -use ReflectionObject; -use PHPUnit\SebastianBergmann\Exporter\Exporter; +use PHPUnitPHAR\PharIo\Manifest\ApplicationName; +use PHPUnitPHAR\PharIo\Manifest\Exception as ManifestException; +use PHPUnitPHAR\PharIo\Manifest\ManifestLoader; +use PHPUnitPHAR\PharIo\Version\Version as PharIoVersion; +use PHPUnit\Runner\Version; +use PHPUnitPHAR\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ -final class NamePrettifier +final class PharLoader { /** - * @var string[] - */ - private $strings = []; - /** - * @var bool - */ - private $useColor; - public function __construct(bool $useColor = \false) - { - $this->useColor = $useColor; - } - /** - * Prettifies the name of a test class. - * - * @psalm-param class-string $className + * @psalm-return array{loadedExtensions: list, notLoadedExtensions: list} */ - public function prettifyTestClass(string $className) : string + public function loadPharExtensionsInDirectory(string $directory): array { - try { - $annotations = Test::parseTestMethodAnnotations($className); - if (isset($annotations['class']['testdox'][0])) { - return $annotations['class']['testdox'][0]; + $loadedExtensions = []; + $notLoadedExtensions = []; + foreach ((new FileIteratorFacade())->getFilesAsArray($directory, '.phar') as $file) { + if (!is_file('phar://' . $file . '/manifest.xml')) { + $notLoadedExtensions[] = $file . ' is not an extension for PHPUnit'; + continue; } - } catch (UtilException $e) { - // ignore, determine className by parsing the provided name - } - $parts = explode('\\', $className); - $className = array_pop($parts); - if (substr($className, -1 * strlen('Test')) === 'Test') { - $className = substr($className, 0, strlen($className) - strlen('Test')); - } - if (strpos($className, 'Tests') === 0) { - $className = substr($className, strlen('Tests')); - } elseif (strpos($className, 'Test') === 0) { - $className = substr($className, strlen('Test')); - } - if (empty($className)) { - $className = 'UnnamedTests'; + try { + $applicationName = new ApplicationName('phpunit/phpunit'); + $version = new PharIoVersion($this->phpunitVersion()); + $manifest = ManifestLoader::fromFile('phar://' . $file . '/manifest.xml'); + if (!$manifest->isExtensionFor($applicationName)) { + $notLoadedExtensions[] = $file . ' is not an extension for PHPUnit'; + continue; + } + if (!$manifest->isExtensionFor($applicationName, $version)) { + $notLoadedExtensions[] = $file . ' is not compatible with this version of PHPUnit'; + continue; + } + } catch (ManifestException $e) { + $notLoadedExtensions[] = $file . ': ' . $e->getMessage(); + continue; + } + /** + * @noinspection PhpIncludeInspection + * + * @psalm-suppress UnresolvableInclude + */ + require $file; + $loadedExtensions[] = $manifest->getName()->asString() . ' ' . $manifest->getVersion()->getVersionString(); } - if (!empty($parts)) { - $parts[] = $className; - $fullyQualifiedName = implode('\\', $parts); - } else { - $fullyQualifiedName = $className; + return ['loadedExtensions' => $loadedExtensions, 'notLoadedExtensions' => $notLoadedExtensions]; + } + private function phpunitVersion(): string + { + $version = Version::id(); + if (strpos($version, '-') === \false) { + return $version; } - $result = preg_replace('/(?<=[[:lower:]])(?=[[:upper:]])/u', ' ', $className); - if ($fullyQualifiedName !== $className) { - return $result . ' (' . $fullyQualifiedName . ')'; + $parts = explode('.', explode('-', $version)[0]); + if (count($parts) === 2) { + $parts[] = 0; } - return $result; + return implode('.', $parts); } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner\Extension; + +use function class_exists; +use function sprintf; +use PHPUnit\Framework\TestListener; +use PHPUnit\Runner\Exception; +use PHPUnit\Runner\Hook; +use PHPUnit\TextUI\TestRunner; +use PHPUnit\TextUI\XmlConfiguration\Extension; +use ReflectionClass; +use ReflectionException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ExtensionHandler +{ /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - public function prettifyTestCase(TestCase $test) : string + public function registerExtension(Extension $extensionConfiguration, TestRunner $runner): void { - $annotations = Test::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); - $annotationWithPlaceholders = \false; - $callback = static function (string $variable) : string { - return sprintf('/%s(?=\\b)/', preg_quote($variable, '/')); - }; - if (isset($annotations['method']['testdox'][0])) { - $result = $annotations['method']['testdox'][0]; - if (strpos($result, '$') !== \false) { - $annotation = $annotations['method']['testdox'][0]; - $providedData = $this->mapTestMethodParameterNamesToProvidedDataValues($test); - $variables = array_map($callback, array_keys($providedData)); - $result = trim(preg_replace($variables, $providedData, $annotation)); - $annotationWithPlaceholders = \true; - } - } else { - $result = $this->prettifyTestMethod($test->getName(\false)); - } - if (!$annotationWithPlaceholders && $test->usesDataProvider()) { - $result .= $this->prettifyDataSet($test); + $extension = $this->createInstance($extensionConfiguration); + if (!$extension instanceof Hook) { + throw new Exception(sprintf('Class "%s" does not implement a PHPUnit\Runner\Hook interface', $extensionConfiguration->className())); } - return $result; + $runner->addExtension($extension); } - public function prettifyDataSet(TestCase $test) : string + /** + * @throws Exception + * + * @deprecated + */ + public function createTestListenerInstance(Extension $listenerConfiguration): TestListener { - if (!$this->useColor) { - return $test->getDataSetAsString(\false); - } - if (is_int($test->dataName())) { - $data = Color::dim(' with data set ') . Color::colorize('fg-cyan', (string) $test->dataName()); - } else { - $data = Color::dim(' with ') . Color::colorize('fg-cyan', Color::visualizeWhitespace((string) $test->dataName())); + $listener = $this->createInstance($listenerConfiguration); + if (!$listener instanceof TestListener) { + throw new Exception(sprintf('Class "%s" does not implement the PHPUnit\Framework\TestListener interface', $listenerConfiguration->className())); } - return $data; + return $listener; } /** - * Prettifies the name of a test method. + * @throws Exception */ - public function prettifyTestMethod(string $name) : string + private function createInstance(Extension $extensionConfiguration): object { - $buffer = ''; - if ($name === '') { - return $buffer; - } - $string = (string) preg_replace('#\\d+$#', '', $name, -1, $count); - if (in_array($string, $this->strings, \true)) { - $name = $string; - } elseif ($count === 0) { - $this->strings[] = $string; - } - if (strpos($name, 'test_') === 0) { - $name = substr($name, 5); - } elseif (strpos($name, 'test') === 0) { - $name = substr($name, 4); - } - if ($name === '') { - return $buffer; - } - $name[0] = strtoupper($name[0]); - if (strpos($name, '_') !== \false) { - return trim(str_replace('_', ' ', $name)); + $this->ensureClassExists($extensionConfiguration); + try { + $reflector = new ReflectionClass($extensionConfiguration->className()); + } catch (ReflectionException $e) { + throw new Exception($e->getMessage(), $e->getCode(), $e); } - $wasNumeric = \false; - foreach (range(0, strlen($name) - 1) as $i) { - if ($i > 0 && ord($name[$i]) >= 65 && ord($name[$i]) <= 90) { - $buffer .= ' ' . strtolower($name[$i]); - } else { - $isNumeric = is_numeric($name[$i]); - if (!$wasNumeric && $isNumeric) { - $buffer .= ' '; - $wasNumeric = \true; - } - if ($wasNumeric && !$isNumeric) { - $wasNumeric = \false; - } - $buffer .= $name[$i]; - } + if (!$extensionConfiguration->hasArguments()) { + return $reflector->newInstance(); } - return $buffer; + return $reflector->newInstanceArgs($extensionConfiguration->arguments()); } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - private function mapTestMethodParameterNamesToProvidedDataValues(TestCase $test) : array + private function ensureClassExists(Extension $extensionConfiguration): void { - try { - $reflector = new ReflectionMethod(get_class($test), $test->getName(\false)); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new UtilException($e->getMessage(), (int) $e->getCode(), $e); + if (class_exists($extensionConfiguration->className(), \false)) { + return; } - // @codeCoverageIgnoreEnd - $providedData = []; - $providedDataValues = array_values($test->getProvidedData()); - $i = 0; - $providedData['$_dataName'] = $test->dataName(); - foreach ($reflector->getParameters() as $parameter) { - if (!array_key_exists($i, $providedDataValues) && $parameter->isDefaultValueAvailable()) { - try { - $providedDataValues[$i] = $parameter->getDefaultValue(); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new UtilException($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - } - $value = $providedDataValues[$i++] ?? null; - if (is_object($value)) { - $reflector = new ReflectionObject($value); - if ($reflector->hasMethod('__toString')) { - $value = (string) $value; - } else { - $value = get_class($value); - } - } - if (!is_scalar($value)) { - $value = gettype($value); - } - if (is_bool($value) || is_int($value) || is_float($value)) { - $value = (new Exporter())->export($value); - } - if (is_string($value) && $value === '') { - if ($this->useColor) { - $value = Color::colorize('dim,underlined', 'empty'); - } else { - $value = "''"; - } - } - $providedData['$' . $parameter->getName()] = $value; + if ($extensionConfiguration->hasSourceFile()) { + /** + * @noinspection PhpIncludeInspection + * + * @psalm-suppress UnresolvableInclude + */ + require_once $extensionConfiguration->sourceFile(); } - if ($this->useColor) { - $providedData = array_map(static function ($value) { - return Color::colorize('fg-cyan', Color::visualizeWhitespace((string) $value, \true)); - }, $providedData); + if (!class_exists($extensionConfiguration->className())) { + throw new Exception(sprintf('Class "%s" does not exist', $extensionConfiguration->className())); } - return $providedData; } } groups = $groups; - $this->excludeGroups = $excludeGroups; - $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier(); - $this->startRun(); - } + public const STATUS_WARNING = 6; /** - * Flush buffer and close output. + * @var string */ - public function flush() : void - { - $this->doEndClass(); - $this->endRun(); - parent::flush(); - } + public const SUITE_METHODNAME = 'suite'; /** - * An error occurred. + * Returns the loader to be used. */ - public function addError(Test $test, Throwable $t, float $time) : void + public function getLoader(): \PHPUnit\Runner\TestSuiteLoader { - if (!$this->isOfInterest($test)) { - return; - } - $this->testStatus = BaseTestRunner::STATUS_ERROR; - $this->failed++; + return new \PHPUnit\Runner\StandardTestSuiteLoader(); } /** - * A warning occurred. + * Returns the Test corresponding to the given suite. + * This is a template method, subclasses override + * the runFailed() and clearStatus() methods. + * + * @param string|string[] $suffixes + * + * @throws Exception */ - public function addWarning(Test $test, Warning $e, float $time) : void + public function getTest(string $suiteClassFile, $suffixes = ''): ?TestSuite { - if (!$this->isOfInterest($test)) { - return; + if (is_dir($suiteClassFile)) { + /** @var string[] $files */ + $files = (new FileIteratorFacade())->getFilesAsArray($suiteClassFile, $suffixes); + $suite = new TestSuite($suiteClassFile); + $suite->addTestFiles($files); + return $suite; } - $this->testStatus = BaseTestRunner::STATUS_WARNING; - $this->warned++; + if (is_file($suiteClassFile) && substr($suiteClassFile, -5, 5) === '.phpt') { + $suite = new TestSuite(); + $suite->addTestFile($suiteClassFile); + return $suite; + } + try { + $testClass = $this->loadSuiteClass($suiteClassFile); + } catch (\PHPUnit\Exception $e) { + $this->runFailed($e->getMessage()); + return null; + } + try { + $suiteMethod = $testClass->getMethod(self::SUITE_METHODNAME); + if (!$suiteMethod->isStatic()) { + $this->runFailed('suite() method must be static.'); + return null; + } + $test = $suiteMethod->invoke(null, $testClass->getName()); + } catch (ReflectionException $e) { + $test = new TestSuite($testClass); + } + $this->clearStatus(); + return $test; } /** - * A failure occurred. + * Returns the loaded ReflectionClass for a suite name. */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void + protected function loadSuiteClass(string $suiteClassFile): ReflectionClass { - if (!$this->isOfInterest($test)) { - return; - } - $this->testStatus = BaseTestRunner::STATUS_FAILURE; - $this->failed++; + return $this->getLoader()->load($suiteClassFile); } /** - * Incomplete test. + * Clears the status message. */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + protected function clearStatus(): void { - if (!$this->isOfInterest($test)) { - return; - } - $this->testStatus = BaseTestRunner::STATUS_INCOMPLETE; - $this->incomplete++; } /** - * Risky test. + * Override to define how to handle a failed loading of + * a test suite. */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void - { - if (!$this->isOfInterest($test)) { - return; - } - $this->testStatus = BaseTestRunner::STATUS_RISKY; - $this->risky++; - } + abstract protected function runFailed(string $message): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +use function preg_match; +use function round; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class ResultCacheExtension implements \PHPUnit\Runner\AfterIncompleteTestHook, \PHPUnit\Runner\AfterLastTestHook, \PHPUnit\Runner\AfterRiskyTestHook, \PHPUnit\Runner\AfterSkippedTestHook, \PHPUnit\Runner\AfterSuccessfulTestHook, \PHPUnit\Runner\AfterTestErrorHook, \PHPUnit\Runner\AfterTestFailureHook, \PHPUnit\Runner\AfterTestWarningHook +{ /** - * Skipped test. + * @var TestResultCache */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + private $cache; + public function __construct(\PHPUnit\Runner\TestResultCache $cache) { - if (!$this->isOfInterest($test)) { - return; - } - $this->testStatus = BaseTestRunner::STATUS_SKIPPED; - $this->skipped++; + $this->cache = $cache; } - /** - * A testsuite started. - */ - public function startTestSuite(TestSuite $suite) : void + public function flush(): void { + $this->cache->persist(); } - /** - * A testsuite ended. - */ - public function endTestSuite(TestSuite $suite) : void + public function executeAfterSuccessfulTest(string $test, float $time): void { + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); } - /** - * A test started. - * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function startTest(Test $test) : void + public function executeAfterIncompleteTest(string $test, string $message, float $time): void { - if (!$this->isOfInterest($test)) { - return; - } - $class = get_class($test); - if ($this->testClass !== $class) { - if ($this->testClass !== '') { - $this->doEndClass(); - } - $this->currentTestClassPrettified = $this->prettifier->prettifyTestClass($class); - $this->testClass = $class; - $this->tests = []; - $this->startClass($class); - } - if ($test instanceof TestCase) { - $this->currentTestMethodPrettified = $this->prettifier->prettifyTestCase($test); - } - $this->testStatus = BaseTestRunner::STATUS_PASSED; + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE); } - /** - * A test ended. - */ - public function endTest(Test $test, float $time) : void + public function executeAfterRiskyTest(string $test, string $message, float $time): void { - if (!$this->isOfInterest($test)) { - return; - } - $this->tests[] = [$this->currentTestMethodPrettified, $this->testStatus]; - $this->currentTestClassPrettified = null; - $this->currentTestMethodPrettified = null; + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY); } - protected function doEndClass() : void + public function executeAfterSkippedTest(string $test, string $message, float $time): void { - foreach ($this->tests as $test) { - $this->onTest($test[0], $test[1] === BaseTestRunner::STATUS_PASSED); - } - $this->endClass($this->testClass); + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED); } - /** - * Handler for 'start run' event. - */ - protected function startRun() : void + public function executeAfterTestError(string $test, string $message, float $time): void { + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_ERROR); } - /** - * Handler for 'start class' event. - */ - protected function startClass(string $name) : void + public function executeAfterTestFailure(string $test, string $message, float $time): void { + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE); } - /** - * Handler for 'on test' event. - */ - protected function onTest(string $name, bool $success = \true) : void + public function executeAfterTestWarning(string $test, string $message, float $time): void { + $testName = $this->getTestName($test); + $this->cache->setTime($testName, round($time, 3)); + $this->cache->setState($testName, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING); } - /** - * Handler for 'end class' event. - */ - protected function endClass(string $name) : void + public function executeAfterLastTest(): void { + $this->flush(); } /** - * Handler for 'end run' event. + * @param string $test A long description format of the current test + * + * @return string The test name without TestSuiteClassName:: and @dataprovider details */ - protected function endRun() : void - { - } - private function isOfInterest(Test $test) : bool + private function getTestName(string $test): string { - if (!$test instanceof TestCase) { - return \false; - } - if ($test instanceof ErrorTestCase || $test instanceof WarningTestCase) { - return \false; - } - if (!empty($this->groups)) { - foreach ($test->getGroups() as $group) { - if (in_array($group, $this->groups, \true)) { - return \true; - } - } - return \false; - } - if (!empty($this->excludeGroups)) { - foreach ($test->getGroups() as $group) { - if (in_array($group, $this->excludeGroups, \true)) { - return \false; - } - } - return \true; + $matches = []; + if (preg_match('/^(?\S+::\S+)(?:(? with data set (?:#\d+|"[^"]+"))\s\()?/', $test, $matches)) { + $test = $matches['name'] . ($matches['dataname'] ?? ''); } - return \true; + return $test; } } Buffer for test results + * Constructs a test case with the given filename. + * + * @throws Exception */ - protected $testResults = []; + public function __construct(string $filename, ?AbstractPhpProcess $phpUtil = null) + { + if (!is_file($filename)) { + throw new \PHPUnit\Runner\Exception(sprintf('File "%s" does not exist.', $filename)); + } + $this->filename = $filename; + $this->phpUtil = $phpUtil ?: AbstractPhpProcess::factory(); + } /** - * @var array Lookup table for testname to testResults[index] + * Counts the number of test cases executed by run(TestResult result). */ - protected $testNameResultIndex = []; + public function count(): int + { + return 1; + } /** - * @var bool + * Runs a test and collects its result in a TestResult instance. + * + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws InvalidArgumentException + * @throws UnintentionallyCoveredCodeException */ - protected $enableOutputBuffer = \false; + public function run(?TestResult $result = null): TestResult + { + if ($result === null) { + $result = new TestResult(); + } + try { + $sections = $this->parse(); + } catch (\PHPUnit\Runner\Exception $e) { + $result->startTest($this); + $result->addFailure($this, new SkippedTestError($e->getMessage()), 0); + $result->endTest($this, 0); + return $result; + } + $code = $this->render($sections['FILE']); + $xfail = \false; + $settings = $this->parseIniSection($this->settings($result->getCollectCodeCoverageInformation())); + $result->startTest($this); + if (isset($sections['INI'])) { + $settings = $this->parseIniSection($sections['INI'], $settings); + } + if (isset($sections['ENV'])) { + $env = $this->parseEnvSection($sections['ENV']); + $this->phpUtil->setEnv($env); + } + $this->phpUtil->setUseStderrRedirection(\true); + if ($result->enforcesTimeLimit()) { + $this->phpUtil->setTimeout($result->getTimeoutForLargeTests()); + } + $skip = $this->runSkip($sections, $result, $settings); + if ($skip) { + return $result; + } + if (isset($sections['XFAIL'])) { + $xfail = trim($sections['XFAIL']); + } + if (isset($sections['STDIN'])) { + $this->phpUtil->setStdin($sections['STDIN']); + } + if (isset($sections['ARGS'])) { + $this->phpUtil->setArgs($sections['ARGS']); + } + if ($result->getCollectCodeCoverageInformation()) { + $codeCoverageCacheDirectory = null; + $pathCoverage = \false; + $codeCoverage = $result->getCodeCoverage(); + if ($codeCoverage) { + if ($codeCoverage->cachesStaticAnalysis()) { + $codeCoverageCacheDirectory = $codeCoverage->cacheDirectory(); + } + $pathCoverage = $codeCoverage->collectsBranchAndPathCoverage(); + } + $this->renderForCoverage($code, $pathCoverage, $codeCoverageCacheDirectory); + } + $timer = new Timer(); + $timer->start(); + $jobResult = $this->phpUtil->runJob($code, $this->stringifyIni($settings)); + $time = $timer->stop()->asSeconds(); + $this->output = $jobResult['stdout'] ?? ''; + if (isset($codeCoverage) && $coverage = $this->cleanupForCoverage()) { + $codeCoverage->append($coverage, $this, \true, [], []); + } + try { + $this->assertPhptExpectation($sections, $this->output); + } catch (AssertionFailedError $e) { + $failure = $e; + if ($xfail !== \false) { + $failure = new IncompleteTestError($xfail, 0, $e); + } elseif ($e instanceof ExpectationFailedException) { + $comparisonFailure = $e->getComparisonFailure(); + if ($comparisonFailure) { + $diff = $comparisonFailure->getDiff(); + } else { + $diff = $e->getMessage(); + } + $hint = $this->getLocationHintFromDiff($diff, $sections); + $trace = array_merge($hint, debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)); + $failure = new PHPTAssertionFailedError($e->getMessage(), 0, $trace[0]['file'], $trace[0]['line'], $trace, $comparisonFailure ? $diff : ''); + } + $result->addFailure($this, $failure, $time); + } catch (Throwable $t) { + $result->addError($this, $t, $time); + } + if ($xfail !== \false && $result->allCompletelyImplemented()) { + $result->addFailure($this, new IncompleteTestError('XFAIL section but test passes'), $time); + } + $this->runClean($sections, $result->getCollectCodeCoverageInformation()); + $result->endTest($this, $time); + return $result; + } /** - * @var array array + * Returns the name of the test case. */ - protected $originalExecutionOrder = []; + public function getName(): string + { + return $this->toString(); + } /** - * @var int + * Returns a string representation of the test case. */ - protected $spinState = 0; + public function toString(): string + { + return $this->filename; + } + public function usesDataProvider(): bool + { + return \false; + } + public function getNumAssertions(): int + { + return 1; + } + public function getActualOutput(): string + { + return $this->output; + } + public function hasOutput(): bool + { + return !empty($this->output); + } + public function sortId(): string + { + return $this->filename; + } /** - * @var bool + * @return list */ - protected $showProgress = \true; + public function provides(): array + { + return []; + } /** - * @param null|resource|string $out - * @param int|string $numberOfColumns + * @return list + */ + public function requires(): array + { + return []; + } + /** + * Parse --INI-- section key value pairs and return as array. * - * @throws \PHPUnit\Framework\Exception + * @param array|string $content */ - public function __construct($out = null, bool $verbose = \false, string $colors = self::COLOR_DEFAULT, bool $debug = \false, $numberOfColumns = 80, bool $reverse = \false) + private function parseIniSection($content, array $ini = []): array { - parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); - $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier($this->colors); + if (is_string($content)) { + $content = explode("\n", trim($content)); + } + foreach ($content as $setting) { + if (strpos($setting, '=') === \false) { + continue; + } + $setting = explode('=', $setting, 2); + $name = trim($setting[0]); + $value = trim($setting[1]); + if ($name === 'extension' || $name === 'zend_extension') { + if (!isset($ini[$name])) { + $ini[$name] = []; + } + $ini[$name][] = $value; + continue; + } + $ini[$name] = $value; + } + return $ini; } - public function setOriginalExecutionOrder(array $order) : void + private function parseEnvSection(string $content): array { - $this->originalExecutionOrder = $order; - $this->enableOutputBuffer = !empty($order); + $env = []; + foreach (explode("\n", trim($content)) as $e) { + $e = explode('=', trim($e), 2); + if ($e[0] !== '' && isset($e[1])) { + $env[$e[0]] = $e[1]; + } + } + return $env; } - public function setShowProgressAnimation(bool $showProgress) : void + /** + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception + * @throws ExpectationFailedException + */ + private function assertPhptExpectation(array $sections, string $output): void { - $this->showProgress = $showProgress; + $assertions = ['EXPECT' => 'assertEquals', 'EXPECTF' => 'assertStringMatchesFormat', 'EXPECTREGEX' => 'assertMatchesRegularExpression']; + $actual = preg_replace('/\r\n/', "\n", trim($output)); + foreach ($assertions as $sectionName => $sectionAssertion) { + if (isset($sections[$sectionName])) { + $sectionContent = preg_replace('/\r\n/', "\n", trim($sections[$sectionName])); + $expected = $sectionName === 'EXPECTREGEX' ? "/{$sectionContent}/" : $sectionContent; + if ($expected === '') { + throw new \PHPUnit\Runner\Exception('No PHPT expectation found'); + } + Assert::$sectionAssertion($expected, $actual); + return; + } + } + throw new \PHPUnit\Runner\Exception('No PHPT assertion found'); + } + /** + * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + */ + private function runSkip(array &$sections, TestResult $result, array $settings): bool + { + if (!isset($sections['SKIPIF'])) { + return \false; + } + $skipif = $this->render($sections['SKIPIF']); + $jobResult = $this->phpUtil->runJob($skipif, $this->stringifyIni($settings)); + if (!strncasecmp('skip', ltrim($jobResult['stdout']), 4)) { + $message = ''; + if (preg_match('/^\s*skip\s*(.+)\s*/i', $jobResult['stdout'], $skipMatch)) { + $message = substr($skipMatch[1], 2); + } + $hint = $this->getLocationHint($message, $sections, 'SKIPIF'); + $trace = array_merge($hint, debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)); + $result->addFailure($this, new SyntheticSkippedError($message, 0, $trace[0]['file'], $trace[0]['line'], $trace), 0); + $result->endTest($this, 0); + return \true; + } + return \false; } - public function printResult(TestResult $result) : void + private function runClean(array &$sections, bool $collectCoverage): void { + $this->phpUtil->setStdin(''); + $this->phpUtil->setArgs(''); + if (isset($sections['CLEAN'])) { + $cleanCode = $this->render($sections['CLEAN']); + $this->phpUtil->runJob($cleanCode, $this->settings($collectCoverage)); + } } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - public function endTest(Test $test, float $time) : void + private function parse(): array { - if (!$test instanceof TestCase && !$test instanceof PhptTestCase && !$test instanceof TestSuite) { - return; + $sections = []; + $section = ''; + $unsupportedSections = ['CGI', 'COOKIE', 'DEFLATE_POST', 'EXPECTHEADERS', 'EXTENSIONS', 'GET', 'GZIP_POST', 'HEADERS', 'PHPDBG', 'POST', 'POST_RAW', 'PUT', 'REDIRECTTEST', 'REQUEST']; + $lineNr = 0; + foreach (file($this->filename) as $line) { + $lineNr++; + if (preg_match('/^--([_A-Z]+)--/', $line, $result)) { + $section = $result[1]; + $sections[$section] = ''; + $sections[$section . '_offset'] = $lineNr; + continue; + } + if (empty($section)) { + throw new \PHPUnit\Runner\Exception('Invalid PHPT file: empty section header'); + } + $sections[$section] .= $line; } - if ($this->testHasPassed()) { - $this->registerTestResult($test, null, BaseTestRunner::STATUS_PASSED, $time, \false); + if (isset($sections['FILEEOF'])) { + $sections['FILE'] = rtrim($sections['FILEEOF'], "\r\n"); + unset($sections['FILEEOF']); } - if ($test instanceof TestCase || $test instanceof PhptTestCase) { - $this->testIndex++; + $this->parseExternal($sections); + if (!$this->validate($sections)) { + throw new \PHPUnit\Runner\Exception('Invalid PHPT file'); } - parent::endTest($test, $time); - } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function addError(Test $test, Throwable $t, float $time) : void - { - $this->registerTestResult($test, $t, BaseTestRunner::STATUS_ERROR, $time, \true); - } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function addWarning(Test $test, Warning $e, float $time) : void - { - $this->registerTestResult($test, $e, BaseTestRunner::STATUS_WARNING, $time, \true); + foreach ($unsupportedSections as $section) { + if (isset($sections[$section])) { + throw new \PHPUnit\Runner\Exception("PHPUnit does not support PHPT {$section} sections"); + } + } + return $sections; } /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * @throws Exception */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void + private function parseExternal(array &$sections): void { - $this->registerTestResult($test, $e, BaseTestRunner::STATUS_FAILURE, $time, \true); + $allowSections = ['FILE', 'EXPECT', 'EXPECTF', 'EXPECTREGEX']; + $testDirectory = dirname($this->filename) . DIRECTORY_SEPARATOR; + foreach ($allowSections as $section) { + if (isset($sections[$section . '_EXTERNAL'])) { + $externalFilename = trim($sections[$section . '_EXTERNAL']); + if (!is_file($testDirectory . $externalFilename) || !is_readable($testDirectory . $externalFilename)) { + throw new \PHPUnit\Runner\Exception(sprintf('Could not load --%s-- %s for PHPT file', $section . '_EXTERNAL', $testDirectory . $externalFilename)); + } + $sections[$section] = file_get_contents($testDirectory . $externalFilename); + } + } } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + private function validate(array &$sections): bool { - $this->registerTestResult($test, $t, BaseTestRunner::STATUS_INCOMPLETE, $time, \false); + $requiredSections = ['FILE', ['EXPECT', 'EXPECTF', 'EXPECTREGEX']]; + foreach ($requiredSections as $section) { + if (is_array($section)) { + $foundSection = \false; + foreach ($section as $anySection) { + if (isset($sections[$anySection])) { + $foundSection = \true; + break; + } + } + if (!$foundSection) { + return \false; + } + continue; + } + if (!isset($sections[$section])) { + return \false; + } + } + return \true; } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void + private function render(string $code): string { - $this->registerTestResult($test, $t, BaseTestRunner::STATUS_RISKY, $time, \false); + return str_replace(['__DIR__', '__FILE__'], ["'" . dirname($this->filename) . "'", "'" . $this->filename . "'"], $code); } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + private function getCoverageFiles(): array { - $this->registerTestResult($test, $t, BaseTestRunner::STATUS_SKIPPED, $time, \false); + $baseDir = dirname(realpath($this->filename)) . DIRECTORY_SEPARATOR; + $basename = basename($this->filename, 'phpt'); + return ['coverage' => $baseDir . $basename . 'coverage', 'job' => $baseDir . $basename . 'php']; } - public function writeProgress(string $progress) : void + private function renderForCoverage(string &$job, bool $pathCoverage, ?string $codeCoverageCacheDirectory): void { - $this->flushOutputBuffer(); + $files = $this->getCoverageFiles(); + $template = new Template(__DIR__ . '/../Util/PHP/Template/PhptTestCase.tpl'); + $composerAutoload = '\'\''; + if (defined('PHPUNIT_COMPOSER_INSTALL')) { + $composerAutoload = var_export(PHPUNIT_COMPOSER_INSTALL, \true); + } + $phar = '\'\''; + if (defined('__PHPUNIT_PHAR__')) { + $phar = var_export(__PHPUNIT_PHAR__, \true); + } + $globals = ''; + if (!empty($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { + $globals = '$GLOBALS[\'__PHPUNIT_BOOTSTRAP\'] = ' . var_export($GLOBALS['__PHPUNIT_BOOTSTRAP'], \true) . ";\n"; + } + if ($codeCoverageCacheDirectory === null) { + $codeCoverageCacheDirectory = 'null'; + } else { + $codeCoverageCacheDirectory = "'" . $codeCoverageCacheDirectory . "'"; + } + $template->setVar(['composerAutoload' => $composerAutoload, 'phar' => $phar, 'globals' => $globals, 'job' => $files['job'], 'coverageFile' => $files['coverage'], 'driverMethod' => $pathCoverage ? 'forLineAndPathCoverage' : 'forLineCoverage', 'codeCoverageCacheDirectory' => $codeCoverageCacheDirectory]); + file_put_contents($files['job'], $job); + $job = $template->render(); } - public function flush() : void + private function cleanupForCoverage(): RawCodeCoverageData { - $this->flushOutputBuffer(\true); + $coverage = RawCodeCoverageData::fromXdebugWithoutPathCoverage([]); + $files = $this->getCoverageFiles(); + if (is_file($files['coverage'])) { + $buffer = @file_get_contents($files['coverage']); + if ($buffer !== \false) { + $coverage = @unserialize($buffer); + if ($coverage === \false) { + $coverage = RawCodeCoverageData::fromXdebugWithoutPathCoverage([]); + } + } + } + foreach ($files as $file) { + @unlink($file); + } + return $coverage; } - /** - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException - */ - protected function registerTestResult(Test $test, ?Throwable $t, int $status, float $time, bool $verbose) : void + private function stringifyIni(array $ini): array { - $testName = $test instanceof Reorderable ? $test->sortId() : $test->getName(); - $result = ['className' => $this->formatClassName($test), 'testName' => $testName, 'testMethod' => $this->formatTestName($test), 'message' => '', 'status' => $status, 'time' => $time, 'verbose' => $verbose]; - if ($t !== null) { - $result['message'] = $this->formatTestResultMessage($t, $result); + $settings = []; + foreach ($ini as $key => $value) { + if (is_array($value)) { + foreach ($value as $val) { + $settings[] = $key . '=' . $val; + } + continue; + } + $settings[] = $key . '=' . $value; } - $this->testResults[$this->testIndex] = $result; - $this->testNameResultIndex[$testName] = $this->testIndex; + return $settings; } - protected function formatTestName(Test $test) : string + private function getLocationHintFromDiff(string $message, array $sections): array { - return method_exists($test, 'getName') ? $test->getName() : ''; + $needle = ''; + $previousLine = ''; + $block = 'message'; + foreach (preg_split('/\r\n|\r|\n/', $message) as $line) { + $line = trim($line); + if ($block === 'message' && $line === '--- Expected') { + $block = 'expected'; + } + if ($block === 'expected' && $line === '@@ @@') { + $block = 'diff'; + } + if ($block === 'diff') { + if (strpos($line, '+') === 0) { + $needle = $this->getCleanDiffLine($previousLine); + break; + } + if (strpos($line, '-') === 0) { + $needle = $this->getCleanDiffLine($line); + break; + } + } + if (!empty($line)) { + $previousLine = $line; + } + } + return $this->getLocationHint($needle, $sections); } - protected function formatClassName(Test $test) : string + private function getCleanDiffLine(string $line): string { - return get_class($test); + if (preg_match('/^[\-+]([\'\"]?)(.*)\1$/', $line, $matches)) { + $line = $matches[2]; + } + return $line; } - protected function testHasPassed() : bool + private function getLocationHint(string $needle, array $sections, ?string $sectionName = null): array { - if (!isset($this->testResults[$this->testIndex]['status'])) { - return \true; + $needle = trim($needle); + if (empty($needle)) { + return [['file' => realpath($this->filename), 'line' => 1]]; } - if ($this->testResults[$this->testIndex]['status'] === BaseTestRunner::STATUS_PASSED) { - return \true; + if ($sectionName) { + $search = [$sectionName]; + } else { + $search = [ + // 'FILE', + 'EXPECT', + 'EXPECTF', + 'EXPECTREGEX', + ]; } - return \false; + $sectionOffset = null; + foreach ($search as $section) { + if (!isset($sections[$section])) { + continue; + } + if (isset($sections[$section . '_EXTERNAL'])) { + $externalFile = trim($sections[$section . '_EXTERNAL']); + return [['file' => realpath(dirname($this->filename) . DIRECTORY_SEPARATOR . $externalFile), 'line' => 1], ['file' => realpath($this->filename), 'line' => ($sections[$section . '_EXTERNAL_offset'] ?? 0) + 1]]; + } + $sectionOffset = $sections[$section . '_offset'] ?? 0; + $offset = $sectionOffset + 1; + foreach (preg_split('/\r\n|\r|\n/', $sections[$section]) as $line) { + if (strpos($line, $needle) !== \false) { + return [['file' => realpath($this->filename), 'line' => $offset]]; + } + $offset++; + } + } + if ($sectionName) { + // String not found in specified section, show user the start of the named section + return [['file' => realpath($this->filename), 'line' => $sectionOffset]]; + } + // No section specified, show user start of code + return [['file' => realpath($this->filename), 'line' => 1]]; } - protected function flushOutputBuffer(bool $forceFlush = \false) : void + /** + * @psalm-return list + */ + private function settings(bool $collectCoverage): array { - if ($this->testFlushIndex === $this->testIndex) { - return; - } - if ($this->testFlushIndex > 0) { - if ($this->enableOutputBuffer && isset($this->originalExecutionOrder[$this->testFlushIndex - 1])) { - $prevResult = $this->getTestResultByName($this->originalExecutionOrder[$this->testFlushIndex - 1]); + $settings = ['allow_url_fopen=1', 'auto_append_file=', 'auto_prepend_file=', 'disable_functions=', 'display_errors=1', 'docref_ext=.html', 'docref_root=', 'error_append_string=', 'error_prepend_string=', 'error_reporting=-1', 'html_errors=0', 'log_errors=0', 'open_basedir=', 'output_buffering=Off', 'output_handler=', 'report_memleaks=0', 'report_zend_debug=0']; + if (extension_loaded('pcov')) { + if ($collectCoverage) { + $settings[] = 'pcov.enabled=1'; } else { - $prevResult = $this->testResults[$this->testFlushIndex - 1]; + $settings[] = 'pcov.enabled=0'; } - } else { - $prevResult = $this->getEmptyTestResult(); } - if (!$this->enableOutputBuffer) { - $this->writeTestResult($prevResult, $this->testResults[$this->testFlushIndex++]); - } else { - do { - $flushed = \false; - if (!$forceFlush && isset($this->originalExecutionOrder[$this->testFlushIndex])) { - $result = $this->getTestResultByName($this->originalExecutionOrder[$this->testFlushIndex]); + if (extension_loaded('xdebug')) { + if (version_compare(phpversion('xdebug'), '3', '>=')) { + if ($collectCoverage) { + $settings[] = 'xdebug.mode=coverage'; } else { - // This test(name) cannot found in original execution order, - // flush result to output stream right away - $result = $this->testResults[$this->testFlushIndex]; + $settings[] = 'xdebug.mode=off'; } - if (!empty($result)) { - $this->hideSpinner(); - $this->writeTestResult($prevResult, $result); - $this->testFlushIndex++; - $prevResult = $result; - $flushed = \true; - } else { - $this->showSpinner(); + } else { + $settings[] = 'xdebug.default_enable=0'; + if ($collectCoverage) { + $settings[] = 'xdebug.coverage_enable=1'; } - } while ($flushed && $this->testFlushIndex < $this->testIndex); + } } + return $settings; } - protected function showSpinner() : void +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +use function array_diff; +use function array_values; +use function basename; +use function class_exists; +use function get_declared_classes; +use function sprintf; +use function stripos; +use function strlen; +use function substr; +use PHPUnit\Framework\TestCase; +use PHPUnit\Util\FileLoader; +use ReflectionClass; +use ReflectionException; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + * + * @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039 + */ +final class StandardTestSuiteLoader implements \PHPUnit\Runner\TestSuiteLoader +{ + /** + * @throws Exception + */ + public function load(string $suiteClassFile): ReflectionClass { - if (!$this->showProgress) { - return; + $suiteClassName = basename($suiteClassFile, '.php'); + $loadedClasses = get_declared_classes(); + if (!class_exists($suiteClassName, \false)) { + /* @noinspection UnusedFunctionResultInspection */ + FileLoader::checkAndLoad($suiteClassFile); + $loadedClasses = array_values(array_diff(get_declared_classes(), $loadedClasses)); + if (empty($loadedClasses)) { + throw new \PHPUnit\Runner\Exception(sprintf('Class %s could not be found in %s', $suiteClassName, $suiteClassFile)); + } } - if ($this->spinState) { - $this->undrawSpinner(); + if (!class_exists($suiteClassName, \false)) { + $offset = 0 - strlen($suiteClassName); + foreach ($loadedClasses as $loadedClass) { + // @see https://github.com/sebastianbergmann/phpunit/issues/5020 + if (stripos(substr($loadedClass, $offset - 1), '\\' . $suiteClassName) === 0 || stripos(substr($loadedClass, $offset - 1), '_' . $suiteClassName) === 0) { + $suiteClassName = $loadedClass; + break; + } + } } - $this->spinState++; - $this->drawSpinner(); - } - protected function hideSpinner() : void - { - if (!$this->showProgress) { - return; + if (!class_exists($suiteClassName, \false)) { + throw new \PHPUnit\Runner\Exception(sprintf('Class %s could not be found in %s', $suiteClassName, $suiteClassFile)); } - if ($this->spinState) { - $this->undrawSpinner(); + try { + $class = new ReflectionClass($suiteClassName); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Runner\Exception($e->getMessage(), $e->getCode(), $e); } - $this->spinState = 0; - } - protected function drawSpinner() : void - { - // optional for CLI printers: show the user a 'buffering output' spinner - } - protected function undrawSpinner() : void - { - // remove the spinner from the current line - } - protected function writeTestResult(array $prevResult, array $result) : void - { + // @codeCoverageIgnoreEnd + if ($class->isSubclassOf(TestCase::class)) { + if ($class->isAbstract()) { + throw new \PHPUnit\Runner\Exception(sprintf('Class %s declared in %s is abstract', $suiteClassName, $suiteClassFile)); + } + return $class; + } + if ($class->hasMethod('suite')) { + try { + $method = $class->getMethod('suite'); + // @codeCoverageIgnoreStart + } catch (ReflectionException $e) { + throw new \PHPUnit\Runner\Exception(sprintf('Method %s::suite() declared in %s is abstract', $suiteClassName, $suiteClassFile)); + } + if (!$method->isPublic()) { + throw new \PHPUnit\Runner\Exception(sprintf('Method %s::suite() declared in %s is not public', $suiteClassName, $suiteClassFile)); + } + if (!$method->isStatic()) { + throw new \PHPUnit\Runner\Exception(sprintf('Method %s::suite() declared in %s is not static', $suiteClassName, $suiteClassFile)); + } + } + return $class; } - protected function getEmptyTestResult() : array + public function reload(ReflectionClass $aClass): ReflectionClass { - return ['className' => '', 'testName' => '', 'message' => '', 'failed' => '', 'verbose' => '']; + return $aClass; } - protected function getTestResultByName(?string $testName) : array +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +use function array_slice; +use function assert; +use function dirname; +use function explode; +use function implode; +use function strpos; +use PHPUnitPHAR\SebastianBergmann\Version as VersionId; +/** + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + */ +final class Version +{ + /** + * @var string + */ + private static $pharVersion = '9.6.21'; + /** + * @var string + */ + private static $version = ''; + /** + * Returns the current version of PHPUnit. + * + * @psalm-return non-empty-string + */ + public static function id(): string { - if (isset($this->testNameResultIndex[$testName])) { - return $this->testResults[$this->testNameResultIndex[$testName]]; + if (self::$pharVersion !== '') { + return self::$pharVersion; } - return []; - } - protected function formatThrowable(Throwable $t, ?int $status = null) : string - { - $message = trim(\PHPUnit\Framework\TestFailure::exceptionToString($t)); - if ($message) { - $message .= PHP_EOL . PHP_EOL . $this->formatStacktrace($t); - } else { - $message = $this->formatStacktrace($t); + if (self::$version === '') { + self::$version = (new VersionId('9.6.21', dirname(__DIR__, 2)))->getVersion(); + assert(!empty(self::$version)); } - return $message; - } - protected function formatStacktrace(Throwable $t) : string - { - return \PHPUnit\Util\Filter::getFilteredStacktrace($t); + return self::$version; } - protected function formatTestResultMessage(Throwable $t, array $result, string $prefix = '│') : string + /** + * @psalm-return non-empty-string + */ + public static function series(): string { - $message = $this->formatThrowable($t, $result['status']); - if ($message === '') { - return ''; - } - if (!($this->verbose || $result['verbose'])) { - return ''; + if (strpos(self::id(), '-')) { + $version = explode('-', self::id())[0]; + } else { + $version = self::id(); } - return $this->prefixLines($prefix, $message); + return implode('.', array_slice(explode('.', $version), 0, 2)); } - protected function prefixLines(string $prefix, string $message) : string + /** + * @psalm-return non-empty-string + */ + public static function getVersionString(): string { - $message = trim($message); - return implode(PHP_EOL, array_map(static function (string $text) use($prefix) { - return ' ' . $prefix . ($text ? ' ' . $text : ''); - }, preg_split('/\\r\\n|\\r|\\n/', $message))); + return 'PHPUnit ' . self::id() . ' by Sebastian Bergmann and contributors.'; } } + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +use const DIRECTORY_SEPARATOR; +use const LOCK_EX; +use function assert; +use function dirname; +use function file_get_contents; +use function file_put_contents; +use function in_array; +use function is_array; +use function is_dir; +use function is_file; +use function json_decode; +use function json_encode; +use function sprintf; +use PHPUnit\Util\Filesystem; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ -final class TextResultPrinter extends \PHPUnit\Util\TestDox\ResultPrinter +final class DefaultTestResultCache implements \PHPUnit\Runner\TestResultCache { - public function printResult(TestResult $result) : void + /** + * @var int + */ + private const VERSION = 1; + /** + * @psalm-var list + */ + private const ALLOWED_TEST_STATUSES = [\PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE, \PHPUnit\Runner\BaseTestRunner::STATUS_ERROR, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING]; + /** + * @var string + */ + private const DEFAULT_RESULT_CACHE_FILENAME = '.phpunit.result.cache'; + /** + * @var string + */ + private $cacheFilename; + /** + * @psalm-var array + */ + private $defects = []; + /** + * @psalm-var array + */ + private $times = []; + public function __construct(?string $filepath = null) + { + if ($filepath !== null && is_dir($filepath)) { + $filepath .= DIRECTORY_SEPARATOR . self::DEFAULT_RESULT_CACHE_FILENAME; + } + $this->cacheFilename = $filepath ?? $_ENV['PHPUNIT_RESULT_CACHE'] ?? self::DEFAULT_RESULT_CACHE_FILENAME; + } + public function setState(string $testName, int $state): void { + if (!in_array($state, self::ALLOWED_TEST_STATUSES, \true)) { + return; + } + $this->defects[$testName] = $state; } - /** - * Handler for 'start class' event. - */ - protected function startClass(string $name) : void + public function getState(string $testName): int { - $this->write($this->currentTestClassPrettified . "\n"); + return $this->defects[$testName] ?? \PHPUnit\Runner\BaseTestRunner::STATUS_UNKNOWN; } - /** - * Handler for 'on test' event. - */ - protected function onTest(string $name, bool $success = \true) : void + public function setTime(string $testName, float $time): void { - if ($success) { - $this->write(' [x] '); - } else { - $this->write(' [ ] '); + $this->times[$testName] = $time; + } + public function getTime(string $testName): float + { + return $this->times[$testName] ?? 0.0; + } + public function load(): void + { + if (!is_file($this->cacheFilename)) { + return; } - $this->write($name . "\n"); + $data = json_decode(file_get_contents($this->cacheFilename), \true); + if ($data === null) { + return; + } + if (!isset($data['version'])) { + return; + } + if ($data['version'] !== self::VERSION) { + return; + } + assert(isset($data['defects']) && is_array($data['defects'])); + assert(isset($data['times']) && is_array($data['times'])); + $this->defects = $data['defects']; + $this->times = $data['times']; } /** - * Handler for 'end class' event. + * @throws Exception */ - protected function endClass(string $name) : void + public function persist(): void { - $this->write("\n"); + if (!Filesystem::createDirectory(dirname($this->cacheFilename))) { + throw new \PHPUnit\Runner\Exception(sprintf('Cannot create directory "%s" for result cache file', $this->cacheFilename)); + } + file_put_contents($this->cacheFilename, json_encode(['version' => self::VERSION, 'defects' => $this->defects, 'times' => $this->times]), LOCK_EX); } } document = new DOMDocument('1.0', 'UTF-8'); - $this->document->formatOutput = \true; - $this->root = $this->document->createElement('tests'); - $this->document->appendChild($this->root); - $this->prettifier = new \PHPUnit\Util\TestDox\NamePrettifier(); - parent::__construct($out); - } + public const ORDER_SIZE = 5; /** - * Flush buffer and close output. + * List of sorting weights for all test result codes. A higher number gives higher priority. */ - public function flush() : void - { - $this->write($this->document->saveXML()); - parent::flush(); - } + private const DEFECT_SORT_WEIGHT = [\PHPUnit\Runner\BaseTestRunner::STATUS_ERROR => 6, \PHPUnit\Runner\BaseTestRunner::STATUS_FAILURE => 5, \PHPUnit\Runner\BaseTestRunner::STATUS_WARNING => 4, \PHPUnit\Runner\BaseTestRunner::STATUS_INCOMPLETE => 3, \PHPUnit\Runner\BaseTestRunner::STATUS_RISKY => 2, \PHPUnit\Runner\BaseTestRunner::STATUS_SKIPPED => 1, \PHPUnit\Runner\BaseTestRunner::STATUS_UNKNOWN => 0]; + private const SIZE_SORT_WEIGHT = [TestUtil::SMALL => 1, TestUtil::MEDIUM => 2, TestUtil::LARGE => 3, TestUtil::UNKNOWN => 4]; /** - * An error occurred. + * @var array Associative array of (string => DEFECT_SORT_WEIGHT) elements */ - public function addError(Test $test, Throwable $t, float $time) : void - { - $this->exception = $t; - } + private $defectSortOrder = []; /** - * A warning occurred. + * @var TestResultCache */ - public function addWarning(Test $test, Warning $e, float $time) : void - { - } + private $cache; /** - * A failure occurred. + * @var array A list of normalized names of tests before reordering */ - public function addFailure(Test $test, AssertionFailedError $e, float $time) : void - { - $this->exception = $e; - } + private $originalExecutionOrder = []; /** - * Incomplete test. + * @var array A list of normalized names of tests affected by reordering */ - public function addIncompleteTest(Test $test, Throwable $t, float $time) : void + private $executionOrder = []; + public function __construct(?\PHPUnit\Runner\TestResultCache $cache = null) { + $this->cache = $cache ?? new \PHPUnit\Runner\NullTestResultCache(); } /** - * Risky test. + * @throws Exception + * @throws InvalidArgumentException */ - public function addRiskyTest(Test $test, Throwable $t, float $time) : void + public function reorderTestsInSuite(Test $suite, int $order, bool $resolveDependencies, int $orderDefects, bool $isRootTestSuite = \true): void + { + $allowedOrders = [self::ORDER_DEFAULT, self::ORDER_REVERSED, self::ORDER_RANDOMIZED, self::ORDER_DURATION, self::ORDER_SIZE]; + if (!in_array($order, $allowedOrders, \true)) { + throw new \PHPUnit\Runner\Exception('$order must be one of TestSuiteSorter::ORDER_[DEFAULT|REVERSED|RANDOMIZED|DURATION|SIZE]'); + } + $allowedOrderDefects = [self::ORDER_DEFAULT, self::ORDER_DEFECTS_FIRST]; + if (!in_array($orderDefects, $allowedOrderDefects, \true)) { + throw new \PHPUnit\Runner\Exception('$orderDefects must be one of TestSuiteSorter::ORDER_DEFAULT, TestSuiteSorter::ORDER_DEFECTS_FIRST'); + } + if ($isRootTestSuite) { + $this->originalExecutionOrder = $this->calculateTestExecutionOrder($suite); + } + if ($suite instanceof TestSuite) { + foreach ($suite as $_suite) { + $this->reorderTestsInSuite($_suite, $order, $resolveDependencies, $orderDefects, \false); + } + if ($orderDefects === self::ORDER_DEFECTS_FIRST) { + $this->addSuiteToDefectSortOrder($suite); + } + $this->sort($suite, $order, $resolveDependencies, $orderDefects); + } + if ($isRootTestSuite) { + $this->executionOrder = $this->calculateTestExecutionOrder($suite); + } + } + public function getOriginalExecutionOrder(): array + { + return $this->originalExecutionOrder; + } + public function getExecutionOrder(): array { + return $this->executionOrder; + } + private function sort(TestSuite $suite, int $order, bool $resolveDependencies, int $orderDefects): void + { + if (empty($suite->tests())) { + return; + } + if ($order === self::ORDER_REVERSED) { + $suite->setTests($this->reverse($suite->tests())); + } elseif ($order === self::ORDER_RANDOMIZED) { + $suite->setTests($this->randomize($suite->tests())); + } elseif ($order === self::ORDER_DURATION && $this->cache !== null) { + $suite->setTests($this->sortByDuration($suite->tests())); + } elseif ($order === self::ORDER_SIZE) { + $suite->setTests($this->sortBySize($suite->tests())); + } + if ($orderDefects === self::ORDER_DEFECTS_FIRST && $this->cache !== null) { + $suite->setTests($this->sortDefectsFirst($suite->tests())); + } + if ($resolveDependencies && !$suite instanceof DataProviderTestSuite) { + /** @var TestCase[] $tests */ + $tests = $suite->tests(); + $suite->setTests($this->resolveDependencies($tests)); + } } /** - * Skipped test. + * @throws InvalidArgumentException */ - public function addSkippedTest(Test $test, Throwable $t, float $time) : void + private function addSuiteToDefectSortOrder(TestSuite $suite): void + { + $max = 0; + foreach ($suite->tests() as $test) { + if (!$test instanceof Reorderable) { + continue; + } + if (!isset($this->defectSortOrder[$test->sortId()])) { + $this->defectSortOrder[$test->sortId()] = self::DEFECT_SORT_WEIGHT[$this->cache->getState($test->sortId())]; + $max = max($max, $this->defectSortOrder[$test->sortId()]); + } + } + $this->defectSortOrder[$suite->sortId()] = $max; + } + private function reverse(array $tests): array + { + return array_reverse($tests); + } + private function randomize(array $tests): array + { + shuffle($tests); + return $tests; + } + private function sortDefectsFirst(array $tests): array + { + usort( + $tests, + /** + * @throws InvalidArgumentException + */ + function ($left, $right) { + return $this->cmpDefectPriorityAndTime($left, $right); + } + ); + return $tests; + } + private function sortByDuration(array $tests): array + { + usort( + $tests, + /** + * @throws InvalidArgumentException + */ + function ($left, $right) { + return $this->cmpDuration($left, $right); + } + ); + return $tests; + } + private function sortBySize(array $tests): array { + usort( + $tests, + /** + * @throws InvalidArgumentException + */ + function ($left, $right) { + return $this->cmpSize($left, $right); + } + ); + return $tests; } /** - * A test suite started. + * Comparator callback function to sort tests for "reach failure as fast as possible". + * + * 1. sort tests by defect weight defined in self::DEFECT_SORT_WEIGHT + * 2. when tests are equally defective, sort the fastest to the front + * 3. do not reorder successful tests + * + * @throws InvalidArgumentException */ - public function startTestSuite(TestSuite $suite) : void + private function cmpDefectPriorityAndTime(Test $a, Test $b): int { + if (!($a instanceof Reorderable && $b instanceof Reorderable)) { + return 0; + } + $priorityA = $this->defectSortOrder[$a->sortId()] ?? 0; + $priorityB = $this->defectSortOrder[$b->sortId()] ?? 0; + if ($priorityB <=> $priorityA) { + // Sort defect weight descending + return $priorityB <=> $priorityA; + } + if ($priorityA || $priorityB) { + return $this->cmpDuration($a, $b); + } + // do not change execution order + return 0; } /** - * A test suite ended. + * Compares test duration for sorting tests by duration ascending. + * + * @throws InvalidArgumentException */ - public function endTestSuite(TestSuite $suite) : void + private function cmpDuration(Test $a, Test $b): int { + if (!($a instanceof Reorderable && $b instanceof Reorderable)) { + return 0; + } + return $this->cache->getTime($a->sortId()) <=> $this->cache->getTime($b->sortId()); } /** - * A test started. + * Compares test size for sorting tests small->medium->large->unknown. */ - public function startTest(Test $test) : void + private function cmpSize(Test $a, Test $b): int { - $this->exception = null; + $sizeA = $a instanceof TestCase || $a instanceof DataProviderTestSuite ? $a->getSize() : TestUtil::UNKNOWN; + $sizeB = $b instanceof TestCase || $b instanceof DataProviderTestSuite ? $b->getSize() : TestUtil::UNKNOWN; + return self::SIZE_SORT_WEIGHT[$sizeA] <=> self::SIZE_SORT_WEIGHT[$sizeB]; } /** - * A test ended. + * Reorder Tests within a TestCase in such a way as to resolve as many dependencies as possible. + * The algorithm will leave the tests in original running order when it can. + * For more details see the documentation for test dependencies. * - * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException + * Short description of algorithm: + * 1. Pick the next Test from remaining tests to be checked for dependencies. + * 2. If the test has no dependencies: mark done, start again from the top + * 3. If the test has dependencies but none left to do: mark done, start again from the top + * 4. When we reach the end add any leftover tests to the end. These will be marked 'skipped' during execution. + * + * @param array $tests + * + * @return array */ - public function endTest(Test $test, float $time) : void + private function resolveDependencies(array $tests): array { - if (!$test instanceof TestCase || $test instanceof WarningTestCase) { - return; - } - $groups = array_filter($test->getGroups(), static function ($group) { - return !($group === 'small' || $group === 'medium' || $group === 'large' || strpos($group, '__phpunit_') === 0); - }); - $testNode = $this->document->createElement('test'); - $testNode->setAttribute('className', get_class($test)); - $testNode->setAttribute('methodName', $test->getName()); - $testNode->setAttribute('prettifiedClassName', $this->prettifier->prettifyTestClass(get_class($test))); - $testNode->setAttribute('prettifiedMethodName', $this->prettifier->prettifyTestCase($test)); - $testNode->setAttribute('status', (string) $test->getStatus()); - $testNode->setAttribute('time', (string) $time); - $testNode->setAttribute('size', (string) $test->getSize()); - $testNode->setAttribute('groups', implode(',', $groups)); - foreach ($groups as $group) { - $groupNode = $this->document->createElement('group'); - $groupNode->setAttribute('name', $group); - $testNode->appendChild($groupNode); - } - $annotations = TestUtil::parseTestMethodAnnotations(get_class($test), $test->getName(\false)); - foreach (['class', 'method'] as $type) { - foreach ($annotations[$type] as $annotation => $values) { - if ($annotation !== 'covers' && $annotation !== 'uses') { - continue; - } - foreach ($values as $value) { - $coversNode = $this->document->createElement($annotation); - $coversNode->setAttribute('target', $value); - $testNode->appendChild($coversNode); - } - } - } - foreach ($test->doubledTypes() as $doubledType) { - $testDoubleNode = $this->document->createElement('testDouble'); - $testDoubleNode->setAttribute('type', $doubledType); - $testNode->appendChild($testDoubleNode); - } - $inlineAnnotations = \PHPUnit\Util\Test::getInlineAnnotations(get_class($test), $test->getName(\false)); - if (isset($inlineAnnotations['given'], $inlineAnnotations['when'], $inlineAnnotations['then'])) { - $testNode->setAttribute('given', $inlineAnnotations['given']['value']); - $testNode->setAttribute('givenStartLine', (string) $inlineAnnotations['given']['line']); - $testNode->setAttribute('when', $inlineAnnotations['when']['value']); - $testNode->setAttribute('whenStartLine', (string) $inlineAnnotations['when']['line']); - $testNode->setAttribute('then', $inlineAnnotations['then']['value']); - $testNode->setAttribute('thenStartLine', (string) $inlineAnnotations['then']['line']); - } - if ($this->exception !== null) { - if ($this->exception instanceof Exception) { - $steps = $this->exception->getSerializableTrace(); + $newTestOrder = []; + $i = 0; + $provided = []; + do { + if ([] === array_diff($tests[$i]->requires(), $provided)) { + $provided = array_merge($provided, $tests[$i]->provides()); + $newTestOrder = array_merge($newTestOrder, array_splice($tests, $i, 1)); + $i = 0; } else { - $steps = $this->exception->getTrace(); - } - try { - $file = (new ReflectionClass($test))->getFileName(); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new Exception($e->getMessage(), (int) $e->getCode(), $e); + $i++; } - // @codeCoverageIgnoreEnd - foreach ($steps as $step) { - if (isset($step['file']) && $step['file'] === $file) { - $testNode->setAttribute('exceptionLine', (string) $step['line']); - break; + } while (!empty($tests) && $i < count($tests)); + return array_merge($newTestOrder, $tests); + } + /** + * @throws InvalidArgumentException + */ + private function calculateTestExecutionOrder(Test $suite): array + { + $tests = []; + if ($suite instanceof TestSuite) { + foreach ($suite->tests() as $test) { + if (!$test instanceof TestSuite && $test instanceof Reorderable) { + $tests[] = $test->sortId(); + } else { + $tests = array_merge($tests, $this->calculateTestExecutionOrder($test)); } } - $testNode->setAttribute('exceptionMessage', $this->exception->getMessage()); } - $this->root->appendChild($testNode); + return $tests; } } + */ + private $filters = []; + /** + * @param array|string $args + * + * @throws Exception */ - public function render(TestSuite $suite) : string + public function addFilter(ReflectionClass $filter, $args): void { - $buffer = 'Available test(s):' . PHP_EOL; - foreach (new RecursiveIteratorIterator($suite->getIterator()) as $test) { - if ($test instanceof TestCase) { - $name = sprintf('%s::%s', get_class($test), str_replace(' with data set ', '', $test->getName())); - } elseif ($test instanceof PhptTestCase) { - $name = $test->getName(); - } else { - continue; - } - $buffer .= sprintf(' - %s' . PHP_EOL, $name); + if (!$filter->isSubclassOf(RecursiveFilterIterator::class)) { + throw new Exception(sprintf('Class "%s" does not extend RecursiveFilterIterator', $filter->name)); } - return $buffer; + $this->filters[] = [$filter, $args]; } -} - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -namespace PHPUnit\Util; - -/** - * @internal This class is not covered by the backward compatibility promise for PHPUnit - */ -final class Type -{ - public static function isType(string $type) : bool + public function factory(Iterator $iterator, TestSuite $suite): FilterIterator { - switch ($type) { - case 'numeric': - case 'integer': - case 'int': - case 'iterable': - case 'float': - case 'string': - case 'boolean': - case 'bool': - case 'null': - case 'array': - case 'object': - case 'resource': - case 'scalar': - return \true; - default: - return \false; + foreach ($this->filters as $filter) { + [$class, $args] = $filter; + $iterator = $class->newInstance($iterator, $args, $suite); } + assert($iterator instanceof FilterIterator); + return $iterator; } } '|'gt'|'>='|'ge'|'=='|'='|'eq'|'!='|'<>'|'ne' - */ - private $operator; - public function __construct(string $operator) - { - $this->ensureOperatorIsValid($operator); - $this->operator = $operator; - } - /** - * @return '!='|'<'|'<='|'<>'|'='|'=='|'>'|'>='|'eq'|'ge'|'gt'|'le'|'lt'|'ne' - */ - public function asString() : string - { - return $this->operator; - } - /** - * @throws Exception - * - * @psalm-assert '<'|'lt'|'<='|'le'|'>'|'gt'|'>='|'ge'|'=='|'='|'eq'|'!='|'<>'|'ne' $operator - */ - private function ensureOperatorIsValid(string $operator) : void + protected function doAccept(string $hash): bool { - if (!in_array($operator, ['<', 'lt', '<=', 'le', '>', 'gt', '>=', 'ge', '==', '=', 'eq', '!=', '<>', 'ne'], \true)) { - throw new \PHPUnit\Util\Exception(sprintf('"%s" is not a valid version_compare() operator', $operator)); - } + return in_array($hash, $this->groupTests, \true); } } getItems($filter)); - $files = implode(",\n", $files); - return <<directories() as $directory) { - $path = realpath($directory->path()); - if (is_string($path)) { - $files[] = sprintf(addslashes('%s' . DIRECTORY_SEPARATOR), $path); + parent::__construct($iterator); + foreach ($suite->getGroupDetails() as $group => $tests) { + if (in_array((string) $group, $groups, \true)) { + $testHashes = array_map('spl_object_hash', $tests); + $this->groupTests = array_merge($this->groupTests, $testHashes); } } - foreach ($filter->files() as $file) { - $files[] = $file->path(); + } + public function accept(): bool + { + $test = $this->getInnerIterator()->current(); + if ($test instanceof TestSuite) { + return \true; } - return $files; + return $this->doAccept(spl_object_hash($test)); } + abstract protected function doAccept(string $hash); } importNode($element, \true); - } + private $filter; /** - * @deprecated Only used by assertEqualXMLStructure() + * @var int */ - public static function removeCharacterDataNodes(DOMNode $node) : void - { - if ($node->hasChildNodes()) { - for ($i = $node->childNodes->length - 1; $i >= 0; $i--) { - if (($child = $node->childNodes->item($i)) instanceof DOMCharacterData) { - $node->removeChild($child); - } - } - } - } + private $filterMin; /** - * Escapes a string for the use in XML documents. - * - * Any Unicode character is allowed, excluding the surrogate blocks, FFFE, - * and FFFF (not even as character reference). - * - * @see https://www.w3.org/TR/xml/#charsets + * @var int + */ + private $filterMax; + /** + * @throws Exception */ - public static function prepareString(string $string) : string + public function __construct(RecursiveIterator $iterator, string $filter) { - return preg_replace('/[\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]/', '', htmlspecialchars(self::convertToUtf8($string), ENT_QUOTES)); + parent::__construct($iterator); + $this->setFilter($filter); } /** - * "Convert" a DOMElement object into a PHP variable. + * @throws InvalidArgumentException */ - public static function xmlToVariable(DOMElement $element) + public function accept(): bool { - $variable = null; - switch ($element->tagName) { - case 'array': - $variable = []; - foreach ($element->childNodes as $entry) { - if (!$entry instanceof DOMElement || $entry->tagName !== 'element') { - continue; - } - $item = $entry->childNodes->item(0); - if ($item instanceof DOMText) { - $item = $entry->childNodes->item(1); - } - $value = self::xmlToVariable($item); - if ($entry->hasAttribute('key')) { - $variable[(string) $entry->getAttribute('key')] = $value; - } else { - $variable[] = $value; - } - } - break; - case 'object': - $className = $element->getAttribute('class'); - if ($element->hasChildNodes()) { - $arguments = $element->childNodes->item(0)->childNodes; - $constructorArgs = []; - foreach ($arguments as $argument) { - if ($argument instanceof DOMElement) { - $constructorArgs[] = self::xmlToVariable($argument); - } - } - try { - assert(class_exists($className)); - $variable = (new ReflectionClass($className))->newInstanceArgs($constructorArgs); - // @codeCoverageIgnoreStart - } catch (ReflectionException $e) { - throw new \PHPUnit\Util\Exception($e->getMessage(), (int) $e->getCode(), $e); - } - // @codeCoverageIgnoreEnd - } else { - $variable = new $className(); - } - break; - case 'boolean': - $variable = $element->textContent === 'true'; - break; - case 'integer': - case 'double': - case 'string': - $variable = $element->textContent; - settype($variable, $element->tagName); - break; + $test = $this->getInnerIterator()->current(); + if ($test instanceof TestSuite) { + return \true; } - return $variable; - } - private static function convertToUtf8(string $string) : string - { - if (!self::isUtf8($string)) { - $string = mb_convert_encoding($string, 'UTF-8'); + $tmp = Test::describe($test); + if ($test instanceof ErrorTestCase || $test instanceof WarningTestCase) { + $name = $test->getMessage(); + } elseif ($tmp[0] !== '') { + $name = implode('::', $tmp); + } else { + $name = $tmp[1]; } - return $string; + $accepted = @preg_match($this->filter, $name, $matches); + if ($accepted && isset($this->filterMax)) { + $set = end($matches); + $accepted = $set >= $this->filterMin && $set <= $this->filterMax; + } + return (bool) $accepted; } - private static function isUtf8(string $string) : bool + /** + * @throws Exception + */ + private function setFilter(string $filter): void { - $length = strlen($string); - for ($i = 0; $i < $length; $i++) { - if (ord($string[$i]) < 0x80) { - $n = 0; - } elseif ((ord($string[$i]) & 0xe0) === 0xc0) { - $n = 1; - } elseif ((ord($string[$i]) & 0xf0) === 0xe0) { - $n = 2; - } elseif ((ord($string[$i]) & 0xf0) === 0xf0) { - $n = 3; - } else { - return \false; - } - for ($j = 0; $j < $n; $j++) { - if (++$i === $length || (ord($string[$i]) & 0xc0) !== 0x80) { - return \false; + if (RegularExpression::safeMatch($filter, '') === \false) { + // Handles: + // * testAssertEqualsSucceeds#4 + // * testAssertEqualsSucceeds#4-8 + if (preg_match('/^(.*?)#(\d+)(?:-(\d+))?$/', $filter, $matches)) { + if (isset($matches[3]) && $matches[2] < $matches[3]) { + $filter = sprintf('%s.*with data set #(\d+)$', $matches[1]); + $this->filterMin = (int) $matches[2]; + $this->filterMax = (int) $matches[3]; + } else { + $filter = sprintf('%s.*with data set #%s$', $matches[1], $matches[2]); } + } elseif (preg_match('/^(.*?)@(.+)$/', $filter, $matches)) { + $filter = sprintf('%s.*with data set "%s"$', $matches[1], $matches[2]); } + // Escape delimiters in regular expression. Do NOT use preg_quote, + // to keep magic characters. + $filter = sprintf('/%s/i', str_replace('/', '\/', $filter)); } - return \true; + $this->filter = $filter; } } groupTests, \true); + } } load($contents, $isHtml, $filename, $xinclude, $strict); - } - /** - * @throws Exception - */ - public function load(string $actual, bool $isHtml = \false, string $filename = '', bool $xinclude = \false, bool $strict = \false) : DOMDocument - { - if ($actual === '') { - throw new \PHPUnit\Util\Xml\Exception('Could not load XML from empty string'); - } - // Required for XInclude on Windows. - if ($xinclude) { - $cwd = getcwd(); - @chdir(dirname($filename)); - } - $document = new DOMDocument(); - $document->preserveWhiteSpace = \false; - $internal = libxml_use_internal_errors(\true); - $message = ''; - $reporting = error_reporting(0); - if ($filename !== '') { - // Required for XInclude - $document->documentURI = $filename; - } - if ($isHtml) { - $loaded = $document->loadHTML($actual); - } else { - $loaded = $document->loadXML($actual); - } - if (!$isHtml && $xinclude) { - $document->xinclude(); - } - foreach (libxml_get_errors() as $error) { - $message .= "\n" . $error->message; - } - libxml_use_internal_errors($internal); - error_reporting($reporting); - if (isset($cwd)) { - @chdir($cwd); - } - if ($loaded === \false || $strict && $message !== '') { - if ($filename !== '') { - throw new \PHPUnit\Util\Xml\Exception(sprintf('Could not load "%s".%s', $filename, $message !== '' ? "\n" . $message : '')); - } - if ($message === '') { - $message = 'Could not load XML for unknown reason'; - } - throw new \PHPUnit\Util\Xml\Exception($message); - } - return $document; - } } loadFile($filename, \false, \true, \true); - foreach (['9.2', '8.5'] as $candidate) { - $schema = (new \PHPUnit\Util\Xml\SchemaFinder())->find($candidate); - if (!(new \PHPUnit\Util\Xml\Validator())->validate($document, $schema)->hasValidationErrors()) { - return new \PHPUnit\Util\Xml\SuccessfulSchemaDetectionResult($candidate); - } - } - return new \PHPUnit\Util\Xml\FailedSchemaDetectionResult(); - } + public function executeAfterSkippedTest(string $test, string $message, float $time): void; } path() . 'phpunit.xsd'; - } else { - $filename = $this->path() . 'schema/' . $version . '.xsd'; - } - if (!is_file($filename)) { - throw new \PHPUnit\Util\Xml\Exception(sprintf('Schema for PHPUnit %s is not available', $version)); - } - return $filename; - } - private function path() : string - { - if (defined('__PHPUNIT_PHAR_ROOT__')) { - return \__PHPUNIT_PHAR_ROOT__ . '/'; - } - return __DIR__ . '/../../../'; - } + public function executeAfterTestError(string $test, string $message, float $time): void; } nodes[] = $node; - } - return $snapshot; - } - public function count() : int - { - return count($this->nodes); - } - public function getIterator() : ArrayIterator - { - return new ArrayIterator($this->nodes); - } } version = $version; - } - public function detected() : bool - { - return \true; - } - public function version() : string - { - return $this->version; - } + public function executeBeforeTest(string $test): void; } > + * @var TestHook[] */ - private $validationErrors = []; + private $hooks = []; /** - * @psalm-param array $errors + * @var bool */ - public static function fromArray(array $errors) : self + private $lastTestWasNotSuccessful; + public function add(\PHPUnit\Runner\TestHook $hook): void + { + $this->hooks[] = $hook; + } + public function startTest(Test $test): void + { + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\BeforeTestHook) { + $hook->executeBeforeTest(TestUtil::describeAsString($test)); + } + } + $this->lastTestWasNotSuccessful = \false; + } + public function addError(Test $test, Throwable $t, float $time): void + { + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterTestErrorHook) { + $hook->executeAfterTestError(TestUtil::describeAsString($test), $t->getMessage(), $time); + } + } + $this->lastTestWasNotSuccessful = \true; + } + public function addWarning(Test $test, Warning $e, float $time): void + { + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterTestWarningHook) { + $hook->executeAfterTestWarning(TestUtil::describeAsString($test), $e->getMessage(), $time); + } + } + $this->lastTestWasNotSuccessful = \true; + } + public function addFailure(Test $test, AssertionFailedError $e, float $time): void { - $validationErrors = []; - foreach ($errors as $error) { - if (!isset($validationErrors[$error->line])) { - $validationErrors[$error->line] = []; + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterTestFailureHook) { + $hook->executeAfterTestFailure(TestUtil::describeAsString($test), $e->getMessage(), $time); } - $validationErrors[$error->line][] = trim($error->message); } - return new self($validationErrors); + $this->lastTestWasNotSuccessful = \true; } - private function __construct(array $validationErrors) + public function addIncompleteTest(Test $test, Throwable $t, float $time): void { - $this->validationErrors = $validationErrors; + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterIncompleteTestHook) { + $hook->executeAfterIncompleteTest(TestUtil::describeAsString($test), $t->getMessage(), $time); + } + } + $this->lastTestWasNotSuccessful = \true; } - public function hasValidationErrors() : bool + public function addRiskyTest(Test $test, Throwable $t, float $time): void { - return !empty($this->validationErrors); + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterRiskyTestHook) { + $hook->executeAfterRiskyTest(TestUtil::describeAsString($test), $t->getMessage(), $time); + } + } + $this->lastTestWasNotSuccessful = \true; } - public function asString() : string + public function addSkippedTest(Test $test, Throwable $t, float $time): void { - $buffer = ''; - foreach ($this->validationErrors as $line => $validationErrorsOnLine) { - $buffer .= sprintf(\PHP_EOL . ' Line %d:' . \PHP_EOL, $line); - foreach ($validationErrorsOnLine as $validationError) { - $buffer .= sprintf(' - %s' . \PHP_EOL, $validationError); + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterSkippedTestHook) { + $hook->executeAfterSkippedTest(TestUtil::describeAsString($test), $t->getMessage(), $time); } } - return $buffer; + $this->lastTestWasNotSuccessful = \true; + } + public function endTest(Test $test, float $time): void + { + if (!$this->lastTestWasNotSuccessful) { + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterSuccessfulTestHook) { + $hook->executeAfterSuccessfulTest(TestUtil::describeAsString($test), $time); + } + } + } + foreach ($this->hooks as $hook) { + if ($hook instanceof \PHPUnit\Runner\AfterTestHook) { + $hook->executeAfterTest(TestUtil::describeAsString($test), $time); + } + } + } + public function startTestSuite(TestSuite $suite): void + { + } + public function endTestSuite(TestSuite $suite): void + { } } schemaValidateSource(file_get_contents($xsdFilename)); - $errors = libxml_get_errors(); - libxml_clear_errors(); - libxml_use_internal_errors($originalErrorHandling); - return \PHPUnit\Util\Xml\ValidationResult::fromArray($errors); - } + public function executeAfterTestWarning(string $test, string $message, float $time): void; } openMemory(); - $writer->setIndent(\true); - $writer->startDocument('1.0', 'UTF-8'); - $writer->startElement('tests'); - $currentTestCase = null; - foreach (new RecursiveIteratorIterator($suite->getIterator()) as $test) { - if ($test instanceof TestCase) { - if (get_class($test) !== $currentTestCase) { - if ($currentTestCase !== null) { - $writer->endElement(); - } - $writer->startElement('testCaseClass'); - $writer->writeAttribute('name', get_class($test)); - $currentTestCase = get_class($test); - } - $writer->startElement('testCaseMethod'); - $writer->writeAttribute('name', $test->getName(\false)); - $writer->writeAttribute('groups', implode(',', $test->getGroups())); - if (!empty($test->getDataSetAsString(\false))) { - $writer->writeAttribute('dataSet', str_replace(' with data set ', '', $test->getDataSetAsString(\false))); - } - $writer->endElement(); - } elseif ($test instanceof PhptTestCase) { - if ($currentTestCase !== null) { - $writer->endElement(); - $currentTestCase = null; - } - $writer->startElement('phptFile'); - $writer->writeAttribute('path', $test->getName()); - $writer->endElement(); - } - } - if ($currentTestCase !== null) { - $writer->endElement(); - } - $writer->endElement(); - $writer->endDocument(); - return $writer->outputMemory(); - } -} - - - - - phpunit - phpunit - 9.5.26 - The PHP Unit Testing framework. - - - BSD-3-Clause - - - pkg:composer/phpunit/phpunit@9.5.26 - - - doctrine - instantiator - 1.4.1 - A small, lightweight utility to instantiate objects in PHP without invoking their constructors - - - MIT - - - pkg:composer/doctrine/instantiator@1.4.1 - - - myclabs - deep-copy - 1.11.0 - Create deep copies (clones) of your objects - - - MIT - - - pkg:composer/myclabs/deep-copy@1.11.0 - - - nikic - php-parser - v4.15.1 - A PHP parser written in PHP - - - BSD-3-Clause - - - pkg:composer/nikic/php-parser@v4.15.1 - - - phar-io - manifest - 2.0.3 - Component for reading phar.io manifest information from a PHP Archive (PHAR) - - - BSD-3-Clause - - - pkg:composer/phar-io/manifest@2.0.3 - - - phar-io - version - 3.2.1 - Library for handling version information and constraints - - - BSD-3-Clause - - - pkg:composer/phar-io/version@3.2.1 - - - phpdocumentor - reflection-common - 2.2.0 - Common reflection classes used by phpdocumentor to reflect the code structure - - - MIT - - - pkg:composer/phpdocumentor/reflection-common@2.2.0 - - - phpdocumentor - reflection-docblock - 5.3.0 - With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock. - - - MIT - - - pkg:composer/phpdocumentor/reflection-docblock@5.3.0 - - - phpdocumentor - type-resolver - 1.6.1 - A PSR-5 based resolver of Class names, Types and Structural Element Names - - - MIT - - - pkg:composer/phpdocumentor/type-resolver@1.6.1 - - - phpspec - prophecy - v1.15.0 - Highly opinionated mocking framework for PHP 5.3+ - - - MIT - - - pkg:composer/phpspec/prophecy@v1.15.0 - - - phpunit - php-code-coverage - 9.2.18 - Library that provides collection, processing, and rendering functionality for PHP code coverage information. - - - BSD-3-Clause - - - pkg:composer/phpunit/php-code-coverage@9.2.18 - - - phpunit - php-file-iterator - 3.0.6 - FilterIterator implementation that filters files based on a list of suffixes. - - - BSD-3-Clause - - - pkg:composer/phpunit/php-file-iterator@3.0.6 - - - phpunit - php-invoker - 3.1.1 - Invoke callables with a timeout - - - BSD-3-Clause - - - pkg:composer/phpunit/php-invoker@3.1.1 - - - phpunit - php-text-template - 2.0.4 - Simple template engine. - - - BSD-3-Clause - - - pkg:composer/phpunit/php-text-template@2.0.4 - - - phpunit - php-timer - 5.0.3 - Utility class for timing - - - BSD-3-Clause - - - pkg:composer/phpunit/php-timer@5.0.3 - - - sebastian - cli-parser - 1.0.1 - Library for parsing CLI options - - - BSD-3-Clause - - - pkg:composer/sebastian/cli-parser@1.0.1 - - - sebastian - code-unit - 1.0.8 - Collection of value objects that represent the PHP code units - - - BSD-3-Clause - - - pkg:composer/sebastian/code-unit@1.0.8 - - - sebastian - code-unit-reverse-lookup - 2.0.3 - Looks up which function or method a line of code belongs to - - - BSD-3-Clause - - - pkg:composer/sebastian/code-unit-reverse-lookup@2.0.3 - - - sebastian - comparator - 4.0.8 - Provides the functionality to compare PHP values for equality - - - BSD-3-Clause - - - pkg:composer/sebastian/comparator@4.0.8 - - - sebastian - complexity - 2.0.2 - Library for calculating the complexity of PHP code units - - - BSD-3-Clause - - - pkg:composer/sebastian/complexity@2.0.2 - - - sebastian - diff - 4.0.4 - Diff implementation - - - BSD-3-Clause - - - pkg:composer/sebastian/diff@4.0.4 - - - sebastian - environment - 5.1.4 - Provides functionality to handle HHVM/PHP environments - - - BSD-3-Clause - - - pkg:composer/sebastian/environment@5.1.4 - - - sebastian - exporter - 4.0.5 - Provides the functionality to export PHP variables for visualization - - - BSD-3-Clause - - - pkg:composer/sebastian/exporter@4.0.5 - - - sebastian - global-state - 5.0.5 - Snapshotting of global state - - - BSD-3-Clause - - - pkg:composer/sebastian/global-state@5.0.5 - - - sebastian - lines-of-code - 1.0.3 - Library for counting the lines of code in PHP source code - - - BSD-3-Clause - - - pkg:composer/sebastian/lines-of-code@1.0.3 - - - sebastian - object-enumerator - 4.0.4 - Traverses array structures and object graphs to enumerate all referenced objects - - - BSD-3-Clause - - - pkg:composer/sebastian/object-enumerator@4.0.4 - - - sebastian - object-reflector - 2.0.4 - Allows reflection of object attributes, including inherited and non-public ones - - - BSD-3-Clause - - - pkg:composer/sebastian/object-reflector@2.0.4 - - - sebastian - recursion-context - 4.0.4 - Provides functionality to recursively process PHP variables - - - BSD-3-Clause - - - pkg:composer/sebastian/recursion-context@4.0.4 - - - sebastian - resource-operations - 3.0.3 - Provides a list of PHP built-in functions that operate on resources - - - BSD-3-Clause - - - pkg:composer/sebastian/resource-operations@3.0.3 - - - sebastian - type - 3.2.0 - Collection of value objects that represent the types of the PHP type system - - - BSD-3-Clause - - - pkg:composer/sebastian/type@3.2.0 - - - sebastian - version - 3.0.2 - Library that helps with managing the version number of Git-hosted PHP projects - - - BSD-3-Clause - - - pkg:composer/sebastian/version@3.0.2 - - - theseer - tokenizer - 1.2.1 - A small library for converting tokenized PHP source code into XML and potentially other formats - - - BSD-3-Clause - - - pkg:composer/theseer/tokenizer@1.2.1 - - - webmozart - assert - 1.11.0 - Assertions to validate method input/output with nice error messages. - - - MIT - - - pkg:composer/webmozart/assert@1.11.0 - - - +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface AfterTestHook extends \PHPUnit\Runner\TestHook +{ + /** + * This hook will fire after any test, regardless of the result. + * + * For more fine grained control, have a look at the other hooks + * that extend PHPUnit\Runner\Hook. + */ + public function executeAfterTest(string $test, float $time): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface AfterLastTestHook extends \PHPUnit\Runner\Hook +{ + public function executeAfterLastTest(): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface AfterTestFailureHook extends \PHPUnit\Runner\TestHook +{ + public function executeAfterTestFailure(string $test, string $message, float $time): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface BeforeFirstTestHook extends \PHPUnit\Runner\Hook +{ + public function executeBeforeFirstTest(): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface AfterIncompleteTestHook extends \PHPUnit\Runner\TestHook +{ + public function executeAfterIncompleteTest(string $test, string $message, float $time): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit\Runner; + +/** + * This interface, as well as the associated mechanism for extending PHPUnit, + * will be removed in PHPUnit 10. There is no alternative available in this + * version of PHPUnit. + * + * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit + * + * @see https://github.com/sebastianbergmann/phpunit/issues/4676 + */ +interface AfterSuccessfulTestHook extends \PHPUnit\Runner\TestHook +{ + public function executeAfterSuccessfulTest(string $test, float $time): void; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnit; + +use Throwable; +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +interface Exception extends Throwable +{ +} - This Schema file defines the rules by which the XML configuration file of PHPUnit 8.5 may be structured. + This Schema file defines the rules by which the XML configuration file of PHPUnit 9.6 may be structured. @@ -84616,347 +89503,33 @@ final class XmlTestListRenderer Root Element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The main type specifying the document structure - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This Schema file defines the rules by which the XML configuration file of PHPUnit 9.2 may be structured. - - - - - - Root Element - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - + + @@ -84976,7 +89549,7 @@ final class XmlTestListRenderer - + @@ -85044,37 +89617,6 @@ final class XmlTestListRenderer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -85161,16 +89703,14 @@ final class XmlTestListRenderer - - + - - + @@ -85180,6 +89720,7 @@ final class XmlTestListRenderer + @@ -85192,7 +89733,6 @@ final class XmlTestListRenderer - @@ -85214,8 +89754,8 @@ final class XmlTestListRenderer - - + + @@ -85231,520 +89771,7658 @@ final class XmlTestListRenderer - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -sebastian/cli-parser +code-unit-reverse-lookup + +Copyright (c) 2016-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeUnitReverseLookup; + +use function array_merge; +use function assert; +use function get_declared_classes; +use function get_declared_traits; +use function get_defined_functions; +use function is_array; +use function range; +use ReflectionClass; +use ReflectionFunction; +use ReflectionFunctionAbstract; +use ReflectionMethod; +/** + * @since Class available since Release 1.0.0 + */ +class Wizard +{ + /** + * @var array + */ + private $lookupTable = []; + /** + * @var array + */ + private $processedClasses = []; + /** + * @var array + */ + private $processedFunctions = []; + /** + * @param string $filename + * @param int $lineNumber + * + * @return string + */ + public function lookup($filename, $lineNumber) + { + if (!isset($this->lookupTable[$filename][$lineNumber])) { + $this->updateLookupTable(); + } + if (isset($this->lookupTable[$filename][$lineNumber])) { + return $this->lookupTable[$filename][$lineNumber]; + } + return $filename . ':' . $lineNumber; + } + private function updateLookupTable(): void + { + $this->processClassesAndTraits(); + $this->processFunctions(); + } + private function processClassesAndTraits(): void + { + $classes = get_declared_classes(); + $traits = get_declared_traits(); + assert(is_array($classes)); + assert(is_array($traits)); + foreach (array_merge($classes, $traits) as $classOrTrait) { + if (isset($this->processedClasses[$classOrTrait])) { + continue; + } + $reflector = new ReflectionClass($classOrTrait); + foreach ($reflector->getMethods() as $method) { + $this->processFunctionOrMethod($method); + } + $this->processedClasses[$classOrTrait] = \true; + } + } + private function processFunctions(): void + { + foreach (get_defined_functions()['user'] as $function) { + if (isset($this->processedFunctions[$function])) { + continue; + } + $this->processFunctionOrMethod(new ReflectionFunction($function)); + $this->processedFunctions[$function] = \true; + } + } + private function processFunctionOrMethod(ReflectionFunctionAbstract $functionOrMethod): void + { + if ($functionOrMethod->isInternal()) { + return; + } + $name = $functionOrMethod->getName(); + if ($functionOrMethod instanceof ReflectionMethod) { + $name = $functionOrMethod->getDeclaringClass()->getName() . '::' . $name; + } + if (!isset($this->lookupTable[$functionOrMethod->getFileName()])) { + $this->lookupTable[$functionOrMethod->getFileName()] = []; + } + foreach (range($functionOrMethod->getStartLine(), $functionOrMethod->getEndLine()) as $line) { + $this->lookupTable[$functionOrMethod->getFileName()][$line] = $name; + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectReflector; + +use function count; +use function explode; +use function get_class; +use function is_object; +class ObjectReflector +{ + /** + * @param object $object + * + * @throws InvalidArgumentException + */ + public function getAttributes($object): array + { + if (!is_object($object)) { + throw new InvalidArgumentException(); + } + $attributes = []; + $className = get_class($object); + foreach ((array) $object as $name => $value) { + $name = explode("\x00", (string) $name); + if (count($name) === 1) { + $name = $name[0]; + } else if ($name[1] !== $className) { + $name = $name[1] . '::' . $name[2]; + } else { + $name = $name[2]; + } + $attributes[$name] = $value; + } + return $attributes; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectReflector; + +class InvalidArgumentException extends \InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectReflector; + +use Throwable; +interface Exception extends Throwable +{ +} +phpunit/php-text-template + +Copyright (c) 2009-2020, Sebastian Bergmann . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Sebastian Bergmann nor the names of his + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Template; + +use InvalidArgumentException; +final class RuntimeException extends InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Template; + +final class InvalidArgumentException extends \InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Template; + +use Throwable; +interface Exception extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\Template; + +use function array_merge; +use function file_exists; +use function file_get_contents; +use function file_put_contents; +use function sprintf; +use function str_replace; +final class Template +{ + /** + * @var string + */ + private $template = ''; + /** + * @var string + */ + private $openDelimiter; + /** + * @var string + */ + private $closeDelimiter; + /** + * @var array + */ + private $values = []; + /** + * @throws InvalidArgumentException + */ + public function __construct(string $file = '', string $openDelimiter = '{', string $closeDelimiter = '}') + { + $this->setFile($file); + $this->openDelimiter = $openDelimiter; + $this->closeDelimiter = $closeDelimiter; + } + /** + * @throws InvalidArgumentException + */ + public function setFile(string $file): void + { + $distFile = $file . '.dist'; + if (file_exists($file)) { + $this->template = file_get_contents($file); + } elseif (file_exists($distFile)) { + $this->template = file_get_contents($distFile); + } else { + throw new InvalidArgumentException(sprintf('Failed to load template "%s"', $file)); + } + } + public function setVar(array $values, bool $merge = \true): void + { + if (!$merge || empty($this->values)) { + $this->values = $values; + } else { + $this->values = array_merge($this->values, $values); + } + } + public function render(): string + { + $keys = []; + foreach ($this->values as $key => $value) { + $keys[] = $this->openDelimiter . $key . $this->closeDelimiter; + } + return str_replace($keys, $this->values, $this->template); + } + /** + * @codeCoverageIgnore + */ + public function renderTo(string $target): void + { + if (!file_put_contents($target, $this->render())) { + throw new RuntimeException(sprintf('Writing rendered result to "%s" failed', $target)); + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectEnumerator; + +class InvalidArgumentException extends \InvalidArgumentException implements Exception +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectEnumerator; + +use function array_merge; +use function func_get_args; +use function is_array; +use function is_object; +use PHPUnitPHAR\SebastianBergmann\ObjectReflector\ObjectReflector; +use PHPUnitPHAR\SebastianBergmann\RecursionContext\Context; +/** + * Traverses array structures and object graphs + * to enumerate all referenced objects. + */ +class Enumerator +{ + /** + * Returns an array of all objects referenced either + * directly or indirectly by a variable. + * + * @param array|object $variable + * + * @return object[] + */ + public function enumerate($variable) + { + if (!is_array($variable) && !is_object($variable)) { + throw new InvalidArgumentException(); + } + if (isset(func_get_args()[1])) { + if (!func_get_args()[1] instanceof Context) { + throw new InvalidArgumentException(); + } + $processed = func_get_args()[1]; + } else { + $processed = new Context(); + } + $objects = []; + if ($processed->contains($variable)) { + return $objects; + } + $array = $variable; + $processed->add($variable); + if (is_array($variable)) { + foreach ($array as $element) { + if (!is_array($element) && !is_object($element)) { + continue; + } + $objects = array_merge($objects, $this->enumerate($element, $processed)); + } + } else { + $objects[] = $variable; + $reflector = new ObjectReflector(); + foreach ($reflector->getAttributes($variable) as $value) { + if (!is_array($value) && !is_object($value)) { + continue; + } + $objects = array_merge($objects, $this->enumerate($value, $processed)); + } + } + return $objects; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\ObjectEnumerator; + +use Throwable; +interface Exception extends Throwable +{ +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage; + +use function array_diff; +use function array_diff_key; +use function array_flip; +use function array_keys; +use function array_merge; +use function array_unique; +use function array_values; +use function count; +use function explode; +use function get_class; +use function is_array; +use function sort; +use PHPUnit\Framework\TestCase; +use PHPUnit\Runner\PhptTestCase; +use PHPUnit\Util\Test; +use ReflectionClass; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver\Driver; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\Builder; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\Directory; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis\CachingFileAnalyser; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis\FileAnalyser; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis\ParsingFileAnalyser; +use PHPUnitPHAR\SebastianBergmann\CodeUnitReverseLookup\Wizard; +/** + * Provides collection functionality for PHP code coverage information. + */ +final class CodeCoverage +{ + private const UNCOVERED_FILES = 'UNCOVERED_FILES'; + /** + * @var Driver + */ + private $driver; + /** + * @var Filter + */ + private $filter; + /** + * @var Wizard + */ + private $wizard; + /** + * @var bool + */ + private $checkForUnintentionallyCoveredCode = \false; + /** + * @var bool + */ + private $includeUncoveredFiles = \true; + /** + * @var bool + */ + private $processUncoveredFiles = \false; + /** + * @var bool + */ + private $ignoreDeprecatedCode = \false; + /** + * @var null|PhptTestCase|string|TestCase + */ + private $currentId; + /** + * Code coverage data. + * + * @var ProcessedCodeCoverageData + */ + private $data; + /** + * @var bool + */ + private $useAnnotationsForIgnoringCode = \true; + /** + * Test data. + * + * @var array + */ + private $tests = []; + /** + * @psalm-var list + */ + private $parentClassesExcludedFromUnintentionallyCoveredCodeCheck = []; + /** + * @var ?FileAnalyser + */ + private $analyser; + /** + * @var ?string + */ + private $cacheDirectory; + /** + * @var ?Directory + */ + private $cachedReport; + public function __construct(Driver $driver, Filter $filter) + { + $this->driver = $driver; + $this->filter = $filter; + $this->data = new ProcessedCodeCoverageData(); + $this->wizard = new Wizard(); + } + /** + * Returns the code coverage information as a graph of node objects. + */ + public function getReport(): Directory + { + if ($this->cachedReport === null) { + $this->cachedReport = (new Builder($this->analyser()))->build($this); + } + return $this->cachedReport; + } + /** + * Clears collected code coverage data. + */ + public function clear(): void + { + $this->currentId = null; + $this->data = new ProcessedCodeCoverageData(); + $this->tests = []; + $this->cachedReport = null; + } + /** + * @internal + */ + public function clearCache(): void + { + $this->cachedReport = null; + } + /** + * Returns the filter object used. + */ + public function filter(): Filter + { + return $this->filter; + } + /** + * Returns the collected code coverage data. + */ + public function getData(bool $raw = \false): ProcessedCodeCoverageData + { + if (!$raw) { + if ($this->processUncoveredFiles) { + $this->processUncoveredFilesFromFilter(); + } elseif ($this->includeUncoveredFiles) { + $this->addUncoveredFilesFromFilter(); + } + } + return $this->data; + } + /** + * Sets the coverage data. + */ + public function setData(ProcessedCodeCoverageData $data): void + { + $this->data = $data; + } + /** + * Returns the test data. + */ + public function getTests(): array + { + return $this->tests; + } + /** + * Sets the test data. + */ + public function setTests(array $tests): void + { + $this->tests = $tests; + } + /** + * Start collection of code coverage information. + * + * @param PhptTestCase|string|TestCase $id + */ + public function start($id, bool $clear = \false): void + { + if ($clear) { + $this->clear(); + } + $this->currentId = $id; + $this->driver->start(); + $this->cachedReport = null; + } + /** + * Stop collection of code coverage information. + * + * @param array|false $linesToBeCovered + */ + public function stop(bool $append = \true, $linesToBeCovered = [], array $linesToBeUsed = []): RawCodeCoverageData + { + if (!is_array($linesToBeCovered) && $linesToBeCovered !== \false) { + throw new InvalidArgumentException('$linesToBeCovered must be an array or false'); + } + $data = $this->driver->stop(); + $this->append($data, null, $append, $linesToBeCovered, $linesToBeUsed); + $this->currentId = null; + $this->cachedReport = null; + return $data; + } + /** + * Appends code coverage data. + * + * @param PhptTestCase|string|TestCase $id + * @param array|false $linesToBeCovered + * + * @throws ReflectionException + * @throws TestIdMissingException + * @throws UnintentionallyCoveredCodeException + */ + public function append(RawCodeCoverageData $rawData, $id = null, bool $append = \true, $linesToBeCovered = [], array $linesToBeUsed = []): void + { + if ($id === null) { + $id = $this->currentId; + } + if ($id === null) { + throw new TestIdMissingException(); + } + $this->cachedReport = null; + $this->applyFilter($rawData); + $this->applyExecutableLinesFilter($rawData); + if ($this->useAnnotationsForIgnoringCode) { + $this->applyIgnoredLinesFilter($rawData); + } + $this->data->initializeUnseenData($rawData); + if (!$append) { + return; + } + if ($id !== self::UNCOVERED_FILES) { + $this->applyCoversAnnotationFilter($rawData, $linesToBeCovered, $linesToBeUsed); + if (empty($rawData->lineCoverage())) { + return; + } + $size = 'unknown'; + $status = -1; + $fromTestcase = \false; + if ($id instanceof TestCase) { + $fromTestcase = \true; + $_size = $id->getSize(); + if ($_size === Test::SMALL) { + $size = 'small'; + } elseif ($_size === Test::MEDIUM) { + $size = 'medium'; + } elseif ($_size === Test::LARGE) { + $size = 'large'; + } + $status = $id->getStatus(); + $id = get_class($id) . '::' . $id->getName(); + } elseif ($id instanceof PhptTestCase) { + $fromTestcase = \true; + $size = 'large'; + $id = $id->getName(); + } + $this->tests[$id] = ['size' => $size, 'status' => $status, 'fromTestcase' => $fromTestcase]; + $this->data->markCodeAsExecutedByTestCase($id, $rawData); + } + } + /** + * Merges the data from another instance. + */ + public function merge(self $that): void + { + $this->filter->includeFiles($that->filter()->files()); + $this->data->merge($that->data); + $this->tests = array_merge($this->tests, $that->getTests()); + $this->cachedReport = null; + } + public function enableCheckForUnintentionallyCoveredCode(): void + { + $this->checkForUnintentionallyCoveredCode = \true; + } + public function disableCheckForUnintentionallyCoveredCode(): void + { + $this->checkForUnintentionallyCoveredCode = \false; + } + public function includeUncoveredFiles(): void + { + $this->includeUncoveredFiles = \true; + } + public function excludeUncoveredFiles(): void + { + $this->includeUncoveredFiles = \false; + } + public function processUncoveredFiles(): void + { + $this->processUncoveredFiles = \true; + } + public function doNotProcessUncoveredFiles(): void + { + $this->processUncoveredFiles = \false; + } + public function enableAnnotationsForIgnoringCode(): void + { + $this->useAnnotationsForIgnoringCode = \true; + } + public function disableAnnotationsForIgnoringCode(): void + { + $this->useAnnotationsForIgnoringCode = \false; + } + public function ignoreDeprecatedCode(): void + { + $this->ignoreDeprecatedCode = \true; + } + public function doNotIgnoreDeprecatedCode(): void + { + $this->ignoreDeprecatedCode = \false; + } + /** + * @psalm-assert-if-true !null $this->cacheDirectory + */ + public function cachesStaticAnalysis(): bool + { + return $this->cacheDirectory !== null; + } + public function cacheStaticAnalysis(string $directory): void + { + $this->cacheDirectory = $directory; + } + public function doNotCacheStaticAnalysis(): void + { + $this->cacheDirectory = null; + } + /** + * @throws StaticAnalysisCacheNotConfiguredException + */ + public function cacheDirectory(): string + { + if (!$this->cachesStaticAnalysis()) { + throw new StaticAnalysisCacheNotConfiguredException('The static analysis cache is not configured'); + } + return $this->cacheDirectory; + } + /** + * @psalm-param class-string $className + */ + public function excludeSubclassesOfThisClassFromUnintentionallyCoveredCodeCheck(string $className): void + { + $this->parentClassesExcludedFromUnintentionallyCoveredCodeCheck[] = $className; + } + public function enableBranchAndPathCoverage(): void + { + $this->driver->enableBranchAndPathCoverage(); + } + public function disableBranchAndPathCoverage(): void + { + $this->driver->disableBranchAndPathCoverage(); + } + public function collectsBranchAndPathCoverage(): bool + { + return $this->driver->collectsBranchAndPathCoverage(); + } + public function detectsDeadCode(): bool + { + return $this->driver->detectsDeadCode(); + } + /** + * Applies the @covers annotation filtering. + * + * @param array|false $linesToBeCovered + * + * @throws ReflectionException + * @throws UnintentionallyCoveredCodeException + */ + private function applyCoversAnnotationFilter(RawCodeCoverageData $rawData, $linesToBeCovered, array $linesToBeUsed): void + { + if ($linesToBeCovered === \false) { + $rawData->clear(); + return; + } + if (empty($linesToBeCovered)) { + return; + } + if ($this->checkForUnintentionallyCoveredCode && (!$this->currentId instanceof TestCase || !$this->currentId->isMedium() && !$this->currentId->isLarge())) { + $this->performUnintentionallyCoveredCodeCheck($rawData, $linesToBeCovered, $linesToBeUsed); + } + $rawLineData = $rawData->lineCoverage(); + $filesWithNoCoverage = array_diff_key($rawLineData, $linesToBeCovered); + foreach (array_keys($filesWithNoCoverage) as $fileWithNoCoverage) { + $rawData->removeCoverageDataForFile($fileWithNoCoverage); + } + if (is_array($linesToBeCovered)) { + foreach ($linesToBeCovered as $fileToBeCovered => $includedLines) { + $rawData->keepLineCoverageDataOnlyForLines($fileToBeCovered, $includedLines); + $rawData->keepFunctionCoverageDataOnlyForLines($fileToBeCovered, $includedLines); + } + } + } + private function applyFilter(RawCodeCoverageData $data): void + { + if ($this->filter->isEmpty()) { + return; + } + foreach (array_keys($data->lineCoverage()) as $filename) { + if ($this->filter->isExcluded($filename)) { + $data->removeCoverageDataForFile($filename); + } + } + } + private function applyExecutableLinesFilter(RawCodeCoverageData $data): void + { + foreach (array_keys($data->lineCoverage()) as $filename) { + if (!$this->filter->isFile($filename)) { + continue; + } + $linesToBranchMap = $this->analyser()->executableLinesIn($filename); + $data->keepLineCoverageDataOnlyForLines($filename, array_keys($linesToBranchMap)); + $data->markExecutableLineByBranch($filename, $linesToBranchMap); + } + } + private function applyIgnoredLinesFilter(RawCodeCoverageData $data): void + { + foreach (array_keys($data->lineCoverage()) as $filename) { + if (!$this->filter->isFile($filename)) { + continue; + } + $data->removeCoverageDataForLines($filename, $this->analyser()->ignoredLinesFor($filename)); + } + } + /** + * @throws UnintentionallyCoveredCodeException + */ + private function addUncoveredFilesFromFilter(): void + { + $uncoveredFiles = array_diff($this->filter->files(), $this->data->coveredFiles()); + foreach ($uncoveredFiles as $uncoveredFile) { + if ($this->filter->isFile($uncoveredFile)) { + $this->append(RawCodeCoverageData::fromUncoveredFile($uncoveredFile, $this->analyser()), self::UNCOVERED_FILES); + } + } + } + /** + * @throws UnintentionallyCoveredCodeException + */ + private function processUncoveredFilesFromFilter(): void + { + $uncoveredFiles = array_diff($this->filter->files(), $this->data->coveredFiles()); + $this->driver->start(); + foreach ($uncoveredFiles as $uncoveredFile) { + if ($this->filter->isFile($uncoveredFile)) { + include_once $uncoveredFile; + } + } + $this->append($this->driver->stop(), self::UNCOVERED_FILES); + } + /** + * @throws ReflectionException + * @throws UnintentionallyCoveredCodeException + */ + private function performUnintentionallyCoveredCodeCheck(RawCodeCoverageData $data, array $linesToBeCovered, array $linesToBeUsed): void + { + $allowedLines = $this->getAllowedLines($linesToBeCovered, $linesToBeUsed); + $unintentionallyCoveredUnits = []; + foreach ($data->lineCoverage() as $file => $_data) { + foreach ($_data as $line => $flag) { + if ($flag === 1 && !isset($allowedLines[$file][$line])) { + $unintentionallyCoveredUnits[] = $this->wizard->lookup($file, $line); + } + } + } + $unintentionallyCoveredUnits = $this->processUnintentionallyCoveredUnits($unintentionallyCoveredUnits); + if (!empty($unintentionallyCoveredUnits)) { + throw new UnintentionallyCoveredCodeException($unintentionallyCoveredUnits); + } + } + private function getAllowedLines(array $linesToBeCovered, array $linesToBeUsed): array + { + $allowedLines = []; + foreach (array_keys($linesToBeCovered) as $file) { + if (!isset($allowedLines[$file])) { + $allowedLines[$file] = []; + } + $allowedLines[$file] = array_merge($allowedLines[$file], $linesToBeCovered[$file]); + } + foreach (array_keys($linesToBeUsed) as $file) { + if (!isset($allowedLines[$file])) { + $allowedLines[$file] = []; + } + $allowedLines[$file] = array_merge($allowedLines[$file], $linesToBeUsed[$file]); + } + foreach (array_keys($allowedLines) as $file) { + $allowedLines[$file] = array_flip(array_unique($allowedLines[$file])); + } + return $allowedLines; + } + /** + * @throws ReflectionException + */ + private function processUnintentionallyCoveredUnits(array $unintentionallyCoveredUnits): array + { + $unintentionallyCoveredUnits = array_unique($unintentionallyCoveredUnits); + sort($unintentionallyCoveredUnits); + foreach (array_keys($unintentionallyCoveredUnits) as $k => $v) { + $unit = explode('::', $unintentionallyCoveredUnits[$k]); + if (count($unit) !== 2) { + continue; + } + try { + $class = new ReflectionClass($unit[0]); + foreach ($this->parentClassesExcludedFromUnintentionallyCoveredCodeCheck as $parentClass) { + if ($class->isSubclassOf($parentClass)) { + unset($unintentionallyCoveredUnits[$k]); + break; + } + } + } catch (\ReflectionException $e) { + throw new ReflectionException($e->getMessage(), $e->getCode(), $e); + } + } + return array_values($unintentionallyCoveredUnits); + } + private function analyser(): FileAnalyser + { + if ($this->analyser !== null) { + return $this->analyser; + } + $this->analyser = new ParsingFileAnalyser($this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode); + if ($this->cachesStaticAnalysis()) { + $this->analyser = new CachingFileAnalyser($this->cacheDirectory, $this->analyser, $this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode); + } + return $this->analyser; + } +} +BSD 3-Clause License + +Copyright (c) 2009-2023, Sebastian Bergmann +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util; + +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class Percentage +{ + /** + * @var float + */ + private $fraction; + /** + * @var float + */ + private $total; + public static function fromFractionAndTotal(float $fraction, float $total): self + { + return new self($fraction, $total); + } + private function __construct(float $fraction, float $total) + { + $this->fraction = $fraction; + $this->total = $total; + } + public function asFloat(): float + { + if ($this->total > 0) { + return $this->fraction / $this->total * 100; + } + return 100.0; + } + public function asString(): string + { + if ($this->total > 0) { + return sprintf('%01.2F%%', $this->asFloat()); + } + return ''; + } + public function asFixedWidthString(): string + { + if ($this->total > 0) { + return sprintf('%6.2F%%', $this->asFloat()); + } + return ''; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util; + +use function is_dir; +use function mkdir; +use function sprintf; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class Filesystem +{ + /** + * @throws DirectoryCouldNotBeCreatedException + */ + public static function createDirectory(string $directory): void + { + $success = !(!is_dir($directory) && !@mkdir($directory, 0777, \true) && !is_dir($directory)); + if (!$success) { + throw new DirectoryCouldNotBeCreatedException(sprintf('Directory "%s" could not be created', $directory)); + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use function phpversion; +use function version_compare; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverAvailableException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverWithPathCoverageSupportAvailableException; +use PHPUnitPHAR\SebastianBergmann\Environment\Runtime; +final class Selector +{ + /** + * @throws NoCodeCoverageDriverAvailableException + * @throws PcovNotAvailableException + * @throws PhpdbgNotAvailableException + * @throws Xdebug2NotEnabledException + * @throws Xdebug3NotEnabledException + * @throws XdebugNotAvailableException + */ + public function forLineCoverage(Filter $filter): Driver + { + $runtime = new Runtime(); + if ($runtime->hasPHPDBGCodeCoverage()) { + return new PhpdbgDriver(); + } + if ($runtime->hasPCOV()) { + return new PcovDriver($filter); + } + if ($runtime->hasXdebug()) { + if (version_compare(phpversion('xdebug'), '3', '>=')) { + $driver = new Xdebug3Driver($filter); + } else { + $driver = new Xdebug2Driver($filter); + } + $driver->enableDeadCodeDetection(); + return $driver; + } + throw new NoCodeCoverageDriverAvailableException(); + } + /** + * @throws NoCodeCoverageDriverWithPathCoverageSupportAvailableException + * @throws Xdebug2NotEnabledException + * @throws Xdebug3NotEnabledException + * @throws XdebugNotAvailableException + */ + public function forLineAndPathCoverage(Filter $filter): Driver + { + if ((new Runtime())->hasXdebug()) { + if (version_compare(phpversion('xdebug'), '3', '>=')) { + $driver = new Xdebug3Driver($filter); + } else { + $driver = new Xdebug2Driver($filter); + } + $driver->enableDeadCodeDetection(); + $driver->enableBranchAndPathCoverage(); + return $driver; + } + throw new NoCodeCoverageDriverWithPathCoverageSupportAvailableException(); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use const pcov\inclusive; +use function array_intersect; +use function extension_loaded; +use function pcov\clear; +use function pcov\collect; +use function pcov\start; +use function pcov\stop; +use function pcov\waiting; +use function phpversion; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class PcovDriver extends Driver +{ + /** + * @var Filter + */ + private $filter; + /** + * @throws PcovNotAvailableException + */ + public function __construct(Filter $filter) + { + if (!extension_loaded('pcov')) { + throw new PcovNotAvailableException(); + } + $this->filter = $filter; + } + public function start(): void + { + start(); + } + public function stop(): RawCodeCoverageData + { + stop(); + $filesToCollectCoverageFor = waiting(); + $collected = []; + if ($filesToCollectCoverageFor) { + if (!$this->filter->isEmpty()) { + $filesToCollectCoverageFor = array_intersect($filesToCollectCoverageFor, $this->filter->files()); + } + $collected = collect(inclusive, $filesToCollectCoverageFor); + clear(); + } + return RawCodeCoverageData::fromXdebugWithoutPathCoverage($collected); + } + public function nameAndVersion(): string + { + return 'PCOV ' . phpversion('pcov'); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use function sprintf; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\BranchAndPathCoverageNotSupportedException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\DeadCodeDetectionNotSupportedException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverAvailableException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\NoCodeCoverageDriverWithPathCoverageSupportAvailableException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +abstract class Driver +{ + /** + * @var int + * + * @see http://xdebug.org/docs/code_coverage + */ + public const LINE_NOT_EXECUTABLE = -2; + /** + * @var int + * + * @see http://xdebug.org/docs/code_coverage + */ + public const LINE_NOT_EXECUTED = -1; + /** + * @var int + * + * @see http://xdebug.org/docs/code_coverage + */ + public const LINE_EXECUTED = 1; + /** + * @var int + * + * @see http://xdebug.org/docs/code_coverage + */ + public const BRANCH_NOT_HIT = 0; + /** + * @var int + * + * @see http://xdebug.org/docs/code_coverage + */ + public const BRANCH_HIT = 1; + /** + * @var bool + */ + private $collectBranchAndPathCoverage = \false; + /** + * @var bool + */ + private $detectDeadCode = \false; + /** + * @throws NoCodeCoverageDriverAvailableException + * @throws PcovNotAvailableException + * @throws PhpdbgNotAvailableException + * @throws Xdebug2NotEnabledException + * @throws Xdebug3NotEnabledException + * @throws XdebugNotAvailableException + * + * @deprecated Use DriverSelector::forLineCoverage() instead + */ + public static function forLineCoverage(Filter $filter): self + { + return (new Selector())->forLineCoverage($filter); + } + /** + * @throws NoCodeCoverageDriverWithPathCoverageSupportAvailableException + * @throws Xdebug2NotEnabledException + * @throws Xdebug3NotEnabledException + * @throws XdebugNotAvailableException + * + * @deprecated Use DriverSelector::forLineAndPathCoverage() instead + */ + public static function forLineAndPathCoverage(Filter $filter): self + { + return (new Selector())->forLineAndPathCoverage($filter); + } + public function canCollectBranchAndPathCoverage(): bool + { + return \false; + } + public function collectsBranchAndPathCoverage(): bool + { + return $this->collectBranchAndPathCoverage; + } + /** + * @throws BranchAndPathCoverageNotSupportedException + */ + public function enableBranchAndPathCoverage(): void + { + if (!$this->canCollectBranchAndPathCoverage()) { + throw new BranchAndPathCoverageNotSupportedException(sprintf('%s does not support branch and path coverage', $this->nameAndVersion())); + } + $this->collectBranchAndPathCoverage = \true; + } + public function disableBranchAndPathCoverage(): void + { + $this->collectBranchAndPathCoverage = \false; + } + public function canDetectDeadCode(): bool + { + return \false; + } + public function detectsDeadCode(): bool + { + return $this->detectDeadCode; + } + /** + * @throws DeadCodeDetectionNotSupportedException + */ + public function enableDeadCodeDetection(): void + { + if (!$this->canDetectDeadCode()) { + throw new DeadCodeDetectionNotSupportedException(sprintf('%s does not support dead code detection', $this->nameAndVersion())); + } + $this->detectDeadCode = \true; + } + public function disableDeadCodeDetection(): void + { + $this->detectDeadCode = \false; + } + abstract public function nameAndVersion(): string; + abstract public function start(): void; + abstract public function stop(): RawCodeCoverageData; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use const XDEBUG_CC_BRANCH_CHECK; +use const XDEBUG_CC_DEAD_CODE; +use const XDEBUG_CC_UNUSED; +use const XDEBUG_FILTER_CODE_COVERAGE; +use const XDEBUG_PATH_INCLUDE; +use function explode; +use function extension_loaded; +use function getenv; +use function in_array; +use function ini_get; +use function phpversion; +use function sprintf; +use function version_compare; +use function xdebug_get_code_coverage; +use function xdebug_set_filter; +use function xdebug_start_code_coverage; +use function xdebug_stop_code_coverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class Xdebug3Driver extends Driver +{ + /** + * @throws WrongXdebugVersionException + * @throws Xdebug3NotEnabledException + * @throws XdebugNotAvailableException + */ + public function __construct(Filter $filter) + { + if (!extension_loaded('xdebug')) { + throw new XdebugNotAvailableException(); + } + if (version_compare(phpversion('xdebug'), '3', '<')) { + throw new WrongXdebugVersionException(sprintf('This driver requires Xdebug 3 but version %s is loaded', phpversion('xdebug'))); + } + $mode = getenv('XDEBUG_MODE'); + if ($mode === \false || $mode === '') { + $mode = ini_get('xdebug.mode'); + } + if ($mode === \false || !in_array('coverage', explode(',', $mode), \true)) { + throw new Xdebug3NotEnabledException(); + } + if (!$filter->isEmpty()) { + xdebug_set_filter(XDEBUG_FILTER_CODE_COVERAGE, XDEBUG_PATH_INCLUDE, $filter->files()); + } + } + public function canCollectBranchAndPathCoverage(): bool + { + return \true; + } + public function canDetectDeadCode(): bool + { + return \true; + } + public function start(): void + { + $flags = XDEBUG_CC_UNUSED; + if ($this->detectsDeadCode() || $this->collectsBranchAndPathCoverage()) { + $flags |= XDEBUG_CC_DEAD_CODE; + } + if ($this->collectsBranchAndPathCoverage()) { + $flags |= XDEBUG_CC_BRANCH_CHECK; + } + xdebug_start_code_coverage($flags); + } + public function stop(): RawCodeCoverageData + { + $data = xdebug_get_code_coverage(); + xdebug_stop_code_coverage(); + if ($this->collectsBranchAndPathCoverage()) { + return RawCodeCoverageData::fromXdebugWithPathCoverage($data); + } + return RawCodeCoverageData::fromXdebugWithoutPathCoverage($data); + } + public function nameAndVersion(): string + { + return 'Xdebug ' . phpversion('xdebug'); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use const PHP_SAPI; +use const PHP_VERSION; +use function array_diff; +use function array_keys; +use function array_merge; +use function get_included_files; +use function phpdbg_end_oplog; +use function phpdbg_get_executable; +use function phpdbg_start_oplog; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class PhpdbgDriver extends Driver +{ + /** + * @throws PhpdbgNotAvailableException + */ + public function __construct() + { + if (PHP_SAPI !== 'phpdbg') { + throw new PhpdbgNotAvailableException(); + } + } + public function start(): void + { + phpdbg_start_oplog(); + } + public function stop(): RawCodeCoverageData + { + static $fetchedLines = []; + $dbgData = phpdbg_end_oplog(); + if ($fetchedLines === []) { + $sourceLines = phpdbg_get_executable(); + } else { + $newFiles = array_diff(get_included_files(), array_keys($fetchedLines)); + $sourceLines = []; + if ($newFiles) { + $sourceLines = phpdbg_get_executable(['files' => $newFiles]); + } + } + foreach ($sourceLines as $file => $lines) { + foreach ($lines as $lineNo => $numExecuted) { + $sourceLines[$file][$lineNo] = self::LINE_NOT_EXECUTED; + } + } + $fetchedLines = array_merge($fetchedLines, $sourceLines); + return RawCodeCoverageData::fromXdebugWithoutPathCoverage($this->detectExecutedLines($fetchedLines, $dbgData)); + } + public function nameAndVersion(): string + { + return 'PHPDBG ' . PHP_VERSION; + } + private function detectExecutedLines(array $sourceLines, array $dbgData): array + { + foreach ($dbgData as $file => $coveredLines) { + foreach ($coveredLines as $lineNo => $numExecuted) { + // phpdbg also reports $lineNo=0 when e.g. exceptions get thrown. + // make sure we only mark lines executed which are actually executable. + if (isset($sourceLines[$file][$lineNo])) { + $sourceLines[$file][$lineNo] = self::LINE_EXECUTED; + } + } + } + return $sourceLines; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver; + +use const XDEBUG_CC_BRANCH_CHECK; +use const XDEBUG_CC_DEAD_CODE; +use const XDEBUG_CC_UNUSED; +use const XDEBUG_FILTER_CODE_COVERAGE; +use const XDEBUG_PATH_INCLUDE; +use const XDEBUG_PATH_WHITELIST; +use function defined; +use function extension_loaded; +use function ini_get; +use function phpversion; +use function sprintf; +use function version_compare; +use function xdebug_get_code_coverage; +use function xdebug_set_filter; +use function xdebug_start_code_coverage; +use function xdebug_stop_code_coverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\RawCodeCoverageData; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class Xdebug2Driver extends Driver +{ + /** + * @var bool + */ + private $pathCoverageIsMixedCoverage; + /** + * @throws WrongXdebugVersionException + * @throws Xdebug2NotEnabledException + * @throws XdebugNotAvailableException + */ + public function __construct(Filter $filter) + { + if (!extension_loaded('xdebug')) { + throw new XdebugNotAvailableException(); + } + if (version_compare(phpversion('xdebug'), '3', '>=')) { + throw new WrongXdebugVersionException(sprintf('This driver requires Xdebug 2 but version %s is loaded', phpversion('xdebug'))); + } + if (!ini_get('xdebug.coverage_enable')) { + throw new Xdebug2NotEnabledException(); + } + if (!$filter->isEmpty()) { + if (defined('XDEBUG_PATH_WHITELIST')) { + $listType = XDEBUG_PATH_WHITELIST; + } else { + $listType = XDEBUG_PATH_INCLUDE; + } + xdebug_set_filter(XDEBUG_FILTER_CODE_COVERAGE, $listType, $filter->files()); + } + $this->pathCoverageIsMixedCoverage = version_compare(phpversion('xdebug'), '2.9.6', '<'); + } + public function canCollectBranchAndPathCoverage(): bool + { + return \true; + } + public function canDetectDeadCode(): bool + { + return \true; + } + public function start(): void + { + $flags = XDEBUG_CC_UNUSED; + if ($this->detectsDeadCode() || $this->collectsBranchAndPathCoverage()) { + $flags |= XDEBUG_CC_DEAD_CODE; + } + if ($this->collectsBranchAndPathCoverage()) { + $flags |= XDEBUG_CC_BRANCH_CHECK; + } + xdebug_start_code_coverage($flags); + } + public function stop(): RawCodeCoverageData + { + $data = xdebug_get_code_coverage(); + xdebug_stop_code_coverage(); + if ($this->collectsBranchAndPathCoverage()) { + if ($this->pathCoverageIsMixedCoverage) { + return RawCodeCoverageData::fromXdebugWithMixedCoverage($data); + } + return RawCodeCoverageData::fromXdebugWithPathCoverage($data); + } + return RawCodeCoverageData::fromXdebugWithoutPathCoverage($data); + } + public function nameAndVersion(): string + { + return 'Xdebug ' . phpversion('xdebug'); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage; + +use function dirname; +use PHPUnitPHAR\SebastianBergmann\Version as VersionId; +final class Version +{ + /** + * @var string + */ + private static $version; + public static function id(): string + { + if (self::$version === null) { + self::$version = (new VersionId('9.2.32', dirname(__DIR__)))->getVersion(); + } + return self::$version; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage; + +use function array_keys; +use function is_file; +use function realpath; +use function strpos; +use PHPUnitPHAR\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; +final class Filter +{ + /** + * @psalm-var array + */ + private $files = []; + /** + * @psalm-var array + */ + private $isFileCache = []; + public function includeDirectory(string $directory, string $suffix = '.php', string $prefix = ''): void + { + foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) { + $this->includeFile($file); + } + } + /** + * @psalm-param list $files + */ + public function includeFiles(array $filenames): void + { + foreach ($filenames as $filename) { + $this->includeFile($filename); + } + } + public function includeFile(string $filename): void + { + $filename = realpath($filename); + if (!$filename) { + return; + } + $this->files[$filename] = \true; + } + public function excludeDirectory(string $directory, string $suffix = '.php', string $prefix = ''): void + { + foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) { + $this->excludeFile($file); + } + } + public function excludeFile(string $filename): void + { + $filename = realpath($filename); + if (!$filename || !isset($this->files[$filename])) { + return; + } + unset($this->files[$filename]); + } + public function isFile(string $filename): bool + { + if (isset($this->isFileCache[$filename])) { + return $this->isFileCache[$filename]; + } + if ($filename === '-' || strpos($filename, 'vfs://') === 0 || strpos($filename, 'xdebug://debug-eval') !== \false || strpos($filename, 'eval()\'d code') !== \false || strpos($filename, 'runtime-created function') !== \false || strpos($filename, 'runkit created function') !== \false || strpos($filename, 'assert code') !== \false || strpos($filename, 'regexp code') !== \false || strpos($filename, 'Standard input code') !== \false) { + $isFile = \false; + } else { + $isFile = is_file($filename); + } + $this->isFileCache[$filename] = $isFile; + return $isFile; + } + public function isExcluded(string $filename): bool + { + return !isset($this->files[$filename]) || !$this->isFile($filename); + } + /** + * @psalm-return list + */ + public function files(): array + { + return array_keys($this->files); + } + public function isEmpty(): bool + { + return empty($this->files); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use function assert; +use function implode; +use function rtrim; +use function trim; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\ComplexType; +use PHPUnitPHAR\PhpParser\Node\Identifier; +use PHPUnitPHAR\PhpParser\Node\IntersectionType; +use PHPUnitPHAR\PhpParser\Node\Name; +use PHPUnitPHAR\PhpParser\Node\NullableType; +use PHPUnitPHAR\PhpParser\Node\Stmt\Class_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ClassMethod; +use PHPUnitPHAR\PhpParser\Node\Stmt\Enum_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Function_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Interface_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Trait_; +use PHPUnitPHAR\PhpParser\Node\UnionType; +use PHPUnitPHAR\PhpParser\NodeAbstract; +use PHPUnitPHAR\PhpParser\NodeTraverser; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +use PHPUnitPHAR\SebastianBergmann\Complexity\CyclomaticComplexityCalculatingVisitor; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class CodeUnitFindingVisitor extends NodeVisitorAbstract +{ + /** + * @psalm-var array}> + */ + private $classes = []; + /** + * @psalm-var array}> + */ + private $traits = []; + /** + * @psalm-var array + */ + private $functions = []; + public function enterNode(Node $node): void + { + if ($node instanceof Class_) { + if ($node->isAnonymous()) { + return; + } + $this->processClass($node); + } + if ($node instanceof Trait_) { + $this->processTrait($node); + } + if (!$node instanceof ClassMethod && !$node instanceof Function_) { + return; + } + if ($node instanceof ClassMethod) { + $parentNode = $node->getAttribute('parent'); + if ($parentNode instanceof Class_ && $parentNode->isAnonymous()) { + return; + } + $this->processMethod($node); + return; + } + $this->processFunction($node); + } + /** + * @psalm-return array}> + */ + public function classes(): array + { + return $this->classes; + } + /** + * @psalm-return array}> + */ + public function traits(): array + { + return $this->traits; + } + /** + * @psalm-return array + */ + public function functions(): array + { + return $this->functions; + } + /** + * @psalm-param ClassMethod|Function_ $node + */ + private function cyclomaticComplexity(Node $node): int + { + assert($node instanceof ClassMethod || $node instanceof Function_); + $nodes = $node->getStmts(); + if ($nodes === null) { + return 0; + } + $traverser = new NodeTraverser(); + $cyclomaticComplexityCalculatingVisitor = new CyclomaticComplexityCalculatingVisitor(); + $traverser->addVisitor($cyclomaticComplexityCalculatingVisitor); + /* @noinspection UnusedFunctionResultInspection */ + $traverser->traverse($nodes); + return $cyclomaticComplexityCalculatingVisitor->cyclomaticComplexity(); + } + /** + * @psalm-param ClassMethod|Function_ $node + */ + private function signature(Node $node): string + { + assert($node instanceof ClassMethod || $node instanceof Function_); + $signature = ($node->returnsByRef() ? '&' : '') . $node->name->toString() . '('; + $parameters = []; + foreach ($node->getParams() as $parameter) { + assert(isset($parameter->var->name)); + $parameterAsString = ''; + if ($parameter->type !== null) { + $parameterAsString = $this->type($parameter->type) . ' '; + } + $parameterAsString .= '$' . $parameter->var->name; + /* @todo Handle default values */ + $parameters[] = $parameterAsString; + } + $signature .= implode(', ', $parameters) . ')'; + $returnType = $node->getReturnType(); + if ($returnType !== null) { + $signature .= ': ' . $this->type($returnType); + } + return $signature; + } + /** + * @psalm-param Identifier|Name|ComplexType $type + */ + private function type(Node $type): string + { + assert($type instanceof Identifier || $type instanceof Name || $type instanceof ComplexType); + if ($type instanceof NullableType) { + return '?' . $type->type; + } + if ($type instanceof UnionType) { + return $this->unionTypeAsString($type); + } + if ($type instanceof IntersectionType) { + return $this->intersectionTypeAsString($type); + } + return $type->toString(); + } + private function visibility(ClassMethod $node): string + { + if ($node->isPrivate()) { + return 'private'; + } + if ($node->isProtected()) { + return 'protected'; + } + return 'public'; + } + private function processClass(Class_ $node): void + { + $name = $node->name->toString(); + $namespacedName = $node->namespacedName->toString(); + $this->classes[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'methods' => []]; + } + private function processTrait(Trait_ $node): void + { + $name = $node->name->toString(); + $namespacedName = $node->namespacedName->toString(); + $this->traits[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'methods' => []]; + } + private function processMethod(ClassMethod $node): void + { + $parentNode = $node->getAttribute('parent'); + if ($parentNode instanceof Interface_) { + return; + } + assert($parentNode instanceof Class_ || $parentNode instanceof Trait_ || $parentNode instanceof Enum_); + assert(isset($parentNode->name)); + assert(isset($parentNode->namespacedName)); + assert($parentNode->namespacedName instanceof Name); + $parentName = $parentNode->name->toString(); + $parentNamespacedName = $parentNode->namespacedName->toString(); + if ($parentNode instanceof Class_) { + $storage =& $this->classes; + } else { + $storage =& $this->traits; + } + if (!isset($storage[$parentNamespacedName])) { + $storage[$parentNamespacedName] = ['name' => $parentName, 'namespacedName' => $parentNamespacedName, 'namespace' => $this->namespace($parentNamespacedName, $parentName), 'startLine' => $parentNode->getStartLine(), 'endLine' => $parentNode->getEndLine(), 'methods' => []]; + } + $storage[$parentNamespacedName]['methods'][$node->name->toString()] = ['methodName' => $node->name->toString(), 'signature' => $this->signature($node), 'visibility' => $this->visibility($node), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'ccn' => $this->cyclomaticComplexity($node)]; + } + private function processFunction(Function_ $node): void + { + assert(isset($node->name)); + assert(isset($node->namespacedName)); + assert($node->namespacedName instanceof Name); + $name = $node->name->toString(); + $namespacedName = $node->namespacedName->toString(); + $this->functions[$namespacedName] = ['name' => $name, 'namespacedName' => $namespacedName, 'namespace' => $this->namespace($namespacedName, $name), 'signature' => $this->signature($node), 'startLine' => $node->getStartLine(), 'endLine' => $node->getEndLine(), 'ccn' => $this->cyclomaticComplexity($node)]; + } + private function namespace(string $namespacedName, string $name): string + { + return trim(rtrim($namespacedName, $name), '\\'); + } + private function unionTypeAsString(UnionType $node): string + { + $types = []; + foreach ($node->types as $type) { + if ($type instanceof IntersectionType) { + $types[] = '(' . $this->intersectionTypeAsString($type) . ')'; + continue; + } + $types[] = $this->typeAsString($type); + } + return implode('|', $types); + } + private function intersectionTypeAsString(IntersectionType $node): string + { + $types = []; + foreach ($node->types as $type) { + $types[] = $this->typeAsString($type); + } + return implode('&', $types); + } + /** + * @psalm-param Identifier|Name $node $node + */ + private function typeAsString(NodeAbstract $node): string + { + if ($node instanceof Name) { + return $node->toCodeString(); + } + return $node->toString(); + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +interface FileAnalyser +{ + public function classesIn(string $filename): array; + public function traitsIn(string $filename): array; + public function functionsIn(string $filename): array; + /** + * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + */ + public function linesOfCodeFor(string $filename): array; + public function executableLinesIn(string $filename): array; + public function ignoredLinesFor(string $filename): array; +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use function file_get_contents; +use function file_put_contents; +use function implode; +use function is_file; +use function md5; +use function serialize; +use function unserialize; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util\Filesystem; +use PHPUnitPHAR\SebastianBergmann\FileIterator\Facade as FileIteratorFacade; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class CachingFileAnalyser implements FileAnalyser +{ + /** + * @var ?string + */ + private static $cacheVersion; + /** + * @var string + */ + private $directory; + /** + * @var FileAnalyser + */ + private $analyser; + /** + * @var bool + */ + private $useAnnotationsForIgnoringCode; + /** + * @var bool + */ + private $ignoreDeprecatedCode; + /** + * @var array + */ + private $cache = []; + public function __construct(string $directory, FileAnalyser $analyser, bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode) + { + Filesystem::createDirectory($directory); + $this->analyser = $analyser; + $this->directory = $directory; + $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode; + $this->ignoreDeprecatedCode = $ignoreDeprecatedCode; + } + public function classesIn(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['classesIn']; + } + public function traitsIn(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['traitsIn']; + } + public function functionsIn(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['functionsIn']; + } + /** + * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + */ + public function linesOfCodeFor(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['linesOfCodeFor']; + } + public function executableLinesIn(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['executableLinesIn']; + } + public function ignoredLinesFor(string $filename): array + { + if (!isset($this->cache[$filename])) { + $this->process($filename); + } + return $this->cache[$filename]['ignoredLinesFor']; + } + public function process(string $filename): void + { + $cache = $this->read($filename); + if ($cache !== \false) { + $this->cache[$filename] = $cache; + return; + } + $this->cache[$filename] = ['classesIn' => $this->analyser->classesIn($filename), 'traitsIn' => $this->analyser->traitsIn($filename), 'functionsIn' => $this->analyser->functionsIn($filename), 'linesOfCodeFor' => $this->analyser->linesOfCodeFor($filename), 'ignoredLinesFor' => $this->analyser->ignoredLinesFor($filename), 'executableLinesIn' => $this->analyser->executableLinesIn($filename)]; + $this->write($filename, $this->cache[$filename]); + } + /** + * @return mixed + */ + private function read(string $filename) + { + $cacheFile = $this->cacheFile($filename); + if (!is_file($cacheFile)) { + return \false; + } + return unserialize(file_get_contents($cacheFile), ['allowed_classes' => \false]); + } + /** + * @param mixed $data + */ + private function write(string $filename, $data): void + { + file_put_contents($this->cacheFile($filename), serialize($data)); + } + private function cacheFile(string $filename): string + { + $cacheKey = md5(implode("\x00", [$filename, file_get_contents($filename), self::cacheVersion(), $this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode])); + return $this->directory . \DIRECTORY_SEPARATOR . $cacheKey; + } + private static function cacheVersion(): string + { + if (self::$cacheVersion !== null) { + return self::$cacheVersion; + } + $buffer = []; + foreach ((new FileIteratorFacade())->getFilesAsArray(__DIR__, '.php') as $file) { + $buffer[] = $file; + $buffer[] = file_get_contents($file); + } + self::$cacheVersion = md5(implode("\x00", $buffer)); + return self::$cacheVersion; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Filter; +final class CacheWarmer +{ + public function warmCache(string $cacheDirectory, bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode, Filter $filter): void + { + $analyser = new CachingFileAnalyser($cacheDirectory, new ParsingFileAnalyser($useAnnotationsForIgnoringCode, $ignoreDeprecatedCode), $useAnnotationsForIgnoringCode, $ignoreDeprecatedCode); + foreach ($filter->files() as $file) { + $analyser->process($file); + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use function array_diff_key; +use function assert; +use function count; +use function current; +use function end; +use function explode; +use function max; +use function preg_match; +use function preg_quote; +use function range; +use function reset; +use function sprintf; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class ExecutableLinesFindingVisitor extends NodeVisitorAbstract +{ + /** + * @var int + */ + private $nextBranch = 0; + /** + * @var string + */ + private $source; + /** + * @var array + */ + private $executableLinesGroupedByBranch = []; + /** + * @var array + */ + private $unsets = []; + /** + * @var array + */ + private $commentsToCheckForUnset = []; + public function __construct(string $source) + { + $this->source = $source; + } + public function enterNode(Node $node): void + { + foreach ($node->getComments() as $comment) { + $commentLine = $comment->getStartLine(); + if (!isset($this->executableLinesGroupedByBranch[$commentLine])) { + continue; + } + foreach (explode("\n", $comment->getText()) as $text) { + $this->commentsToCheckForUnset[$commentLine] = $text; + $commentLine++; + } + } + if ($node instanceof Node\Scalar\String_ || $node instanceof Node\Scalar\EncapsedStringPart) { + $startLine = $node->getStartLine() + 1; + $endLine = $node->getEndLine() - 1; + if ($startLine <= $endLine) { + foreach (range($startLine, $endLine) as $line) { + unset($this->executableLinesGroupedByBranch[$line]); + } + } + return; + } + if ($node instanceof Node\Stmt\Interface_) { + foreach (range($node->getStartLine(), $node->getEndLine()) as $line) { + $this->unsets[$line] = \true; + } + return; + } + if ($node instanceof Node\Stmt\Declare_ || $node instanceof Node\Stmt\DeclareDeclare || $node instanceof Node\Stmt\Else_ || $node instanceof Node\Stmt\EnumCase || $node instanceof Node\Stmt\Finally_ || $node instanceof Node\Stmt\GroupUse || $node instanceof Node\Stmt\Label || $node instanceof Node\Stmt\Namespace_ || $node instanceof Node\Stmt\Nop || $node instanceof Node\Stmt\Switch_ || $node instanceof Node\Stmt\TryCatch || $node instanceof Node\Stmt\Use_ || $node instanceof Node\Stmt\UseUse || $node instanceof Node\Expr\ConstFetch || $node instanceof Node\Expr\Match_ || $node instanceof Node\Expr\Variable || $node instanceof Node\Expr\Throw_ || $node instanceof Node\ComplexType || $node instanceof Node\Const_ || $node instanceof Node\Identifier || $node instanceof Node\Name || $node instanceof Node\Param || $node instanceof Node\Scalar) { + return; + } + /* + * nikic/php-parser ^4.18 represents throw statements + * as Stmt\Throw_ objects + */ + if ($node instanceof Node\Stmt\Throw_) { + $this->setLineBranch($node->expr->getEndLine(), $node->expr->getEndLine(), ++$this->nextBranch); + return; + } + /* + * nikic/php-parser ^5 represents throw statements + * as Stmt\Expression objects that contain an + * Expr\Throw_ object + */ + if ($node instanceof Node\Stmt\Expression && $node->expr instanceof Node\Expr\Throw_) { + $this->setLineBranch($node->expr->expr->getEndLine(), $node->expr->expr->getEndLine(), ++$this->nextBranch); + return; + } + if ($node instanceof Node\Stmt\Enum_ || $node instanceof Node\Stmt\Function_ || $node instanceof Node\Stmt\Class_ || $node instanceof Node\Stmt\ClassMethod || $node instanceof Node\Expr\Closure || $node instanceof Node\Stmt\Trait_) { + $isConcreteClassLike = $node instanceof Node\Stmt\Enum_ || $node instanceof Node\Stmt\Class_ || $node instanceof Node\Stmt\Trait_; + if (null !== $node->stmts) { + foreach ($node->stmts as $stmt) { + if ($stmt instanceof Node\Stmt\Nop) { + continue; + } + foreach (range($stmt->getStartLine(), $stmt->getEndLine()) as $line) { + unset($this->executableLinesGroupedByBranch[$line]); + if ($isConcreteClassLike && !$stmt instanceof Node\Stmt\ClassMethod) { + $this->unsets[$line] = \true; + } + } + } + } + if ($isConcreteClassLike) { + return; + } + $hasEmptyBody = [] === $node->stmts || null === $node->stmts || 1 === count($node->stmts) && $node->stmts[0] instanceof Node\Stmt\Nop; + if ($hasEmptyBody) { + if ($node->getEndLine() === $node->getStartLine()) { + return; + } + $this->setLineBranch($node->getEndLine(), $node->getEndLine(), ++$this->nextBranch); + return; + } + return; + } + if ($node instanceof Node\Expr\ArrowFunction) { + $startLine = max($node->getStartLine() + 1, $node->expr->getStartLine()); + $endLine = $node->expr->getEndLine(); + if ($endLine < $startLine) { + return; + } + $this->setLineBranch($startLine, $endLine, ++$this->nextBranch); + return; + } + if ($node instanceof Node\Expr\Ternary) { + if (null !== $node->if && $node->getStartLine() !== $node->if->getEndLine()) { + $this->setLineBranch($node->if->getStartLine(), $node->if->getEndLine(), ++$this->nextBranch); + } + if ($node->getStartLine() !== $node->else->getEndLine()) { + $this->setLineBranch($node->else->getStartLine(), $node->else->getEndLine(), ++$this->nextBranch); + } + return; + } + if ($node instanceof Node\Expr\BinaryOp\Coalesce) { + if ($node->getStartLine() !== $node->getEndLine()) { + $this->setLineBranch($node->getEndLine(), $node->getEndLine(), ++$this->nextBranch); + } + return; + } + if ($node instanceof Node\Stmt\If_ || $node instanceof Node\Stmt\ElseIf_ || $node instanceof Node\Stmt\Case_) { + if (null === $node->cond) { + return; + } + $this->setLineBranch($node->cond->getStartLine(), $node->cond->getStartLine(), ++$this->nextBranch); + return; + } + if ($node instanceof Node\Stmt\For_) { + $startLine = null; + $endLine = null; + if ([] !== $node->init) { + $startLine = $node->init[0]->getStartLine(); + end($node->init); + $endLine = current($node->init)->getEndLine(); + reset($node->init); + } + if ([] !== $node->cond) { + if (null === $startLine) { + $startLine = $node->cond[0]->getStartLine(); + } + end($node->cond); + $endLine = current($node->cond)->getEndLine(); + reset($node->cond); + } + if ([] !== $node->loop) { + if (null === $startLine) { + $startLine = $node->loop[0]->getStartLine(); + } + end($node->loop); + $endLine = current($node->loop)->getEndLine(); + reset($node->loop); + } + if (null === $startLine || null === $endLine) { + return; + } + $this->setLineBranch($startLine, $endLine, ++$this->nextBranch); + return; + } + if ($node instanceof Node\Stmt\Foreach_) { + $this->setLineBranch($node->expr->getStartLine(), $node->valueVar->getEndLine(), ++$this->nextBranch); + return; + } + if ($node instanceof Node\Stmt\While_ || $node instanceof Node\Stmt\Do_) { + $this->setLineBranch($node->cond->getStartLine(), $node->cond->getEndLine(), ++$this->nextBranch); + return; + } + if ($node instanceof Node\Stmt\Catch_) { + assert([] !== $node->types); + $startLine = $node->types[0]->getStartLine(); + end($node->types); + $endLine = current($node->types)->getEndLine(); + $this->setLineBranch($startLine, $endLine, ++$this->nextBranch); + return; + } + if ($node instanceof Node\Expr\CallLike) { + if (isset($this->executableLinesGroupedByBranch[$node->getStartLine()])) { + $branch = $this->executableLinesGroupedByBranch[$node->getStartLine()]; + } else { + $branch = ++$this->nextBranch; + } + $this->setLineBranch($node->getStartLine(), $node->getEndLine(), $branch); + return; + } + if (isset($this->executableLinesGroupedByBranch[$node->getStartLine()])) { + return; + } + $this->setLineBranch($node->getStartLine(), $node->getEndLine(), ++$this->nextBranch); + } + public function afterTraverse(array $nodes): void + { + $lines = explode("\n", $this->source); + foreach ($lines as $lineNumber => $line) { + $lineNumber++; + if (1 === preg_match('/^\s*$/', $line) || isset($this->commentsToCheckForUnset[$lineNumber]) && 1 === preg_match(sprintf('/^\s*%s\s*$/', preg_quote($this->commentsToCheckForUnset[$lineNumber], '/')), $line)) { + unset($this->executableLinesGroupedByBranch[$lineNumber]); + } + } + $this->executableLinesGroupedByBranch = array_diff_key($this->executableLinesGroupedByBranch, $this->unsets); + } + public function executableLinesGroupedByBranch(): array + { + return $this->executableLinesGroupedByBranch; + } + private function setLineBranch(int $start, int $end, int $branch): void + { + foreach (range($start, $end) as $line) { + $this->executableLinesGroupedByBranch[$line] = $branch; + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use function array_merge; +use function assert; +use function range; +use function strpos; +use PHPUnitPHAR\PhpParser\Node; +use PHPUnitPHAR\PhpParser\Node\Attribute; +use PHPUnitPHAR\PhpParser\Node\Stmt\Class_; +use PHPUnitPHAR\PhpParser\Node\Stmt\ClassMethod; +use PHPUnitPHAR\PhpParser\Node\Stmt\Function_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Interface_; +use PHPUnitPHAR\PhpParser\Node\Stmt\Trait_; +use PHPUnitPHAR\PhpParser\NodeVisitorAbstract; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class IgnoredLinesFindingVisitor extends NodeVisitorAbstract +{ + /** + * @psalm-var list + */ + private $ignoredLines = []; + /** + * @var bool + */ + private $useAnnotationsForIgnoringCode; + /** + * @var bool + */ + private $ignoreDeprecated; + public function __construct(bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecated) + { + $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode; + $this->ignoreDeprecated = $ignoreDeprecated; + } + public function enterNode(Node $node): void + { + if (!$node instanceof Class_ && !$node instanceof Trait_ && !$node instanceof Interface_ && !$node instanceof ClassMethod && !$node instanceof Function_ && !$node instanceof Attribute) { + return; + } + if ($node instanceof Class_ && $node->isAnonymous()) { + return; + } + if ($node instanceof Class_ || $node instanceof Trait_ || $node instanceof Interface_ || $node instanceof Attribute) { + $this->ignoredLines[] = $node->getStartLine(); + assert($node->name !== null); + // Workaround for https://github.com/nikic/PHP-Parser/issues/886 + $this->ignoredLines[] = $node->name->getStartLine(); + } + if (!$this->useAnnotationsForIgnoringCode) { + return; + } + if ($node instanceof Interface_) { + return; + } + $this->processDocComment($node); + } + /** + * @psalm-return list + */ + public function ignoredLines(): array + { + return $this->ignoredLines; + } + private function processDocComment(Node $node): void + { + $docComment = $node->getDocComment(); + if ($docComment === null) { + return; + } + if (strpos($docComment->getText(), '@codeCoverageIgnore') !== \false) { + $this->ignoredLines = array_merge($this->ignoredLines, range($node->getStartLine(), $node->getEndLine())); + } + if ($this->ignoreDeprecated && strpos($docComment->getText(), '@deprecated') !== \false) { + $this->ignoredLines = array_merge($this->ignoredLines, range($node->getStartLine(), $node->getEndLine())); + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\StaticAnalysis; + +use function array_merge; +use function array_unique; +use function assert; +use function file_get_contents; +use function is_array; +use function max; +use function range; +use function sort; +use function sprintf; +use function substr_count; +use function token_get_all; +use function trim; +use PHPUnitPHAR\PhpParser\Error; +use PHPUnitPHAR\PhpParser\NodeTraverser; +use PHPUnitPHAR\PhpParser\NodeVisitor\NameResolver; +use PHPUnitPHAR\PhpParser\NodeVisitor\ParentConnectingVisitor; +use PHPUnitPHAR\PhpParser\ParserFactory; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\ParserException; +use PHPUnitPHAR\SebastianBergmann\LinesOfCode\LineCountingVisitor; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class ParsingFileAnalyser implements FileAnalyser +{ + /** + * @var array + */ + private $classes = []; + /** + * @var array + */ + private $traits = []; + /** + * @var array + */ + private $functions = []; + /** + * @var array + */ + private $linesOfCode = []; + /** + * @var array + */ + private $ignoredLines = []; + /** + * @var array + */ + private $executableLines = []; + /** + * @var bool + */ + private $useAnnotationsForIgnoringCode; + /** + * @var bool + */ + private $ignoreDeprecatedCode; + public function __construct(bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode) + { + $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode; + $this->ignoreDeprecatedCode = $ignoreDeprecatedCode; + } + public function classesIn(string $filename): array + { + $this->analyse($filename); + return $this->classes[$filename]; + } + public function traitsIn(string $filename): array + { + $this->analyse($filename); + return $this->traits[$filename]; + } + public function functionsIn(string $filename): array + { + $this->analyse($filename); + return $this->functions[$filename]; + } + /** + * @psalm-return array{linesOfCode: int, commentLinesOfCode: int, nonCommentLinesOfCode: int} + */ + public function linesOfCodeFor(string $filename): array + { + $this->analyse($filename); + return $this->linesOfCode[$filename]; + } + public function executableLinesIn(string $filename): array + { + $this->analyse($filename); + return $this->executableLines[$filename]; + } + public function ignoredLinesFor(string $filename): array + { + $this->analyse($filename); + return $this->ignoredLines[$filename]; + } + /** + * @throws ParserException + */ + private function analyse(string $filename): void + { + if (isset($this->classes[$filename])) { + return; + } + $source = file_get_contents($filename); + $linesOfCode = max(substr_count($source, "\n") + 1, substr_count($source, "\r") + 1); + if ($linesOfCode === 0 && !empty($source)) { + $linesOfCode = 1; + } + $parser = (new ParserFactory())->createForHostVersion(); + try { + $nodes = $parser->parse($source); + assert($nodes !== null); + $traverser = new NodeTraverser(); + $codeUnitFindingVisitor = new CodeUnitFindingVisitor(); + $lineCountingVisitor = new LineCountingVisitor($linesOfCode); + $ignoredLinesFindingVisitor = new IgnoredLinesFindingVisitor($this->useAnnotationsForIgnoringCode, $this->ignoreDeprecatedCode); + $executableLinesFindingVisitor = new ExecutableLinesFindingVisitor($source); + $traverser->addVisitor(new NameResolver()); + $traverser->addVisitor(new ParentConnectingVisitor()); + $traverser->addVisitor($codeUnitFindingVisitor); + $traverser->addVisitor($lineCountingVisitor); + $traverser->addVisitor($ignoredLinesFindingVisitor); + $traverser->addVisitor($executableLinesFindingVisitor); + /* @noinspection UnusedFunctionResultInspection */ + $traverser->traverse($nodes); + // @codeCoverageIgnoreStart + } catch (Error $error) { + throw new ParserException(sprintf('Cannot parse %s: %s', $filename, $error->getMessage()), $error->getCode(), $error); + } + // @codeCoverageIgnoreEnd + $this->classes[$filename] = $codeUnitFindingVisitor->classes(); + $this->traits[$filename] = $codeUnitFindingVisitor->traits(); + $this->functions[$filename] = $codeUnitFindingVisitor->functions(); + $this->executableLines[$filename] = $executableLinesFindingVisitor->executableLinesGroupedByBranch(); + $this->ignoredLines[$filename] = []; + $this->findLinesIgnoredByLineBasedAnnotations($filename, $source, $this->useAnnotationsForIgnoringCode); + $this->ignoredLines[$filename] = array_unique(array_merge($this->ignoredLines[$filename], $ignoredLinesFindingVisitor->ignoredLines())); + sort($this->ignoredLines[$filename]); + $result = $lineCountingVisitor->result(); + $this->linesOfCode[$filename] = ['linesOfCode' => $result->linesOfCode(), 'commentLinesOfCode' => $result->commentLinesOfCode(), 'nonCommentLinesOfCode' => $result->nonCommentLinesOfCode()]; + } + private function findLinesIgnoredByLineBasedAnnotations(string $filename, string $source, bool $useAnnotationsForIgnoringCode): void + { + if (!$useAnnotationsForIgnoringCode) { + return; + } + $start = \false; + foreach (token_get_all($source) as $token) { + if (!is_array($token) || !(\T_COMMENT === $token[0] || \T_DOC_COMMENT === $token[0])) { + continue; + } + $comment = trim($token[1]); + if ($comment === '// @codeCoverageIgnore' || $comment === '//@codeCoverageIgnore') { + $this->ignoredLines[$filename][] = $token[2]; + continue; + } + if ($comment === '// @codeCoverageIgnoreStart' || $comment === '//@codeCoverageIgnoreStart') { + $start = $token[2]; + continue; + } + if ($comment === '// @codeCoverageIgnoreEnd' || $comment === '//@codeCoverageIgnoreEnd') { + if (\false === $start) { + $start = $token[2]; + } + $this->ignoredLines[$filename] = array_merge($this->ignoredLines[$filename], range($start, $token[2])); + } + } + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report; + +use function basename; +use function count; +use function dirname; +use function file_put_contents; +use function preg_match; +use function range; +use function str_replace; +use function strpos; +use function time; +use DOMImplementation; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\CodeCoverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\File; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util\Filesystem; +final class Cobertura +{ + /** + * @throws WriteOperationFailedException + */ + public function process(CodeCoverage $coverage, ?string $target = null): string + { + $time = (string) time(); + $report = $coverage->getReport(); + $implementation = new DOMImplementation(); + $documentType = $implementation->createDocumentType('coverage', '', 'http://cobertura.sourceforge.net/xml/coverage-04.dtd'); + $document = $implementation->createDocument('', '', $documentType); + $document->xmlVersion = '1.0'; + $document->encoding = 'UTF-8'; + $document->formatOutput = \true; + $coverageElement = $document->createElement('coverage'); + $linesValid = $report->numberOfExecutableLines(); + $linesCovered = $report->numberOfExecutedLines(); + $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; + $coverageElement->setAttribute('line-rate', (string) $lineRate); + $branchesValid = $report->numberOfExecutableBranches(); + $branchesCovered = $report->numberOfExecutedBranches(); + $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; + $coverageElement->setAttribute('branch-rate', (string) $branchRate); + $coverageElement->setAttribute('lines-covered', (string) $report->numberOfExecutedLines()); + $coverageElement->setAttribute('lines-valid', (string) $report->numberOfExecutableLines()); + $coverageElement->setAttribute('branches-covered', (string) $report->numberOfExecutedBranches()); + $coverageElement->setAttribute('branches-valid', (string) $report->numberOfExecutableBranches()); + $coverageElement->setAttribute('complexity', ''); + $coverageElement->setAttribute('version', '0.4'); + $coverageElement->setAttribute('timestamp', $time); + $document->appendChild($coverageElement); + $sourcesElement = $document->createElement('sources'); + $coverageElement->appendChild($sourcesElement); + $sourceElement = $document->createElement('source', $report->pathAsString()); + $sourcesElement->appendChild($sourceElement); + $packagesElement = $document->createElement('packages'); + $coverageElement->appendChild($packagesElement); + $complexity = 0; + foreach ($report as $item) { + if (!$item instanceof File) { + continue; + } + $packageElement = $document->createElement('package'); + $packageComplexity = 0; + $packageElement->setAttribute('name', str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); + $linesValid = $item->numberOfExecutableLines(); + $linesCovered = $item->numberOfExecutedLines(); + $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; + $packageElement->setAttribute('line-rate', (string) $lineRate); + $branchesValid = $item->numberOfExecutableBranches(); + $branchesCovered = $item->numberOfExecutedBranches(); + $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; + $packageElement->setAttribute('branch-rate', (string) $branchRate); + $packageElement->setAttribute('complexity', ''); + $packagesElement->appendChild($packageElement); + $classesElement = $document->createElement('classes'); + $packageElement->appendChild($classesElement); + $classes = $item->classesAndTraits(); + $coverageData = $item->lineCoverageData(); + foreach ($classes as $className => $class) { + $complexity += $class['ccn']; + $packageComplexity += $class['ccn']; + if (!empty($class['package']['namespace'])) { + $className = $class['package']['namespace'] . '\\' . $className; + } + $linesValid = $class['executableLines']; + $linesCovered = $class['executedLines']; + $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; + $branchesValid = $class['executableBranches']; + $branchesCovered = $class['executedBranches']; + $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; + $classElement = $document->createElement('class'); + $classElement->setAttribute('name', $className); + $classElement->setAttribute('filename', str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); + $classElement->setAttribute('line-rate', (string) $lineRate); + $classElement->setAttribute('branch-rate', (string) $branchRate); + $classElement->setAttribute('complexity', (string) $class['ccn']); + $classesElement->appendChild($classElement); + $methodsElement = $document->createElement('methods'); + $classElement->appendChild($methodsElement); + $classLinesElement = $document->createElement('lines'); + $classElement->appendChild($classLinesElement); + foreach ($class['methods'] as $methodName => $method) { + if ($method['executableLines'] === 0) { + continue; + } + preg_match("/\\((.*?)\\)/", $method['signature'], $signature); + $linesValid = $method['executableLines']; + $linesCovered = $method['executedLines']; + $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; + $branchesValid = $method['executableBranches']; + $branchesCovered = $method['executedBranches']; + $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; + $methodElement = $document->createElement('method'); + $methodElement->setAttribute('name', $methodName); + $methodElement->setAttribute('signature', $signature[1]); + $methodElement->setAttribute('line-rate', (string) $lineRate); + $methodElement->setAttribute('branch-rate', (string) $branchRate); + $methodElement->setAttribute('complexity', (string) $method['ccn']); + $methodLinesElement = $document->createElement('lines'); + $methodElement->appendChild($methodLinesElement); + foreach (range($method['startLine'], $method['endLine']) as $line) { + if (!isset($coverageData[$line]) || $coverageData[$line] === null) { + continue; + } + $methodLineElement = $document->createElement('line'); + $methodLineElement->setAttribute('number', (string) $line); + $methodLineElement->setAttribute('hits', (string) count($coverageData[$line])); + $methodLinesElement->appendChild($methodLineElement); + $classLineElement = $methodLineElement->cloneNode(); + $classLinesElement->appendChild($classLineElement); + } + $methodsElement->appendChild($methodElement); + } + } + if ($item->numberOfFunctions() === 0) { + $packageElement->setAttribute('complexity', (string) $packageComplexity); + continue; + } + $functionsComplexity = 0; + $functionsLinesValid = 0; + $functionsLinesCovered = 0; + $functionsBranchesValid = 0; + $functionsBranchesCovered = 0; + $classElement = $document->createElement('class'); + $classElement->setAttribute('name', basename($item->pathAsString())); + $classElement->setAttribute('filename', str_replace($report->pathAsString() . \DIRECTORY_SEPARATOR, '', $item->pathAsString())); + $methodsElement = $document->createElement('methods'); + $classElement->appendChild($methodsElement); + $classLinesElement = $document->createElement('lines'); + $classElement->appendChild($classLinesElement); + $functions = $item->functions(); + foreach ($functions as $functionName => $function) { + if ($function['executableLines'] === 0) { + continue; + } + $complexity += $function['ccn']; + $packageComplexity += $function['ccn']; + $functionsComplexity += $function['ccn']; + $linesValid = $function['executableLines']; + $linesCovered = $function['executedLines']; + $lineRate = $linesValid === 0 ? 0 : $linesCovered / $linesValid; + $functionsLinesValid += $linesValid; + $functionsLinesCovered += $linesCovered; + $branchesValid = $function['executableBranches']; + $branchesCovered = $function['executedBranches']; + $branchRate = $branchesValid === 0 ? 0 : $branchesCovered / $branchesValid; + $functionsBranchesValid += $branchesValid; + $functionsBranchesCovered += $branchesValid; + $methodElement = $document->createElement('method'); + $methodElement->setAttribute('name', $functionName); + $methodElement->setAttribute('signature', $function['signature']); + $methodElement->setAttribute('line-rate', (string) $lineRate); + $methodElement->setAttribute('branch-rate', (string) $branchRate); + $methodElement->setAttribute('complexity', (string) $function['ccn']); + $methodLinesElement = $document->createElement('lines'); + $methodElement->appendChild($methodLinesElement); + foreach (range($function['startLine'], $function['endLine']) as $line) { + if (!isset($coverageData[$line]) || $coverageData[$line] === null) { + continue; + } + $methodLineElement = $document->createElement('line'); + $methodLineElement->setAttribute('number', (string) $line); + $methodLineElement->setAttribute('hits', (string) count($coverageData[$line])); + $methodLinesElement->appendChild($methodLineElement); + $classLineElement = $methodLineElement->cloneNode(); + $classLinesElement->appendChild($classLineElement); + } + $methodsElement->appendChild($methodElement); + } + $packageElement->setAttribute('complexity', (string) $packageComplexity); + if ($functionsLinesValid === 0) { + continue; + } + $lineRate = $functionsLinesCovered / $functionsLinesValid; + $branchRate = $functionsBranchesValid === 0 ? 0 : $functionsBranchesCovered / $functionsBranchesValid; + $classElement->setAttribute('line-rate', (string) $lineRate); + $classElement->setAttribute('branch-rate', (string) $branchRate); + $classElement->setAttribute('complexity', (string) $functionsComplexity); + $classesElement->appendChild($classElement); + } + $coverageElement->setAttribute('complexity', (string) $complexity); + $buffer = $document->saveXML(); + if ($target !== null) { + if (!strpos($target, '://') !== \false) { + Filesystem::createDirectory(dirname($target)); + } + if (@file_put_contents($target, $buffer) === \false) { + throw new WriteOperationFailedException($target); + } + } + return $buffer; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report; + +use function count; +use function dirname; +use function file_put_contents; +use function is_string; +use function ksort; +use function max; +use function range; +use function strpos; +use function time; +use DOMDocument; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\CodeCoverage; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Driver\WriteOperationFailedException; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\File; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util\Filesystem; +final class Clover +{ + /** + * @throws WriteOperationFailedException + */ + public function process(CodeCoverage $coverage, ?string $target = null, ?string $name = null): string + { + $time = (string) time(); + $xmlDocument = new DOMDocument('1.0', 'UTF-8'); + $xmlDocument->formatOutput = \true; + $xmlCoverage = $xmlDocument->createElement('coverage'); + $xmlCoverage->setAttribute('generated', $time); + $xmlDocument->appendChild($xmlCoverage); + $xmlProject = $xmlDocument->createElement('project'); + $xmlProject->setAttribute('timestamp', $time); + if (is_string($name)) { + $xmlProject->setAttribute('name', $name); + } + $xmlCoverage->appendChild($xmlProject); + $packages = []; + $report = $coverage->getReport(); + foreach ($report as $item) { + if (!$item instanceof File) { + continue; + } + /* @var File $item */ + $xmlFile = $xmlDocument->createElement('file'); + $xmlFile->setAttribute('name', $item->pathAsString()); + $classes = $item->classesAndTraits(); + $coverageData = $item->lineCoverageData(); + $lines = []; + $namespace = 'global'; + foreach ($classes as $className => $class) { + $classStatements = 0; + $coveredClassStatements = 0; + $coveredMethods = 0; + $classMethods = 0; + foreach ($class['methods'] as $methodName => $method) { + if ($method['executableLines'] == 0) { + continue; + } + $classMethods++; + $classStatements += $method['executableLines']; + $coveredClassStatements += $method['executedLines']; + if ($method['coverage'] == 100) { + $coveredMethods++; + } + $methodCount = 0; + foreach (range($method['startLine'], $method['endLine']) as $line) { + if (isset($coverageData[$line]) && $coverageData[$line] !== null) { + $methodCount = max($methodCount, count($coverageData[$line])); + } + } + $lines[$method['startLine']] = ['ccn' => $method['ccn'], 'count' => $methodCount, 'crap' => $method['crap'], 'type' => 'method', 'visibility' => $method['visibility'], 'name' => $methodName]; + } + if (!empty($class['package']['namespace'])) { + $namespace = $class['package']['namespace']; + } + $xmlClass = $xmlDocument->createElement('class'); + $xmlClass->setAttribute('name', $className); + $xmlClass->setAttribute('namespace', $namespace); + if (!empty($class['package']['fullPackage'])) { + $xmlClass->setAttribute('fullPackage', $class['package']['fullPackage']); + } + if (!empty($class['package']['category'])) { + $xmlClass->setAttribute('category', $class['package']['category']); + } + if (!empty($class['package']['package'])) { + $xmlClass->setAttribute('package', $class['package']['package']); + } + if (!empty($class['package']['subpackage'])) { + $xmlClass->setAttribute('subpackage', $class['package']['subpackage']); + } + $xmlFile->appendChild($xmlClass); + $xmlMetrics = $xmlDocument->createElement('metrics'); + $xmlMetrics->setAttribute('complexity', (string) $class['ccn']); + $xmlMetrics->setAttribute('methods', (string) $classMethods); + $xmlMetrics->setAttribute('coveredmethods', (string) $coveredMethods); + $xmlMetrics->setAttribute('conditionals', (string) $class['executableBranches']); + $xmlMetrics->setAttribute('coveredconditionals', (string) $class['executedBranches']); + $xmlMetrics->setAttribute('statements', (string) $classStatements); + $xmlMetrics->setAttribute('coveredstatements', (string) $coveredClassStatements); + $xmlMetrics->setAttribute('elements', (string) ($classMethods + $classStatements + $class['executableBranches'])); + $xmlMetrics->setAttribute('coveredelements', (string) ($coveredMethods + $coveredClassStatements + $class['executedBranches'])); + $xmlClass->appendChild($xmlMetrics); + } + foreach ($coverageData as $line => $data) { + if ($data === null || isset($lines[$line])) { + continue; + } + $lines[$line] = ['count' => count($data), 'type' => 'stmt']; + } + ksort($lines); + foreach ($lines as $line => $data) { + $xmlLine = $xmlDocument->createElement('line'); + $xmlLine->setAttribute('num', (string) $line); + $xmlLine->setAttribute('type', $data['type']); + if (isset($data['name'])) { + $xmlLine->setAttribute('name', $data['name']); + } + if (isset($data['visibility'])) { + $xmlLine->setAttribute('visibility', $data['visibility']); + } + if (isset($data['ccn'])) { + $xmlLine->setAttribute('complexity', (string) $data['ccn']); + } + if (isset($data['crap'])) { + $xmlLine->setAttribute('crap', (string) $data['crap']); + } + $xmlLine->setAttribute('count', (string) $data['count']); + $xmlFile->appendChild($xmlLine); + } + $linesOfCode = $item->linesOfCode(); + $xmlMetrics = $xmlDocument->createElement('metrics'); + $xmlMetrics->setAttribute('loc', (string) $linesOfCode['linesOfCode']); + $xmlMetrics->setAttribute('ncloc', (string) $linesOfCode['nonCommentLinesOfCode']); + $xmlMetrics->setAttribute('classes', (string) $item->numberOfClassesAndTraits()); + $xmlMetrics->setAttribute('methods', (string) $item->numberOfMethods()); + $xmlMetrics->setAttribute('coveredmethods', (string) $item->numberOfTestedMethods()); + $xmlMetrics->setAttribute('conditionals', (string) $item->numberOfExecutableBranches()); + $xmlMetrics->setAttribute('coveredconditionals', (string) $item->numberOfExecutedBranches()); + $xmlMetrics->setAttribute('statements', (string) $item->numberOfExecutableLines()); + $xmlMetrics->setAttribute('coveredstatements', (string) $item->numberOfExecutedLines()); + $xmlMetrics->setAttribute('elements', (string) ($item->numberOfMethods() + $item->numberOfExecutableLines() + $item->numberOfExecutableBranches())); + $xmlMetrics->setAttribute('coveredelements', (string) ($item->numberOfTestedMethods() + $item->numberOfExecutedLines() + $item->numberOfExecutedBranches())); + $xmlFile->appendChild($xmlMetrics); + if ($namespace === 'global') { + $xmlProject->appendChild($xmlFile); + } else { + if (!isset($packages[$namespace])) { + $packages[$namespace] = $xmlDocument->createElement('package'); + $packages[$namespace]->setAttribute('name', $namespace); + $xmlProject->appendChild($packages[$namespace]); + } + $packages[$namespace]->appendChild($xmlFile); + } + } + $linesOfCode = $report->linesOfCode(); + $xmlMetrics = $xmlDocument->createElement('metrics'); + $xmlMetrics->setAttribute('files', (string) count($report)); + $xmlMetrics->setAttribute('loc', (string) $linesOfCode['linesOfCode']); + $xmlMetrics->setAttribute('ncloc', (string) $linesOfCode['nonCommentLinesOfCode']); + $xmlMetrics->setAttribute('classes', (string) $report->numberOfClassesAndTraits()); + $xmlMetrics->setAttribute('methods', (string) $report->numberOfMethods()); + $xmlMetrics->setAttribute('coveredmethods', (string) $report->numberOfTestedMethods()); + $xmlMetrics->setAttribute('conditionals', (string) $report->numberOfExecutableBranches()); + $xmlMetrics->setAttribute('coveredconditionals', (string) $report->numberOfExecutedBranches()); + $xmlMetrics->setAttribute('statements', (string) $report->numberOfExecutableLines()); + $xmlMetrics->setAttribute('coveredstatements', (string) $report->numberOfExecutedLines()); + $xmlMetrics->setAttribute('elements', (string) ($report->numberOfMethods() + $report->numberOfExecutableLines() + $report->numberOfExecutableBranches())); + $xmlMetrics->setAttribute('coveredelements', (string) ($report->numberOfTestedMethods() + $report->numberOfExecutedLines() + $report->numberOfExecutedBranches())); + $xmlProject->appendChild($xmlMetrics); + $buffer = $xmlDocument->saveXML(); + if ($target !== null) { + if (!strpos($target, '://') !== \false) { + Filesystem::createDirectory(dirname($target)); + } + if (@file_put_contents($target, $buffer) === \false) { + throw new WriteOperationFailedException($target); + } + } + return $buffer; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Html; + +use function array_values; +use function arsort; +use function asort; +use function count; +use function explode; +use function floor; +use function json_encode; +use function sprintf; +use function str_replace; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\AbstractNode; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\Directory as DirectoryNode; +use PHPUnitPHAR\SebastianBergmann\Template\Template; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class Dashboard extends Renderer +{ + public function render(DirectoryNode $node, string $file): void + { + $classes = $node->classesAndTraits(); + $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'dashboard_branch.html' : 'dashboard.html'); + $template = new Template($templateName, '{{', '}}'); + $this->setCommonTemplateVariables($template, $node); + $baseLink = $node->id() . '/'; + $complexity = $this->complexity($classes, $baseLink); + $coverageDistribution = $this->coverageDistribution($classes); + $insufficientCoverage = $this->insufficientCoverage($classes, $baseLink); + $projectRisks = $this->projectRisks($classes, $baseLink); + $template->setVar(['insufficient_coverage_classes' => $insufficientCoverage['class'], 'insufficient_coverage_methods' => $insufficientCoverage['method'], 'project_risks_classes' => $projectRisks['class'], 'project_risks_methods' => $projectRisks['method'], 'complexity_class' => $complexity['class'], 'complexity_method' => $complexity['method'], 'class_coverage_distribution' => $coverageDistribution['class'], 'method_coverage_distribution' => $coverageDistribution['method']]); + $template->renderTo($file); + } + protected function activeBreadcrumb(AbstractNode $node): string + { + return sprintf(' ' . "\n" . ' ' . "\n", $node->name()); + } + /** + * Returns the data for the Class/Method Complexity charts. + */ + private function complexity(array $classes, string $baseLink): array + { + $result = ['class' => [], 'method' => []]; + foreach ($classes as $className => $class) { + foreach ($class['methods'] as $methodName => $method) { + if ($className !== '*') { + $methodName = $className . '::' . $methodName; + } + $result['method'][] = [$method['coverage'], $method['ccn'], sprintf('%s', str_replace($baseLink, '', $method['link']), $methodName)]; + } + $result['class'][] = [$class['coverage'], $class['ccn'], sprintf('%s', str_replace($baseLink, '', $class['link']), $className)]; + } + return ['class' => json_encode($result['class']), 'method' => json_encode($result['method'])]; + } + /** + * Returns the data for the Class / Method Coverage Distribution chart. + */ + private function coverageDistribution(array $classes): array + { + $result = ['class' => ['0%' => 0, '0-10%' => 0, '10-20%' => 0, '20-30%' => 0, '30-40%' => 0, '40-50%' => 0, '50-60%' => 0, '60-70%' => 0, '70-80%' => 0, '80-90%' => 0, '90-100%' => 0, '100%' => 0], 'method' => ['0%' => 0, '0-10%' => 0, '10-20%' => 0, '20-30%' => 0, '30-40%' => 0, '40-50%' => 0, '50-60%' => 0, '60-70%' => 0, '70-80%' => 0, '80-90%' => 0, '90-100%' => 0, '100%' => 0]]; + foreach ($classes as $class) { + foreach ($class['methods'] as $methodName => $method) { + if ($method['coverage'] === 0) { + $result['method']['0%']++; + } elseif ($method['coverage'] === 100) { + $result['method']['100%']++; + } else { + $key = floor($method['coverage'] / 10) * 10; + $key = $key . '-' . ($key + 10) . '%'; + $result['method'][$key]++; + } + } + if ($class['coverage'] === 0) { + $result['class']['0%']++; + } elseif ($class['coverage'] === 100) { + $result['class']['100%']++; + } else { + $key = floor($class['coverage'] / 10) * 10; + $key = $key . '-' . ($key + 10) . '%'; + $result['class'][$key]++; + } + } + return ['class' => json_encode(array_values($result['class'])), 'method' => json_encode(array_values($result['method']))]; + } + /** + * Returns the classes / methods with insufficient coverage. + */ + private function insufficientCoverage(array $classes, string $baseLink): array + { + $leastTestedClasses = []; + $leastTestedMethods = []; + $result = ['class' => '', 'method' => '']; + foreach ($classes as $className => $class) { + foreach ($class['methods'] as $methodName => $method) { + if ($method['coverage'] < $this->highLowerBound) { + $key = $methodName; + if ($className !== '*') { + $key = $className . '::' . $methodName; + } + $leastTestedMethods[$key] = $method['coverage']; + } + } + if ($class['coverage'] < $this->highLowerBound) { + $leastTestedClasses[$className] = $class['coverage']; + } + } + asort($leastTestedClasses); + asort($leastTestedMethods); + foreach ($leastTestedClasses as $className => $coverage) { + $result['class'] .= sprintf(' %s%d%%' . "\n", str_replace($baseLink, '', $classes[$className]['link']), $className, $coverage); + } + foreach ($leastTestedMethods as $methodName => $coverage) { + [$class, $method] = explode('::', $methodName); + $result['method'] .= sprintf(' %s%d%%' . "\n", str_replace($baseLink, '', $classes[$class]['methods'][$method]['link']), $methodName, $method, $coverage); + } + return $result; + } + /** + * Returns the project risks according to the CRAP index. + */ + private function projectRisks(array $classes, string $baseLink): array + { + $classRisks = []; + $methodRisks = []; + $result = ['class' => '', 'method' => '']; + foreach ($classes as $className => $class) { + foreach ($class['methods'] as $methodName => $method) { + if ($method['coverage'] < $this->highLowerBound && $method['ccn'] > 1) { + $key = $methodName; + if ($className !== '*') { + $key = $className . '::' . $methodName; + } + $methodRisks[$key] = $method['crap']; + } + } + if ($class['coverage'] < $this->highLowerBound && $class['ccn'] > count($class['methods'])) { + $classRisks[$className] = $class['crap']; + } + } + arsort($classRisks); + arsort($methodRisks); + foreach ($classRisks as $className => $crap) { + $result['class'] .= sprintf(' %s%d' . "\n", str_replace($baseLink, '', $classes[$className]['link']), $className, $crap); + } + foreach ($methodRisks as $methodName => $crap) { + [$class, $method] = explode('::', $methodName); + $result['method'] .= sprintf(' %s%d' . "\n", str_replace($baseLink, '', $classes[$class]['methods'][$method]['link']), $methodName, $method, $crap); + } + return $result; + } +} + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace PHPUnitPHAR\SebastianBergmann\CodeCoverage\Report\Html; + +use const ENT_COMPAT; +use const ENT_HTML401; +use const ENT_SUBSTITUTE; +use const T_ABSTRACT; +use const T_ARRAY; +use const T_AS; +use const T_BREAK; +use const T_CALLABLE; +use const T_CASE; +use const T_CATCH; +use const T_CLASS; +use const T_CLONE; +use const T_COMMENT; +use const T_CONST; +use const T_CONTINUE; +use const T_DECLARE; +use const T_DEFAULT; +use const T_DO; +use const T_DOC_COMMENT; +use const T_ECHO; +use const T_ELSE; +use const T_ELSEIF; +use const T_EMPTY; +use const T_ENDDECLARE; +use const T_ENDFOR; +use const T_ENDFOREACH; +use const T_ENDIF; +use const T_ENDSWITCH; +use const T_ENDWHILE; +use const T_EVAL; +use const T_EXIT; +use const T_EXTENDS; +use const T_FINAL; +use const T_FINALLY; +use const T_FOR; +use const T_FOREACH; +use const T_FUNCTION; +use const T_GLOBAL; +use const T_GOTO; +use const T_HALT_COMPILER; +use const T_IF; +use const T_IMPLEMENTS; +use const T_INCLUDE; +use const T_INCLUDE_ONCE; +use const T_INLINE_HTML; +use const T_INSTANCEOF; +use const T_INSTEADOF; +use const T_INTERFACE; +use const T_ISSET; +use const T_LIST; +use const T_NAMESPACE; +use const T_NEW; +use const T_PRINT; +use const T_PRIVATE; +use const T_PROTECTED; +use const T_PUBLIC; +use const T_REQUIRE; +use const T_REQUIRE_ONCE; +use const T_RETURN; +use const T_STATIC; +use const T_SWITCH; +use const T_THROW; +use const T_TRAIT; +use const T_TRY; +use const T_UNSET; +use const T_USE; +use const T_VAR; +use const T_WHILE; +use const T_YIELD; +use const T_YIELD_FROM; +use function array_key_exists; +use function array_keys; +use function array_merge; +use function array_pop; +use function array_unique; +use function constant; +use function count; +use function defined; +use function explode; +use function file_get_contents; +use function htmlspecialchars; +use function is_string; +use function ksort; +use function range; +use function sort; +use function sprintf; +use function str_replace; +use function substr; +use function token_get_all; +use function trim; +use PHPUnit\Runner\BaseTestRunner; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Node\File as FileNode; +use PHPUnitPHAR\SebastianBergmann\CodeCoverage\Util\Percentage; +use PHPUnitPHAR\SebastianBergmann\Template\Template; +/** + * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage + */ +final class File extends Renderer +{ + /** + * @psalm-var array + */ + private static $keywordTokens = []; + /** + * @var array + */ + private static $formattedSourceCache = []; + /** + * @var int + */ + private $htmlSpecialCharsFlags = ENT_COMPAT | ENT_HTML401 | ENT_SUBSTITUTE; + public function render(FileNode $node, string $file): void + { + $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'file_branch.html' : 'file.html'); + $template = new Template($templateName, '{{', '}}'); + $this->setCommonTemplateVariables($template, $node); + $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithLineCoverage($node), 'legend' => '

      Covered by small (and larger) testsCovered by medium (and large) testsCovered by large tests (and tests of unknown size)Not coveredNot coverable

      ', 'structure' => '']); + $template->renderTo($file . '.html'); + if ($this->hasBranchCoverage) { + $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithBranchCoverage($node), 'legend' => '

      Fully coveredPartially coveredNot covered

      ', 'structure' => $this->renderBranchStructure($node)]); + $template->renderTo($file . '_branch.html'); + $template->setVar(['items' => $this->renderItems($node), 'lines' => $this->renderSourceWithPathCoverage($node), 'legend' => '

      Fully coveredPartially coveredNot covered

      ', 'structure' => $this->renderPathStructure($node)]); + $template->renderTo($file . '_path.html'); + } + } + private function renderItems(FileNode $node): string + { + $templateName = $this->templatePath . ($this->hasBranchCoverage ? 'file_item_branch.html' : 'file_item.html'); + $template = new Template($templateName, '{{', '}}'); + $methodTemplateName = $this->templatePath . ($this->hasBranchCoverage ? 'method_item_branch.html' : 'method_item.html'); + $methodItemTemplate = new Template($methodTemplateName, '{{', '}}'); + $items = $this->renderItemTemplate($template, ['name' => 'Total', 'numClasses' => $node->numberOfClassesAndTraits(), 'numTestedClasses' => $node->numberOfTestedClassesAndTraits(), 'numMethods' => $node->numberOfFunctionsAndMethods(), 'numTestedMethods' => $node->numberOfTestedFunctionsAndMethods(), 'linesExecutedPercent' => $node->percentageOfExecutedLines()->asFloat(), 'linesExecutedPercentAsString' => $node->percentageOfExecutedLines()->asString(), 'numExecutedLines' => $node->numberOfExecutedLines(), 'numExecutableLines' => $node->numberOfExecutableLines(), 'branchesExecutedPercent' => $node->percentageOfExecutedBranches()->asFloat(), 'branchesExecutedPercentAsString' => $node->percentageOfExecutedBranches()->asString(), 'numExecutedBranches' => $node->numberOfExecutedBranches(), 'numExecutableBranches' => $node->numberOfExecutableBranches(), 'pathsExecutedPercent' => $node->percentageOfExecutedPaths()->asFloat(), 'pathsExecutedPercentAsString' => $node->percentageOfExecutedPaths()->asString(), 'numExecutedPaths' => $node->numberOfExecutedPaths(), 'numExecutablePaths' => $node->numberOfExecutablePaths(), 'testedMethodsPercent' => $node->percentageOfTestedFunctionsAndMethods()->asFloat(), 'testedMethodsPercentAsString' => $node->percentageOfTestedFunctionsAndMethods()->asString(), 'testedClassesPercent' => $node->percentageOfTestedClassesAndTraits()->asFloat(), 'testedClassesPercentAsString' => $node->percentageOfTestedClassesAndTraits()->asString(), 'crap' => 'CRAP']); + $items .= $this->renderFunctionItems($node->functions(), $methodItemTemplate); + $items .= $this->renderTraitOrClassItems($node->traits(), $template, $methodItemTemplate); + $items .= $this->renderTraitOrClassItems($node->classes(), $template, $methodItemTemplate); + return $items; + } + private function renderTraitOrClassItems(array $items, Template $template, Template $methodItemTemplate): string + { + $buffer = ''; + if (empty($items)) { + return $buffer; + } + foreach ($items as $name => $item) { + $numMethods = 0; + $numTestedMethods = 0; + foreach ($item['methods'] as $method) { + if ($method['executableLines'] > 0) { + $numMethods++; + if ($method['executedLines'] === $method['executableLines']) { + $numTestedMethods++; + } + } + } + if ($item['executableLines'] > 0) { + $numClasses = 1; + $numTestedClasses = $numTestedMethods === $numMethods ? 1 : 0; + $linesExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines'])->asString(); + $branchesExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches'])->asString(); + $pathsExecutedPercentAsString = Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths'])->asString(); + } else { + $numClasses = 0; + $numTestedClasses = 0; + $linesExecutedPercentAsString = 'n/a'; + $branchesExecutedPercentAsString = 'n/a'; + $pathsExecutedPercentAsString = 'n/a'; + } + $testedMethodsPercentage = Percentage::fromFractionAndTotal($numTestedMethods, $numMethods); + $testedClassesPercentage = Percentage::fromFractionAndTotal($numTestedMethods === $numMethods ? 1 : 0, 1); + $buffer .= $this->renderItemTemplate($template, ['name' => $this->abbreviateClassName($name), 'numClasses' => $numClasses, 'numTestedClasses' => $numTestedClasses, 'numMethods' => $numMethods, 'numTestedMethods' => $numTestedMethods, 'linesExecutedPercent' => Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines'])->asFloat(), 'linesExecutedPercentAsString' => $linesExecutedPercentAsString, 'numExecutedLines' => $item['executedLines'], 'numExecutableLines' => $item['executableLines'], 'branchesExecutedPercent' => Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches'])->asFloat(), 'branchesExecutedPercentAsString' => $branchesExecutedPercentAsString, 'numExecutedBranches' => $item['executedBranches'], 'numExecutableBranches' => $item['executableBranches'], 'pathsExecutedPercent' => Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths'])->asFloat(), 'pathsExecutedPercentAsString' => $pathsExecutedPercentAsString, 'numExecutedPaths' => $item['executedPaths'], 'numExecutablePaths' => $item['executablePaths'], 'testedMethodsPercent' => $testedMethodsPercentage->asFloat(), 'testedMethodsPercentAsString' => $testedMethodsPercentage->asString(), 'testedClassesPercent' => $testedClassesPercentage->asFloat(), 'testedClassesPercentAsString' => $testedClassesPercentage->asString(), 'crap' => $item['crap']]); + foreach ($item['methods'] as $method) { + $buffer .= $this->renderFunctionOrMethodItem($methodItemTemplate, $method, ' '); + } + } + return $buffer; + } + private function renderFunctionItems(array $functions, Template $template): string + { + if (empty($functions)) { + return ''; + } + $buffer = ''; + foreach ($functions as $function) { + $buffer .= $this->renderFunctionOrMethodItem($template, $function); + } + return $buffer; + } + private function renderFunctionOrMethodItem(Template $template, array $item, string $indent = ''): string + { + $numMethods = 0; + $numTestedMethods = 0; + if ($item['executableLines'] > 0) { + $numMethods = 1; + if ($item['executedLines'] === $item['executableLines']) { + $numTestedMethods = 1; + } + } + $executedLinesPercentage = Percentage::fromFractionAndTotal($item['executedLines'], $item['executableLines']); + $executedBranchesPercentage = Percentage::fromFractionAndTotal($item['executedBranches'], $item['executableBranches']); + $executedPathsPercentage = Percentage::fromFractionAndTotal($item['executedPaths'], $item['executablePaths']); + $testedMethodsPercentage = Percentage::fromFractionAndTotal($numTestedMethods, 1); + return $this->renderItemTemplate($template, ['name' => sprintf('%s%s', $indent, $item['startLine'], htmlspecialchars($item['signature'], $this->htmlSpecialCharsFlags), $item['functionName'] ?? $item['methodName']), 'numMethods' => $numMethods, 'numTestedMethods' => $numTestedMethods, 'linesExecutedPercent' => $executedLinesPercentage->asFloat(), 'linesExecutedPercentAsString' => $executedLinesPercentage->asString(), 'numExecutedLines' => $item['executedLines'], 'numExecutableLines' => $item['executableLines'], 'branchesExecutedPercent' => $executedBranchesPercentage->asFloat(), 'branchesExecutedPercentAsString' => $executedBranchesPercentage->asString(), 'numExecutedBranches' => $item['executedBranches'], 'numExecutableBranches' => $item['executableBranches'], 'pathsExecutedPercent' => $executedPathsPercentage->asFloat(), 'pathsExecutedPercentAsString' => $executedPathsPercentage->asString(), 'numExecutedPaths' => $item['executedPaths'], 'numExecutablePaths' => $item['executablePaths'], 'testedMethodsPercent' => $testedMethodsPercentage->asFloat(), 'testedMethodsPercentAsString' => $testedMethodsPercentage->asString(), 'crap' => $item['crap']]); + } + private function renderSourceWithLineCoverage(FileNode $node): string + { + $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); + $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); + $coverageData = $node->lineCoverageData(); + $testData = $node->testData(); + $codeLines = $this->loadFile($node->pathAsString()); + $lines = ''; + $i = 1; + foreach ($codeLines as $line) { + $trClass = ''; + $popoverContent = ''; + $popoverTitle = ''; + if (array_key_exists($i, $coverageData)) { + $numTests = $coverageData[$i] ? count($coverageData[$i]) : 0; + if ($coverageData[$i] === null) { + $trClass = 'warning'; + } elseif ($numTests === 0) { + $trClass = 'danger'; + } else { + if ($numTests > 1) { + $popoverTitle = $numTests . ' tests cover line ' . $i; + } else { + $popoverTitle = '1 test covers line ' . $i; + } + $lineCss = 'covered-by-large-tests'; + $popoverContent = '
        '; + foreach ($coverageData[$i] as $test) { + if ($lineCss === 'covered-by-large-tests' && $testData[$test]['size'] === 'medium') { + $lineCss = 'covered-by-medium-tests'; + } elseif ($testData[$test]['size'] === 'small') { + $lineCss = 'covered-by-small-tests'; + } + $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); + } + $popoverContent .= '
      '; + $trClass = $lineCss . ' popin'; + } + } + $popover = ''; + if (!empty($popoverTitle)) { + $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); + } + $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); + $i++; + } + $linesTemplate->setVar(['lines' => $lines]); + return $linesTemplate->render(); + } + private function renderSourceWithBranchCoverage(FileNode $node): string + { + $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); + $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); + $functionCoverageData = $node->functionCoverageData(); + $testData = $node->testData(); + $codeLines = $this->loadFile($node->pathAsString()); + $lineData = []; + /** @var int $line */ + foreach (array_keys($codeLines) as $line) { + $lineData[$line + 1] = ['includedInBranches' => 0, 'includedInHitBranches' => 0, 'tests' => []]; + } + foreach ($functionCoverageData as $method) { + foreach ($method['branches'] as $branch) { + foreach (range($branch['line_start'], $branch['line_end']) as $line) { + if (!isset($lineData[$line])) { + // blank line at end of file is sometimes included here + continue; + } + $lineData[$line]['includedInBranches']++; + if ($branch['hit']) { + $lineData[$line]['includedInHitBranches']++; + $lineData[$line]['tests'] = array_unique(array_merge($lineData[$line]['tests'], $branch['hit'])); + } + } + } + } + $lines = ''; + $i = 1; + /** @var string $line */ + foreach ($codeLines as $line) { + $trClass = ''; + $popover = ''; + if ($lineData[$i]['includedInBranches'] > 0) { + $lineCss = 'success'; + if ($lineData[$i]['includedInHitBranches'] === 0) { + $lineCss = 'danger'; + } elseif ($lineData[$i]['includedInHitBranches'] !== $lineData[$i]['includedInBranches']) { + $lineCss = 'warning'; + } + $popoverContent = '
        '; + if (count($lineData[$i]['tests']) === 1) { + $popoverTitle = '1 test covers line ' . $i; + } else { + $popoverTitle = count($lineData[$i]['tests']) . ' tests cover line ' . $i; + } + $popoverTitle .= '. These are covering ' . $lineData[$i]['includedInHitBranches'] . ' out of the ' . $lineData[$i]['includedInBranches'] . ' code branches.'; + foreach ($lineData[$i]['tests'] as $test) { + $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); + } + $popoverContent .= '
      '; + $trClass = $lineCss . ' popin'; + $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); + } + $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); + $i++; + } + $linesTemplate->setVar(['lines' => $lines]); + return $linesTemplate->render(); + } + private function renderSourceWithPathCoverage(FileNode $node): string + { + $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); + $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); + $functionCoverageData = $node->functionCoverageData(); + $testData = $node->testData(); + $codeLines = $this->loadFile($node->pathAsString()); + $lineData = []; + /** @var int $line */ + foreach (array_keys($codeLines) as $line) { + $lineData[$line + 1] = ['includedInPaths' => [], 'includedInHitPaths' => [], 'tests' => []]; + } + foreach ($functionCoverageData as $method) { + foreach ($method['paths'] as $pathId => $path) { + foreach ($path['path'] as $branchTaken) { + foreach (range($method['branches'][$branchTaken]['line_start'], $method['branches'][$branchTaken]['line_end']) as $line) { + if (!isset($lineData[$line])) { + continue; + } + $lineData[$line]['includedInPaths'][] = $pathId; + if ($path['hit']) { + $lineData[$line]['includedInHitPaths'][] = $pathId; + $lineData[$line]['tests'] = array_unique(array_merge($lineData[$line]['tests'], $path['hit'])); + } + } + } + } + } + $lines = ''; + $i = 1; + /** @var string $line */ + foreach ($codeLines as $line) { + $trClass = ''; + $popover = ''; + $includedInPathsCount = count(array_unique($lineData[$i]['includedInPaths'])); + $includedInHitPathsCount = count(array_unique($lineData[$i]['includedInHitPaths'])); + if ($includedInPathsCount > 0) { + $lineCss = 'success'; + if ($includedInHitPathsCount === 0) { + $lineCss = 'danger'; + } elseif ($includedInHitPathsCount !== $includedInPathsCount) { + $lineCss = 'warning'; + } + $popoverContent = '
        '; + if (count($lineData[$i]['tests']) === 1) { + $popoverTitle = '1 test covers line ' . $i; + } else { + $popoverTitle = count($lineData[$i]['tests']) . ' tests cover line ' . $i; + } + $popoverTitle .= '. These are covering ' . $includedInHitPathsCount . ' out of the ' . $includedInPathsCount . ' code paths.'; + foreach ($lineData[$i]['tests'] as $test) { + $popoverContent .= $this->createPopoverContentForTest($test, $testData[$test]); + } + $popoverContent .= '
      '; + $trClass = $lineCss . ' popin'; + $popover = sprintf(' data-title="%s" data-content="%s" data-placement="top" data-html="true"', $popoverTitle, htmlspecialchars($popoverContent, $this->htmlSpecialCharsFlags)); + } + $lines .= $this->renderLine($singleLineTemplate, $i, $line, $trClass, $popover); + $i++; + } + $linesTemplate->setVar(['lines' => $lines]); + return $linesTemplate->render(); + } + private function renderBranchStructure(FileNode $node): string + { + $branchesTemplate = new Template($this->templatePath . 'branches.html.dist', '{{', '}}'); + $coverageData = $node->functionCoverageData(); + $testData = $node->testData(); + $codeLines = $this->loadFile($node->pathAsString()); + $branches = ''; + ksort($coverageData); + foreach ($coverageData as $methodName => $methodData) { + if (!$methodData['branches']) { + continue; + } + $branchStructure = ''; + foreach ($methodData['branches'] as $branch) { + $branchStructure .= $this->renderBranchLines($branch, $codeLines, $testData); + } + if ($branchStructure !== '') { + // don't show empty branches + $branches .= '
      ' . $this->abbreviateMethodName($methodName) . '
      ' . "\n"; + $branches .= $branchStructure; + } + } + $branchesTemplate->setVar(['branches' => $branches]); + return $branchesTemplate->render(); + } + private function renderBranchLines(array $branch, array $codeLines, array $testData): string + { + $linesTemplate = new Template($this->templatePath . 'lines.html.dist', '{{', '}}'); + $singleLineTemplate = new Template($this->templatePath . 'line.html.dist', '{{', '}}'); + $lines = ''; + $branchLines = range($branch['line_start'], $branch['line_end']); + sort($branchLines); + // sometimes end_line < start_line + /** @var int $line */ + foreach ($branchLines as $line) { + if (!isset($codeLines[$line])) { + // blank line at end of file is sometimes included here + continue; + } + $popoverContent = ''; + $popoverTitle = ''; + $numTests = count($branch['hit']); + if ($numTests === 0) { + $trClass = 'danger'; + } else { + $lineCss = 'covered-by-large-tests'; + $popoverContent = '