| Conditions | 3 |
| Paths | 4 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public static function dump(...$args) |
||
| 14 | { |
||
| 15 | if (! static::$cloner instanceOf VarCloner) { |
||
| 16 | static::$cloner = new VarCloner; |
||
| 17 | } |
||
| 18 | |||
| 19 | $dumper = static::getDumper(); |
||
| 20 | |||
| 21 | foreach ($args as $arg) { |
||
| 22 | $dumper->dump( |
||
| 23 | static::$cloner->cloneVar($arg) |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 27 | return true; |
||
| 28 | } |
||
| 39 |