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