Lggr
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
PHPUnit\Util\PHP\AbstractPhpProcess Class Reference
Inheritance diagram for PHPUnit\Util\PHP\AbstractPhpProcess:
Inheritance graph
[legend]

Public Member Functions

 __construct ()
 
 setUseStderrRedirection ($stderrRedirection)
 
 useStderrRedirection ()
 
 setStdin ($stdin)
 
 getStdin ()
 
 setArgs ($args)
 
 getArgs ()
 
 setEnv (array $env)
 
 getEnv ()
 
 setTimeout ($timeout)
 
 getTimeout ()
 
 runTestJob ($job, Test $test, TestResult $result)
 
 getCommand (array $settings, $file=null)
 
 runJob ($job, array $settings=[])
 

Static Public Member Functions

static factory ()
 

Protected Member Functions

 settingsToParameters (array $settings)
 

Protected Attributes

 $runtime
 
 $stderrRedirection = false
 
 $stdin = ''
 
 $args = ''
 
 $env = []
 
 $timeout = 0
 

Detailed Description

Utility methods for PHP sub-processes.

Constructor & Destructor Documentation

◆ __construct()

PHPUnit\Util\PHP\AbstractPhpProcess::__construct ( )

Creates internal Runtime instance.

Member Function Documentation

◆ factory()

static PHPUnit\Util\PHP\AbstractPhpProcess::factory ( )
static

◆ getArgs()

PHPUnit\Util\PHP\AbstractPhpProcess::getArgs ( )

Returns the string of arguments to pass to the php job

@retrun string

◆ getCommand()

PHPUnit\Util\PHP\AbstractPhpProcess::getCommand ( array  $settings,
  $file = null 
)

Returns the command based into the configurations.

Parameters
array$settings
string | null$file
Returns
string

Reimplemented in PHPUnit\Util\PHP\WindowsPhpProcess.

◆ getEnv()

PHPUnit\Util\PHP\AbstractPhpProcess::getEnv ( )

Returns the array of environment variables to start the child process with

Returns
array<string, string>

◆ getStdin()

PHPUnit\Util\PHP\AbstractPhpProcess::getStdin ( )

Returns the input string to be sent via STDIN

Returns
string

◆ getTimeout()

PHPUnit\Util\PHP\AbstractPhpProcess::getTimeout ( )

Returns the amount of seconds to wait before timing out

Returns
int

◆ runJob()

PHPUnit\Util\PHP\AbstractPhpProcess::runJob (   $job,
array  $settings = [] 
)
abstract

Runs a single job (PHP code) using a separate PHP process.

Parameters
string$job
array$settings
Returns
array
Exceptions
Exception

Reimplemented in PHPUnit\Util\PHP\DefaultPhpProcess.

◆ runTestJob()

PHPUnit\Util\PHP\AbstractPhpProcess::runTestJob (   $job,
Test  $test,
TestResult  $result 
)

Runs a single test in a separate PHP process.

Parameters
string$job
Test$test
TestResult$result
Exceptions
Exception

◆ setArgs()

PHPUnit\Util\PHP\AbstractPhpProcess::setArgs (   $args)

Sets the string of arguments to pass to the php job

Parameters
string$args

◆ setEnv()

PHPUnit\Util\PHP\AbstractPhpProcess::setEnv ( array  $env)

Sets the array of environment variables to start the child process with

Parameters
array<string,string>$env

◆ setStdin()

PHPUnit\Util\PHP\AbstractPhpProcess::setStdin (   $stdin)

Sets the input string to be sent via STDIN

Parameters
string$stdin

◆ setTimeout()

PHPUnit\Util\PHP\AbstractPhpProcess::setTimeout (   $timeout)

Sets the amount of seconds to wait before timing out

Parameters
int$timeout

◆ settingsToParameters()

PHPUnit\Util\PHP\AbstractPhpProcess::settingsToParameters ( array  $settings)
protected
Parameters
array$settings
Returns
string

◆ setUseStderrRedirection()

PHPUnit\Util\PHP\AbstractPhpProcess::setUseStderrRedirection (   $stderrRedirection)

Defines if should use STDERR redirection or not.

Then $stderrRedirection is TRUE, STDERR is redirected to STDOUT.

Exceptions
Exception
Parameters
bool$stderrRedirection

◆ useStderrRedirection()

PHPUnit\Util\PHP\AbstractPhpProcess::useStderrRedirection ( )

Returns TRUE if uses STDERR redirection or FALSE if not.

Returns
bool

The documentation for this class was generated from the following file: