Completed
Push — master ( 44d13a...738b86 )
by ARCANEDEV
06:02
created

LogViewerController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 15
ccs 0
cts 7
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 8 1
1
<?php namespace Arcanesoft\Foundation\Http\Controllers;
2
3
use Arcanesoft\Foundation\Bases\FoundationController;
4
5
/**
6
 * Class     LogViewerController
7
 *
8
 * @package  Arcanesoft\Foundation\Http\Controllers
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class LogViewerController extends FoundationController
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Main Functions
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    public function index()
18
    {
19
        $this->setCurrentPage('foundation-logviewer');
20
        $title = 'LogViewer';
21
        $this->addBreadcrumb($title);
22
23
        return $this->view('log-viewer.index');
24
    }
25
}
26