Skip to content

Commit 94075b5

Browse files
author
Tobias Wojtylak
committed
Fixed code styles (according to new solutiondrive/codingstandards)
1 parent da8d329 commit 94075b5

File tree

4 files changed

+12
-24
lines changed

4 files changed

+12
-24
lines changed

src/Context/FlowContext.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,10 @@
1414

1515
class FlowContext implements FlowContextInterface
1616
{
17-
/**
18-
* @var MultiStepFlowInterface
19-
*/
17+
/** @var MultiStepFlowInterface */
2018
private $flow;
2119

22-
/**
23-
* @var string
24-
*/
20+
/** @var string */
2521
private $currentStepSlug;
2622

2723
public function __construct(MultiStepFlowInterface $flow, string $currentStepSlug)

src/Controller/MultiStepController.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ class MultiStepController extends Controller
2929

3030
/** @var ArgumentResolverInterface */
3131
private $argumentResolver;
32-
/**
33-
* @var FlowContextFactoryInterface
34-
*/
32+
33+
/** @var FlowContextFactoryInterface */
3534
private $flowContextFactory;
36-
/**
37-
* @var MultistepRouterFactoryInterface
38-
*/
35+
36+
/** @var MultistepRouterFactoryInterface */
3937
private $stepRouterFactory;
4038

4139
public function __construct(

src/Factory/MultistepRouterFactory.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616

1717
class MultistepRouterFactory implements MultistepRouterFactoryInterface
1818
{
19-
/**
20-
* @var RouterInterface
21-
*/
19+
/** @var RouterInterface */
2220
private $router;
2321

2422
public function __construct(RouterInterface $router)

src/Router/MultistepRouter.php

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,13 @@
1515

1616
class MultistepRouter implements MultistepRouterInterface
1717
{
18-
/**
19-
* @var RouterInterface
20-
*/
18+
/** @var RouterInterface */
2119
private $router;
22-
/**
23-
* @var string
24-
*/
20+
21+
/** @var string */
2522
private $flowSlug;
26-
/**
27-
* @var Request
28-
*/
23+
24+
/** @var Request */
2925
private $request;
3026

3127
public function __construct(RouterInterface $router, Request $request, string $flowSlug)

0 commit comments

Comments
 (0)