Completed
Branch etl-core (1daba3)
by Jean Paul
02:24
created

Extractor::extract()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
nc 1
1
<?php
2
3
namespace Coco\SourceWatcher\Core;
4
5
abstract class Extractor extends Step
6
{
7
    protected $input;
8
9
    /**
10
     * @return mixed
11
     */
12
    public function getInput ()
13
    {
14
        return $this->input;
15
    }
16
17
    /**
18
     * @param mixed $input
19
     */
20
    public function setInput ( $input ) : void
21
    {
22
        $this->input = $input;
23
    }
24
25
    public abstract function extract ();
26
}
27