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

code/model/ContentBlock_ColumnLayout.php 2 locations

@@ 106-113 (lines=8) @@
103
     *
104
     * @return string
105
     */
106
    public function ColumnClasses()
107
    {
108
        $classesArray = Config::inst()->get('ContentBlock_ColumnLayout', 'column_classes');
109
110
        $this->extend('updateColumnClasses', $classes);
111
112
        return (!empty($classesArray)) ? implode(' ', $classesArray) : '' ;
113
    }
114
115
    /**
116
     * Gets the configured classes for a row
@@ 120-127 (lines=8) @@
117
     *
118
     * @return string
119
     */
120
    public function RowClasses()
121
    {
122
        $classesArray = Config::inst()->get('ContentBlock_ColumnLayout', 'row_classes');
123
124
        $this->extend('updateRowClasses', $classes);
125
126
        return (!empty($classesArray)) ? implode(' ', $classesArray) : '' ;
127
    }
128
129
    /**
130
     * Gets the block type for CMS display