Skip to content

Commit 87c3201

Browse files
committed
Lint fixes
1 parent 141b68d commit 87c3201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PhpArrayGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ private static function var_export( $value, $pretty_print = false, $indent_level
162162
$is_list = self::array_is_list( $value );
163163

164164
if ( $pretty_print ) {
165-
$indent = str_repeat( "\t", $indent_level + 1 );
165+
$indent = str_repeat( "\t", $indent_level + 1 );
166166
$closing_indent = str_repeat( "\t", $indent_level );
167-
$separator = ',' . PHP_EOL;
167+
$separator = ',' . PHP_EOL;
168168

169169
foreach ( $value as $key => $val ) {
170170
if ( $is_list ) {

0 commit comments

Comments
 (0)