See also: http://docs.aws.amazon.com/AWSECommerceService/2011-08-01/DG/AnatomyOfaRESTRequest.html
Author: Jan Eichhorn (exeu65@googlemail.com)
Inheritance: implements ApaiIO\Request\RequestInterface
Beispiel #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testSchemeSetterWithInvalidValue()
 {
     $client = $this->prophesize('\\GuzzleHttp\\ClientInterface');
     $request = new GuzzleRequest($client->reveal());
     $request->setScheme('ftp');
 }