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