Skip to content

Commit 6ce7528

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages
2 parents 37f54f8 + 07e06ee commit 6ce7528

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
@@ -392,7 +392,7 @@ private function dumpItem(DumperInterface $dumper, Cursor $cursor, array &$refs,
392392
break;
393393

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

0 commit comments

Comments
 (0)