Code Duplication    Length = 3-3 lines in 2 locations

typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php 2 locations

@@ 1983-1985 (lines=3) @@
1980
                case 'ACT':
1981
                    $natVal = $this->isActive($this->menuArr[$key]['uid'], $this->getMPvar($key));
1982
                    break;
1983
                case 'ACTIFSUB':
1984
                    $natVal = $this->isActive($this->menuArr[$key]['uid'], $this->getMPvar($key)) && $this->isSubMenu($this->menuArr[$key]['uid']);
1985
                    break;
1986
                case 'CUR':
1987
                    $natVal = $this->isCurrent($this->menuArr[$key]['uid'], $this->getMPvar($key));
1988
                    break;
@@ 1989-1991 (lines=3) @@
1986
                case 'CUR':
1987
                    $natVal = $this->isCurrent($this->menuArr[$key]['uid'], $this->getMPvar($key));
1988
                    break;
1989
                case 'CURIFSUB':
1990
                    $natVal = $this->isCurrent($this->menuArr[$key]['uid'], $this->getMPvar($key)) && $this->isSubMenu($this->menuArr[$key]['uid']);
1991
                    break;
1992
                case 'USR':
1993
                    $natVal = (bool)$this->menuArr[$key]['fe_group'];
1994
                    break;