Kraken\Loop\Model\SelectLoop::export PHP Метод

export() публичный Метод

public export ( Kraken\Loop\LoopModelInterface $loop, $all = false )
$loop Kraken\Loop\LoopModelInterface
    public function export(LoopModelInterface $loop, $all = false)
    {
        $this->stop();
        $loop->stop();
        $list = $all === true ? $this : $this->getTransferableProperties();
        foreach ($list as $key => $val) {
            $loop->{$key} = $this->{$key};
        }
        return $this;
    }