php-spinner/src/Style/BrailleDotsStyle.php

24 lines
410 B
PHP
Raw Normal View History

2022-09-21 23:49:58 +00:00
<?php
namespace NoccyLabs\Spinner\Style;
class BrailleDotsStyle implements StyleInterface
{
public function getFrames(): array
{
return [
mb_chr(0x2839),
mb_chr(0x283c),
mb_chr(0x2836),
mb_chr(0x2827),
mb_chr(0x280f),
mb_chr(0x281b),
];
}
2024-03-07 00:06:40 +00:00
public function getWidth(): int
{
return 1;
}
2022-09-21 23:49:58 +00:00
}