SMMP/manager/repo/global_state.php

18 lines
301 B
PHP
Raw Normal View History

<?php
namespace manager\repo;
use \manager\Database;
use \manager\Repo;
use \manager\ManagerError;
use \manager\repo\cluster as clusterRepo;
2016-07-18 22:31:13 +00:00
class global_state extends parentRepo{
2016-07-18 22:31:13 +00:00
protected static function table_name(){ static $table_name = 'global_state'; return $table_name; }
}
?>