Completed
Pull Request — master (#3)
by
unknown
06:50
created
src/Provider/PushServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function boot()
17 17
     {
18 18
         $this->publishes([
19
-            dirname(__DIR__) . '/Config/tzsk-push.php' => config_path('push.php'),
19
+            dirname(__DIR__).'/Config/tzsk-push.php' => config_path('push.php'),
20 20
         ]);
21 21
     }
22 22
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-        $this->app->singleton('tzsk-push', function ($app) {
30
+        $this->app->singleton('tzsk-push', function($app) {
31 31
             return new Pusher(new PusherFactory());
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
src/Factory/PusherFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @throws \InvalidArgumentException
26 26
      *
27
-     * @return array
27
+     * @return string[]
28 28
      */
29 29
     protected function getConfig()
30 30
     {
Please login to merge, or discard this patch.