Completed
Push — master ( d56647...5f1d83 )
by Kirill
11s
created
app/Core/Providers/GitterClientServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function register()
30 30
     {
31
-        $this->app->singleton(Client::class, function (Container $app) {
31
+        $this->app->singleton(Client::class, function(Container $app) {
32 32
             return new Client($app['config']->get('gitter.token'));
33 33
         });
34 34
 
35
-        $this->app->singleton('bot', function (Container $app) {
35
+        $this->app->singleton('bot', function(Container $app) {
36 36
             /** @var Client $client */
37 37
             $client = $app->make(Client::class);
38 38
             return $client->http->getCurrentUser()->wait();
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
 
42 42
     public function boot()
43 43
     {
44
-        $this->app->singleton('bot.manager', function (Container $app) {
44
+        $this->app->singleton('bot.manager', function(Container $app) {
45 45
             return new BotManager($app);
46 46
         });
47 47
 
48
-        $this->app->singleton('room.manager', function (Container $app) {
48
+        $this->app->singleton('room.manager', function(Container $app) {
49 49
             $manager = new RoomManager();
50 50
 
51 51
             $this->registerGitterRooms($manager);
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     protected function registerGitterRooms(RoomManager $manager)
59 59
     {
60
-        foreach ((array) $this->app['config']->get('gitter.rooms') as $room => $groups) {
60
+        foreach ((array)$this->app['config']->get('gitter.rooms') as $room => $groups) {
61 61
             $manager->register(
62 62
                 new StandartGitterRoom($room, $groups, \Config::get('gitter.middlewares'))
63 63
             );
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     protected function registerSlackRooms(RoomManager $manager)
68 68
     {
69
-        foreach ((array) $this->app['config']->get('slack.rooms') as $roomId => $groups) {
69
+        foreach ((array)$this->app['config']->get('slack.rooms') as $roomId => $groups) {
70 70
             $manager->register(
71 71
                 new StandartSlackRoom($roomId, $groups, \Config::get('slack.middlewares'))
72 72
             );
Please login to merge, or discard this patch.
app/Interfaces/Slack/StandartSlackRoom.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         parent::__construct();
28 28
 
29 29
         $this->alias = $alias;
30
-        $this->groups = (array) $groups;
30
+        $this->groups = (array)$groups;
31 31
 
32 32
         $this->setMiddleware($middleware);
33 33
     }
Please login to merge, or discard this patch.