Command.php 114 B
Newer Older
<?php

namespace Hp\Patterns\Command;

interface Command
{
    public function execute(float $amountCash): void;
}