mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-28 18:50:11 +02:00
13 lines
196 B
PHP
13 lines
196 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\State;
|
|
|
|
interface State
|
|
{
|
|
public function proceedToNext(OrderContext $context);
|
|
|
|
public function toString(): string;
|
|
}
|