Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 9.8312 |
Changes | 0 |
1 | <?php |
||
22 | 4 | protected function checkCampoOpzioniTabella($campo, $modellocolonna, &$opzionibuilder) |
|
23 | { |
||
24 | 4 | if (!array_key_exists($campo, $opzionibuilder)) { |
|
25 | if ((isset($modellocolonna['campoextra']) && true == $modellocolonna['campoextra'])) { |
||
26 | // tuttapposto |
||
27 | } else { |
||
28 | $ex = 'BiCore: '.$campo." field table option not found, did you mean one of these:\n". |
||
29 | implode("\n", array_keys($opzionibuilder)). |
||
30 | ' ?'; |
||
31 | throw new \Exception($ex); |
||
32 | } |
||
36 |