This commit is contained in:
Julie Lenaerts 2023-09-18 11:49:33 +02:00
parent 722026b768
commit bdee637c9f
2 changed files with 17 additions and 10 deletions

View File

@ -81,16 +81,6 @@ class AbstractTaskPlaceEvent
return $this->datetime;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Get transition.
*

View File

@ -60,4 +60,21 @@ class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent
return $this;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
public function setId($id): self
{
$this->id = $id;
return $this;
}
}