@@ -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 |