DocEvent
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 1
c 1
b 0
f 0
dl 0
loc 2
1
<?php
2
3
namespace Yoanm\SymfonyJsonRpcHttpServerDoc\Event;
4
5
use Symfony\Component\EventDispatcher\Event;
6
7
/**
8
 * Class DocEvent
9
 */
10
class DocEvent extends Event
0 ignored issues
show
Deprecated Code introduced by
The class Symfony\Component\EventDispatcher\Event has been deprecated: since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" instead ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

10
class DocEvent extends /** @scrutinizer ignore-deprecated */ Event
Loading history...
11
{
12
}
13