Undefined array key map_false fixed
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
44 44 */ 45 45 public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { 46 46 $map_false = ['false', 'FALSE', 'null', 'NULL', '0']; 47 $map_false_from_config = (!empty($this->configuration['map_false'] && is_array($this->configuration['map_false']))) ? $this->configuration['map_false'] : []; 47 $map_false_from_config = (isset($this->configuration['map_false']) && !empty($this->configuration['map_false'] && is_array($this->configuration['map_false']))) ? $this->configuration['map_false'] : [];
Please register or sign in to reply