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 ( 18f63a...32e28e )
by Steevan
02:17
created

ReadOnlyHydrator   B

Complexity

Total Complexity 39

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 10
Bugs 2 Features 2
Metric Value
wmc 39
c 10
b 2
f 2
lcom 0
cbo 3
dl 0
loc 4
rs 8.2857
1
<?php
2
3
namespace steevanb\DoctrineReadOnlyHydrator\Hydrator;
4
5
use steevanb\DoctrineStats\Doctrine\ORM\Event\OverloadedHydratorTrait;
6
7
class ReadOnlyHydrator extends \ComposerOverloadClass\steevanb\DoctrineReadOnlyHydrator\Hydrator\ReadOnlyHydrator
8
{
9
    use OverloadedHydratorTrait;
10
}
11