Kint_Object_Nothing
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
class Kint_Object_Nothing extends Kint_Object
0 ignored issues
show
Coding Style introduced by
Kint_Object_Nothing does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
4
{
5
    public $hints = array('nothing');
6
}
7