@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -113,7 +113,7 @@ |
||
113 | 113 | */ |
114 | 114 | public function setHandler($handler = null) |
115 | 115 | { |
116 | - $this->handler = null !== $handler ? (string)$handler: $handler; |
|
116 | + $this->handler = null !== $handler ? (string) $handler : $handler; |
|
117 | 117 | |
118 | 118 | return $this; |
119 | 119 | } |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function setWorkflowDispatch($workflowDispatch) |
108 | 108 | { |
109 | - $this->workflowDispatch = (boolean)$workflowDispatch; |
|
109 | + $this->workflowDispatch = (boolean) $workflowDispatch; |
|
110 | 110 | |
111 | 111 | return $this; |
112 | 112 | } |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function setWorkflowRunType($workflowRunType) |
136 | 136 | { |
137 | - $this->workflowRunType = (string)$workflowRunType; |
|
137 | + $this->workflowRunType = (string) $workflowRunType; |
|
138 | 138 | |
139 | 139 | return $this; |
140 | 140 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | */ |
160 | 160 | public function setFlagRunPrepareData($flagRunPrepareData) |
161 | 161 | { |
162 | - $this->flagRunPrepareData = (boolean)$flagRunPrepareData; |
|
162 | + $this->flagRunPrepareData = (boolean) $flagRunPrepareData; |
|
163 | 163 | |
164 | 164 | return $this; |
165 | 165 | } |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | $errMsg = sprintf('Not allowed prepare data method %s', $prepareDataMethod); |
191 | 191 | throw new Exception\InvalidMetadataException($errMsg); |
192 | 192 | } |
193 | - $this->prepareDataMethod = (string)$prepareDataMethod; |
|
193 | + $this->prepareDataMethod = (string) $prepareDataMethod; |
|
194 | 194 | |
195 | 195 | return $this; |
196 | 196 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | */ |
216 | 216 | public function setPrepareDataHandler($prepareDataHandler) |
217 | 217 | { |
218 | - $this->prepareDataHandler = (string)$prepareDataHandler; |
|
218 | + $this->prepareDataHandler = (string) $prepareDataHandler; |
|
219 | 219 | |
220 | 220 | return $this; |
221 | 221 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | */ |
240 | 240 | public function setFlagHasConditions($flagHasConditions) |
241 | 241 | { |
242 | - $this->flagHasConditions = (boolean)$flagHasConditions; |
|
242 | + $this->flagHasConditions = (boolean) $flagHasConditions; |
|
243 | 243 | |
244 | 244 | return $this; |
245 | 245 | } |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | - * @author Malofeykin Andrey <[email protected]> |
|
5 | - */ |
|
3 | + * @link https://github.com/old-town/workflow-zf2-dispatch |
|
4 | + * @author Malofeykin Andrey <[email protected]> |
|
5 | + */ |
|
6 | 6 | |
7 | 7 | use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController; |
8 | 8 |
@@ -131,7 +131,7 @@ |
||
131 | 131 | */ |
132 | 132 | public function setEntryIdRouterParam($entryIdRouterParam) |
133 | 133 | { |
134 | - $this->entryIdRouterParam = (string)$entryIdRouterParam; |
|
134 | + $this->entryIdRouterParam = (string) $entryIdRouterParam; |
|
135 | 135 | |
136 | 136 | return $this; |
137 | 137 | } |