Completed
Pull Request — master (#1503)
by Julius
03:16 queued 10s
created
lib/AppInfo/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 	/**
174 174
 	 */
175 175
 	protected function registerCommentsEventHandler(): void {
176
-		$this->server->getCommentsManager()->registerEventHandler(function () {
176
+		$this->server->getCommentsManager()->registerEventHandler(function() {
177 177
 			return $this->getContainer()->query(CommentEventHandler::class);
178 178
 		});
179 179
 	}
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 		$resourceManager->registerResourceProvider(ResourceProvider::class);
200 200
 		$resourceManager->registerResourceProvider(ResourceProviderCard::class);
201 201
 
202
-		$this->server->getEventDispatcher()->addListener('\OCP\Collaboration\Resources::loadAdditionalScripts', static function () {
202
+		$this->server->getEventDispatcher()->addListener('\OCP\Collaboration\Resources::loadAdditionalScripts', static function() {
203 203
 			Util::addScript('deck', 'collections');
204 204
 		});
205 205
 	}
Please login to merge, or discard this patch.
appinfo/app.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 use OCA\Deck\AppInfo\Application;
25 25
 use OCP\AppFramework\QueryException;
26 26
 
27
-if ((@include_once __DIR__ . '/../vendor/autoload.php')=== false) {
27
+if ((@include_once __DIR__ . '/../vendor/autoload.php') === false) {
28 28
 	throw new Exception('Cannot include autoload. Did you run install dependencies using composer?');
29 29
 }
30 30
 
Please login to merge, or discard this patch.