Passed
Push — master ( 9b17e3...ac752b )
by Gerben
02:22
created

Visual   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
4
namespace Hyperized\Benchmark\Generic;
5
6
7
/**
8
 * Class Visual
9
 * @package Hyperized\Benchmark\Generic
10
 */
11
class Visual
12
{
13
    /**
14
     * @param string $input
15
     * @param string $delimiter
16
     */
17
    static function print(string $input, $delimiter = "\n\n")
18
    {q
19
        print_r($input . $delimiter);
0 ignored issues
show
Bug introduced by
A parse error occurred: Syntax error, unexpected T_STRING on line 19 at column 8
Loading history...
20
    }
21
}