Completed
Push — master ( 78b4bc...aee67f )
by Lorenzo
01:34
created

Zanox::getStats()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 3
1
<?php
2
3
namespace Padosoft\AffiliateNetwork\Networks;
4
5
use Padosoft\AffiliateNetwork\AbstractNetwork;
6
use Padosoft\AffiliateNetwork\NetworkInterface;
7
8
/**
9
 * Class Zanox
10
 * @package Padosoft\AffiliateNetwork\Networks
11
 */
12
class Zanox extends AbstractNetwork implements NetworkInterface
13
{
14
    /**
15
     * @param \DateTime $dateFrom
16
     * @param \DateTime $dateTo
17
     * @param int $merchantID
18
     * @return array of Deal
19
     */
20
    public function getDeals(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
21
    {
22
        // TODO: Implement getDeals() method.
23
    }
24
25
    /**
26
     * @param \DateTime $dateFrom
27
     * @param \DateTime $dateTo
28
     * @param int $merchantID
29
     * @return array of Transaction
30
     */
31
    public function getSales(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
32
    {
33
        // TODO: Implement getSales() method.
34
    }
35
36
    /**
37
     * @param \DateTime $dateFrom
38
     * @param \DateTime $dateTo
39
     * @param int $merchantID
40
     * @return array of Stat
41
     */
42
    public function getStats(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
43
    {
44
        // TODO: Implement getStats() method.
45
    }
46
}
47