Passed
Push — master ( 075143...f7d14a )
by Aske
09:31
created
Classes/Controller/HistoryController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     {
70 70
         $numberOfSites = 0;
71 71
         // In case a user can only access a single site, but more sites exists
72
-        $this->securityContext->withoutAuthorizationChecks(function () use(&$numberOfSites) {
72
+        $this->securityContext->withoutAuthorizationChecks(function() use(&$numberOfSites) {
73 73
             $numberOfSites = $this->siteRepository->countAll();
74 74
         });
75 75
         $sites = $this->siteRepository->findOnline();
Please login to merge, or discard this patch.
Classes/Domain/Repository/NodeEventRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                 ->andWhere('e.nodeIdentifier = :nodeIdentifier')
46 46
                 ->setParameter('nodeIdentifier', $nodeIdentifier);
47 47
         }
48
-        if($accountIdentifier) {
48
+        if ($accountIdentifier) {
49 49
             $query->getQueryBuilder()
50 50
                 ->andWhere('e.accountIdentifier = :accountIdentifier')
51 51
                 ->setParameter('accountIdentifier', $accountIdentifier);
Please login to merge, or discard this patch.