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 StartTimeEntry
* @package Marek\Toggable\API\Http\Request\TimeEntry
*
* @property-read \Marek\Toggable\API\Toggl\Values\TimeEntry\TimeEntry $timeEntry
*/
class StartTimeEntry extends Request
{
* @var string
public $uri = 'time_entries/start';
public $method = Request::POST;
* {@inheritdoc}
public function jsonSerialize()
return array('time_entry' => $this->data);
}