Visual   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A print() 0 3 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
    public static function print(string $input, $delimiter = "\n\n"): void
18
    {
19
        \print_r($input . $delimiter);
20
    }
21
}