| 12345678910111213141516171819202122232425262728293031323334353637383940 | <?php/** * Created by PhpStorm. * Author: NODELOG * DateTime: 2017/3/8 17:16 * Description: */namespace api\modules\v1\controllers;use api\common\controllers\Controller;use api\modules\v1\models\Notify;use yii\data\ActiveDataProvider;use api\common\behaviors\QueryParamAuth;use yii\helpers\ArrayHelper;class NotifyController extends Controller{    public function behaviors()    {        return ArrayHelper::merge(parent::behaviors(), [            [                'class' => QueryParamAuth::className(),                'tokenParam' => 'token',            ]        ]);    }    public function actionIndex()    {        return new ActiveDataProvider([            'query' => Notify::find()->where(['to_uid' => \Yii::$app->user->id]),            'sort' => [                'defaultOrder' => [                    'id' => SORT_DESC                ]            ]        ]);    }}
 |