Eris\Sample::repeat PHP Метод

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

public repeat ( $times )
    public function repeat($times)
    {
        for ($i = 0; $i < $times; $i++) {
            $this->collected[] = $this->generator->__invoke(self::DEFAULT_SIZE, $this->rand)->unbox();
        }
        return $this;
    }