X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/facade/flare-client-php/src/Glows
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
facade
/
flare-client-php
/
src
/
Glows
/
📁
..
📄
Glow.php
(965 B)
📄
Recorder.php
(441 B)
Editing: Recorder.php
<?php namespace Facade\FlareClient\Glows; class Recorder { 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 = []; } }
Upload File
Create Folder