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 Project
* @package Syncer\Dto\InvoiceNinja
*
* @author Clayton Liddell <[email protected]>
*/
class Project
{
* @var integer
private $id;
* @var string
private $name;
private $clientId;
* @var bool
private $isDeleted;
* @return int
public function getId()
return $this->id;
}
* @param int $id
public function setId(int $id)
$this->id = $id;
* @return string
public function getName(): string
return $this->name;
* @param string $name
public function setName(string $name)
$this->name = $name;
public function getClientId(): int
return $this->clientId;
* @param int $clientId
public function setClientId(int $clientId)
$this->clientId = $clientId;
* @return bool
public function getIsDeleted()
return $this->isDeleted;
* @param bool $isDeleted
public function setIsDeleted(bool $isDeleted)
$this->isDeleted = $isDeleted;