20 lines
317 B
PHP
20 lines
317 B
PHP
<?php
|
|
|
|
namespace App\ScheduledNode;
|
|
|
|
use App\Plan\Plan;
|
|
use DateTimeImmutable;
|
|
|
|
class ScheduledNode
|
|
{
|
|
public function __construct(
|
|
private int $id,
|
|
private DateTimeImmutable $date,
|
|
private Plan $plan,
|
|
) {}
|
|
|
|
public function getPlan(): Plan
|
|
{
|
|
return $this->plan;
|
|
}
|
|
}
|