Passed
Push — master ( 86fe81...69b6a3 )
by Dispositif
02:31
created

NullStats   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __call() 0 2 1
1
<?php
2
/*
3
 * This file is part of dispositif/wikibot application (@github)
4
 * 2019-2023 © Philippe M./Irønie  <[email protected]>
5
 * For the full copyright and MIT license information, view the license file.
6
 */
7
8
declare(strict_types=1);
9
10
namespace App\Infrastructure\Monitor;
11
12
/**
13
 * @method increment(string $string)
14
 */
15
class NullStats
16
{
17
    public function __call(string $method, array $args): void
18
    {
19
        // nothing
20
    }
21
}