for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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.");
}