Example #1
0
 /**
  * Story 9:
  * As a manager, I want to contact an employee, by seeing employee details.
  * @param $employeeID
  * @return array|null
  * @throws Exception
  * @throws userModelException
  */
 public function getEmployeeDetails($employeeID)
 {
     $this->setManagerAccess();
     return $this->userModel->getUserById($employeeID);
 }