ArticleController.php 319 B

12345678910111213141516171819202122
  1. <?php
  2. namespace internship\controller;
  3. use n2n\web\http\controller\ControllerAdapter;
  4. class ArticleController extends ControllerAdapter {
  5. function getDoArticles() {
  6. $this->sendJson(['hello' => 'world']);
  7. }
  8. function postDoArticle() {
  9. }
  10. function putDoArticle() {
  11. }
  12. function deleteDoArticle() {
  13. }
  14. }