diff --git a/src/Sources/Source.php b/src/Sources/Source.php index f5d3620..f732b29 100644 --- a/src/Sources/Source.php +++ b/src/Sources/Source.php @@ -84,7 +84,7 @@ abstract class Source implements IteratorAggregate */ public function size(): ?int { - if(!$this->sizeWasSet) { + if (!$this->sizeWasSet) { $this->size = $this->calculateSize(); $this->sizeWasSet = true; }