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 ( 4385af...750b3e )
by w3l
06:06 queued 04:01
created

holt45.php (1 issue)

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
define('HOLT45_DIR', dirname(__FILE__) . '/holt45');
11
12
require_once HOLT45_DIR . '/Get.php';
13
require_once HOLT45_DIR . '/Post.php';
14
require_once HOLT45_DIR . '/Session.php';
15
require_once HOLT45_DIR . '/Time.php';
16
require_once HOLT45_DIR . '/Misc.data.inc';
17
require_once HOLT45_DIR . '/Misc.php';
18
19
class Holt45 {
20
21
	const DATA_URI_TRANSPARENT_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
22
	const DATA_URI_TRANSPARENT_PNG = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVQYV2NgYAAAAAMAAWgmWQ0AAAAASUVORK5CYII=';
23
	
24
	use \w3l\Holt45\Get;
25
	use \w3l\Holt45\Post;
26
	use \w3l\Holt45\Session;
27
	use \w3l\Holt45\Time;
28
	use \w3l\Holt45\MiscData;
29
	use \w3l\Holt45\Misc;
30
}
0 ignored issues
show
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
31