Passed
Push — master ( b2acb8...ae79d1 )
by Aimeos
01:50
created
controller/frontend/src/Controller/Frontend/Product/Standard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 	 */
230 230
 	public function parse( array $conditions )
231 231
 	{
232
-		if( ($cond = $this->filter->toConditions( $conditions ) ) !== null ) {
232
+		if( ( $cond = $this->filter->toConditions( $conditions ) ) !== null ) {
233 233
 			$this->conditions[] = $cond;
234 234
 		}
235 235
 
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
 			return [];
480 480
 		}
481 481
 
482
-		$list = [ $item->getId() ];
482
+		$list = [$item->getId()];
483 483
 
484 484
 		foreach( $item->getChildren() as $child ) {
485 485
 			$list = array_merge( $list, $this->getCatalogIdsFromTree( $child ) );
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 	 */
130 130
 	public function parse( array $conditions )
131 131
 	{
132
-		if( ($cond = $this->filter->toConditions( $conditions ) ) !== null ) {
132
+		if( ( $cond = $this->filter->toConditions( $conditions ) ) !== null ) {
133 133
 			$this->conditions[] = $cond;
134 134
 		}
135 135
 
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Subscription/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
 	 */
150 150
 	public function parse( array $conditions )
151 151
 	{
152
-		if( ($cond = $this->filter->toConditions( $conditions ) ) !== null ) {
152
+		if( ( $cond = $this->filter->toConditions( $conditions ) ) !== null ) {
153 153
 			$this->conditions[] = $cond;
154 154
 		}
155 155
 
Please login to merge, or discard this patch.