芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/test.joruridoctor.com/vendor/spatie/flare-client-php/src/Glows/GlowRecorder.php
*/ protected array $glows = []; public function record(Glow $glow): void { $this->glows[] = $glow; $this->glows = array_slice($this->glows, static::GLOW_LIMIT * -1, static::GLOW_LIMIT); } /** @return array
*/ public function glows(): array { return $this->glows; } public function reset(): void { $this->glows = []; } }