Lines Matching refs:reach
82 * @param string $reach Path for the `reach` method.
85 public function __construct($name = null, $reach = null, array $children = []) argument
91 if (null !== $reach) {
92 $this->_reach = $reach;
224 $this->_resolveChoice($this[$next]->reach(), $accumulator);
235 $this->_resolveChoice($tnext->reach(), $accumulator);
240 $this->_resolveChoice($this->reach($path), $accumulator);
248 * @param string $reach Reach value.
252 protected function _resolveChoice($reach, array &$accumulator) argument
255 $accumulator = explode(RS, $reach);
260 if (false === strpos($reach, RS)) {
261 if (false !== $pos = strrpos($reach, "\r")) {
262 $reach = substr($reach, $pos + 1);
270 $entry .= $reach;
276 $choices = explode(RS, $reach);
307 public function reach($queue = null) function in Hoa\\Protocol\\Node\\Node
332 * @param string $reach Reach value.
335 public function setReach($reach) argument
338 $this->_reach = $reach;