Completed
Push — master ( b57c0a...d441ef )
by Adam
02:49 queued 14s
created

IException

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
1
<?php
2
/**
3
 * IException.php
4
 *
5
 * @copyright      More in license.md
6
 * @license        http://www.ipublikuj.eu
7
 * @author         Adam Kadlec http://www.ipublikuj.eu
8
 * @package        iPublikuj:ConfirmationDialog!
9
 * @subpackage     Exceptions
10
 * @since          1.0.0
11
 *
12
 * @date           31.01.15
13
 */
14
15
declare(strict_types = 1);
16
17
namespace IPub\ConfirmationDialog\Exceptions;
18
19 1
interface IException
20
{
21
}
22