DesignPatternsPHP/Behavioral/Command/CommandInterface.php
2015-12-21 07:28:20 -05:00

16 lines
276 B
PHP

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