Passed
Push — master ( 8ec1b8...284ca3 )
by Christoph
13:12 queued 12s
created
apps/files/lib/AppInfo/Application.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 class Application extends App implements IBootstrap {
60 60
 	public const APP_ID = 'files';
61 61
 
62
-	public function __construct(array $urlParams=[]) {
62
+	public function __construct(array $urlParams = []) {
63 63
 		parent::__construct(self::APP_ID, $urlParams);
64 64
 	}
65 65
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 		/**
68 68
 		 * Controllers
69 69
 		 */
70
-		$context->registerService('APIController', function (IContainer $c) {
70
+		$context->registerService('APIController', function(IContainer $c) {
71 71
 			/** @var IServerContainer $server */
72 72
 			$server = $c->query(IServerContainer::class);
73 73
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 		/**
87 87
 		 * Services
88 88
 		 */
89
-		$context->registerService('TagService', function (IContainer $c) {
89
+		$context->registerService('TagService', function(IContainer $c) {
90 90
 			/** @var IServerContainer $server */
91 91
 			$server = $c->query(IServerContainer::class);
92 92
 
Please login to merge, or discard this patch.