Test Failed
Push — master ( 0bc352...8c447f )
by Todd
03:54
created

ValidResult::getMessages()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Logikos\Util\Validation;
4
5
6
class ValidResult implements Result {
7
8
  public function isValid(): bool {
9
    return self::VALID;
10
  }
11
12
  public function getMessages() {
13
    return [];
14
  }
15
}