Skip to content

Commit 050bed0

Browse files
committed
Fix more quotes in exception messages
1 parent 293b38c commit 050bed0

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
@@ -114,7 +114,7 @@ public function count()
114114
public function getIterator()
115115
{
116116
if (!\is_array($value = $this->getValue())) {
117-
throw new \LogicException(sprintf('%s object holds non-iterable type "%s".', self::class, \gettype($value)));
117+
throw new \LogicException(sprintf('"%s" object holds non-iterable type "%s".', self::class, \gettype($value)));
118118
}
119119

120120
foreach ($value as $k => $v) {

0 commit comments

Comments
 (0)