D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Facades
/
Filename :
ParallelTesting.php
back
Copy
<?php namespace Illuminate\Support\Facades; /** * @method static void setUpProcess(callable $callback) * @method static void setUpTestCase(callable $callback) * @method static void setUpTestDatabase(callable $callback) * @method static void tearDownProcess(callable $callback) * @method static void tearDownTestCase(callable $callback) * @method static int|false token() * * @see \Illuminate\Testing\ParallelTesting */ class ParallelTesting extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return \Illuminate\Testing\ParallelTesting::class; } }