Completed
Push — master ( c4d663...6e762a )
by Nazar
10:58 queued 05:57
created
modules/Composer/Composer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 						$verbosity              => true
123 123
 					]
124 124
 				);
125
-				$output             = new Output;
125
+				$output = new Output;
126 126
 				$Application->setAutoExit(false);
127 127
 				$status_code = $Application->run($input, $output);
128 128
 				$description = $output->get_buffer();
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 			'repositories' => [],
194 194
 			'require'      => []
195 195
 		];
196
-		$Config   = Config::instance();
196
+		$Config = Config::instance();
197 197
 		foreach (array_keys($Config->components['modules']) as $module) {
198 198
 			if (
199 199
 				$module == $component_name &&
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 		if (!$package['require'] && !isset($package['replace'])) {
245 245
 			return;
246 246
 		}
247
-		$composer['repositories'][]         = [
247
+		$composer['repositories'][] = [
248 248
 			'type'    => 'package',
249 249
 			'package' => $package
250 250
 		];
Please login to merge, or discard this patch.
modules/Photo_gallery/admin/galleries/edit.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@
 block discarded – undo
30 30
 					'value' => $gallery['title']
31 31
 				]
32 32
 			).
33
-			($Config->core['simple_admin_mode'] ? '' :
34
-				h::label(h::info('photo_gallery_gallery_path')).
33
+			($Config->core['simple_admin_mode'] ? '' : h::label(h::info('photo_gallery_gallery_path')).
35 34
 				h::{'input[is=cs-input-text][name=edit[path]]'}(
36 35
 					[
37 36
 						'value' => $gallery['path']
Please login to merge, or discard this patch.
modules/WebSockets/Server.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
 		// Disable all versions except RFC6455, which is supported by all modern browsers
141 141
 		$ws_server->disableVersion(0);
142 142
 		$ws_server->disableVersion(6);
143
-		$this->io_server        = IoServer::factory(
143
+		$this->io_server = IoServer::factory(
144 144
 			new HttpServer(
145 145
 				new Connection_properties_injector($ws_server)
146 146
 			),
Please login to merge, or discard this patch.
modules/Composer_assets/Assets_processing.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 <FilesMatch "\.css$">
40 40
 	Header set Content-Type text/css
41 41
 </FilesMatch>
42
-HTACCESS
42
+htaccess
43 43
 		);
44 44
 		return self::save_content(
45 45
 			self::get_content($Config, $files, $package_dir, $target_dir),
Please login to merge, or discard this patch.
modules/Deferred_tasks/Deferred_tasks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 		'module'       => 'text',
32 32
 		'data'         => 'json'
33 33
 	];
34
-	protected $table      = '[prefix]deferred_tasks_tasks';
34
+	protected $table = '[prefix]deferred_tasks_tasks';
35 35
 	/**
36 36
 	 * @var int
37 37
 	 */
Please login to merge, or discard this patch.
modules/Static_pages/Pages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	use
22 22
 		CRUD_helpers,
23 23
 		Singleton;
24
-	protected $data_model                  = [
24
+	protected $data_model = [
25 25
 		'id'        => 'int',
26 26
 		'category'  => 'int',
27 27
 		'title'     => 'ml:text',
Please login to merge, or discard this patch.
modules/Static_pages/Categories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	use
22 22
 		CRUD_helpers,
23 23
 		Singleton;
24
-	protected $data_model          = [
24
+	protected $data_model = [
25 25
 		'id'     => 'int',
26 26
 		'title'  => 'ml:text',
27 27
 		'path'   => 'ml:text',
Please login to merge, or discard this patch.
modules/System/api/Controller/admin/blocks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
 	 *
227 227
 	 * @return array|false
228 228
 	 */
229
-	protected static function &get_block_by_index ($index) {
229
+	protected static function &get_block_by_index($index) {
230 230
 		/**
231 231
 		 * @var array $blocks
232 232
 		 */
Please login to merge, or discard this patch.
modules/System/api/Controller/admin/permissions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
 				'value',
123 123
 				'id'
124 124
 			);
125
-			$data['users']  = array_column(
125
+			$data['users'] = array_column(
126 126
 				$User->db()->qfa(
127 127
 					"SELECT
128 128
 						`id`,
Please login to merge, or discard this patch.