UpdateGrouping::updatePlan()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 6
Ratio 100 %

Importance

Changes 0
Metric Value
dl 6
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
/**
3
 * Finance module for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-finance
6
 * @package   hipanel-module-finance
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\finance\tests\_support\Page\plan;
12
13
use yii\helpers\Url;
14
15 View Code Duplication
class UpdateGrouping extends CreateGrouping
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
16
{
17
    protected function loadPage()
18
    {
19
        $I = $this->tester;
20
21
        $I->needPage(Url::to(['@plan/update', 'id' => $this->id]));
22
    }
23
24
    protected function savePlan()
25
    {
26
        $I = $this->tester;
27
28
        $I->click('Save');
29
        $I->closeNotification('Plan was successfully updated');
30
    }
31
32
    public function updatePlan($id)
33
    {
34
        $this->id = $id;
35
36
        return $this->createPlan();
37
    }
38
}
39