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

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