Code Duplication    Length = 4-4 lines in 2 locations

src/GlW3CValidator.php 2 locations

@@ 234-237 (lines=4) @@
231
        /**
232
         * @var SplFileInfo $file
233
         */
234
        foreach ($files as $file) {
235
            $callback($file);
236
            $result[strtr($file->getRelativePath() . '/' . $file->getFilename(), ["\\" => "/"])] = $this->validateFile(
237
                                                                                                        $file
238
            );
239
        }
240
    }
@@ 256-259 (lines=4) @@
253
            /**
254
             * @var SplFileInfo $finderfile
255
             */
256
            foreach ($finder as $finderfile) {
257
                $callback($finderfile);
258
                $result[strtr(
259
                    $finderfile->getRelativePath() . '/' . $finderfile->getFilename(),
260
                    ["\\" => "/"]
261
                )] = $this->validateFile($finderfile);
262
            }