IdentificadorManager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
namespace Finder\Contracts\Spider;
3
4
use Finder\Spider\Traits\IdentificadorManagerTrait;
5
use Support\Helps\DebugHelper;
6
use Finder\Contracts\Spider\ExtensionManager;
7
8
/**
9
 * Outputs events information to the console.
10
 *
11
 * @see TriggerableInterface
12
 */
13
abstract class IdentificadorManager
14
{
15
    use IdentificadorManagerTrait;
16
17
    public function __construct(ExtensionManager $extension)
18
    {
19
        $this->setExtension($extension);
20
        DebugHelper::debug('Identificador Manager'.$this->getFile());
21
        $this->run();
22
    }
23
}
24