mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-03 04:25:51 +02:00
13 lines
257 B
PHP
13 lines
257 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Command;
|
|
|
|
interface Command
|
|
{
|
|
/**
|
|
* this is the most important method in the Command pattern,
|
|
* The Receiver goes in the constructor.
|
|
*/
|
|
public function execute();
|
|
}
|