Passed
Pull Request — master (#172)
by Christoph
01:51
created
lib/Reporter/SentryReporterAdapter.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
 	}
89 89
 
90 90
 	protected function setSentryScope(array $context): void {
91
-		configureScope(function (Scope $scope) use ($context): void {
91
+		configureScope(function(Scope $scope) use ($context): void {
92 92
 			if (isset($context['level'])) {
93 93
 				$scope->setLevel(
94 94
 					new Severity(self::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
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 		include_once __DIR__ . '/../../vendor/autoload.php';
57 57
 
58 58
 		// Wire the interface to our decorator and implementation
59
-		$context->registerService(ISentryReporter::class, function (ContainerInterface $c) {
59
+		$context->registerService(ISentryReporter::class, function(ContainerInterface $c) {
60 60
 			/** @var Config $config */
61 61
 			$config = $c->get(Config::class);
62 62
 			/** @var SentryReporterAdapter $inner */
Please login to merge, or discard this patch.