fix typehint

This commit is contained in:
Dennis Eichhorn 2020-09-10 20:40:12 +02:00
parent 5912df63b9
commit c8b6de3e54
3 changed files with 6 additions and 6 deletions

View File

@ -217,11 +217,11 @@ class KanbanBoard implements \JsonSerializable
/**
* Get created at date time
*
* @return \DateTime
* @return \DateTimeImmutable
*
* @since 1.0.0
*/
public function getCreatedAt() : \DateTimeInterface
public function getCreatedAt() : \DateTimeImmutable
{
return $this->createdAt;
}

View File

@ -306,11 +306,11 @@ class KanbanCard implements \JsonSerializable
/**
* Get created at date time
*
* @return \DateTime
* @return \DateTimeImmutable
*
* @since 1.0.0
*/
public function getCreatedAt() : \DateTimeInterface
public function getCreatedAt() : \DateTimeImmutable
{
return $this->createdAt;
}

View File

@ -155,11 +155,11 @@ class KanbanCardComment implements \JsonSerializable
/**
* Get created at date time
*
* @return \DateTime
* @return \DateTimeImmutable
*
* @since 1.0.0
*/
public function getCreatedAt() : \DateTimeInterface
public function getCreatedAt() : \DateTimeImmutable
{
return $this->createdAt;
}