Skip to content

Commit

Permalink
Merge branch '3.4' into 4.4
Browse files Browse the repository at this point in the history
* 3.4:
  Add missing dots at the end of exception messages
  • Loading branch information
fabpot committed Mar 15, 2020
2 parents 2572839 + 499f406 commit cf7ec2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cloner/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private function dumpItem(DumperInterface $dumper, Cursor $cursor, array &$refs,
break;

default:
throw new \RuntimeException(sprintf('Unexpected Stub type: %s', $item->type));
throw new \RuntimeException(sprintf('Unexpected Stub type: %s.', $item->type));
}
} elseif ('array' === $type) {
$dumper->enterHash($cursor, Cursor::HASH_INDEXED, 0, false);
Expand Down

0 comments on commit cf7ec2a

Please sign in to comment.