/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
facade
/
flare-client-php
/
src
/
Glows
/
/home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Glows
mkdir
upload
Name
Size
Mode
Actions
Glow.php
965
0644
edit
dl
rm
Recorder.php
448
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Glows/Recorder.php
(448B)
<?php namespace Facade\FlareClient\Glows; class Recorder { public const GLOW_LIMIT = 30; private $glows = []; public function record(Glow $glow) { $this->glows[] = $glow; $this->glows = array_slice($this->glows, static::GLOW_LIMIT * -1, static::GLOW_LIMIT); } public function glows(): array { return $this->glows; } public function reset() { $this->glows = []; } }
Save
cmd:
run