11 lines
167 B
PHP
11 lines
167 B
PHP
![]() |
<?php
|
||
|
namespace Consolidation\AnnotatedCommand;
|
||
|
|
||
|
interface State
|
||
|
{
|
||
|
/**
|
||
|
* Restore state to a previously cached value.
|
||
|
*/
|
||
|
public function restore();
|
||
|
}
|