| Conditions | 4 | 
| Paths | 3 | 
| Total Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 40 | public function transformConfig($config)  | 
            ||
| 41 |     { | 
            ||
| 42 |         if ($this->getBuilder()->fieldExists($config['field']) && $this->getBuilder()->getField($config['field'])->hasCustomKey()) { | 
            ||
| 43 | $config['_has_custom_key'] = true;  | 
            ||
| 44 |         } else if (!$this->getBuilder()->fieldExists($config['field'])) { | 
            ||
| 45 | $config['_field_does_not_exist'] = $config['field'];  | 
            ||
| 46 | }  | 
            ||
| 47 | |||
| 48 | return $config;  | 
            ||
| 49 | }  | 
            ||
| 50 | |||
| 56 |