Test Failed
Branch master (c7fd68)
by Gaetano
06:34
created

PDO   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 3
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A resultSetToArray() 0 4 1
A getExecuteCommandCallable() 0 4 1
1
<?php
2
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
namespace Db3v4l\Core\SqlExecutor\InProcess;
4
5
use Db3v4l\API\Interfaces\SqlExecutor\InProcess\CommandExecutor;
6
use Db3v4l\Core\SqlExecutor\BaseExecutor;
7
8
class PDO extends BaseExecutor implements CommandExecutor
0 ignored issues
show
Coding Style introduced by
Missing doc comment for class PDO
Loading history...
9
{
10
    public function getExecuteCommandCallable($sql)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function getExecuteCommandCallable()
Loading history...
11
    {
12
        /// @todo
13
        throw new \Exception('Not implemented yet');
14
    }
15
16
    public function resultSetToArray($data)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function resultSetToArray()
Loading history...
17
    {
18
        /// @todo
19
        throw new \Exception('Not implemented yet');
20
    }
21
}
22