IdentificadorManager::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

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