Passed
Push — master ( d090f9...62929c )
by Daniel
14:38 queued 10s
created
apps/provisioning_api/lib/AppInfo/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	}
57 57
 
58 58
 	public function register(IRegistrationContext $context): void {
59
-		$context->registerService(NewUserMailHelper::class, function (ContainerInterface $c) {
59
+		$context->registerService(NewUserMailHelper::class, function(ContainerInterface $c) {
60 60
 			return new NewUserMailHelper(
61 61
 				$c->get(Defaults::class),
62 62
 				$c->get(IURLGenerator::class),
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 				Util::getDefaultEmailAddress('no-reply')
70 70
 			);
71 71
 		});
72
-		$context->registerService(ProvisioningApiMiddleware::class, function (ContainerInterface $c) {
72
+		$context->registerService(ProvisioningApiMiddleware::class, function(ContainerInterface $c) {
73 73
 			$user = $c->get(IUserManager::class)->get($c->get('UserId'));
74 74
 			$isAdmin = false;
75 75
 			$isSubAdmin = false;
Please login to merge, or discard this patch.