for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Puzzle\QueryBuilder\Queries\Snippets\Joins;
use Puzzle\QueryBuilder\Snippet;
class LeftJoin extends AbstractJoin implements Snippet
{
protected function getJoinDeclaration(): string
return 'LEFT JOIN';
}