TestingLogic   A
last analyzed

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
use Mezon\Service\ServiceLogic;
5
6
/**
7
 * The file contains testing classes.
8
 */
9
10
/**
11
 *
12
 * @author Dodonov A.A.
13
 */
14
class TestingLogic extends ServiceLogic
15
{
16
17
    public function test(): string
18
    {
19
        return 'test';
20
    }
21
22
    public function test2(): string
23
    {
24
        return 'test2';
25
    }
26
}
27