mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-30 03:30:14 +02:00
17 lines
271 B
PHP
17 lines
271 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\State;
|
|
|
|
class StateDone implements State
|
|
{
|
|
public function proceedToNext(OrderContext $context)
|
|
{
|
|
// there is nothing more to do
|
|
}
|
|
|
|
public function toString(): string
|
|
{
|
|
return 'done';
|
|
}
|
|
}
|