Conditions | 5 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 0 |
1 | <?php |
||
35 | private function stringify($mixed) |
||
36 | { |
||
37 | if (is_string($mixed)) { |
||
38 | return $mixed; |
||
39 | } |
||
40 | |||
41 | if (is_array($mixed) && 2 === count($mixed)) { |
||
42 | return sprintf('%s::%s', $this->stringify($mixed[0]), $mixed[1]); |
||
43 | } |
||
44 | |||
45 | return is_object($mixed) ? get_class($mixed) : gettype($mixed); |
||
46 | } |
||
47 | } |
||
48 |