Completed
Pull Request — master (#349)
by Luc
04:42
created
src/Organizer/Commands/AbstractLabelCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function getNames()
50 50
     {
51 51
         return [
52
-            new StringLiteral((string) $this->label),
52
+            new StringLiteral((string)$this->label),
53 53
         ];
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/Offer/Commands/AbstractImportLabels.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function getNames()
39 39
     {
40 40
         return array_map(
41
-            function (Label $label) {
41
+            function(Label $label) {
42 42
                 return new StringLiteral($label->getName()->toString());
43 43
             },
44 44
             $this->getLabels()->toArray()
Please login to merge, or discard this patch.
src/Organizer/Commands/ImportLabels.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function getNames()
39 39
     {
40 40
         return array_map(
41
-            function (Label $label) {
41
+            function(Label $label) {
42 42
                 return new StringLiteral($label->getName()->toString());
43 43
             },
44 44
             $this->getLabels()->toArray()
Please login to merge, or discard this patch.