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
Pull Request — master (#19)
by Juan
03:48 queued 01:52
created

JsonSerializer::unserializeObject()   C

Complexity

Conditions 7
Paths 13

Size

Total Lines 37
Code Lines 25

Duplication

Lines 0
Ratio 0 %

Importance

Changes 10
Bugs 2 Features 3
Metric Value
c 10
b 2
f 3
dl 0
loc 37
rs 6.7272
cc 7
eloc 25
nc 13
nop 1
1
<?php
2
3
namespace Zumba\Util;
4
5
use Zumba\JsonSerializer\JsonSerializer as NewJsonSerializer;
6
7
/**
8
 * @deprecated Will be removed on the 3.0.0. Use Zumba\JsonSerializer\JsonSerializer instead
9
 */
10
class JsonSerializer extends NewJsonSerializer
11
{
12
}
13