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 4eb5095 commit b124eb2Copy full SHA for b124eb2
src/Loaders/Loader.php
@@ -6,6 +6,26 @@
6
7
abstract class Loader extends Step
8
{
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
29
/**
30
* Load the given row.
31
*
0 commit comments