| 12345678910111213141516171819202122 |
- <?php
- namespace internship\controller;
- use n2n\web\http\controller\ControllerAdapter;
- class ArticleController extends ControllerAdapter {
- function getDoArticles() {
- $this->sendJson(['hello' => 'world']);
- }
- function postDoArticle() {
- }
- function putDoArticle() {
- }
- function deleteDoArticle() {
- }
- }
|