| Conditions | 1 |
| Paths | 1 |
| Total Lines | 25 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function verbs(): array |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | 'save' => ['post', 'put'], |
||
| 29 | ]; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return mixed |
||
| 34 | * @throws \yii\base\InvalidConfigException |
||
| 35 | */ |
||
| 36 | public function actionSave() |
||
| 37 | { |
||
| 38 | /** @var AbstractPlugin $plugin */ |
||
| 39 | $plugin = $this->getPlugin(); |
||
|
|
|||
| 40 | |||
| 41 | $settings = [ |
||
| 42 | 'entityId' => Craft::$app->request->getRequiredParam('entityId'), |
||
| 43 | 'endpointPrefix' => Craft::$app->request->getRequiredParam('endpointPrefix'), |
||
| 44 | ]; |
||
| 45 | |||
| 46 | Craft::$app->plugins->savePluginSettings( |
||
| 47 | $this->getPlugin(), |
||
| 48 | $settings |
||
| 49 | ); |
||
| 50 | return $this->redirectToPostedUrl(); |
||
| 62 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.