| 1 | <?php |
||
| 21 | class StepActionStub implements StepActionInterface |
||
| 22 | { |
||
| 23 | private $step; |
||
| 24 | |||
| 25 | public function execute(): Response |
||
| 26 | { |
||
| 27 | return new Response('Stub response'); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getStep(): StepInterface |
||
| 31 | { |
||
| 32 | return $this->step ?: ($this->step = StepStub::createStub()); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function setRequest(Request $request): void |
||
| 36 | { |
||
| 37 | } |
||
| 38 | |||
| 39 | public function configure(string $managerName, string $stepName, string $characterClassName, StepResolverInterface $resolver): void |
||
| 40 | { |
||
| 41 | } |
||
| 42 | } |
||
| 43 |