Code Duplication    Length = 4-4 lines in 2 locations

src/GlW3CValidator.php 2 locations

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