summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVitor Mattos <vitor@php.rio>2023-01-13 14:56:13 -0300
committerVitor Mattos <vitor@php.rio>2023-01-14 10:02:23 -0300
commitf44a9f7662dbdcb2b0dddd2a18566378e897e7e8 (patch)
tree5814d3e44bf7212d14ef3a690999ef68ad4845eb /lib
parent71aa1692c51ea845e70e74f498e201748fd10702 (diff)
Fix unit tests
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'lib')
-rw-r--r--lib/Notification/Notifier.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index 936006a4b..a396e79fd 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -64,12 +64,12 @@ class Notifier implements INotifier {
protected IUserManager $userManager;
protected GuestManager $guestManager;
private IShareManager $shareManager;
- private IURLGenerator $urlGenerator;
protected Manager $manager;
protected ParticipantService $participantService;
protected INotificationManager $notificationManager;
protected ICommentsManager $commentManager;
protected MessageParser $messageParser;
+ private IURLGenerator $urlGenerator;
protected ITimeFactory $timeFactory;
protected Definitions $definitions;
protected AddressHandler $addressHandler;
@@ -85,12 +85,12 @@ class Notifier implements INotifier {
IUserManager $userManager,
GuestManager $guestManager,
IShareManager $shareManager,
- IURLGenerator $urlGenerator,
Manager $manager,
ParticipantService $participantService,
INotificationManager $notificationManager,
CommentsManager $commentManager,
MessageParser $messageParser,
+ IURLGenerator $urlGenerator,
ITimeFactory $timeFactory,
Definitions $definitions,
AddressHandler $addressHandler) {
@@ -100,12 +100,12 @@ class Notifier implements INotifier {
$this->userManager = $userManager;
$this->guestManager = $guestManager;
$this->shareManager = $shareManager;
- $this->urlGenerator = $urlGenerator;
$this->manager = $manager;
$this->participantService = $participantService;
$this->notificationManager = $notificationManager;
$this->commentManager = $commentManager;
$this->messageParser = $messageParser;
+ $this->urlGenerator = $urlGenerator;
$this->timeFactory = $timeFactory;
$this->definitions = $definitions;
$this->addressHandler = $addressHandler;