Test Setup Failed
Push — test ( 745d6c...f45484 )
by Jonathan
03:02
created

Php56TestClass::dumpTests()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
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 = 12;
9
10
    public function dumpTests()
11
    {
12
        \Kint::dump($x, $y, ...$z);
0 ignored issues
show
Bug introduced by
The variable $x does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $y does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $z does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
13
        \Kint::dump(...$x, ...$z);
14
    }
15
}
16