Passed
Push — master ( ac752b...73cced )
by Gerben
02:24
created

Visual::print()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
    {
19
        print_r($input . $delimiter);
20
    }
21
}