Completed
Push — 9.0-dev ( bf07f2...007112 )
by Radu
01:34
created

MysqliDatabase::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace WebServCo\Framework\Libraries;
3
4
final class MysqliDatabase extends \WebServCo\Framework\AbstractLibrary implements
5
    \WebServCo\Framework\Interfaces\DatabaseInterface
6
{
7
    public function __construct($config)
8
    {
9
        parent::__construct($config);
10
    }
11
    
12
    public function escape($string)
13
    {
14
        throw new \ErrorException('Method not implemented');
15
    }
16
}
17