Skip to content

Commit 49fd348

Browse files
committed
Introduce example exporter class & resolve media image path method
1 parent 9918911 commit 49fd348

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Importer/Importer.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
abstract class Importer
2323
{
24-
protected bool $isValidating = false;
25-
2624
abstract public function columns(): array;
2725

2826
abstract public function getValidateUrl(): string;
@@ -116,8 +114,6 @@ public function render(): View
116114

117115
public function validate(string $fileName, int $offset = 0, int $limit = 100): ChunkValidateResponse
118116
{
119-
$this->isValidating = true;
120-
121117
$rows = $this->transformRows($this->getRowsByOffset($fileName, $offset, $limit));
122118

123119
$total = request()->integer('total') ?: $this->getRows($fileName)->count();

0 commit comments

Comments
 (0)