Code Duplication    Length = 18-20 lines in 2 locations

phpsysinfo/includes/os/class.Android.inc.php 1 location

@@ 235-252 (lines=18) @@
232
     *
233
     * @return Void
234
     */
235
    public function build()
236
    {
237
        $this->_distro();
238
        $this->_hostname();
239
        $this->_kernel();
240
        $this->_machine();
241
        $this->_uptime();
242
        $this->_users();
243
        $this->_cpuinfo();
244
        $this->_pci();
245
        $this->_usb();
246
        $this->_i2c();
247
        $this->_network();
248
        $this->_memory();
249
        $this->_filesystems();
250
        $this->_loadavg();
251
        $this->_processes();
252
    }
253
}
254

phpsysinfo/includes/os/class.Linux.inc.php 1 location

@@ 1261-1280 (lines=20) @@
1258
     *
1259
     * @return Void
1260
     */
1261
    public function build()
1262
    {
1263
        $this->_distro();
1264
        $this->_hostname();
1265
        $this->_kernel();
1266
        $this->_machine();
1267
        $this->_uptime();
1268
        $this->_users();
1269
        $this->_cpuinfo();
1270
        $this->_pci();
1271
        $this->_ide();
1272
        $this->_scsi();
1273
        $this->_usb();
1274
        $this->_i2c();
1275
        $this->_network();
1276
        $this->_memory();
1277
        $this->_filesystems();
1278
        $this->_loadavg();
1279
        $this->_processes();
1280
    }
1281
}
1282