Completed
Push — master ( bd8614...a0c260 )
by
unknown
06:02 queued 04:03
created

VueTrust::welcome()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php namespace Bantenprov\VueTrust;
2
3
/**
4
 * The VueTrust class.
5
 *
6
 * @package Bantenprov\VueTrust
7
 * @author  bantenprov <[email protected]>
8
 */
9
class VueTrust
10
{
11
    public function welcome()
12
    {
13
        return 'Welcome to Bantenprov\VueTrust package';
14
    }
15
}
16