for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: siim
* Date: 18.01.19
* Time: 9:11
*/
namespace Sf4\Api\Response;
class DefaultResponse extends AbstractResponse
{
public function __construct()
parent::__construct();
$this->setData([
'message' => 'Test'
]);
}