Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function withGroupRemovingConfirmation(?string $modalMessage = null, ?string $yesButtonText = null, ?string $noButtonText = null): static |
||
14 | { |
||
15 | return $this->withMeta([ |
||
|
|||
16 | 'confirmRemove' => true, |
||
17 | 'confirmRemoveMessage' => $modalMessage, |
||
18 | 'confirmRemoveYes' => $yesButtonText, |
||
19 | 'confirmRemoveNo' => $noButtonText, |
||
20 | ]); |
||
47 |