for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Dmitry Gladyshev <[email protected]>
* @date 26/08/20120 21:16
*/
namespace Yandex\Direct\Service;
use Yandex\Direct\Service;
use function Yandex\Direct\get_param_names;
* Class Businesses
*
* @see https://yandex.ru/dev/direct/doc/ref-v5/businesses/businesses-docpage/
final class Businesses extends Service
{
* @param array $SelectionCriteria
* @param array $FieldNames
* @param array $Page
* @return array|\DOMDocument
* @throws \ReflectionException
* @throws \Yandex\Direct\Exception\ErrorResponseException
* @throws \Yandex\Direct\Exception\Exception
* @see https://yandex.ru/dev/direct/doc/ref-v5/businesses/get-docpage/
public function get(
$SelectionCriteria,
$FieldNames,
$Page = null
) {
$params = compact(get_param_names(__METHOD__));
return $this->request([
'method' => 'get',
'params' => $params
]);
}