Code Duplication    Length = 3-3 lines in 2 locations

core/services/assets/Registry.php 2 locations

@@ 712-714 (lines=3) @@
709
            return;
710
        }
711
        $this->manifest_data[ $namespace ] = $this->decodeManifestFile($manifest_file);
712
        if (! isset($this->manifest_data[ $namespace ]['url_base'])) {
713
            $this->manifest_data[ $namespace ]['url_base'] = untrailingslashit($url_base);
714
        }
715
        if (! isset($this->manifest_data[ $namespace ]['path'])) {
716
            $this->manifest_data[ $namespace ]['path'] = untrailingslashit($manifest_file_path);
717
        }
@@ 715-717 (lines=3) @@
712
        if (! isset($this->manifest_data[ $namespace ]['url_base'])) {
713
            $this->manifest_data[ $namespace ]['url_base'] = untrailingslashit($url_base);
714
        }
715
        if (! isset($this->manifest_data[ $namespace ]['path'])) {
716
            $this->manifest_data[ $namespace ]['path'] = untrailingslashit($manifest_file_path);
717
        }
718
    }
719
720