chore: restore vendor directory dependencies

This commit is contained in:
2026-07-15 13:22:22 +07:00
parent 3203c6e129
commit 15b4ec091c
4844 changed files with 612121 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
abstract class Known extends TestSize
{
public function isKnown(): true
{
return true;
}
abstract public function isGreaterThan(self $other): bool;
}
+31
View File
@@ -0,0 +1,31 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
final class Large extends Known
{
public function isLarge(): true
{
return true;
}
public function isGreaterThan(TestSize $other): bool
{
return !$other->isLarge();
}
public function asString(): string
{
return 'large';
}
}
@@ -0,0 +1,31 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
final class Medium extends Known
{
public function isMedium(): true
{
return true;
}
public function isGreaterThan(TestSize $other): bool
{
return $other->isSmall();
}
public function asString(): string
{
return 'medium';
}
}
+31
View File
@@ -0,0 +1,31 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
final class Small extends Known
{
public function isSmall(): true
{
return true;
}
public function isGreaterThan(TestSize $other): bool
{
return false;
}
public function asString(): string
{
return 'small';
}
}
@@ -0,0 +1,78 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
abstract class TestSize
{
public static function unknown(): Unknown
{
return new Unknown;
}
public static function small(): Small
{
return new Small;
}
public static function medium(): Medium
{
return new Medium;
}
public static function large(): Large
{
return new Large;
}
/**
* @phpstan-assert-if-true Known $this
*/
public function isKnown(): bool
{
return false;
}
/**
* @phpstan-assert-if-true Unknown $this
*/
public function isUnknown(): bool
{
return false;
}
/**
* @phpstan-assert-if-true Small $this
*/
public function isSmall(): bool
{
return false;
}
/**
* @phpstan-assert-if-true Medium $this
*/
public function isMedium(): bool
{
return false;
}
/**
* @phpstan-assert-if-true Large $this
*/
public function isLarge(): bool
{
return false;
}
abstract public function asString(): string;
}
@@ -0,0 +1,26 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeCoverage\Test\TestSize;
/**
* @immutable
*/
final class Unknown extends TestSize
{
public function isUnknown(): true
{
return true;
}
public function asString(): string
{
return 'unknown';
}
}