class Process extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

from  Facade
static 
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
static Factory
fake(array|Closure|null $callback = null)

Indicate that the process factory should fake processes.

static PendingProcess
command(array|string $command)

No description

static PendingProcess
path(string $path)

No description

static PendingProcess
timeout(CarbonInterval|int $timeout)

No description

static PendingProcess
idleTimeout(CarbonInterval|int $timeout)

No description

static PendingProcess
forever()

No description

static PendingProcess
env(array<string $, Stringable|false> $environment)

No description

static PendingProcess
input(Traversable $input)

No description

static PendingProcess
quietly()

No description

static PendingProcess
tty(bool $tty = 'true')

No description

static PendingProcess
options(array<string $, mixed> $options)

No description

static ProcessResult
run(array|string|null $command = 'null', callable|null $output = 'null')

No description

static InvokedProcess
start(array|string|null $command = 'null', callable|null $output = 'null')

No description

static bool
supportsTty()

No description

static PendingProcess
withFakeHandlers(array<string $, callable> $fakeHandlers)

No description

static PendingProcess|mixed
when(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

static PendingProcess|mixed
unless(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

result(array|string $output = '\'\'', array|string $errorOutput = '\'\'', int $exitCode = '0')

No description

describe()

No description

sequence(array<int $, ProcessResult|string> $processes = '[]')

No description

static bool
isRecording()

No description

static Factory
recordIfRecording(PendingProcess $process, ProcessResult $result)

No description

static Factory
record(PendingProcess $process, ProcessResult $result)

No description

static Factory
preventStrayProcesses(bool $prevent = 'true')

No description

static bool
preventingStrayProcesses()

No description

static Factory
assertRan(Closure|string $callback)

No description

static Factory
assertRanTimes(Closure|string $callback, int $times = '1')

No description

static Factory
assertNotRan(Closure|string $callback)

No description

static Factory
assertDidntRun(Closure|string $callback)

No description

static Factory
assertNothingRan()

No description

static Pool
pool(callable $callback)

No description

static ProcessResult
pipe(callable|array $callback, callable|null $output = 'null')

No description

concurrently(callable $callback, callable|null $output = 'null')

No description

static PendingProcess
newPendingProcess()

No description

static void
macro(string $name, callable|object $macro)

No description

static void
mixin(object $mixin, bool $replace = 'true')

No description

static bool
hasMacro(string $name)

No description

static void
flushMacros()

No description

static mixed
macroCall(string $method, array $parameters)

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 58
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 68
static Factory fake(array|Closure|null $callback = null)

Indicate that the process factory should fake processes.

Tests only. Fake handlers and recordings persist on the container-resolved factory for the worker lifetime and affect later calls.

Parameters

array|Closure|null $callback

Return Value

Factory

at line 53
static PendingProcess command(array|string $command)

No description

Parameters

array|string $command

Return Value

PendingProcess

at line 53
static PendingProcess path(string $path)

No description

Parameters

string $path

Return Value

PendingProcess

at line 53
static PendingProcess timeout(CarbonInterval|int $timeout)

No description

Parameters

CarbonInterval|int $timeout

Return Value

PendingProcess

at line 53
static PendingProcess idleTimeout(CarbonInterval|int $timeout)

No description

Parameters

CarbonInterval|int $timeout

Return Value

PendingProcess

at line 53
static PendingProcess forever()

No description

Return Value

PendingProcess

at line 53
static PendingProcess env(array<string $, Stringable|false> $environment)

No description

Parameters

array<string $
Stringable|false> $environment

Return Value

PendingProcess

at line 53
static PendingProcess input(Traversable $input)

No description

Parameters

Traversable $input

Return Value

PendingProcess

at line 53
static PendingProcess quietly()

No description

Return Value

PendingProcess

at line 53
static PendingProcess tty(bool $tty = 'true')

No description

Parameters

bool $tty

Return Value

PendingProcess

at line 53
static PendingProcess options(array<string $, mixed> $options)

No description

Parameters

array<string $
mixed> $options

Return Value

PendingProcess

at line 53
static ProcessResult run(array|string|null $command = 'null', callable|null $output = 'null')

No description

Parameters

array|string|null $command
callable|null $output

Return Value

ProcessResult

at line 53
static InvokedProcess start(array|string|null $command = 'null', callable|null $output = 'null')

No description

Parameters

array|string|null $command
callable|null $output

Return Value

InvokedProcess

at line 53
static bool supportsTty()

No description

Return Value

bool

at line 53
static PendingProcess withFakeHandlers(array<string $, callable> $fakeHandlers)

No description

Parameters

array<string $
callable> $fakeHandlers

Return Value

PendingProcess

at line 53
static PendingProcess|mixed when(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

Parameters

Closure|mixed $value
null|callable $callback
null|callable $default

Return Value

PendingProcess|mixed

at line 53
static PendingProcess|mixed unless(Closure|mixed $value = 'null', null|callable $callback = 'null', null|callable $default = 'null')

No description

Parameters

Closure|mixed $value
null|callable $callback
null|callable $default

Return Value

PendingProcess|mixed

at line 53
static FakeProcessResult result(array|string $output = '\'\'', array|string $errorOutput = '\'\'', int $exitCode = '0')

No description

Parameters

array|string $output
array|string $errorOutput
int $exitCode

Return Value

FakeProcessResult

at line 53
static FakeProcessDescription describe()

No description

Return Value

FakeProcessDescription

at line 53
static FakeProcessSequence sequence(array<int $, ProcessResult|string> $processes = '[]')

No description

Parameters

array<int $
ProcessResult|string> $processes

Return Value

FakeProcessSequence

at line 53
static bool isRecording()

No description

Return Value

bool

at line 53
static Factory recordIfRecording(PendingProcess $process, ProcessResult $result)

No description

Parameters

PendingProcess $process
ProcessResult $result

Return Value

Factory

at line 53
static Factory record(PendingProcess $process, ProcessResult $result)

No description

Parameters

PendingProcess $process
ProcessResult $result

Return Value

Factory

at line 53
static Factory preventStrayProcesses(bool $prevent = 'true')

No description

Parameters

bool $prevent

Return Value

Factory

at line 53
static bool preventingStrayProcesses()

No description

Return Value

bool

at line 53
static Factory assertRan(Closure|string $callback)

No description

Parameters

Closure|string $callback

Return Value

Factory

at line 53
static Factory assertRanTimes(Closure|string $callback, int $times = '1')

No description

Parameters

Closure|string $callback
int $times

Return Value

Factory

at line 53
static Factory assertNotRan(Closure|string $callback)

No description

Parameters

Closure|string $callback

Return Value

Factory

at line 53
static Factory assertDidntRun(Closure|string $callback)

No description

Parameters

Closure|string $callback

Return Value

Factory

at line 53
static Factory assertNothingRan()

No description

Return Value

Factory

at line 53
static Pool pool(callable $callback)

No description

Parameters

callable $callback

Return Value

Pool

at line 53
static ProcessResult pipe(callable|array $callback, callable|null $output = 'null')

No description

Parameters

callable|array $callback
callable|null $output

Return Value

ProcessResult

at line 53
static ProcessPoolResults concurrently(callable $callback, callable|null $output = 'null')

No description

Parameters

callable $callback
callable|null $output

Return Value

ProcessPoolResults

at line 53
static PendingProcess newPendingProcess()

No description

Return Value

PendingProcess

at line 53
static void macro(string $name, callable|object $macro)

No description

Parameters

string $name
callable|object $macro

Return Value

void

at line 53
static void mixin(object $mixin, bool $replace = 'true')

No description

Parameters

object $mixin
bool $replace

Return Value

void

at line 53
static bool hasMacro(string $name)

No description

Parameters

string $name

Return Value

bool

at line 53
static void flushMacros()

No description

Return Value

void

at line 53
static mixed macroCall(string $method, array $parameters)

No description

Parameters

string $method
array $parameters

Return Value

mixed