DefaultController.php 209 B

12345678910111213
  1. <?php
  2. namespace business\modules\api\controllers;
  3. use yii\web\Controller;
  4. class DefaultController extends Controller
  5. {
  6. public function actionIndex()
  7. {
  8. return $this->render('index');
  9. }
  10. }