PDO   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

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
    const EXECUTION_STRATEGY = 'PDO';
11
12
    public function getExecuteCommandCallable($sql)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function getExecuteCommandCallable()
Loading history...
13
    {
14
        /// @todo
15
        throw new \Exception('Not implemented yet');
16
    }
17
18
    public function resultSetToArray($data)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function resultSetToArray()
Loading history...
19
    {
20
        /// @todo
21
        throw new \Exception('Not implemented yet');
22
    }
23
}
24