/**
  * {@inheritDoc}
  */
 protected function delete($path)
 {
     return $this->client->delete($path);
 }
 /**
  * @test
  * @dataProvider getApiClassesProvider
  */
 public function shouldGetApiInstance($apiName, $class)
 {
     $client = new Client('asdf');
     $this->assertInstanceOf($class, $client->api($apiName));
 }