Наследование: implements Blast\Orm\GatewayInterface, implements Blast\Orm\ConnectionAwareInterface, use trait ConnectionAwareTrait
Пример #1
0
 /**
  * Create a new Query instance
  * @return \Blast\Orm\Gateway
  */
 public function createGateway($tableName)
 {
     $gateway = new Gateway($tableName);
     $gateway->setConnection($this->getConnection());
     return $gateway;
 }