芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Sequence.php
sequence = $sequence; $this->count = count($sequence); } /** * Get the next value in the sequence. * * @return mixed */ public function __invoke() { if ($this->index > ($this->count - 1)) { $this->index = 0; } return tap($this->sequence[$this->index], function () { $this->index = $this->index + 1; }); } }