Code Duplication    Length = 3-3 lines in 2 locations

src/Config.php 2 locations

@@ 142-144 (lines=3) @@
139
            return $this->handlers[$handlerId];
140
        }
141
142
        if (!empty($this->handlers[$handlerId]['formatter'])) {
143
            $this->handlers[$handlerId]['formatter'] = $this->resolveFormatter($this->handlers[$handlerId]['formatter']);
144
        }
145
146
        if (!empty($this->handlers[$handlerId]['processors'])) {
147
            $this->handlers[$handlerId]['processors'] = $this->resolveFormatter($this->handlers[$handlerId]['processors']);
@@ 146-148 (lines=3) @@
143
            $this->handlers[$handlerId]['formatter'] = $this->resolveFormatter($this->handlers[$handlerId]['formatter']);
144
        }
145
146
        if (!empty($this->handlers[$handlerId]['processors'])) {
147
            $this->handlers[$handlerId]['processors'] = $this->resolveFormatter($this->handlers[$handlerId]['processors']);
148
        }
149
150
        return $this->handlers[$handlerId] = $this->makeInstance($this->handlers[$handlerId], 'handler');
151
    }