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

Php56TestClass::dumpTests()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
nc 1
nop 0
dl 0
loc 9
rs 9.6666
c 0
b 0
f 0
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