Skip to content

Commit 8d241cc

Browse files
authored
Fix nullable getters
1 parent 6fc577c commit 8d241cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DataTableState.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public function setStart(int $start): self
156156
return $this;
157157
}
158158

159-
public function getLength(): int
159+
public function getLength(): ?int
160160
{
161161
return $this->length;
162162
}
@@ -219,7 +219,7 @@ public function setColumnSearch(AbstractColumn $column, string $search, bool $is
219219
return $this;
220220
}
221221

222-
public function getExporterName(): string
222+
public function getExporterName(): ?string
223223
{
224224
return $this->exporterName;
225225
}

0 commit comments

Comments
 (0)