🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:HasSpinner.php
<?php namespace Laravel\Prompts\Concerns; trait HasSpinner { /** * The frames of the spinner (single dot moving around the perimeter). * * @var array<string> */ protected array $frames = ['⠂', '⠒', '⠐', '⠰', '⠠', '⠤', '⠄', '⠆']; /** * The frame to render when the spinner is static. */ protected string $staticFrame = '⠶'; /** * The interval between frames. */ protected int $interval = 75; public function spinnerFrame(int $count): string { return $this->frames[$count % count($this->frames)]; } }
Save Changes
Cancel
Create New File
Create New Folder