for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Syncer\Dto\Toggl;
/**
* Class Client
* @package Syncer\Dto\Toggl
*
* @author Clayton Liddell <[email protected]>
*/
class Client
{
* @var integer
private $id;
private $wid;
* @var String
private $name;
* @return mixed
public function getId(): int
return $this->id;
}
* @param mixed $id
public function setId(int $id)
$this->id = $id;
public function getWid(): int
return $this->wid;
* @param mixed $wid
public function setWid(int $wid)
$this->wid = $wid;
public function getName(): String
return $this->name;
* @param mixed $name
public function setName(String $name)
$this->name = $name;