Completed
Push — master ( 6be6c0...e24d5b )
by Alessandro
01:46
created

InvalidArgumentException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @package Infibiotech\JsonCache
4
 * @version 1.0.0-alpha
5
 * @author Alessandro Raffa, Infobiotech S.r.l. <[email protected]>
6
 * @copyright (c) 2014-2017, Infobiotech S.r.l.
7
 * @license http://mit-license.org/
8
 * @uses psr/simple-cache
9
 */
10
11
namespace Infobiotech\JsonCache\Psr16;
12
13
/** SPL use block. */
14
use InvalidArgumentException as PhpInvalidArgumentException;
15
/** PSR-16 use block. */
16
use Psr\SimpleCache\InvalidArgumentException as PsrInvalidArgumentException;
17
18
/**
19
 * CacheInvalidArgumentException Class
20
 * Will be thrown if arguments given to caching functions are invalid or unacceptable.
21
 *
22
 * @author Alessandro Raffa, Infobiotech S.r.l. <[email protected]>
23
 */
24
class InvalidArgumentException extends PhpInvalidArgumentException implements PsrInvalidArgumentException
25
{
26
27
}
28