| Conditions | 3 |
| Paths | 4 |
| Total Lines | 18 |
| Lines | 12 |
| Ratio | 66.67 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function plugin_プラグインアンインストール(\AcceptanceTester $I) |
||
| 29 | { |
||
| 30 | $I->wantTo('プラグインアンインストール'); |
||
| 31 | |||
| 32 | View Code Duplication | foreach ($this->plugins as $num => $plugin) { |
|
| 33 | |||
| 34 | // プラグイン無効化 |
||
| 35 | OwnersPluginPage::go($I)->無効にする($plugin['code']); |
||
| 36 | $I->see('プラグインを無効にしました。', OwnersPluginPage::$完了メッセージ); |
||
| 37 | } |
||
| 38 | |||
| 39 | View Code Duplication | foreach ($this->plugins as $num => $plugin) { |
|
| 40 | |||
| 41 | // プラグイン削除 |
||
| 42 | OwnersPluginPage::go($I)->削除($plugin['code']); |
||
| 43 | $I->see(' プラグインを削除しました。', OwnersPluginPage::$完了メッセージ); |
||
| 44 | } |
||
| 45 | } |
||
| 46 | } |
||
| 47 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.