Completed
Push — 4.0 ( b48f64...137622 )
by chihiro
20:21 queued 10s
created

_support/Page/Admin/PaymentEditPage.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of EC-CUBE
5
 *
6
 * Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
7
 *
8
 * http://www.lockon.co.jp/
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Page\Admin;
15
16 View Code Duplication
class PaymentEditPage extends AbstractAdminPageStyleGuide
0 ignored issues
show
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...
17
{
18
    public static $登録完了メッセージ = '.c-container .c-contentsArea div.alert-success';
19
20
    public function __construct(\AcceptanceTester $I)
21
    {
22
        parent::__construct($I);
23
    }
24
25
    public static function at($I)
26
    {
27
        $page = new self($I);
28
29
        return $page->atPage('支払方法設定店舗設定');
30
    }
31
32
    public function 入力_支払方法($value)
33
    {
34
        $this->tester->fillField(['id' => 'payment_register_method'], $value);
35
36
        return $this;
37
    }
38
39
    public function 入力_手数料($value)
40
    {
41
        $this->tester->fillField(['id' => 'payment_register_charge'], $value);
42
43
        return $this;
44
    }
45
46
    public function 入力_利用条件下限($value)
47
    {
48
        $this->tester->fillField(['id' => 'payment_register_rule_min'], $value);
49
50
        return $this;
51
    }
52
53
    public function 登録()
54
    {
55
        $this->tester->click('#form1 > .c-conversionArea > .c-conversionArea__container button.btn-ec-conversion');
56
    }
57
}
58