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.

JsonSerializerException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
3
namespace Zumba\JsonSerializer\Exception;
4
5
use Zumba\Exception\JsonSerializerException as OriginalException;
6
7
class JsonSerializerException extends OriginalException
0 ignored issues
show
Deprecated Code introduced by
The class Zumba\Exception\JsonSerializerException has been deprecated with message: Will be removed on the 3.0.0. Use Zumba\JsonSerializer\Exception\JsonSerializerException instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

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

Loading history...
8
{
9
}
10