DesignPatternsPHP/Command/CommandInterface.php
2013-09-24 09:46:18 +02:00

16 lines
264 B
PHP

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