Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PostRunDeploy extends Event |
||
8 | { |
||
9 | /** |
||
10 | * @var bool |
||
11 | */ |
||
12 | private $success; |
||
13 | |||
14 | /** |
||
15 | * PostRunDeploy constructor. |
||
16 | * @param bool $success |
||
17 | */ |
||
18 | public function __construct(bool $success) |
||
19 | { |
||
20 | $this->success = $success; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return bool |
||
25 | */ |
||
26 | public function isSuccess(): bool |
||
29 | } |
||
30 | } |