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