mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-07 15:36:34 +02:00
fix: classes renaming to correspond to UML diagram
This commit is contained in:
12
Behavioral/State/StateOrder.php
Normal file
12
Behavioral/State/StateOrder.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace DesignPatterns\Behavioral\State;
|
||||
|
||||
interface StateOrder
|
||||
{
|
||||
public function proceedToNext(ContextOrder $context);
|
||||
|
||||
public function toString(): string;
|
||||
}
|
Reference in New Issue
Block a user