for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gothick\AkismetClient\Result;
/**
* Result of calling the submit-spam method on the Akismet API.
* @author matt
*
*/
class SubmitSpamResult extends ClientResult
{
* Create a result; throws if the result body isn't in the known list of responses.
* @param \GuzzleHttp\Psr7\Response $response
public function __construct(\GuzzleHttp\Psr7\Response $response)
parent::__construct($response, [ 'Thanks for making the web a better place.' ]);
}