Completed
Push — master ( ffed5b...79dc99 )
by
unknown
04:07
created

MasterTarif   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A welcome() 0 4 1
1
<?php namespace Bantenprov\MasterTarif;
2
3
/**
4
 * The MasterTarif class.
5
 *
6
 * @package Bantenprov\MasterTarif
7
 * @author  bantenprov <[email protected]>
8
 */
9
class MasterTarif
10
{
11
    public function welcome()
12
    {
13
        return 'Welcome to Bantenprov\MasterTarif package';
14
    }
15
}
16