Completed
Push — master ( 8b8afb...f7fc3d )
by Jan
04:26
created
src/Services/TranslationExtractor/PermissionExtractor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             foreach ($this->permission_structure['groups'] as $group) {
65 65
                 if (isset($group['label'])) {
66 66
                     $catalogue->add([
67
-                        $group['label'] => '__' . $group['label']
67
+                        $group['label'] => '__'.$group['label']
68 68
                     ]);
69 69
                 }
70 70
             }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             foreach ($this->permission_structure['perms'] as $perm) {
74 74
                 if (isset($perm['label'])) {
75 75
                     $catalogue->add([
76
-                        $perm['label'] => '__' . $perm['label']
76
+                        $perm['label'] => '__'.$perm['label']
77 77
                     ]);
78 78
                 }
79 79
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 foreach ($perm['operations'] as $op) {
82 82
                     if (isset($op['label'])) {
83 83
                         $catalogue->add([
84
-                            $op['label'] => '__' . $op['label']
84
+                            $op['label'] => '__'.$op['label']
85 85
                         ]);
86 86
                     }
87 87
                 }
Please login to merge, or discard this patch.