Newer
Older
<?php
namespace Hp\Patterns\Command;
class Invoker
{
private Command $command;
public function setCommand(Command $command): void
{
$this->command = $command;
}
public function run(float $amountCash): void
{
$this->command->execute($amountCash);
}
}