Code Duplication    Length = 8-8 lines in 2 locations

src/Form/Field/KeyValue.php 1 location

@@ 23-30 (lines=8) @@
20
     *
21
     * @return void
22
     */
23
    public function fill($data)
24
    {
25
        $this->data = $data;
26
27
        $this->value = Arr::get($data, $this->column, $this->value);
28
29
        $this->formatValue();
30
    }
31
32
    /**
33
     * {@inheritdoc}

src/Form/Field/ListField.php 1 location

@@ 65-72 (lines=8) @@
62
     *
63
     * @return void
64
     */
65
    public function fill($data)
66
    {
67
        $this->data = $data;
68
69
        $this->value = Arr::get($data, $this->column, $this->value);
70
71
        $this->formatValue();
72
    }
73
74
    /**
75
     * {@inheritdoc}