Searched refs:onEmpty (Results 1 – 3 of 3) sorted by relevance
26 private $onEmpty = null; variable in Symfony\\Component\\Process\\InputStream 33 public function onEmpty(callable $onEmpty = null) argument 35 $this->onEmpty = $onEmpty;91 if (!$this->input && $this->open && null !== $onEmpty = $this->onEmpty) {92 $this->write($onEmpty($this));
24 private $onEmpty = null; variable in Symfony\\Component\\Process\\InputStream31 public function onEmpty(callable $onEmpty = null) function in Symfony\\Component\\Process\\InputStream33 $this->onEmpty = $onEmpty;87 if (!$this->input && $this->open && null !== $onEmpty = $this->onEmpty) {88 $this->write($onEmpty($this));
1246 $input->onEmpty($stream);1262 $input->onEmpty(function ($input) {1279 $input->onEmpty(function () use (&$i) { ++$i; });