ValidationFailedException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 2
c 1
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php declare(strict_types=1);
2
3
namespace Terah\Assert;
4
5
/**
6
 * Assert
7
 *
8
 * LICENSE
9
 *
10
 * This source file is subject to the new BSD license that is bundled
11
 * with this package in the file LICENSE.txt.
12
 * If you did not receive a copy of the license and are unable to
13
 * obtain it through the world-wide-web, please send an email
14
 * to [email protected] so I can send you a copy immediately.
15
 */
16
17
/**
18
 * ValidationFailedException
19
 *
20
 * @author Benjamin Eberlei <[email protected]>
21
 * @author Terry Cullen <[email protected]>
22
 *
23
 */
24
class ValidationFailedException extends AssertionFailedException
25
{}
0 ignored issues
show
Coding Style introduced by
The opening class brace should be on a newline by itself.
Loading history...