Completed
Push — master ( eab9e2...470265 )
by Patrick
01:40 queued 13s
created
api/v1/class.Processor.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             try {
64 64
                 $profile = new \VolunteerProfile($uid);
65 65
                 $uids[$uid] = $profile->getDisplayName();
66
-            } catch (Exception $e) {
66
+            } catch(Exception $e) {
67 67
                 $uids[$uid] = $uid;
68 68
             }
69 69
         }
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,10 +60,13 @@
 block discarded – undo
60 60
         static $uids = array();
61 61
         if(!isset($uids[$uid]))
62 62
         {
63
-            try {
63
+            try
64
+            {
64 65
                 $profile = new \VolunteerProfile($uid);
65 66
                 $uids[$uid] = $profile->getDisplayName();
66
-            } catch (Exception $e) {
67
+            }
68
+            catch (Exception $e)
69
+            {
67 70
                 $uids[$uid] = $uid;
68 71
             }
69 72
         }
Please login to merge, or discard this patch.