Последняя версия с сервера прошлого разработчика

This commit is contained in:
2025-07-10 04:35:51 +00:00
commit c731570032
1174 changed files with 134314 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Domain\Points\Enums;
use Spatie\Enum\Laravel\Enum;
/**
* @method static self COMING()
* @method static self EXPENSE()
* @method static self PENDING()
*/
final class DirectionEnum extends Enum
{
protected static function values(): array
{
return [
'COMING' => 0, // приход
'EXPENSE' => 1, //расход
'PENDING' => 2, //ожидание
];
}
}