<?php namespace addons\Community\console\controllers; use addons\Community\common\service\NoticeService; use yii\console\Controller; class NoticeTaskController extends Controller { public function actionSend() { (new NoticeService())->task(); } }