| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class NamedScopeDuplicationException extends ContainerException |
||
| 10 | { |
||
| 11 | public function __construct( |
||
| 12 | protected string $scope, |
||
| 13 | ) { |
||
| 14 | parent::__construct( |
||
| 15 | "Error on a scope allocation with the name `{$scope}`. A scope with the same name already exists." |
||
| 16 | ); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getScope(): string |
||
| 22 | } |
||
| 23 | } |
||
| 24 |