mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
16 lines
275 B
PHP
16 lines
275 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();
|
|
}
|