Skip to content

Commit 9a1b5d6

Browse files
Fix CS/WS
1 parent eca43b3 commit 9a1b5d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PHPUnit/Util/Type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,17 +224,17 @@ public static function shortenedExport($value)
224224
return self::shortenedString($value);
225225
}
226226

227-
if(is_object($value)) {
227+
if (is_object($value)) {
228228
return sprintf(
229-
"%s Object (%s)",
229+
'%s Object (%s)',
230230
get_class($value),
231231
count(self::toArray($value)) > 0 ? '...' : ''
232232
);
233233
}
234234

235235
if (is_array($value)) {
236236
return sprintf(
237-
"Array (%s)",
237+
'Array (%s)',
238238
count($value) > 0 ? '...' : ''
239239
);
240240
}

0 commit comments

Comments
 (0)