15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
|
|
namespace Spatie\QueryBuilder\Exceptions;
|
|
|
|
use Exception;
|
|
use Spatie\QueryBuilder\Enums\SortDirection;
|
|
|
|
class InvalidDirection extends Exception
|
|
{
|
|
public static function make(string $sort)
|
|
{
|
|
return new static('The direction should be either `'.SortDirection::DESCENDING.'` or `'.SortDirection::ASCENDING)."`. {$sort} given.";
|
|
}
|
|
}
|