mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
6015dcbbbf
* refactor: migration from laravel-enum package to native php enums * style: fix StyleCI findings
19 lines
282 B
PHP
19 lines
282 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\Http\Api\Field;
|
|
|
|
/**
|
|
* Enum AggregateFunction.
|
|
*/
|
|
enum AggregateFunction: string
|
|
{
|
|
case AVG = 'avg';
|
|
case COUNT = 'count';
|
|
case EXISTS = 'exists';
|
|
case MAX = 'max';
|
|
case MIN = 'min';
|
|
case SUM = 'sum';
|
|
}
|