Files
farmOS-dev/vendor/consolidation/annotated-command/src/State/SavableState.php
2024-12-10 15:08:16 +01:00

13 lines
210 B
PHP

<?php
namespace Consolidation\AnnotatedCommand\State;
interface SavableState
{
/**
* Return the current state of this object.
*
* @return State
*/
public function currentState();
}