| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 32 | public static function create($wrapped, callable $escape) { |
|
| 24 | 32 | if (is_object($wrapped) || is_array($wrapped)) { |
|
| 25 | 24 | return new ObjectEscapedProxy($wrapped, $escape); |
|
| 26 | } |
||
| 27 | 28 | if (is_string($wrapped)) { |
|
| 28 | 24 | return new ScalarEscapedProxy($wrapped, $escape); |
|
| 29 | } |
||
| 30 | |||
| 31 | 16 | return $wrapped; |
|
| 32 | } |
||
| 33 | } |
||
| 34 |