Completed
Pull Request — develop (#44)
by Daniel
07:16
created
app/DeviceOS.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
     /**
7 7
      * Load OS Class
8
-     * @param string $os Operating System Identifier
9 8
      * @return DeviceOS
10 9
      */
11 10
     static public function load(Device $device) {
Please login to merge, or discard this patch.
app/OS/Linux.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -7,32 +7,32 @@
 block discarded – undo
7 7
     protected $text      = 'Linux';
8 8
     protected $icon      = 'linux';
9 9
     protected $attrib    = array(
10
-                               'ifXmcbc' => true,
11
-                               'ifname'  => true,
12
-                           );
10
+                                'ifXmcbc' => true,
11
+                                'ifname'  => true,
12
+                            );
13 13
     protected $overlib   = array(
14
-                               array(
15
-                                   'graph' => 'device_processor',
16
-                                   'text'  => 'Processor Usage'
17
-                               ),
18
-                               array(
19
-                                   'graph' => 'device_ucd_memory',
20
-                                   'text'  => 'Memory Usage'
21
-                               ),
22
-                               array(
23
-                                   'graph' => 'device_storage',
24
-                                   'text'  => 'Storage Usage'
25
-                               ),
26
-                           );
14
+                                array(
15
+                                    'graph' => 'device_processor',
16
+                                    'text'  => 'Processor Usage'
17
+                                ),
18
+                                array(
19
+                                    'graph' => 'device_ucd_memory',
20
+                                    'text'  => 'Memory Usage'
21
+                                ),
22
+                                array(
23
+                                    'graph' => 'device_storage',
24
+                                    'text'  => 'Storage Usage'
25
+                                ),
26
+                            );
27 27
     protected $derivates = array(
28
-                               'Debian' => array(
29
-                                              'icon' => 'debian',
30
-                                           ),
31
-                               'CentOS' => array(
32
-                                              'icon' => 'centos',
33
-                                           ),
34
-                               'Ubuntu' => array(
35
-                                              'icon' => 'ubuntu',
36
-                                           ),
37
-                           );
28
+                                'Debian' => array(
29
+                                                'icon' => 'debian',
30
+                                            ),
31
+                                'CentOS' => array(
32
+                                                'icon' => 'centos',
33
+                                            ),
34
+                                'Ubuntu' => array(
35
+                                                'icon' => 'ubuntu',
36
+                                            ),
37
+                            );
38 38
 }
Please login to merge, or discard this patch.