Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2.004 |
Changes | 0 |
1 | <?php |
||
26 | 1 | private function getId( string $type ): int { |
|
27 | 1 | $currentId = $this->database->selectRow( |
|
28 | 1 | 'page_props', |
|
29 | 1 | 'pp_value', |
|
30 | 1 | $this->getWhere( $type ), |
|
31 | 1 | __METHOD__, |
|
32 | 1 | [ 'FOR UPDATE' ] |
|
33 | ); |
||
34 | |||
35 | 1 | if ( is_object( $currentId ) ) { |
|
36 | return (int)$currentId->pp_value + 1; |
||
37 | } |
||
38 | |||
39 | 1 | return 1; |
|
40 | } |
||
41 | |||
75 |