1: <?php 2: 3: /** 4: * Description of generic 5: * 6: * @author Victor 7: */ 8: class Generic extends Eloquent { 9: protected $table = ""; 10: 11: public function setTable($table) { 12: $this->table = $table; 13: } 14: 15: } 16: 17: ?> 18: