GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 6-6 lines in 2 locations

src/Property.php 2 locations

@@ 96-101 (lines=6) @@
93
94
        $docComment = $this->getDocComment();
95
96
        if (! $docComment) {
97
            $this->isNullable = true;
98
            self::$cache[$this->class][$this->getName()]['is_nullable'] = $this->isNullable;
99
100
            return;
101
        }
102
103
        preg_match('/\@var ((?:(?:[\w|\\\\])+(?:\[\])?)+)/', $docComment, $matches);
104
@@ 105-110 (lines=6) @@
102
103
        preg_match('/\@var ((?:(?:[\w|\\\\])+(?:\[\])?)+)/', $docComment, $matches);
104
105
        if (! count($matches)) {
106
            $this->isNullable = true;
107
            self::$cache[$this->class][$this->getName()]['is_nullable'] = $this->isNullable;
108
109
            return;
110
        }
111
112
        $this->hasTypeDeclaration = true;
113