NxTIC/manager/repo/relation.php

25 lines
319 B
PHP

<?php
namespace manager\repo;
use \manager\Database;
use \manager\sessionManager;
class relation extends parentRepo{
protected static function table_name(){ static $table_name = 'relations'; return $table_name; }
public static function create(){
}
public static function remove(){
}
}
?>