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.

Issues (114)

autoload.php (1 issue)

1
2
<?php
0 ignored issues
show
The opening PHP tag must be the first content in the file
Loading history...
3
4
// Bootstrap the JMS custom annotations for Object to JSON mapping
5
$pathPrefix = "vendor";
6
if ( !file_exists("vendor/autoload.php"))
7
{
8
    $pathPrefix = "../..";
9
}
10
11
require_once($pathPrefix . '/autoload.php');
12
13
\Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace(
14
    'JMS\Serializer\Annotation',
15
    $pathPrefix . '/jms/serializer/src'
16
);
17
18