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; |
|
|
|
|
11
|
|
|
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneApiLogQuery; |
|
|
|
|
12
|
|
|
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneOrderItemQuery; |
|
|
|
|
13
|
|
|
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneQuery; |
|
|
|
|
14
|
|
|
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogOrderItemQuery; |
|
|
|
|
15
|
|
|
use Orm\Zed\Payone\Persistence\SpyPaymentPayoneTransactionStatusLogQuery; |
|
|
|
|
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
|
|
|
|
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths