AuthController.php 227 B

123456789101112131415
  1. <?php
  2. namespace platform\controllers;
  3. use Yii;
  4. class AuthController extends PlatformController
  5. {
  6. public function actionList()
  7. {
  8. $get = Yii::$app->request->get();
  9. $endId = isset($get['endId']) ? $get['endId'] : 1;
  10. }
  11. }