Completed
Push — master ( 7d1c77...3a4e71 )
by Artem
10:34
created

AbstractCustomHttpAppException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A loggable() 0 4 1
1
<?php
2
/*
3
 * This file is part of the StfalconApiBundle.
4
 *
5
 * (c) Stfalcon LLC <stfalcon.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
declare(strict_types=1);
12
13
namespace StfalconStudio\ApiBundle\Exception;
14
15
use Symfony\Component\HttpKernel\Exception\HttpException;
16
17
/**
18
 * AbstractCustomHttpAppException.
19
 */
20
abstract class AbstractCustomHttpAppException extends HttpException implements CustomAppExceptionInterface
21
{
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function loggable(): bool
26
    {
27
        return false;
28
    }
29
}
30