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.
Passed
Push — master ( d0a974...b1fd0a )
by Christian
02:56
created

php-version.php (5 issues)

1
<?php
0 ignored issues
show
This file is missing a doc comment.
Loading history...
2
/**
0 ignored issues
show
Missing short description in doc comment
Loading history...
3
 * @author    Podlove <[email protected]>
4
 * @copyright Copyright (c) 2014-2018, Podlove
5
 * @license   https://github.com/podlove/podlove-subscribe-button-wp-plugin/blob/master/LICENSE MIT
6
 * @package   Podlove\PodloveSubscribeButton
7
 */
0 ignored issues
show
There must be no blank lines after the function comment
Loading history...
8
9
function podlove_psb_php_notice() {
10
	?>
11
	<div id="message" class="error">
12
		<p>
13
			<strong>The Podlove Subscribe Button Plugin could not be activated</strong>
14
		</p>
15
		<p>
16
			The Podlove Subscribe Button Plugin requires <code>PHP 5.3</code> or higher.<br>
17
			You are running <code>PHP <?php echo phpversion(); ?></code>.<br>
0 ignored issues
show
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'phpversion'.
Loading history...
18
			Please ask your hoster how to upgrade to an up-to-date PHP version.
19
		</p>
20
	</div>
21
	<?php
22
}
0 ignored issues
show
Expected 1 blank line before closing function brace; 0 found
Loading history...
23