mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 13:59:08 +02:00
11 lines
170 B
PHP
11 lines
170 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\State;
|
|
|
|
interface State
|
|
{
|
|
public function proceedToNext(OrderContext $context);
|
|
|
|
public function toString(): string;
|
|
}
|