Passed
Push — master ( e72b52...ba8a1a )
by Damien
05:50
created
src/DoctrineAuditBundle/Reader/AuditReader.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -367,9 +367,9 @@
 block discarded – undo
367 367
 
368 368
     private function filterByDate(QueryBuilder $queryBuilder, ?DateTime $startDate, ?DateTime $endDate): QueryBuilder
369 369
     {
370
-    	if (null !== $startDate && null !== $endDate && $endDate < $startDate) {
371
-		    throw new \InvalidArgumentException('$endDate must be greater than $startDate.');
372
-	    }
370
+        if (null !== $startDate && null !== $endDate && $endDate < $startDate) {
371
+            throw new \InvalidArgumentException('$endDate must be greater than $startDate.');
372
+        }
373 373
 
374 374
         if (null !== $startDate) {
375 375
             $queryBuilder
Please login to merge, or discard this patch.