17 lines
244 B
PHP
17 lines
244 B
PHP
|
<?php
|
||
|
|
||
|
namespace NoccyLabs\Spinner\Style;
|
||
|
|
||
|
class SpinningBarStyle implements StyleInterface
|
||
|
{
|
||
|
public function getFrames(): array
|
||
|
{
|
||
|
return [
|
||
|
"/",
|
||
|
"-",
|
||
|
"\\",
|
||
|
"|",
|
||
|
];
|
||
|
}
|
||
|
}
|