php-spinner/src/Style/BrailleBounceStyle.php

24 lines
412 B
PHP
Raw Normal View History

2022-10-03 23:46:12 +00:00
<?php
namespace NoccyLabs\Spinner\Style;
class BrailleBounceStyle implements StyleInterface
{
public function getFrames(): array
{
return [
mb_chr(0x2809),
mb_chr(0x2812),
mb_chr(0x2824),
mb_chr(0x28c0),
mb_chr(0x2824),
mb_chr(0x2812),
];
}
2024-03-07 00:06:40 +00:00
public function getWidth(): int
{
return 1;
}
2022-10-03 23:46:12 +00:00
}