for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Padosoft\AffiliateNetwork\Networks;
use Padosoft\AffiliateNetwork\AbstractNetwork;
use Padosoft\AffiliateNetwork\NetworkInterface;
/**
* Class Zanox
* @package Padosoft\AffiliateNetwork\Networks
*/
class Zanox extends AbstractNetwork implements NetworkInterface
{
* @param \DateTime $dateFrom
* @param \DateTime $dateTo
* @param int $merchantID
* @return array of Deal
public function getDeals(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
// TODO: Implement getDeals() method.
}
* @return array of Transaction
public function getSales(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
// TODO: Implement getSales() method.
* @return array of Stat
public function getStats(\DateTime $dateFrom, \DateTime $dateTo, int $merchantID = 0) : array
// TODO: Implement getStats() method.