| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function run($id) |
||
| 21 | { |
||
| 22 | $this->checkAccess( |
||
| 23 | ($model = $this->findModel($id)), |
||
| 24 | Yii::$app->request->getQueryParams() |
||
| 25 | ); |
||
| 26 | |||
| 27 | if (false === $model->delete()) { |
||
| 28 | throw new ServerErrorHttpException( |
||
| 29 | 'Failed to delete the object for unknown reason.' |
||
| 30 | ); |
||
| 31 | } |
||
| 32 | Yii::$app->getResponse()->setStatusCode(204); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |