Skip to content
Snippets Groups Projects
Commit 4db7c49a authored by xamgore's avatar xamgore
Browse files

The variable type is defined

parent b89ac751
Branches
Tags
No related merge requests found
......@@ -9,6 +9,9 @@ class SortingOptions { //extends SplEnum {
}
class Controller_Handler_AdmStudents extends Controller_Handler {
/** @var Model_Students */
protected $model;
public function before() {
$this->model = new Model_Students();
......@@ -75,7 +78,7 @@ class Controller_Handler_AdmStudents extends Controller_Handler {
public function action_uploadStudentFile()
{
$this->model->getStudentFile();
$this->model->getStudentFile(); # fixme, function doesn't exist
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment