예제 #1
0
파일: Tag.php 프로젝트: Magicvan/simple_mvc
 public function __construct()
 {
     $table = "tags";
     parent::__construct($table);
 }
예제 #2
0
 public function __construct($table)
 {
     $this->table = (string) $table;
     parent::__construct($table);
     $this->fluent = $this->getConnect()->startFluent();
 }
예제 #3
0
 public function __construct()
 {
     $table = "entradas";
     parent::__construct($table);
 }