Total Complexity | 5 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | class VerifyMountPointEvent extends Event { |
||
35 | |||
36 | /** @var IShare */ |
||
37 | private $share; |
||
38 | /** @var View */ |
||
39 | private $view; |
||
40 | /** @var string */ |
||
41 | private $parent; |
||
42 | |||
43 | /** |
||
44 | * @since 19.0.0 |
||
45 | */ |
||
46 | public function __construct(IShare $share, |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @since 19.0.0 |
||
58 | */ |
||
59 | public function getShare(): IShare { |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @since 19.0.0 |
||
65 | */ |
||
66 | public function getView(): View { |
||
67 | return $this->view; |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @since 19.0.0 |
||
72 | */ |
||
73 | public function getParent(): string { |
||
74 | return $this->parent; |
||
75 | } |
||
76 | |||
77 | /** |
||
78 | * @since 19.0.0 |
||
79 | */ |
||
80 | public function setParent(string $parent): void { |
||
82 | } |
||
83 | } |
||
84 |