ddl()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
cc 2
eloc 6
c 2
b 1
f 0
nc 2
nop 2
dl 0
loc 10
rs 10
1
<?php
2
3
if (! function_exists('ddl')) {
4
    function ddl($var, ...$moreVars)
5
    {
6
        $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
7
        if (php_sapi_name() == 'cli') {
8
            print_r("\e[1;30m dumped at: ".str_replace(base_path(), '', $trace[0]['file']).', line: '.$trace[0]['line']."\e[40m\n");
0 ignored issues
show
Coding Style introduced by
This line exceeds maximum limit of 120 characters; contains 132 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
9
        } else {
10
            print_r('[dumped at: '.str_replace(base_path(), '', $trace[0]['file']).', line: '.$trace[0]['line']."]\n");
11
        }
12
13
        return dd($var, ...$moreVars);
0 ignored issues
show
Bug introduced by
Are you sure the usage of dd($var, $moreVars) is correct as it seems to always return null.

This check looks for function or method calls that always return null and whose return value is used.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
if ($a->getObject()) {

The method getObject() can return nothing but null, so it makes no sense to use the return value.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
14
    }
15
}
16