for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Marek\Toggable\API\Http\Request\Project;
use Marek\Toggable\API\Http\Request\Request;
/**
* Class CreateProject
* @package Marek\Toggable\API\Http\Request\Project
*/
class CreateProject extends Request
{
* @var string
protected $uri = 'projects';
protected $method = Request::POST;
* {@inheritdoc}
public function jsonSerialize()
return array('project' => $this->data);
}