Completed
Push — next ( 3fc9f0...5d2fc6 )
by Jonathan
9s
created

Php56TestClass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A dumpTests() 0 9 1
1
<?php
2
3
namespace Kint\Test\Fixtures;
4
5
class Php56TestClass
6
{
7
    const DUMP_FILE = __FILE__;
8
    const DUMP_LINE = 16;
9
10
    public function dumpTests()
11
    {
12
        $x = array();
13
        $y = array();
14
        $z = array();
15
16
        \Kint::dump($x, $y, ...$z);
17
        \Kint::dump(...$x, ...$z);
18
    }
19
}
20