Passed
Branch master (859b7b)
by
03:31
created
Category
src/Receiver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function handle($payload)
49 49
     {
50 50
         $data = json_decode($payload, true) ?: [];
51
-        $events = (array)@$data['events'];
51
+        $events = (array) @$data['events'];
52 52
         $results = [];
53 53
 
54 54
         foreach ($events as $event) {
Please login to merge, or discard this patch.
src/QuickStart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         array_unshift($this->middlewares, new LockingMiddleware());
89 89
 
90 90
         // must be end of all middlewares
91
-        array_push( $this->middlewares,
91
+        array_push($this->middlewares,
92 92
             new CommandHandlerMiddleware(
93 93
                 new ClassNameExtractor(),
94 94
                 new InMemoryLocator($registry->getCommandList()),
Please login to merge, or discard this patch.