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

MasterTarif   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 welcome() 0 4 1
1
<?php namespace Bantenporv\MasterTarif;
2
3
/**
4
 * The MasterTarif class.
5
 *
6
 * @package Bantenporv\MasterTarif
7
 * @author  bantenprov <[email protected]>
8
 */
9
class MasterTarif
10
{
11
    public function welcome()
12
    {
13
        return 'Welcome to Bantenporv\MasterTarif package';
14
    }
15
}
16