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

MasterTarifController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A demo() 0 4 1
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