for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Direct\Service;
use Yandex\Direct\Service;
use Yandex\Direct\Transport\ReportRequestInterface;
/**
* Class Reports
*
* @author Dmitry Gladyshev <[email protected]>
*/
final class Reports extends Service
{
protected $processingMode = ReportRequestInterface::PROCESSING_MODE_AUTO;
* @param $mode
* @return $this
public function setProcessingMode($mode)
$this->processingMode = $mode;
return $this;
}