Completed
Push — master ( 759854...e46a01 )
by Martin
13:10 queued 03:41
created

PrintRDumper::dump()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
namespace Yep\WorkflowLogger\ContextDumper;
4
5
/**
6
 * Class PrintRDumper
7
 *
8
 * @package Yep\WorkflowLogger\ContextDumper
9
 * @author  Martin Zeman (Zemistr) <[email protected]>
10
 */
11
class PrintRDumper implements DumperInterface
12
{
13
    public function dump(array $context)
14
    {
15
        return print_r($context, true);
16
    }
17
}
18