Completed
Push — master ( 8f260e...cc8332 )
by Oleksandr
17s queued 14s
created

createPaymentPayoneOrderItemQuery()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 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\Zed\Payone\Persistence;
9
10
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneApiCallLogQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persisten...ntPayoneApiCallLogQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneApiLogQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persisten...aymentPayoneApiLogQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
12
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneOrderItemQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persisten...entPayoneOrderItemQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
13
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persistence\SpyPaymentPayoneQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogOrderItemQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persisten...StatusLogOrderItemQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogQuery;
0 ignored issues
show
Bug introduced by
The type Orm\Zed\Payone\Persisten...ansactionStatusLogQuery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
16
use Spryker\Zed\Kernel\Persistence\AbstractPersistenceFactory;
17
use SprykerEco\Zed\Payone\Persistence\Propel\Mapper\PayonePersistenceMapper;
18
19
/**
20
 * @method \SprykerEco\Zed\Payone\PayoneConfig getConfig()
21
 * @method \SprykerEco\Zed\Payone\Persistence\PayoneQueryContainerInterface getQueryContainer()
22
 */
23
class PayonePersistenceFactory extends AbstractPersistenceFactory
24
{
25
    /**
26
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogQuery
27
     */
28
    public function createPaymentPayoneTransactionStatusLogQuery(): SpyPaymentPayoneTransactionStatusLogQuery
29
    {
30
        return SpyPaymentPayoneTransactionStatusLogQuery::create();
31
    }
32
33
    /**
34
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneQuery
35
     */
36
    public function createPaymentPayoneQuery(): SpyPaymentPayoneQuery
37
    {
38
        return SpyPaymentPayoneQuery::create();
39
    }
40
41
    /**
42
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneApiLogQuery
43
     */
44
    public function createPaymentPayoneApiLogQuery(): SpyPaymentPayoneApiLogQuery
45
    {
46
        return SpyPaymentPayoneApiLogQuery::create();
47
    }
48
49
    /**
50
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogOrderItemQuery
51
     */
52
    public function createPaymentPayoneTransactionStatusLogOrderItemQuery(): SpyPaymentPayoneTransactionStatusLogOrderItemQuery
53
    {
54
        return SpyPaymentPayoneTransactionStatusLogOrderItemQuery::create();
55
    }
56
57
    /**
58
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneApiCallLogQuery
59
     */
60
    public function createPaymentPayoneApiCallLogQuery(): SpyPaymentPayoneApiCallLogQuery
61
    {
62
        return SpyPaymentPayoneApiCallLogQuery::create();
63
    }
64
65
    /**
66
     * @return \Orm\Zed\Payone\Persistence\SpyPaymentPayoneOrderItemQuery
67
     */
68
    public function createPaymentPayoneOrderItemQuery(): SpyPaymentPayoneOrderItemQuery
69
    {
70
        return SpyPaymentPayoneOrderItemQuery::create();
71
    }
72
73
    /**
74
     * @return \SprykerEco\Zed\Payone\Persistence\Propel\Mapper\PayonePersistenceMapper
75
     */
76
    public function createPayonePersistenceMapper(): PayonePersistenceMapper
77
    {
78
        return new PayonePersistenceMapper();
79
    }
80
}
81