Code Duplication    Length = 3-3 lines in 2 locations

src/Files/File.php 2 locations

@@ 1835-1837 (lines=3) @@
1832
                $i = $this->tokens[$i]['parenthesis_opener'];
1833
            }
1834
1835
            if (isset(Util\Tokens::$emptyTokens[$this->tokens[$i]['code']]) === false) {
1836
                $lastNotEmpty = $i;
1837
            }
1838
        }//end for
1839
1840
        return 0;
@@ 1910-1912 (lines=3) @@
1907
                $i = $this->tokens[$i]['parenthesis_closer'];
1908
            }
1909
1910
            if (isset(Util\Tokens::$emptyTokens[$this->tokens[$i]['code']]) === false) {
1911
                $lastNotEmpty = $i;
1912
            }
1913
        }//end for
1914
1915
        return ($this->numTokens - 1);