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);
}
}