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

ExceptionListener   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
c 1
b 0
f 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A onKernelException() 0 1 1
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