You are here

public function UnixPipes::areOpen in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/process/Pipes/UnixPipes.php \Symfony\Component\Process\Pipes\UnixPipes::areOpen()

Returns if the current state has open file handles or pipes.

Return value

bool

Overrides PipesInterface::areOpen

File

vendor/symfony/process/Pipes/UnixPipes.php, line 197

Class

UnixPipes
UnixPipes implementation uses unix pipes as handles.

Namespace

Symfony\Component\Process\Pipes

Code

public function areOpen() {
  return (bool) $this->pipes;
}