Skip to content

Commit 499f406

Browse files
committed
Add missing dots at the end of exception messages
1 parent 07801f3 commit 499f406

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
@@ -374,7 +374,7 @@ private function dumpItem($dumper, $cursor, &$refs, $item)
374374
break;
375375

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

0 commit comments

Comments
 (0)