Completed
Push — master ( 251d07...973a55 )
by Oleksandr
10s
created

ArvatoRssQueryContainer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A queryApiLogByOrderReferenceAndType() 0 4 1
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\ArvatoRss\Persistence;
9
10
use Spryker\Zed\Kernel\Persistence\AbstractQueryContainer;
11
12
/**
13
 * @method \SprykerEco\Zed\ArvatoRss\Persistence\ArvatoRssPersistenceFactory getFactory()
14
 */
15
class ArvatoRssQueryContainer extends AbstractQueryContainer implements ArvatoRssQueryContainerInterface
16
{
17
    /**
18
     * @param string $orderReference
19
     * @param string $type
20
     *
21
     * @return \Orm\Zed\ArvatoRss\Persistence\SpyArvatoRssApiCallLogQuery
22
     */
23
    public function queryApiLogByOrderReferenceAndType($orderReference, $type)
24
    {
25
        return $this->getFactory()->createArvatoRssApiCallLogQuery();
26
    }
27
}
28