Passed
Pull Request — master (#117)
by Christoph
02:49 queued 56s
created
lib/Reporter/SentryReporterAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 	}
88 88
 
89 89
 	protected function setSentryScope(array $context): void {
90
-		configureScope(function (Scope $scope) use ($context): void {
90
+		configureScope(function(Scope $scope) use ($context): void {
91 91
 			if (isset($context['level'])) {
92 92
 				$scope->setLevel(
93 93
 					new Severity($this->levels[$context['level']])
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 		/** @var IInitialStateService $stateService */
96 96
 		$stateService = $container->query(IInitialStateService::class);
97 97
 
98
-		$stateService->provideLazyInitialState('sentry', 'dsn', function () use ($dsn) {
98
+		$stateService->provideLazyInitialState('sentry', 'dsn', function() use ($dsn) {
99 99
 			return [
100 100
 				'dsn' => $dsn === '' ? null : $dsn,
101 101
 			];
Please login to merge, or discard this patch.