Skip to content

Commit 5b7ac4e

Browse files
authored
Merge pull request #54 from arrilot/analysis-zd1ag7
Applied fixes from StyleCI
2 parents 336f456 + c746063 commit 5b7ac4e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/Factories/AbstractWidgetFactory.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,13 @@ protected function wrapContentInContainer($content)
155155

156156
return '<'.$container['element'].' id="'.$this->javascriptFactory->getContainerId().'" '.$container['attributes'].'>'.$content.'</'.$container['element'].'>';
157157
}
158-
158+
159159
/**
160160
* Encrypt widget params to be transported via HTTP.
161-
*
161+
*
162162
* @param array $params
163-
* @return string
163+
*
164+
* @return string
164165
*/
165166
public function encryptWidgetParams($params)
166167
{
@@ -171,6 +172,7 @@ public function encryptWidgetParams($params)
171172
* Decrypt widget params that were transported via HTTP.
172173
*
173174
* @param string $params
175+
*
174176
* @return array
175177
*/
176178
public function decryptWidgetParams($params)

tests/Support/TestApplicationWrapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function make($abstract, array $parameters = [])
9191
if ($abstract == 'arrilot.async-widget') {
9292
return new AsyncWidgetFactory($this);
9393
}
94-
94+
9595
if ($abstract == 'encrypter') {
9696
return new TestEncrypter();
9797
}

0 commit comments

Comments
 (0)