Completed
Pull Request — master (#481)
by
unknown
18s
created
templates/html_report/complexity.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require __DIR__ . '/_header.php'; ?>
2
+require __DIR__.'/_header.php'; ?>
3 3
 
4 4
     <div class="row">
5 5
         <div class="column">
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                             <td><span class="path"><?php echo $class['name']; ?></span></td>
76 76
                             <?php foreach (['wmc', 'ccn', 'ccnMethodMax', 'relativeSystemComplexity', 'relativeDataComplexity', 'relativeStructuralComplexity', 'bugs', 'kanDefect'] as $attribute) {?>
77 77
                                 <td>
78
-                                    <span class="badge" <?php echo gradientStyleFor($classes, $attribute, $class[$attribute]);?>>
78
+                                    <span class="badge" <?php echo gradientStyleFor($classes, $attribute, $class[$attribute]); ?>>
79 79
                                     <?php echo isset($class[$attribute]) ? $class[$attribute] : ''; ?>
80 80
                                     </span>
81 81
                                 </td>
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
                         <?php
88 88
                         foreach ($class['methods'] as $method) { ?>
89 89
                             <tr>
90
-                                <td><?php echo $class['name'] . '::' . $method->getName(); ?></td>
90
+                                <td><?php echo $class['name'].'::'.$method->getName(); ?></td>
91 91
                                 <td>&nbsp;</td>
92 92
                                 <td>&nbsp;</td>
93
-                                <td><span class="badge" <?php echo gradientStyleFor($classes, 'ccnMethodMax', $method->get('ccn'));?>><?php echo $method->get('ccn'); ?></span></td>
93
+                                <td><span class="badge" <?php echo gradientStyleFor($classes, 'ccnMethodMax', $method->get('ccn')); ?>><?php echo $method->get('ccn'); ?></span></td>
94 94
                                 <td colspan="<?php echo ($config->has('junit')) ? '6' : '5'; ?>">&nbsp;</td>
95 95
                             </tr>
96 96
                         <?php }
@@ -102,4 +102,4 @@  discard block
 block discarded – undo
102 102
     </div>
103 103
 
104 104
 
105
-<?php require __DIR__ . '/_footer.php'; ?>
105
+<?php require __DIR__.'/_footer.php'; ?>
Please login to merge, or discard this patch.