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 — dev ( e08019...5c7f2d )
by w3l
04:48 queued 02:28
created

holt45.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * holt45
4
 * A small library with some really basic functions...
5
 *
6
 * @link https://github.com/w3l/holt45
7
 * @copyright Unlicense
8
 * @version 0.3.0
9
 */
10
11
require_once dirname(__FILE__) . '/holt45/Get.php';
12
require_once dirname(__FILE__) . '/holt45/Post.php';
13
require_once dirname(__FILE__) . '/holt45/Session.php';
14
require_once dirname(__FILE__) . '/holt45/Time.php';
15
require_once dirname(__FILE__) . '/holt45/Misc.data.inc';
16
require_once dirname(__FILE__) . '/holt45/Misc.php';
17
18
class Holt45 {
19
20
	const DATA_URI_TRANSPARENT_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
21
	const DATA_URI_TRANSPARENT_PNG = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=';
22
	
23
	use \w3l\Holt45\Get;
24
	use \w3l\Holt45\Post;
25
	use \w3l\Holt45\Session;
26
	use \w3l\Holt45\Time;
27
	use \w3l\Holt45\Convert
28
	use \w3l\Holt45\MiscData;
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_USE, expecting ',' or ';' or '{'
Loading history...
29
	use \w3l\Holt45\Misc;
30
}
31