18 lines
287 B
PHP
18 lines
287 B
PHP
|
<?php
|
||
|
|
||
|
namespace manager\repo;
|
||
|
use \manager\Database;
|
||
|
use \manager\Repo;
|
||
|
use \manager\ManagerError;
|
||
|
use \manager\repo\cluster as clusterRepo;
|
||
|
|
||
|
class state extends parentRepo{
|
||
|
|
||
|
protected static function table_name(){ static $table_name = 'state'; return $table_name; }
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|