Added more styles

This commit is contained in:
2022-10-04 01:46:12 +02:00
parent 2e7c49e299
commit 8b4ae386a7
3 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,18 @@
<?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),
];
}
}

View File

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