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/Components/Grid.php 1 location

@@ 38-45 (lines=8) @@
35
 * @since 1.0
36
 * @ingroup Skins
37
 */
38
class Grid extends Container {
39
40
	public function __construct( ChameleonTemplate $template, \DOMElement $domElement = null, $indent = 0 ) {
41
42
		parent::__construct( $template, $domElement, $indent );
43
		$this->addClasses( 'container' );
44
	}
45
}
46

src/Components/Row.php 1 location

@@ 38-45 (lines=8) @@
35
 * @since 1.0
36
 * @ingroup Skins
37
 */
38
class Row extends Container {
39
40
	public function __construct( ChameleonTemplate $template, \DOMElement $domElement = null, $indent = 0 ) {
41
42
		parent::__construct( $template, $domElement, $indent );
43
		$this->addClasses( 'row' );
44
	}
45
}
46