Completed
Push — master ( 49833f...63cd37 )
by Andrii
14:54
created

Php::formatContent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace hiapi\Core\Console\Formatter;
4
5
use Lcobucci\ContentNegotiation\ContentFormatter;
6
7
class Php extends ContentFormatter
8
{
9
    public function formatContent($content, $attributes = []): string
10
    {
11
        return var_export($content, true);
12
    }
13
}
14