Lines Matching refs:source
19 private $source;
34 * @param callable $source Source of the stream data. The callable MAY
43 public function __construct(callable $source, array $options = [])
45 $this->source = $source;
64 $this->source = null;
84 return !$this->source;
149 if ($this->source) {
151 $data = call_user_func($this->source, $length);
153 $this->source = null;