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

NullStats::__call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 0
c 1
b 0
f 1
dl 0
loc 2
rs 10
cc 1
nc 1
nop 2
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
}