Passed
Push — master ( 3cfbcc...dd6e64 )
by Christian
16:35 queued 06:50
created

ConfigurationNotFoundException   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getStatusCode() 0 3 1
A getErrorCode() 0 3 1
1
<?php declare(strict_types=1);
2
3
namespace Shopware\Core\System\SystemConfig\Exception;
4
5
use Shopware\Core\Framework\ShopwareHttpException;
6
use Symfony\Component\HttpFoundation\Response;
7
8
class ConfigurationNotFoundException extends ShopwareHttpException
9
{
10
    public function __construct(string $scope)
11
    {
12
        parent::__construct(
13
            'Configuration for scope "{{ $scope }}" not found.',
14
            ['scope' => $scope]
15
        );
16
    }
17
18
    public function getErrorCode(): string
19
    {
20
        return 'SYSTEM__SCOPE_NOT_FOUND';
21
    }
22
23
    public function getStatusCode(): int
24
    {
25
        return Response::HTTP_NOT_FOUND;
26
    }
27
}
28