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

PDO::getExecuteCommandCallable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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