Completed
Push — master ( 479bd0...2d4f6a )
by Valery
03:41
created
src/Service/Cache/GetCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         $this->persistentObjectName = $class;
36 36
 
37
-        $count = $this->cache->get($key, function () {
37
+        $count = $this->cache->get($key, function() {
38 38
             return $this->countItems();
39 39
         });
40 40
 
Please login to merge, or discard this patch.
src/Command/ListUsersCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 
49 49
         $allUsers = $this->users->findBy([], ['id' => 'DESC'], $limit);
50 50
 
51
-        $usersAsPlainArrays = array_map(function (User $user) {
51
+        $usersAsPlainArrays = array_map(function(User $user) {
52 52
             return [
53 53
                 $user->getId(),
54 54
                 $user->getFullName(),
Please login to merge, or discard this patch.