@@ -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 |
@@ -38,22 +38,22 @@ |
||
| 38 | 38 | $config = $this->getAdobeConfig(); |
| 39 | 39 | $entities = $config['entities']; |
| 40 | 40 | |
| 41 | - $this->app->bind(Client::class, function () { |
|
| 41 | + $this->app->bind(Client::class, function() { |
|
| 42 | 42 | return $this->processClient(); |
| 43 | 43 | }); |
| 44 | - $this->app->bind(SCO::class, function () use ($entities) { |
|
| 44 | + $this->app->bind(SCO::class, function() use ($entities) { |
|
| 45 | 45 | return $this->app->make($entities['sco']); |
| 46 | 46 | }); |
| 47 | - $this->app->bind(SCORecord::class, function () use ($entities) { |
|
| 47 | + $this->app->bind(SCORecord::class, function() use ($entities) { |
|
| 48 | 48 | return $this->app->make($entities['sco-record']); |
| 49 | 49 | }); |
| 50 | - $this->app->bind(Principal::class, function () use ($entities) { |
|
| 50 | + $this->app->bind(Principal::class, function() use ($entities) { |
|
| 51 | 51 | return $this->app->make($entities['principal']); |
| 52 | 52 | }); |
| 53 | - $this->app->bind(Permission::class, function () use ($entities) { |
|
| 53 | + $this->app->bind(Permission::class, function() use ($entities) { |
|
| 54 | 54 | return $this->app->make($entities['permission']); |
| 55 | 55 | }); |
| 56 | - $this->app->bind(CommonInfo::class, function () use ($entities) { |
|
| 56 | + $this->app->bind(CommonInfo::class, function() use ($entities) { |
|
| 57 | 57 | return $this->app->make($entities['common-info']); |
| 58 | 58 | }); |
| 59 | 59 | |