Home
last modified time | relevance | path

Searched refs:onEmpty (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/vendor/symfony/process/
H A DInputStream.php26 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));
/plugin/jplayer/vendor/symfony/process/
H A DInputStream.php24 private $onEmpty = null; variable in Symfony\\Component\\Process\\InputStream
31 public function onEmpty(callable $onEmpty = null) function in Symfony\\Component\\Process\\InputStream
33 $this->onEmpty = $onEmpty;
87 if (!$this->input && $this->open && null !== $onEmpty = $this->onEmpty) {
88 $this->write($onEmpty($this));
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessTest.php1246 $input->onEmpty($stream);
1262 $input->onEmpty(function ($input) {
1279 $input->onEmpty(function () use (&$i) { ++$i; });