Passed
Push — master ( 674e8e...534b2d )
by Kane
12:53
created
src/OEmbedServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         $this->registerConfig();
26 26
 
27
-        $this->app->singleton('oembed', function ($app) {
27
+        $this->app->singleton('oembed', function($app) {
28 28
             return new OEmbed($app['config']['oembed']);
29 29
         });
30 30
 
Please login to merge, or discard this patch.
src/HtmlBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             }
69 69
 
70 70
             if ($this->type === self::TYPE_VIDEO) {
71
-                return array_map(function ($source) {
71
+                return array_map(function($source) {
72 72
                     return $source['src'];
73 73
                 }, $attrs['source']);
74 74
             }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 
187 187
         return array_filter(
188 188
             array_merge($typeOptions, $options, $attrs),
189
-            function ($v) {
189
+            function($v) {
190 190
                 return $v !== null;
191 191
             }
192 192
         );
Please login to merge, or discard this patch.