all() public method

Returns all of the company properties, including their definition.
See also: http://developers.hubspot.com/docs/methods/companies/get_company_properties
public all ( ) : Response
return SevenShores\Hubspot\Http\Response
 /** @test */
 public function all()
 {
     $response = $this->companyProperties->all();
     $this->assertEquals(200, $response->getStatusCode());
     $this->assertGreaterThanOrEqual(2, count($response->getData()));
 }