Files
DesignPatternsPHP/Behavioral/Command/CommandInterface.php
2019-08-17 21:58:04 +02:00

14 lines
266 B
PHP

<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Command;
interface CommandInterface
{
/**
* this is the most important method in the Command pattern,
* The Receiver goes in the constructor.
*/
public function execute();
}