| 1 | <?php |
||
| 20 | class StateMachine implements StateMachineInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var FactoryInterface |
||
| 24 | */ |
||
| 25 | private $stateMachineFactory; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param FactoryInterface $stateMachineFactory |
||
| 29 | */ |
||
| 30 | public function __construct(FactoryInterface $stateMachineFactory) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function apply(RequestConfiguration $configuration, ResourceInterface $resource) |
||
| 46 | } |
||
| 47 |