You are here

public function WindowsPipes::getFiles in Zircon Profile 8

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

Returns an array of filenames indexed by their related stream in case these pipes use temporary files.

Return value

string[]

Overrides PipesInterface::getFiles

File

vendor/symfony/process/Pipes/WindowsPipes.php, line 102

Class

WindowsPipes
WindowsPipes implementation uses temporary files as handles.

Namespace

Symfony\Component\Process\Pipes

Code

public function getFiles() {
  return $this->files;
}