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 — master ( 3026de...146550 )
by William
14s
created

tests/bootstrap.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
if (!($loader = include __DIR__ . '/../vendor/autoload.php')) {
4
    die(<<<EOT
5
You need to install the project dependencies using Composer:
6
$ wget http://getcomposer.org/composer.phar
7
OR
8
$ curl -s https://getcomposer.org/installer | php
9
$ php composer.phar install --dev
10
$ phpunit
11
EOT
12
    );
13
}
14
15
$loader->add('Hateoas\Tests', __DIR__);
16
17
\Doctrine\Common\Annotations\AnnotationRegistry::registerLoader('class_exists');
0 ignored issues
show
Deprecated Code introduced by
The method Doctrine\Common\Annotati...istry::registerLoader() has been deprecated with message: this method is deprecated and will be removed in doctrine/annotations 2.0 autoloading should be deferred to the globally registered autoloader by then. For now, use @example AnnotationRegistry::registerLoader('class_exists')

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
18