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 = 8-8 lines in 2 locations

src/FileGenerators/InterfaceGenerator.php 1 location

@@ 38-45 (lines=8) @@
35
    /**
36
     * @return string
37
     */
38
    public function getFilename(): string
39
    {
40
        return $this->yaml['src']['path'] .
41
            DIRECTORY_SEPARATOR .
42
            str_replace('\\', DIRECTORY_SEPARATOR, $this->yaml['class']) .
43
            'Interface.php'
44
        ;
45
    }
46
47
    /**
48
     * @return Node

src/FileGenerators/BaseClassGenerator.php 1 location

@@ 56-63 (lines=8) @@
53
    /**
54
     * @return string
55
     */
56
    public function getFilename(): string
57
    {
58
        return $this->yaml['src']['path'] .
59
            DIRECTORY_SEPARATOR .
60
            str_replace('\\', DIRECTORY_SEPARATOR, $this->yaml['class']) .
61
            '.php'
62
        ;
63
    }
64
65
    /**
66
     * @return Node