Passed
Push — master ( 6a9370...26c112 )
by Aimeos
03:41
created
src/Base/Context.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -292,11 +292,12 @@
 block discarded – undo
292 292
 					return $context->user()?->getGroups() ?? [];
293 293
 				} );
294 294
 			}
295
-			catch( \Exception $e ) {} // avoid errors if user is assigned to another site
295
+			catch( \Exception $e )
296
+			{
297
+} // avoid errors if user is assigned to another site
296 298
 
297 299
 			$context->setEditor( $guard->user()?->email ?: \Request::ip() );
298
-		}
299
-		elseif( $ip = \Request::ip() )
300
+		} elseif( $ip = \Request::ip() )
300 301
 		{
301 302
 			$context->setEditor( $ip );
302 303
 		}
Please login to merge, or discard this patch.
src/Controller/ResolveController.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,9 +67,13 @@
 block discarded – undo
67 67
 
68 68
 		foreach( self::$fcn as $name => $fcn )
69 69
 		{
70
-			try {
70
+			try
71
+			{
71 72
 				return $fcn( $context, $path );
72
-			} catch( \Exception $e ) {} // not found
73
+			}
74
+			catch( \Exception $e )
75
+			{
76
+} // not found
73 77
 		}
74 78
 
75 79
 		abort( 404 );
Please login to merge, or discard this patch.