OutOfBoundsException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
eloc 1
c 1
b 0
f 1
dl 0
loc 2
ccs 0
cts 0
cp 0
1
<?php
2
/**
3
 * Sandro Keil (https://sandro-keil.de)
4
 *
5
 * @link      http://github.com/sandrokeil/interop-config for the canonical source repository
6
 * @copyright Copyright (c) 2015-2020 Sandro Keil
7
 * @license   http://github.com/sandrokeil/interop-config/blob/master/LICENSE.md New BSD License
8
 */
9
10
declare(strict_types = 1);
11
12
namespace Interop\Config\Exception;
13
14
use OutOfBoundsException as PhpOutOfBoundsException;
15
16
/**
17
 * OutOfBoundsException exception
18
 *
19
 * Use this exception if the code attempts to access an associative array, but performs a check for the key.
20
 */
21
class OutOfBoundsException extends PhpOutOfBoundsException implements ExceptionInterface
22
{
23
}
24