Passed
Push — master ( a58ef6...fc3cb3 )
by Alex
10:58 queued 01:08
created

TestingLogic   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 11
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A test2() 0 3 1
A test() 0 3 1
1
<?php
2
namespace Mezon\Service\Tests;
3
4
/**
5
 * The file contains testing classes.
6
 */
7
8
/**
9
 *
10
 * @author Dodonov A.A.
11
 */
12
class TestingLogic extends \Mezon\Service\ServiceLogic
13
{
14
15
    public function test()
16
    {
17
        return 'test';
18
    }
19
20
    public function test2()
21
    {
22
        return 'test2';
23
    }
24
}
25