Passed
Pull Request — master (#13)
by
unknown
13:47 queued 09:37
created

CrefoPayConfig::getCrefoPayOrderIdLength()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 1
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * MIT License
5
 * For full license information, please view the LICENSE file that was distributed with this source code.
6
 */
7
8
namespace SprykerEco\Service\CrefoPay;
9
10
use Spryker\Service\Kernel\AbstractBundleConfig;
11
12
class CrefoPayConfig extends AbstractBundleConfig
13
{
14
    /**
15
     * @var int
16
     */
17
    protected const CREFO_PAY_ORDER_ID_LENGTH = 30;
18
19
    /**
20
     * @api
21
     *
22
     * @return int
23
     */
24
    public function getCrefoPayOrderIdLength(): int
25
    {
26
        return static::CREFO_PAY_ORDER_ID_LENGTH;
27
    }
28
}
29