Skip to content

Commit e6a5be9

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix more quotes in exception messages Fix more quotes in exception messages [3.4] Minor fixes [PropertyAccess] Improved errors when reading uninitialized properties
2 parents 6ce7528 + 2c22d29 commit e6a5be9

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
@@ -122,7 +122,7 @@ public function count()
122122
public function getIterator()
123123
{
124124
if (!\is_array($value = $this->getValue())) {
125-
throw new \LogicException(sprintf('%s object holds non-iterable type "%s".', self::class, \gettype($value)));
125+
throw new \LogicException(sprintf('"%s" object holds non-iterable type "%s".', self::class, \gettype($value)));
126126
}
127127

128128
yield from $value;

0 commit comments

Comments
 (0)