Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathieu Valois
madis
Commits
eab4abec
Commit
eab4abec
authored
1 year ago
by
Jonathan Foucher
Browse files
Options
Downloads
Patches
Plain Diff
cs fix
parent
28e3e650
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Infrastructure/ORM/Notification/Repository/Notification.php
+3
-3
3 additions, 3 deletions
...frastructure/ORM/Notification/Repository/Notification.php
with
3 additions
and
3 deletions
src/Infrastructure/ORM/Notification/Repository/Notification.php
+
3
−
3
View file @
eab4abec
...
...
@@ -137,11 +137,11 @@ class Notification extends CRUDRepository implements Repository\Notification
}
// If notifications are active, delete old notifications
$qb
=
$this
->
getManager
()
->
createQueryBuilder
();
$qb
->
where
(
'o.createdAt < :date'
);
$prevDate
=
new
\DateTime
();
$prevDate
->
modify
(
'-'
.
$this
->
saveNotificationsDuration
);
$prevDate
->
modify
(
'-'
.
$this
->
saveNotificationsDuration
);
$qb
->
setParameter
(
'date'
,
$prevDate
);
$qb
->
delete
(
'App\Domain\Notification\Model\NotificationUser as o'
);
$qb
->
getQuery
()
->
execute
();
...
...
@@ -149,7 +149,7 @@ class Notification extends CRUDRepository implements Repository\Notification
$qb
=
$this
->
getManager
()
->
createQueryBuilder
();
$qb
->
where
(
'o.createdAt < :date'
);
$prevDate
=
new
\DateTime
();
$prevDate
->
modify
(
'-'
.
$this
->
saveNotificationsDuration
);
$prevDate
->
modify
(
'-'
.
$this
->
saveNotificationsDuration
);
$qb
->
setParameter
(
'date'
,
$prevDate
);
$qb
->
delete
(
'App\Domain\Notification\Model\Notification as o'
);
$qb
->
getQuery
()
->
execute
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment