Files
cattr/app/Helpers/CatHelper.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

32 lines
641 B
PHP

<?php
namespace App\Helpers;
class CatHelper
{
public const CATS = [
'=^._.^=',
'(=`ェ´=)',
'(=^ ◡ ^=)',
'/ᐠ。ꞈ。ᐟ\\',
'/ᐠ.ꞈ.ᐟ\\',
'✧/ᐠ-ꞈ-ᐟ\\',
'(ミචᆽචミ)',
'(=චᆽච=)',
'(=ㅇᆽㅇ=)',
'(=ㅇ༝ㅇ=)',
'₍⸍⸌̣ʷ̣̫⸍̣⸌₎',
'=^ᵒ⋏ᵒ^=',
'( ⓛ ﻌ ⓛ *)',
'(=ↀωↀ=)',
'(=^・ω・^=)',
'(=^・ェ・^=)',
'ㅇㅅㅇ'
];
public static function getCat(): string
{
return self::CATS[array_rand(self::CATS)];
}
}