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

Extractor   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 4
c 1
b 0
f 0
dl 0
loc 21
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getInput() 0 3 1
A setInput() 0 3 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