mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-10 16:04:57 +02:00
13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\State;
|
|
|
|
interface StateOrder
|
|
{
|
|
public function proceedToNext(ContextOrder $context): void;
|
|
|
|
public function toString(): string;
|
|
}
|