BaseExecutor::__construct()   A
last analyzed

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;
4
5
abstract class BaseExecutor
0 ignored issues
show
Coding Style introduced by
Missing doc comment for class BaseExecutor
Loading history...
6
{
7
    protected $databaseConfiguration;
8
9
    public function __construct(array $databaseConfiguration)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function __construct()
Loading history...
10
    {
11
        $this->databaseConfiguration = $databaseConfiguration;
12
    }
13
}
14