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 Workspace
* @package Syncer\Dto
*
* @author Matthieu Calie <[email protected]>
*/
class Workspace
{
* @var integer
private $id;
* @return mixed
public function getId(): int
return $this->id;
}
* @param mixed $id
public function setId(int $id)
$this->id = $id;