Failed Conditions
Push — master ( 8ded6a...b2fb92 )
by Arnold
03:23
created

DummyCallback   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Jasny\PHPUnit\Util;
6
7
/**
8
 * @internal
9
 * @codeCoverageIgnore
10
 */
11
class DummyCallback
12
{
13
    /**
14
     * Invoke object.
15
     *
16
     * @return mixed
17
     */
18
    public function __invoke()
19
    {
20
    }
21
}
22