24 lines
305 B
PHP
24 lines
305 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lucas
|
|
* Date: 27/02/18
|
|
* Time: 16:19
|
|
*/
|
|
|
|
namespace api\module;
|
|
|
|
|
|
use database\core\Repo;
|
|
use database\repo\professor;
|
|
|
|
class ProfessorController{
|
|
|
|
public static function get($args){
|
|
$prof_id = null;
|
|
extract($args);
|
|
|
|
return ['teachers' => [1, 2]];
|
|
}
|
|
|
|
} |