Passed
Pull Request — master (#81)
by
unknown
08:39
created

createOrderPriceDistributor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Service\Payone;
9
10
use Spryker\Service\Kernel\AbstractServiceFactory;
11
use SprykerEco\Service\Payone\Model\Distributor\OrderPriceDistributor;
12
use SprykerEco\Service\Payone\Model\Distributor\OrderPriceDistributorInterface;
13
14
class PayoneServiceFactory extends AbstractServiceFactory
15
{
16
    /**
17
     * @return \SprykerEco\Service\Payone\Model\Distributor\OrderPriceDistributorInterface
18
     */
19
    public function createOrderPriceDistributor(): OrderPriceDistributorInterface
20
    {
21
        return new OrderPriceDistributor();
22
    }
23
}
24