mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-17 22:47:10 +02:00
15 lines
258 B
PHP
15 lines
258 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();
|
|
}
|