for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thunder\SimilarWebApi;
/**
* @author Tomasz Kowalczyk <[email protected]>
*/
abstract class AbstractResponse
{
protected $response;
public function __construct(RawResponse $response)
$this->response = $response;
}
public function getRawResponse()
return $this->response;