Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. syntax error, unexpected 'class' (T_CLASS), expecting ',' or ';'
  2.  
  3. in C:xampphtdocscontrollersEmployeeController.php
  4.  
  5.  
  6. <?php
  7. namespace appcontrollers;
  8.  
  9. use yiiwebController;
  10. use appmodelsEmployee
  11.  
  12. class EmployeeController extends Controller
  13. {
  14.  
  15. public function actionIndex()
  16. {
  17.  
  18.  
  19.  
  20.  
  21. }
  22. }
  23.  
  24. <?php
  25.  
  26. namespace appmodels;
  27. use yiibaseModel;
  28.  
  29. class Employee extends Model{
  30. public $firstName;
  31. public $lastName;
  32. public $middleName;
  33. public $salary;
  34. }
Add Comment
Please, Sign In to add comment