RateLimitExceededException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 3
c 1
b 0
f 0
dl 0
loc 7
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 2
1
<?php
2
3
/*
4
 * This file is part of the ApiRateLimitBundle
5
 *
6
 * (c) Indra Gunawan <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Indragunawan\ApiRateLimitBundle\Exception;
13
14
use Symfony\Component\HttpKernel\Exception\HttpException;
15
16
/**
17
 * @author Indra Gunawan <[email protected]>
18
 */
19
class RateLimitExceededException extends HttpException
20
{
21 3
    public function __construct(int $statusCode, string $message, string $ip, string $username = null)
22
    {
23 3
        $message = sprintf($message, $username ?: $ip);
24
25 3
        parent::__construct($statusCode, $message);
26 3
    }
27
}
28