@@ -24,7 +24,7 @@ |
||
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 |
@@ -68,7 +68,7 @@ discard block |
||
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 |
||
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 | ); |