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

SqlDefinitor::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 5
rs 10
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