NotBlankModel
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 3
1
<?php
2
/**
3
 * This file contains a NotBlank validator constraint for single model types
4
 *
5
 * @license    https://github.com/allejo/bzion/blob/master/LICENSE.md GNU General Public License Version 3
6
 */
7
8
namespace BZIon\Form\Constraint;
9
10
use Symfony\Component\Validator\Constraints\NotBlank;
11
12
/**
13
 * Constraint that makes sure a model is valid
14
 */
15
class NotBlankModel extends NotBlank
16
{
17
}
18