Skip to content
Snippets Groups Projects
EnterCashCommand.php 274 B
Newer Older
<?php

namespace Hp\Patterns\Command;

class EnterCashCommand implements Command
{
    public function __construct(private ReceiverATM $receiver)
    {
    }

    public function execute(float $amountCash): void
    {
        $this->receiver->enterCash($amountCash);
    }
}