Skip to content

Commit 07e06ee

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix quotes in exception messages
2 parents cf7ec2a + 293b38c commit 07e06ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cloner/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ private function dumpItem(DumperInterface $dumper, Cursor $cursor, array &$refs,
396396
break;
397397

398398
default:
399-
throw new \RuntimeException(sprintf('Unexpected Stub type: %s.', $item->type));
399+
throw new \RuntimeException(sprintf('Unexpected Stub type: "%s".', $item->type));
400400
}
401401
} elseif ('array' === $type) {
402402
$dumper->enterHash($cursor, Cursor::HASH_INDEXED, 0, false);

0 commit comments

Comments
 (0)