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.
Completed
Push — develop ( 7799bc...b8a19a )
by
unknown
13s
created

Com_LocaliseInstallerScript::preflight()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 5
nc 2
nop 2
1
<?php
2
/**
3
 * @package     Com_Localise
4
 * @subpackage  com_localise.script
5
 *
6
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
7
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
8
 */
9
10
defined('_JEXEC') or die;
11
12
use Joomla\CMS\Installer\InstallerScript;
13
14
/**
15
 * Installation class to perform additional changes during install/uninstall/update
16
 *
17
 * @package  Localise
18
 * @since    4.0
19
 */
20
class Com_LocaliseInstallerScript extends InstallerScript
21
{
22
	/**
23
	 * The extension name. This should be set in the installer script.
24
	 *
25
	 * @var    string
26
	 * @since  4.0.31
27
	 */
28
	protected $extension = 'com_localise';
29
	/**
30
	 * Minimum PHP version required to install the extension
31
	 *
32
	 * @var    string
33
	 * @since  4.0.31
34
	 */
35
	protected $minimumPhp = '5.3.10';
36
	/**
37
	 * Minimum Joomla! version required to install the extension
38
	 *
39
	 * @var    string
40
	 * @since  4.0.31
41
	 */
42
	protected $minimumJoomla = '3.8.0';
43
}
44