![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/orchestra/testbench-core/src/Features/ |
<?php namespace Orchestra\Testbench\Features; use Closure; use Illuminate\Support\Fluent; use Orchestra\Testbench\Concerns\HandlesAnnotations; use Orchestra\Testbench\Concerns\HandlesAttributes; use PHPUnit\Framework\TestCase as PHPUnitTestCase; /** * @internal */ final class TestingFeature { /** * Resolve available testing features for Testbench. * * @param object $testCase * @param (\Closure():(void))|null $default * @param (\Closure():(void))|null $annotation * @param (\Closure():(mixed))|null $attribute * @return \Illuminate\Support\Fluent<array-key, mixed> */ public static function run( object $testCase, ?Closure $default = null, ?Closure $annotation = null, ?Closure $attribute = null ): Fluent { /** @var \Illuminate\Support\Fluent{attribute: \Orchestra\Testbench\Features\FeaturesCollection} $result */ $result = new Fluent(['attribute' => new FeaturesCollection()]); if ($testCase instanceof PHPUnitTestCase) { /** @phpstan-ignore-next-line */ if ($testCase::usesTestingConcern(HandlesAnnotations::class)) { value($annotation); } /** @phpstan-ignore-next-line */ if ($testCase::usesTestingConcern(HandlesAttributes::class)) { $result['attribute'] = value($attribute); } } value($default); return $result; } }