| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class StaticCheck implements Check |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $identifier; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $status; |
||
| 26 | |||
| 27 | public function __construct($identifier, $status, $message) |
||
| 32 | } |
||
| 33 | |||
| 34 | public function run() |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getIdentifier() |
||
| 44 |