Skip to content
Snippets Groups Projects
Payment.php 217 B
Newer Older
<?php

namespace Hp\Patterns\Iterator;

class Payment
{
    private int $id;

    private \DateTimeImmutable $date;

    private float $amount;

    public function getId(): int
    {
        return $this->id;
    }
}