StubSet   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 24
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A add() 0 14 2
1
<?php
2
declare(strict_types=1);
3
4
namespace Moka\Stub;
5
6
use Moka\Exception\InvalidArgumentException;
7
use PhpCollection\Set;
8
9
/**
10
 * Class StubSet
11
 * @package Moka\Stub
12
 */
13
class StubSet extends Set
14
{
15
    /**
16
     * @param StubInterface $elem
17
     * @return void
18
     *
19
     * @throws InvalidArgumentException
20
     * @throws \LogicException
21
     */
22 83
    public function add($elem): void
23
    {
24 83
        if (!$elem instanceof StubInterface) {
25 1
            throw new InvalidArgumentException(
26 1
                sprintf(
27 1
                    'Element must be an instance of "%s", "%s" given',
28 1
                    StubInterface::class,
29 1
                    \gettype($elem)
30
                )
31
            );
32
        }
33
34 82
        parent::add($elem);
35
    }
36
}
37