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 57fa573 commit 4eb5095Copy full SHA for 4eb5095
src/Extractors/Extractor.php
@@ -7,7 +7,27 @@
7
abstract class Extractor extends Step
8
{
9
/**
10
- * Extract data from an input.
+ * The extractor input.
11
+ *
12
+ * @var mixed
13
+ */
14
+ protected $input;
15
+
16
+ /**
17
+ * Set the extractor input.
18
19
+ * @param mixed $input
20
+ * @return $this
21
22
+ public function input($input)
23
+ {
24
+ $this->input = $input;
25
26
+ return $this;
27
+ }
28
29
30
+ * Extract data from the input.
31
*
32
* @return \Generator
33
*/
0 commit comments