for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LaravelFreelancerNL\FluentAQL\Clauses;
use LaravelFreelancerNL\FluentAQL\QueryBuilder;
class RawClause extends Clause
{
protected $aql;
public function __construct(string $aql)
parent::__construct();
$this->aql = $aql;
}
public function compile(QueryBuilder $queryBuilder): string
return (string) $this->aql;