spec\SevenShores\Hubspot\Resources\CompanyPropertiesSpec::it_can_delete_a_company_property PHP Метод

it_can_delete_a_company_property() публичный Метод

    function it_can_delete_a_company_property($client)
    {
        $propertyName = 'shippingaddress';
        $url = $this->buildUrl("/companies/v2/properties/named/{$propertyName}");
        $client->delete($url, ['headers' => $this->headers])->shouldBeCalled()->willReturn('response');
        $this->delete($propertyName)->shouldReturn('response');
    }