Completed
Pull Request — master (#44)
by
unknown
17s
created
src/MediaConnection/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     public function build()
55 55
     {
56 56
         return new MediaConnection(
57
-            array_filter($this->data, function ($data) {
57
+            array_filter($this->data, function($data) {
58 58
                 return $data !== null;
59 59
             })
60 60
         );
Please login to merge, or discard this patch.
src/MediaStorage/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             if (!is_string($fileName)) {
73 73
                 throw new \InvalidArgumentException('File name is empty');
74 74
             }
75
-            if(strlen($fileName) > 255) {
75
+            if (strlen($fileName) > 255) {
76 76
                 throw new \InvalidArgumentException('File name must contain no more than 255 characters');
77 77
             }
78 78
         }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     public function build()
105 105
     {
106 106
         return new MediaStorage(
107
-            array_filter($this->data, function ($data) {
107
+            array_filter($this->data, function($data) {
108 108
                 return $data !== null;
109 109
             })
110 110
         );
Please login to merge, or discard this patch.