Completed
Push — master ( 04f83a...b71153 )
by Alex
09:15
created

TestingPresenter   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 presenterTest() 0 3 1
A presenterTest2() 0 3 1
1
<?php
2
namespace Mezon\Application\Tests;
3
4
/**
5
 * Presenter class for testing purposes
6
 *
7
 * @author Dodonov A.A.
8
 */
9
class TestingPresenter extends \Mezon\Application\Presenter
10
{
11
12
    public function presenterTest(): string
13
    {
14
        return 'computed content';
15
    }
16
17
    public function presenterTest2(): string
18
    {
19
        return 'computed content 2';
20
    }
21
}
22