for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Noitran\RQL {
use Noitran\RQL\Exceptions\RuntimeException;
use Noitran\RQL\Services\RQLService;
if (! \function_exists('rql')) {
/**
* Get default RQL service.
*
* @throws RuntimeException
* @return RQLService
*/
function rql()
{
return app('rql');
return app('rql')
Illuminate\Contracts\Foundation\Application
Noitran\RQL\Services\RQLService
}