Passed
Push — master ( 89a5ea...230ed5 )
by William
03:19
created
dashboard/application/views/templates/notification.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
 <!-- #### PUBLIC #### -->
15 15
 
16 16
 <?php if ($this->notification_model->status() === FALSE) {
17
-      $status = $this->notification_model->status_view(); ?>
17
+        $status = $this->notification_model->status_view(); ?>
18 18
     <?php echo "<div class='alert alert-info' role='alert'> Service Fault: &nbsp;&nbsp; ";
19
-          foreach ($status as $status_item): ?>
19
+            foreach ($status as $status_item): ?>
20 20
         <?php
21 21
             switch ($status_item['status']) {
22 22
                 case 0:
@@ -29,6 +29,6 @@  discard block
 block discarded – undo
29 29
                             break;
30 30
                     }
31 31
             }
32
-             ?>                          
32
+                ?>                          
33 33
     <?php endforeach; 
34
-          echo "</div>"; }
35 34
\ No newline at end of file
35
+            echo "</div>"; }
36 36
\ No newline at end of file
Please login to merge, or discard this patch.
dashboard/application/views/templates/table_assets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
2 2
 
3
-<?php foreach($css_files as $file): ?>
3
+<?php foreach ($css_files as $file): ?>
4 4
     <link type="text/css" rel="stylesheet" href="<?= $file; ?>" />
5 5
 <?php endforeach; ?>
6
-<?php foreach($js_files as $file): ?>
6
+<?php foreach ($js_files as $file): ?>
7 7
     <script src="<?= $file; ?>"></script>
8 8
 <?php endforeach;
9 9
\ No newline at end of file
Please login to merge, or discard this patch.