Esempio n. 1
0
 /**
  * Constructor
  *
  * Instantiate the Gateway\Row object.
  *
  * @param  \Pop\Db\Sql $sql
  * @param  mixed       $keys
  * @param  string      $table
  * @throws Exception
  * @return Row
  */
 public function __construct(\Pop\Db\Sql $sql, $keys = null, $table = null)
 {
     if (null !== $keys) {
         $this->setPrimaryKeys($keys);
     }
     parent::__construct($sql, $table);
 }