Completed
Push — master ( 32ba19...5ce9dd )
by Korotkov
02:23 queued 10s
created

NoticeHandler::execute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * @author  : Jagepard <[email protected]>
5
 * @license https://mit-license.org/ MIT
6
 */
7
8
namespace Behavioral\ChainOfResponsibility;
9
10
class NoticeHandler implements HandlerInterface
11
{
12
    public function execute(): void
13
    {
14
        printf('%s' . PHP_EOL, __CLASS__);
15
    }
16
}
17