php-spinner/src/Style/SpinningBarStyle.php

22 lines
311 B
PHP

<?php
namespace NoccyLabs\Spinner\Style;
class SpinningBarStyle implements StyleInterface
{
public function getFrames(): array
{
return [
"/",
"-",
"\\",
"|",
];
}
public function getWidth(): int
{
return 1;
}
}