Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
spatie
/
flare-client-php
/
src
/
Glows
Location:
/home/zoteqbgb/public_html/vendor/spatie/flare-client-php/src/Glows
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: GlowRecorder.php
<?php namespace Spatie\FlareClient\Glows; class GlowRecorder { const GLOW_LIMIT = 30; /** @var array<int, Glow> */ 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<int, Glow> */ public function glows(): array { return $this->glows; } public function reset(): void { $this->glows = []; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Glow.php
1,267 bytes
0644
2025-02-14 18:42
âï¸
ðï¸
Rename
GlowRecorder.php
534 bytes
0644
2025-02-14 18:42
âï¸
ðï¸
Rename
Chang
Apply