Файл: vendor/laravel/prompts/src/Concerns/HasSpinner.php
Строк: 31
<?php
namespace LaravelPromptsConcerns;
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)];
}
}