@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function setId($id) |
90 | 90 | { |
91 | - $this->id = (integer)$id; |
|
91 | + $this->id = (integer) $id; |
|
92 | 92 | |
93 | 93 | return $this; |
94 | 94 | } |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public function setWorkflowName($workflowName) |
110 | 110 | { |
111 | - $this->workflowName = (string)$workflowName; |
|
111 | + $this->workflowName = (string) $workflowName; |
|
112 | 112 | |
113 | 113 | return $this; |
114 | 114 | } |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | public function setState($state) |
130 | 130 | { |
131 | - $this->state = (integer)$state; |
|
131 | + $this->state = (integer) $state; |
|
132 | 132 | |
133 | 133 | return $this; |
134 | 134 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function __construct() |
116 | 116 | { |
117 | - $this->previousSteps = new ArrayCollection(); |
|
117 | + $this->previousSteps = new ArrayCollection(); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | */ |
154 | 154 | public function setActionId($actionId = null) |
155 | 155 | { |
156 | - $this->actionId = null !== $actionId ? (integer)$actionId : $actionId; |
|
156 | + $this->actionId = null !== $actionId ? (integer) $actionId : $actionId; |
|
157 | 157 | |
158 | 158 | return $this; |
159 | 159 | } |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | */ |
174 | 174 | public function setCaller($caller = null) |
175 | 175 | { |
176 | - $this->caller = null !== $caller ? (string)$caller : $caller; |
|
176 | + $this->caller = null !== $caller ? (string) $caller : $caller; |
|
177 | 177 | |
178 | 178 | return $this; |
179 | 179 | } |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | */ |
254 | 254 | public function setOwner($owner) |
255 | 255 | { |
256 | - $this->owner = null !== $owner ? (string)$owner : $owner; |
|
256 | + $this->owner = null !== $owner ? (string) $owner : $owner; |
|
257 | 257 | |
258 | 258 | return $this; |
259 | 259 | } |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | */ |
274 | 274 | public function setStatus($status) |
275 | 275 | { |
276 | - $this->status = (string)$status; |
|
276 | + $this->status = (string) $status; |
|
277 | 277 | |
278 | 278 | return $this; |
279 | 279 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | */ |
294 | 294 | public function setStepId($stepId) |
295 | 295 | { |
296 | - $this->stepId = (string)$stepId; |
|
296 | + $this->stepId = (string) $stepId; |
|
297 | 297 | |
298 | 298 | return $this; |
299 | 299 | } |