We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e5e01d commit a5b3eb9Copy full SHA for a5b3eb9
src/Entity/Sequence.php
@@ -7,7 +7,6 @@
7
8
use Baraja\Doctrine\UUID\UuidIdentifier;
9
use Doctrine\ORM\Mapping as ORM;
10
-use Nette\SmartObject;
11
use Nette\Utils\Strings;
12
13
/**
@@ -94,8 +93,8 @@ public function updateData(): void
94
93
if ($this->data === null) {
95
$this->data = Strings::normalize(
96
Strings::fixEncoding(
97
- (string) file_get_contents('https://oeis.org/search?q=id:' . $this->getAId() . '&fmt=text')
98
- )
+ (string) file_get_contents('https://oeis.org/search?q=id:' . $this->getAId() . '&fmt=text'),
+ ),
99
);
100
}
101
0 commit comments