phprs\ezsql\rules\select\JoinRule::leftJoin PHP Method

leftJoin() public method

leftJoin('table1')->on('table0.id=table1.id') => "LEFT JOIN table1 ON table0.id=table1.id"
public leftJoin ( string $table ) : JoinOnRule
$table string
return JoinOnRule
    public function leftJoin($table)
    {
        JoinImpl::join($this->context, 'LEFT', $table);
        return new JoinOnRule($this->context);
    }