@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Reader\Exception; |
7 | 7 | |
8 | 8 | use OldTown\Workflow\ZF2\Dispatch\Metadata\Exception\RuntimeException as Exception; |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Reader; |
7 | 7 | |
8 | 8 | use \OldTown\Workflow\ZF2\Dispatch\Metadata\Storage\MetadataInterface; |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Storage; |
7 | 7 | |
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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Storage\Exception; |
7 | 7 | |
8 | 8 | use OldTown\Workflow\ZF2\Dispatch\Metadata\Exception\ExceptionInterface as BaseException; |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Storage\Exception; |
7 | 7 | |
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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Storage; |
7 | 7 | |
8 | 8 | use SplObjectStorage; |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | */ |
182 | 182 | public function setWorkflowDispatch($workflowDispatch) |
183 | 183 | { |
184 | - $this->workflowDispatch = (boolean)$workflowDispatch; |
|
184 | + $this->workflowDispatch = (boolean) $workflowDispatch; |
|
185 | 185 | |
186 | 186 | return $this; |
187 | 187 | } |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $errMsg = sprintf('Not allowed type %s', $workflowRunType); |
215 | 215 | throw new Exception\InvalidMetadataException($errMsg); |
216 | 216 | } |
217 | - $this->workflowRunType = (string)$workflowRunType; |
|
217 | + $this->workflowRunType = (string) $workflowRunType; |
|
218 | 218 | |
219 | 219 | return $this; |
220 | 220 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | */ |
240 | 240 | public function setFlagRunPrepareData($flagRunPrepareData) |
241 | 241 | { |
242 | - $this->flagRunPrepareData = (boolean)$flagRunPrepareData; |
|
242 | + $this->flagRunPrepareData = (boolean) $flagRunPrepareData; |
|
243 | 243 | |
244 | 244 | return $this; |
245 | 245 | } |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | $errMsg = sprintf('Not allowed prepare data method %s', $prepareDataMethod); |
269 | 269 | throw new Exception\InvalidMetadataException($errMsg); |
270 | 270 | } |
271 | - $this->prepareDataMethod = (string)$prepareDataMethod; |
|
271 | + $this->prepareDataMethod = (string) $prepareDataMethod; |
|
272 | 272 | |
273 | 273 | return $this; |
274 | 274 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | */ |
294 | 294 | public function setPrepareDataHandler($prepareDataHandler) |
295 | 295 | { |
296 | - $this->prepareDataHandler = (string)$prepareDataHandler; |
|
296 | + $this->prepareDataHandler = (string) $prepareDataHandler; |
|
297 | 297 | |
298 | 298 | return $this; |
299 | 299 | } |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | */ |
318 | 318 | public function setFlagHasConditions($flagHasConditions) |
319 | 319 | { |
320 | - $this->flagHasConditions = (boolean)$flagHasConditions; |
|
320 | + $this->flagHasConditions = (boolean) $flagHasConditions; |
|
321 | 321 | |
322 | 322 | return $this; |
323 | 323 | } |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | */ |
439 | 439 | public function setEntryIdRouterParam($entryIdRouterParam) |
440 | 440 | { |
441 | - $this->entryIdRouterParam = (string)$entryIdRouterParam; |
|
441 | + $this->entryIdRouterParam = (string) $entryIdRouterParam; |
|
442 | 442 | |
443 | 443 | return $this; |
444 | 444 | } |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Metadata\Storage; |
7 | 7 | |
8 | 8 | use SplObjectStorage; |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Options\Exception; |
7 | 7 | |
8 | 8 | use \OldTown\Workflow\ZF2\Dispatch\Exception\ExceptionInterface as BaseException; |
@@ -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 | namespace OldTown\Workflow\ZF2\Dispatch\Options\Exception; |
7 | 7 | |
8 | 8 | use OldTown\Workflow\ZF2\Dispatch\Exception\InvalidArgumentException as Exception; |