Completed
Push — master ( b4b423...50c0a6 )
by Russell
01:36
created
src/Adaptor/SentryAdaptor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 $this->context['env'] = $data;
82 82
                 break;
83 83
             case 'tags':
84
-                $hub->configureScope(function (Scope $scope) use($data) : void {
84
+                $hub->configureScope(function(Scope $scope) use($data) : void {
85 85
                     foreach ($data as $tagName => $tagData) {
86 86
                         $scope->setTag($tagName, $tagData);
87 87
                         $this->context['tags'][$tagName] = $tagData;
@@ -89,13 +89,13 @@  discard block
 block discarded – undo
89 89
                 });
90 90
                 break;
91 91
             case 'user':
92
-                $hub->configureScope(function (Scope $scope) use($data) : void {
92
+                $hub->configureScope(function(Scope $scope) use($data) : void {
93 93
                     $scope->setUser($data, true);
94 94
                     $this->context['user'] = $data;
95 95
                 });
96 96
                 break;
97 97
             case 'extra':
98
-                $hub->configureScope(function (Scope $scope) use($data) : void {
98
+                $hub->configureScope(function(Scope $scope) use($data) : void {
99 99
                     foreach ($data as $extraKey => $extraData) {
100 100
                         $scope->setExtra($extraKey, $extraData);
101 101
                         $this->context['extra'][$extraKey] = $extraData;
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
                 });
104 104
                 break;
105 105
             case 'level':
106
-                $hub->configureScope(function (Scope $scope) use($data) : void {
106
+                $hub->configureScope(function(Scope $scope) use($data) : void {
107 107
                     $scope->setLevel(new Severity(SentrySeverity::process_severity($level = $data)));
108 108
                 });
109 109
                 break;
Please login to merge, or discard this patch.