import() public method

Import handlers and/or streams from another loop model.
public import ( Kraken\Loop\LoopModelInterface $loop, boolean $all = false ) : Kraken\Loop\LoopModelInterface
$loop Kraken\Loop\LoopModelInterface
$all boolean
return Kraken\Loop\LoopModelInterface
Example #1
0
 /**
  * @override
  * @inheritDoc
  */
 public function import(LoopExtendedInterface $loop, $all = false)
 {
     $this->loop->import($loop->getModel(), $all);
     return $this;
 }