ArticleController.php 255 B

123456789101112131415
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2017-08-30 18:10
  7. */
  8. namespace api\controllers;
  9. class ArticleController extends \yii\rest\ActiveController
  10. {
  11. public $modelClass = "api\models\Article";
  12. }