HelloController.php 343 B

123456789101112131415
  1. <?php
  2. namespace internship\controller;
  3. //imports
  4. use n2n\web\http\controller\ControllerAdapter;
  5. use n2n\context\attribute\Inject;
  6. //for post and put
  7. use n2n\web\http\controller\ParamBody;
  8. use n2n\web\http\PageNotFoundException;
  9. Class HelloController extends ControllerAdapter {
  10. function getDoHello() {
  11. echo 'Hello World';
  12. }
  13. }