ArticleController.php 199 B

1234567891011121314151617181920
  1. <?php
  2. namespace internship\controller;
  3. class ArticleController {
  4. function getDoArticles() {
  5. }
  6. function postDoArticle() {
  7. }
  8. function putDoArticle() {
  9. }
  10. function deleteDoArticle() {
  11. }
  12. }