Passed
Pull Request — master (#5629)
by Angel Fernando Quiroz
10:06 queued 01:32
created

ExceptionListener::onKernelException()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
nc 1
nop 1
dl 0
loc 1
c 1
b 0
f 0
cc 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace XApi\LrsBundle\EventListener;
6
7
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
8
9
/**
10
 * Converts Experience API specific domain exceptions into proper HTTP responses.
11
 *
12
 * @author Christian Flothmann <[email protected]>
13
 */
14
class ExceptionListener
15
{
16
    public function onKernelException(GetResponseForExceptionEvent $event): void {}
17
}
18