mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-12 01:15:29 +02:00
13 lines
241 B
PHP
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();
|
|
}
|