Code Duplication    Length = 7-7 lines in 2 locations

typo3/sysext/core/Classes/TypoScript/ExtendedTemplateService.php 1 location

@@ 597-603 (lines=7) @@
594
                    $this->tsbrowser_searchKeys[$depth] = 1;
595
                }
596
            }
597
            if ($deeper) {
598
                $cS = count($this->tsbrowser_searchKeys);
599
                $keyArray = $this->ext_getSearchKeys($arr[$key . '.'], $depth, $searchString, $keyArray);
600
                if ($cS != count($this->tsbrowser_searchKeys)) {
601
                    $keyArray[$depth] = 1;
602
                }
603
            }
604
        }
605
        return $keyArray;
606
    }

typo3/sysext/lowlevel/Classes/Utility/ArrayBrowser.php 1 location

@@ 194-200 (lines=7) @@
191
                    $this->searchKeys[$depth] = 1;
192
                }
193
            }
194
            if ($deeper) {
195
                $cS = count($this->searchKeys);
196
                $keyArray = $this->getSearchKeys($keyArr[$key], $depth, $searchString, $keyArray);
197
                if ($cS != count($this->searchKeys)) {
198
                    $keyArray[$depth] = 1;
199
                }
200
            }
201
        }
202
        return $keyArray;
203
    }