Test Setup Failed
Push — master ( d6fde7...1e848b )
by Php Easy Api
04:20
created

SqlDefinitor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace Migratio\Resource;
4
5
use Migratio\Connector\Connector;
6
7
class SqlDefinitor extends Connector
8
{
9
    /**
10
     * @var $config
0 ignored issues
show
Documentation Bug introduced by
The doc comment $config at position 0 could not be parsed: Unknown type name '$config' at position 0 in $config.
Loading history...
11
     */
12
    protected $config;
13
14
    /**
15
     * SqlDefinitor constructor.
16
     * @param $config
17
     */
18
    public function __construct($config)
19
    {
20
        $this->config = $config;
21
22
        $this->setConnector();
23
24
    }
25
26
}
27
28