NoticeTaskController.php 269 B

1234567891011121314
  1. <?php
  2. namespace addons\Community\console\controllers;
  3. use addons\Community\common\service\NoticeService;
  4. use yii\console\Controller;
  5. class NoticeTaskController extends Controller
  6. {
  7. public function actionSend()
  8. {
  9. (new NoticeService())->task();
  10. }
  11. }