Passed
Push — master ( 51af7c...6a9370 )
by Aimeos
03:35
created
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 call_user_func_array( $fcn->bindTo( $this, static::class ), [$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.