@@ -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 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | */ |
49 | 49 | class CommonInfo |
50 | 50 | { |
51 | - use PropertyCaller,Fillable; |
|
51 | + use PropertyCaller, Fillable; |
|
52 | 52 | |
53 | 53 | /** |
54 | 54 | * Set the Date. |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | class Permission implements ArrayableInterface |
28 | 28 | { |
29 | - use Arrayable, PropertyCaller,Fillable; |
|
29 | + use Arrayable, PropertyCaller, Fillable; |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Special permission for Meeting. |
@@ -72,7 +72,7 @@ |
||
72 | 72 | */ |
73 | 73 | class SCORecord |
74 | 74 | { |
75 | - use PropertyCaller,Fillable; |
|
75 | + use PropertyCaller, Fillable; |
|
76 | 76 | |
77 | 77 | /** |
78 | 78 | * Set if is Folder. |
@@ -74,7 +74,7 @@ |
||
74 | 74 | */ |
75 | 75 | class SCO implements ArrayableInterface |
76 | 76 | { |
77 | - use Arrayable, PropertyCaller,Fillable; |
|
77 | + use Arrayable, PropertyCaller, Fillable; |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * A viewable file uploaded to the server. |
@@ -15,8 +15,8 @@ |
||
15 | 15 | */ |
16 | 16 | public function fill(array $attributes) |
17 | 17 | { |
18 | - foreach ($attributes as $name=>$value){ |
|
19 | - $this->$name=$value; |
|
18 | + foreach ($attributes as $name=>$value) { |
|
19 | + $this->$name = $value; |
|
20 | 20 | } |
21 | 21 | return $this; |
22 | 22 | } |