Passed
Push — master ( 4497e7...16e5b9 )
by Aleksandar
03:14
created

RawBuilder::getInitialParts()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
/**
3
 * Copyright 2021 Aleksandar Panic
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *   http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
18
namespace ArekX\PQL\Drivers\MySql\Builder\Builders;
19
20
use ArekX\PQL\Drivers\MySql\Builder\MySqlQueryBuilderState;
21
22
class RawBuilder extends QueryPartBuilder
23
{
24 7
    protected function getInitialParts(): array
25
    {
26 7
        return [];
27
    }
28
29 7
    protected function getRequiredParts(): array
30
    {
31 7
        return ['query'];
32
    }
33
34 7
    protected function getPartBuilders(): array
35
    {
36
        return [
37 7
            'query' => fn($part) => $part,
38 7
            'params' => fn($part, MySqlQueryBuilderState $state) => $this->mergeParams($part, $state)
39 7
        ];
40
    }
41
42 2
    protected function mergeParams($part, MySqlQueryBuilderState $state)
43
    {
44 2
        $paramsBuilder = $state->getParamsBuilder();
45
46 2
        foreach ($part as $key => $value) {
47 2
            $type = null;
48 2
            $paramValue = $value;
49
50 2
            if (is_array($value)) {
51 1
                [$paramValue, $type] = $value;
52
            }
53
54 2
            $paramsBuilder->add($key, $paramValue, $type);
55
        }
56
    }
57
}