id getter for scheduled node

This commit is contained in:
Yisroel Baum 2026-03-01 11:56:55 +02:00
parent 309c085007
commit 0d00254e5f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -13,6 +13,11 @@ class ScheduledNode
private Plan $plan,
) {}
public function getId(): int
{
return $this->id;
}
public function getPlan(): Plan
{
return $this->plan;