TestingServiceLogicForHttpTransport   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A privateMethod() 0 2 1
A publicMethod() 0 2 1
1
<?php
2
namespace Mezon\Service\Tests;
3
4
use Mezon\Service\ServiceLogic;
5
6
class TestingServiceLogicForHttpTransport extends ServiceLogic
7
{
8
9
    public function privateMethod(): void
10
    {
11
        // nop
12
    }
13
14
    public function publicMethod(): void
15
    {
16
        // nop
17
    }
18
}
19