for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the timechimp bundle package.
* (c) Connect Holland.
*/
namespace ConnectHolland\TimechimpBundle\Api\Client\Model;
class ProjectNote
{
/**
* @var int
protected $id;
* @var string
protected $description;
* @var \DateTime
protected $date;
protected $projectId;
public function getId(): int
return $this->id;
}
public function setId(int $id): self
$this->id = $id;
return $this;
public function getDescription(): string
return $this->description;
public function setDescription(string $description): self
$this->description = $description;
public function getDate(): \DateTime
return $this->date;
public function setDate(\DateTime $date): self
$this->date = $date;
public function getProjectId(): int
return $this->projectId;
public function setProjectId(int $projectId): self
$this->projectId = $projectId;