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

MasterTarif::welcome()   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;
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