Completed
Push — master ( 975c17...8f2777 )
by Adam
04:20 queued 01:49
created

Variadic   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace BestServedCold\PhalueObjects;
4
5
/**
6
 * Class Variadic
7
 *
8
 * @package BestServedCold\PhalueObjects\ValueObject
9
 */
10
class Variadic extends ArrayVO
11
{
12
    /**
13
     * Variadic constructor.
14
     *
15
     * @param array ...$arguments
16
     */
0 ignored issues
show
Documentation introduced by
Consider making the type for parameter $arguments a bit more specific; maybe use array[].
Loading history...
17 33
    public function __construct(...$arguments)
18
    {
19 33
        parent::__construct($arguments);
20 33
    }
21
}
22