@@ -43,7 +43,7 @@ |
||
43 | 43 | { |
44 | 44 | $term = preg_replace_callback( |
45 | 45 | '/[\s_-](\w)/', |
46 | - function ($matches) { |
|
46 | + function($matches) { |
|
47 | 47 | return mb_strtoupper($matches[1]); |
48 | 48 | }, |
49 | 49 | $term |
@@ -193,7 +193,7 @@ |
||
193 | 193 | $field = SCT::toHyphen($field); |
194 | 194 | $this->filters = array_filter( |
195 | 195 | $this->filters, |
196 | - static function ($filter) use ($field) { |
|
196 | + static function($filter) use ($field) { |
|
197 | 197 | return mb_strpos($filter, $field) === false; |
198 | 198 | }, |
199 | 199 | ARRAY_FILTER_USE_KEY |
@@ -33,22 +33,22 @@ |
||
33 | 33 | $config = $this->getAdobeConfig(); |
34 | 34 | $entities = $config['entities']; |
35 | 35 | |
36 | - $this->app->bind(Client::class, function () { |
|
36 | + $this->app->bind(Client::class, function() { |
|
37 | 37 | return $this->processClient(); |
38 | 38 | }); |
39 | - $this->app->bind('adobe-connect.sco', function () use ($entities) { |
|
39 | + $this->app->bind('adobe-connect.sco', function() use ($entities) { |
|
40 | 40 | return $this->app->make($entities['sco']); |
41 | 41 | }); |
42 | - $this->app->bind('adobe-connect.sco-record', function () use ($entities) { |
|
42 | + $this->app->bind('adobe-connect.sco-record', function() use ($entities) { |
|
43 | 43 | return $this->app->make($entities['sco-record']); |
44 | 44 | }); |
45 | - $this->app->bind('adobe-connect.principal', function () use ($entities) { |
|
45 | + $this->app->bind('adobe-connect.principal', function() use ($entities) { |
|
46 | 46 | return $this->app->make($entities['principal']); |
47 | 47 | }); |
48 | - $this->app->bind('adobe-connect.permission', function () use ($entities) { |
|
48 | + $this->app->bind('adobe-connect.permission', function() use ($entities) { |
|
49 | 49 | return $this->app->make($entities['permission']); |
50 | 50 | }); |
51 | - $this->app->bind('adobe-connect.common-info', function () use ($entities) { |
|
51 | + $this->app->bind('adobe-connect.common-info', function() use ($entities) { |
|
52 | 52 | return $this->app->make($entities['common-info']); |
53 | 53 | }); |
54 | 54 |