Skip to content

Commit 6c9bcdd

Browse files
committed
update some for print method
1 parent bff7323 commit 6c9bcdd

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/Helper/PhpHelper.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,16 @@ public static function printVars(...$args): string
231231
}
232232

233233
/**
234-
* @param mixed $var
234+
* @param mixed $vars
235235
*
236236
* @return string
237237
*/
238-
public static function exportVar($var): string
238+
public static function exportVar(...$vars): string
239239
{
240-
$string = var_export($var, true);
240+
$string = '';
241+
foreach ($vars as $var) {
242+
$string .= var_export($var, true). PHP_EOL;
243+
}
241244

242245
return preg_replace('/=>\s+\n\s+array \(/', '=> array (', $string);
243246
}

0 commit comments

Comments
 (0)