Fix style

This commit is contained in:
Andrea Marco Sartori 2023-01-22 09:55:28 +10:00
parent 403abb8859
commit b74045e9e3

View File

@ -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;
}