for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipbox/hubspot/blob/master/LICENSE.md
* @link https://github.com/flipbox/hubspot
*/
namespace Flipbox\HubSpot\Criteria;
use Flipbox\HubSpot\Resources\CompanyContacts;
use Psr\Http\Message\ResponseInterface;
* @author Flipbox Factory <[email protected]>
* @since 2.0.0
class CompanyContactsAccessorCriteria extends AbstractObjectAccessor
{
* @param array $criteria
* @param array $config
* @return ResponseInterface
public function all(array $criteria = [], array $config = []): ResponseInterface
$this->populate($criteria);
return CompanyContacts::all(
$this->getId(),
$this->getConnection(),
$this->getCache(),
$this->getLogger(),
$config
);
}