DesignPatternsPHP/Behavioral/Command/CommandInterface.php
Dominik Liebler a6b09d6b18 PHP7 Command
2016-09-22 09:26:25 +02:00

13 lines
241 B
PHP

<?php
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();
}