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

ConfigurationNotFoundException::getStatusCode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
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