Completed
Push — master ( 912db6...6fd1ed )
by Jean Paul
13s queued 12s
created

Extractor::getInput()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
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