Completed
Branch master (c7fd68)
by Gaetano
06:59
created

PDO::getExecuteStatementProcess()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
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\Forked;
4
5
use Db3v4l\API\Interfaces\SqlExecutor\Forked\CommandExecutor;
6
use Db3v4l\Util\Process;
7
8
/**
9
 * Executes sql queries via a symfony console command based on Doctrine
10
 */
0 ignored issues
show
Coding Style introduced by
Missing @category tag in class comment
Loading history...
Coding Style introduced by
Missing @package tag in class comment
Loading history...
Coding Style introduced by
Missing @author tag in class comment
Loading history...
Coding Style introduced by
Missing @license tag in class comment
Loading history...
Coding Style introduced by
Missing @link tag in class comment
Loading history...
11
class PDO extends ForkedExecutor implements CommandExecutor
12
{
13
    public function getExecuteStatementProcess($sql)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function getExecuteStatementProcess()
Loading history...
14
    {
15
        throw new \RuntimeException('TO BE IMPLEMENTED');
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