Completed
Push — master ( cc173b...1bbcf8 )
by Peter
21:26
created
src/AppBundle/Controller/DefaultController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         $form->handleRequest($request);
76 76
 
77
-        if($form->isValid()) {
77
+        if ($form->isValid()) {
78 78
             // send email to admin
79 79
             $message = \Swift_Message::newInstance()
80 80
                 ->setSubject('Message from Symfony.si')
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         $mustWatchContributors = $client->api('repo')->contributors('symfony-si', 'symfony-must-watch');
128 128
         $contributors = [];
129 129
 
130
-        foreach($srcContributors as $key=>$contributor) {
130
+        foreach ($srcContributors as $key=>$contributor) {
131 131
             $user = $client->api('user')->show($contributor['login']);
132 132
             $contributors[$contributor['login']] = [
133 133
                 'name'       => ($user['name']) ? $user['name'] : $contributor['login'],
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
             ];
137 137
         }
138 138
 
139
-        foreach($docsContributors as $key=>$contributor) {
139
+        foreach ($docsContributors as $key=>$contributor) {
140 140
             $user = $client->api('user')->show($contributor['login']);
141 141
             $contributors[$contributor['login']] = [
142 142
                 'name'       => ($user['name']) ? $user['name'] : $contributor['login'],
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
             ];
146 146
         }
147 147
 
148
-        foreach($mustWatchContributors as $key=>$contributor) {
148
+        foreach ($mustWatchContributors as $key=>$contributor) {
149 149
             $user = $client->api('user')->show($contributor['login']);
150 150
             $contributors[$contributor['login']] = [
151 151
                 'name'       => ($user['name']) ? $user['name'] : $contributor['login'],
Please login to merge, or discard this patch.