Code Duplication    Length = 29-29 lines in 2 locations

src/Standards/BestIt/Sniffs/Commenting/ClassDocSniff.php 1 location

@@ 66-94 (lines=29) @@
63
     *
64
     * @return array List of disallowed tokens
65
     */
66
    public function getDisallowedTags()
67
    {
68
        return [
69
            '@api',
70
            '@category',
71
            '@copyright',
72
            '@example',
73
            '@filesource',
74
            '@global',
75
            '@ignore',
76
            '@internal',
77
            '@license',
78
            '@method',
79
            '@param',
80
            '@property',
81
            '@property-read',
82
            '@property-write',
83
            '@return',
84
            '@see',
85
            '@since',
86
            '@source',
87
            '@subpackage',
88
            '@throws',
89
            '@todo',
90
            '@uses',
91
            '@var',
92
            '@inheritdoc'
93
        ];
94
    }
95
}
96

src/Standards/BestIt/Sniffs/Commenting/MethodDocSniff.php 1 location

@@ 64-92 (lines=29) @@
61
     *
62
     * @return array List of disallowed tags
63
     */
64
    public function getDisallowedTags()
65
    {
66
        return [
67
            '@api',
68
            '@author',
69
            '@category',
70
            '@copyright',
71
            '@filesource',
72
            '@global',
73
            '@ignore',
74
            '@internal',
75
            '@license',
76
            '@link',
77
            '@method',
78
            '@package',
79
            '@property',
80
            '@property-read',
81
            '@property-write',
82
            '@see',
83
            '@since',
84
            '@source',
85
            '@subpackage',
86
            '@todo',
87
            '@uses',
88
            '@var',
89
            '@version',
90
            '@inheritdoc'
91
        ];
92
    }
93
}
94