for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LunixREST\Server\APIResponse;
class APIResponseData {
protected $data;
/**
* APIResponseData constructor.
* @param null|object|array $data
*/
public function __construct($data)
{
$this->data = $data;
}
public function getData() {
return $this->data;