Completed
Pull Request — master (#1)
by Evgenii
07:26
created
src/Interactor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     protected function appendHandleMethod($interaction, $method = 'handle')
57 57
     {
58 58
         if (!str_contains($interaction, '@')) {
59
-            $interaction .= '@' . $method;
59
+            $interaction .= '@'.$method;
60 60
         }
61 61
 
62 62
         return $interaction;
Please login to merge, or discard this patch.
src/InteractionServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register()
23 23
     {
24
-        $this->app->singleton(Interactor::class, function ($app) {
24
+        $this->app->singleton(Interactor::class, function($app) {
25 25
             return new Interactor($app);
26 26
         });
27 27
 
Please login to merge, or discard this patch.