Crawler   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace Sesame\Crawler;
4
5
/**
6
 * Class Crawler
7
 *
8
 * @package Sesame\Crawler
9
 */
10
class Crawler
11
{
12
13
    /**
14
     * Crawler constructor.
15
     */
16
    public function __construct()
17
    {
18
    }
19
}
20