| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class Check |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Check type |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $type; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Check value |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | public $value; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor |
||
| 33 | * |
||
| 34 | * @param string $type |
||
| 35 | * @param string $value |
||
| 36 | */ |
||
| 37 | 40 | public function __construct($type, $value) |
|
| 43 |