get() public method

GETs a resource.
public get ( String $location ) : CurlClientResponse
$location String
return CurlClientResponse
 /**
  * @fixes https://github.com/doctrine/orientdb-odm/pull/97
  *
  * Test coupled with a Google response
  */
 public function testYouCanExecuteAGETAfteraPOST()
 {
     $client = new CurlClient();
     $client->post('http://www.google.com/', array());
     $response = $client->get('http://www.google.com/');
     $this->assertFalse($response->getStatusCode() == 411);
 }