Skip to content

Commit b124eb2

Browse files
committed
Change base loader
1 parent 4eb5095 commit b124eb2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Loaders/Loader.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,26 @@
66

77
abstract class Loader extends Step
88
{
9+
/**
10+
* The loader output.
11+
*
12+
* @var mixed
13+
*/
14+
protected $output;
15+
16+
/**
17+
* Set the loader output.
18+
*
19+
* @param mixed $output
20+
* @return $this
21+
*/
22+
public function output($output)
23+
{
24+
$this->output = $output;
25+
26+
return $this;
27+
}
28+
929
/**
1030
* Load the given row.
1131
*

0 commit comments

Comments
 (0)