Completed
Push — master ( 5d29b3...11effe )
by Nazar
04:11
created
components/modules/Composer/Composer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 						$verbosity      => true
121 121
 					]
122 122
 				);
123
-				$output             = new Output;
123
+				$output = new Output;
124 124
 				$output->set_stream(fopen("$storage/last_execution.log", 'w'));
125 125
 				$application->setAutoExit(false);
126 126
 				$status_code = $application->run($input, $output);
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 			'repositories' => [],
192 192
 			'require'      => []
193 193
 		];
194
-		$Config   = Config::instance();
194
+		$Config = Config::instance();
195 195
 		foreach (array_keys($Config->components['modules']) as $module) {
196 196
 			if (
197 197
 				$module == $component_name &&
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 		if (!$package['require']) {
267 267
 			return;
268 268
 		}
269
-		$composer['repositories'][]         = [
269
+		$composer['repositories'][] = [
270 270
 			'type'    => 'package',
271 271
 			'package' => $package
272 272
 		];
Please login to merge, or discard this patch.