Code Duplication    Length = 3-3 lines in 2 locations

src/Config.php 2 locations

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