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

JsonExtractor   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A extract() 0 2 1
A __construct() 0 2 1
1
<?php
2
3
namespace Coco\SourceWatcher\Core\Extractors;
4
5
use Coco\SourceWatcher\Core\Extractor;
6
7
class JsonExtractor extends Extractor
8
{
9
    public function __construct ()
10
    {
11
12
    }
13
14
    public function extract ()
15
    {
16
        // TODO: Implement extract() method.
17
    }
18
}
19