Passed
Push — master ( 5563a9...f88a4b )
by Morris
14:27 queued 20s
created
apps/user_ldap/lib/AppInfo/Application.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 		/**
54 54
 		 * Controller
55 55
 		 */
56
-		$container->registerService('RenewPasswordController', function (ContainerInterface $c) {
56
+		$container->registerService('RenewPasswordController', function(ContainerInterface $c) {
57 57
 			/** @var IServerContainer $server */
58 58
 			$server = $c->get(IServerContainer::class);
59 59
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 			);
69 69
 		});
70 70
 
71
-		$container->registerService(ILDAPWrapper::class, function () {
71
+		$container->registerService(ILDAPWrapper::class, function() {
72 72
 			return new LDAP();
73 73
 		});
74 74
 	}
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
 			$userPluginManager = $server->query(UserPluginManager::class);
93 93
 			$groupPluginManager = $server->query(GroupPluginManager::class);
94 94
 
95
-			$userBackend  = new User_Proxy(
95
+			$userBackend = new User_Proxy(
96 96
 				$configPrefixes, $ldapWrapper, $config, $notificationManager, $userSession, $userPluginManager
97 97
 			);
98
-			$groupBackend  = new Group_Proxy($configPrefixes, $ldapWrapper, $groupPluginManager);
98
+			$groupBackend = new Group_Proxy($configPrefixes, $ldapWrapper, $groupPluginManager);
99 99
 			// register user backend
100 100
 			\OC_User::useBackend($userBackend);
101 101
 
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
 		$serverContainer = $appContainer->get(IServerContainer::class);
121 121
 		$serverContainer->getEventDispatcher()->addListener(
122 122
 			'OCA\\Files_External::loadAdditionalBackends',
123
-			function () use ($appContainer) {
123
+			function() use ($appContainer) {
124 124
 				$storagesBackendService = $appContainer->get(BackendService::class);
125
-				$storagesBackendService->registerConfigHandler('home', function () use ($appContainer) {
125
+				$storagesBackendService->registerConfigHandler('home', function() use ($appContainer) {
126 126
 					return $appContainer->get(ExtStorageConfigHandler::class);
127 127
 				});
128 128
 			}
Please login to merge, or discard this patch.