for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Loevgaard\Linkmobility\Response;
abstract class Response implements ResponseInterface
{
protected $data;
public function __construct($data)
$this->data = $data;
$this->init();
}