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