Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class FileCorruptionResult |
||
25 | { |
||
26 | /** @var bool */ |
||
27 | private $isCorrupted; |
||
28 | |||
29 | /** |
||
30 | * @param bool $isCorrupted |
||
31 | */ |
||
32 | public function __construct( |
||
33 | $isCorrupted |
||
34 | ) { |
||
35 | $this->isCorrupted = $isCorrupted; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param bool $isCorrupted |
||
40 | */ |
||
41 | public function setCorrupted($isCorrupted) |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return bool |
||
48 | */ |
||
49 | public function isCorrupted() |
||
52 | } |
||
53 | } |
||
54 |