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 9918911 commit 49fd348Copy full SHA for 49fd348
src/Importer/Importer.php
@@ -21,8 +21,6 @@
21
22
abstract class Importer
23
{
24
- protected bool $isValidating = false;
25
-
26
abstract public function columns(): array;
27
28
abstract public function getValidateUrl(): string;
@@ -116,8 +114,6 @@ public function render(): View
116
114
117
115
public function validate(string $fileName, int $offset = 0, int $limit = 100): ChunkValidateResponse
118
119
- $this->isValidating = true;
120
121
$rows = $this->transformRows($this->getRowsByOffset($fileName, $offset, $limit));
122
123
$total = request()->integer('total') ?: $this->getRows($fileName)->count();
0 commit comments