Blast\Orm\Mapper::createGateway PHP Method

createGateway() public method

Create a new Query instance
public createGateway ( $tableName ) : Gateway
return Gateway
    public function createGateway($tableName)
    {
        $gateway = new Gateway($tableName);
        $gateway->setConnection($this->getConnection());
        return $gateway;
    }