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

PrintRDumper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A dump() 0 3 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