Author: Anton Shevchuk
Inheritance: extends Bluz\Db\Table
Example #1
0
 /**
  * Return table instance for manipulation
  *
  * @return Table
  */
 public function getTable()
 {
     if (!$this->table) {
         /**
          * @var Table $tableClass
          */
         $table = Table::getInstance();
         $this->setTable($table);
     }
     return $this->table;
 }
Example #2
0
 /**
  * Return table instance for manipulation
  *
  * @return Table
  */
 public function getTable()
 {
     return Table::getInstance();
 }