Redaxscript\Db::leftJoinPrefix PHP Method

leftJoinPrefix() public method

left join with prefix
Since: 2.2.0
public leftJoinPrefix ( string $table = null, string $constraint = null, string $tableAlias = null ) : Db
$table string name of the table
$constraint string constraint as needed
$tableAlias string alias of the table
return Db
    public function leftJoinPrefix($table = null, $constraint = null, $tableAlias = null)
    {
        return $this->_addJoinSource('LEFT', self::$_config->get('dbPrefix') . $table, $constraint, $tableAlias);
    }