Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Facades
:
ParallelTesting.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }