Test Setup Failed
Branch master (c908f4)
by Robin
03:23 queued 12s
created
Category
src/CommunibaseId.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public static function fromStrings(array $strings)
56 56
     {
57
-        return array_map(static function ($string) {
57
+        return array_map(static function($string) {
58 58
             return self::fromString($string);
59 59
         }, $strings);
60 60
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public static function toObjectQueryArray(array $ids)
68 68
     {
69
-        return array_reduce($ids, static function (array $carry, CommunibaseId $id) {
69
+        return array_reduce($ids, static function(array $carry, CommunibaseId $id) {
70 70
             if ($id !== null) {
71 71
                 $carry[] = ['$ObjectId' => $id->toString()];
72 72
             }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public static function toStrings(array $ids)
83 83
     {
84
-        return array_filter(array_map(static function (CommunibaseId $id) {
84
+        return array_filter(array_map(static function(CommunibaseId $id) {
85 85
             return (string)$id;
86 86
         }, $ids));
87 87
     }
Please login to merge, or discard this patch.
src/Entity/PhoneNumber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         return trim(
76 76
             \preg_replace_callback(
77 77
                 '![cas]!',
78
-                static function (array $matches) use ($countryCode, $areaCode, $subscriberNumber) {
78
+                static function(array $matches) use ($countryCode, $areaCode, $subscriberNumber) {
79 79
                     switch ($matches[0]) {
80 80
                         case 'c':
81 81
                             return $countryCode;
Please login to merge, or discard this patch.