Files
trfgo/vendor/spatie/laravel-query-builder/src/Exceptions/AllowedFieldsMustBeCalledBeforeAllowedIncludes.php
T
2025-03-28 08:52:46 +01:00

14 lines
339 B
PHP

<?php
namespace Spatie\QueryBuilder\Exceptions;
use BadMethodCallException;
class AllowedFieldsMustBeCalledBeforeAllowedIncludes extends BadMethodCallException
{
public function __construct()
{
parent::__construct("The QueryBuilder's `allowedFields` method must be called before the `allowedIncludes` method.");
}
}