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