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