Completed
Push — master ( a7ae1b...6c3874 )
by
unknown
03:16
created

MasterTarifController::demo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php namespace Bantenporv\MasterTarif\Http\Controllers;
2
3
use App\Http\Controllers\Controller;
4
use Illuminate\Http\Request;
5
use Bantenporv\MasterTarif\Facades\MasterTarif;
6
use Bantenporv\MasterTarif\Models\MasterTarifModel;
7
8
/**
9
 * The MasterTarifController class.
10
 *
11
 * @package Bantenporv\MasterTarif
12
 * @author  bantenprov <[email protected]>
13
 */
14
class MasterTarifController extends Controller
15
{
16
    public function demo()
17
    {
18
        return MasterTarif::welcome();
19
    }
20
}
21