Passed
Pull Request — master (#1868)
by
unknown
35:27
created
www/includes/easyparliament/templates/html/mp/votes.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
 
132 132
                     <ul class="vote-descriptions">
133 133
                               <?php foreach ($sig_diff_policy->policy_pairs as $policy_pair) {
134
-                                  include '_vote_description.php';
135
-                              } ?>
134
+                                    include '_vote_description.php';
135
+                                } ?>
136 136
                             </ul>
137 137
 
138 138
                     <?php } ?>
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
                             <ul class="vote-descriptions">
166 166
                               <?php foreach ($segment->policy_pairs as $policy_pair) {
167 167
 
168
-                                  include '_vote_description.php';
168
+                                    include '_vote_description.php';
169 169
 
170
-                              } ?>
170
+                                } ?>
171 171
                             </ul>
172 172
 
173 173
                             <p class="voting-information-provenance">
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
                 <h3 class="browse-content">Comparison periods</h3>
25 25
                     <ul> 
26
-                    <?php foreach($available_periods as $period) { ?>
26
+                    <?php foreach ($available_periods as $period) { ?>
27 27
                         <li class="active"><a href="?comparison_period=<?= $period->lslug() ?>"><?= $period->description ?></a></li>
28 28
                     <?php } ?>
29 29
                     </ul>
Please login to merge, or discard this patch.
classes/PolicyDistributionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             $group_name = $policies->getSetDescriptions()[$set_slug];
67 67
             $group_slug = $set_slug;
68 68
             $comparison_period_slug = $period_slug;
69
-            $policy_pairs = array_filter($pairs, function ($pair) use ($policy_ids) {
69
+            $policy_pairs = array_filter($pairs, function($pair) use ($policy_ids) {
70 70
                 return in_array($pair->getPolicyID(), $policy_ids) && !$pair->member_distribution->noDataAvailable();
71 71
             });
72 72
             $collection = new PolicyDistributionCollection($group_slug, $group_name, $comparison_period_slug, $person_id, $party_slug, $policy_pairs);
Please login to merge, or discard this patch.
www/docs/mp/index.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
 function person_error_page($message) {
616 616
     global $this_page;
617 617
     $SEARCHURL = '';
618
-    switch($this_page) {
618
+    switch ($this_page) {
619 619
         case 'peer':
620 620
             $people = new MySociety\TheyWorkForYou\People\Peers();
621 621
             $MPSURL = new \MySociety\TheyWorkForYou\Url('peers');
@@ -801,7 +801,7 @@  discard block
 block discarded – undo
801 801
         $SEARCHENGINE = new \SEARCHENGINE($searchstring);
802 802
 
803 803
         $hansard = new MySociety\TheyWorkForYou\Hansard();
804
-        $args =  [
804
+        $args = [
805 805
             's' => $searchstring,
806 806
             'p' => 1,
807 807
             'num' => 3,
@@ -1017,7 +1017,7 @@  discard block
 block discarded – undo
1017 1017
 
1018 1018
     $lang = LANGUAGE;
1019 1019
 
1020
-    $reg = ['chamber_registers' => [] ];
1020
+    $reg = ['chamber_registers' => []];
1021 1021
 
1022 1022
     foreach ($valid_chambers as $chamber) {
1023 1023
         $key = 'person_regmem_' . $chamber . '_' . $lang;
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
     }
1033 1033
 
1034 1034
     // sort chamber registers by published_date
1035
-    uasort($reg['chamber_registers'], function ($a, $b) {
1035
+    uasort($reg['chamber_registers'], function($a, $b) {
1036 1036
         return $a->published_date <=> $b->published_date;
1037 1037
     });
1038 1038
 
@@ -1126,8 +1126,8 @@  discard block
 block discarded – undo
1126 1126
         }
1127 1127
     }
1128 1128
 
1129
-    foreach($mreg as $reg) {
1130
-        $data['members'][] =  [
1129
+    foreach ($mreg as $reg) {
1130
+        $data['members'][] = [
1131 1131
             'url' => '/' . $rep_type . '/?p=' . $reg['person_id'],
1132 1132
             'name' => $reg['given_name'] . ' ' . $reg['family_name'],
1133 1133
         ];
Please login to merge, or discard this patch.