Completed
Push — master ( a8be10...a05d07 )
by Nazar
06:50
created
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.
modules/System/cli/Controller/optimization.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
   Clean the whole system public cache:
35 35
     <g>./cli clean_public_cache:System/optimization</g>
36 36
 
37
-HELP;
37
+help;
38 38
 	}
39 39
 	/**
40 40
 	 * Clean cache
Please login to merge, or discard this patch.