Skip to content

Commit a5b3eb9

Browse files
committed
Fix codestyle
1 parent 9e5e01d commit a5b3eb9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Entity/Sequence.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
use Baraja\Doctrine\UUID\UuidIdentifier;
99
use Doctrine\ORM\Mapping as ORM;
10-
use Nette\SmartObject;
1110
use Nette\Utils\Strings;
1211

1312
/**
@@ -94,8 +93,8 @@ public function updateData(): void
9493
if ($this->data === null) {
9594
$this->data = Strings::normalize(
9695
Strings::fixEncoding(
97-
(string) file_get_contents('https://oeis.org/search?q=id:' . $this->getAId() . '&fmt=text')
98-
)
96+
(string) file_get_contents('https://oeis.org/search?q=id:' . $this->getAId() . '&fmt=text'),
97+
),
9998
);
10099
}
101100
}

0 commit comments

Comments
 (0)