REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.18 KB
Close
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Testing/PHPUnit/AbstractLazyTestCase.php
Text
Base64
<?php declare (strict_types=1); namespace Rector\Testing\PHPUnit; use PHPUnit\Framework\TestCase; use Rector\Config\RectorConfig; use Rector\DependencyInjection\LazyContainerFactory; abstract class AbstractLazyTestCase extends TestCase { /** * @var \Rector\Config\RectorConfig|null */ protected static $rectorConfig; /** * @api * @param string[] $configFiles */ protected function bootFromConfigFiles(array $configFiles) : void { $rectorConfig = self::getContainer(); foreach ($configFiles as $configFile) { $rectorConfig->import($configFile); } } /** * @template TType as object * @param class-string<TType> $class * @return TType */ protected function make(string $class) : object { return self::getContainer()->make($class); } protected static function getContainer() : RectorConfig { if (!self::$rectorConfig instanceof RectorConfig) { $lazyContainerFactory = new LazyContainerFactory(); self::$rectorConfig = $lazyContainerFactory->create(); } self::$rectorConfig->boot(); return self::$rectorConfig; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
ValueObject
DIR
-
drwxr-xr-x
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AbstractLazyTestCase.php
1.18 KB
lrw-r--r--
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AbstractRectorTestCase.php
10.62 KB
lrw-r--r--
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AbstractTestCase.php
813 B
lrw-r--r--
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
StaticPHPUnitEnvironment.php
349 B
lrw-r--r--
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).