We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca43b3 commit 9a1b5d6Copy full SHA for 9a1b5d6
PHPUnit/Util/Type.php
@@ -224,17 +224,17 @@ public static function shortenedExport($value)
224
return self::shortenedString($value);
225
}
226
227
- if(is_object($value)) {
+ if (is_object($value)) {
228
return sprintf(
229
- "%s Object (%s)",
+ '%s Object (%s)',
230
get_class($value),
231
count(self::toArray($value)) > 0 ? '...' : ''
232
);
233
234
235
if (is_array($value)) {
236
237
- "Array (%s)",
+ 'Array (%s)',
238
count($value) > 0 ? '...' : ''
239
240
0 commit comments