There was an error while loading. Please reload this page.
2 parents f789e7e + 7d40dc2 commit 83f1f1fCopy full SHA for 83f1f1f
Parser/Parser.php
@@ -84,7 +84,7 @@ public static function parseSeries(array $tokens): array
84
}
85
86
$split = explode('n', $joined);
87
- $first = isset($split[0]) ? $split[0] : null;
+ $first = $split[0] ?? null;
88
89
return [
90
$first ? ('-' === $first || '+' === $first ? $int($first.'1') : $int($first)) : 1,
0 commit comments