'beforeAction']; } /** * @param $event * @throws TooManyRequestsHttpException */ public function beforeAction($event) { $trafficShaper = new TrafficShaper(); if (!$trafficShaper->get()) { throw new TooManyRequestsHttpException('请求过快'); } } }