Completed
Push — master ( 59aee7...54e8e0 )
by Nazar
04:11
created
components/modules/Shop/Categories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	use
26 26
 		CRUD,
27 27
 		Singleton;
28
-	protected $data_model                  = [
28
+	protected $data_model = [
29 29
 		'id'       => 'int:0',
30 30
 		'user'     => 'int:0',
31 31
 		'date'     => 'int:0',
Please login to merge, or discard this patch.
core/classes/Language/Prefix.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 use
10 10
 	cs\Language;
11 11
 /**
12
- * Class for simplified work with translations, when using common prefix
13
- */
12
+	 * Class for simplified work with translations, when using common prefix
13
+	 */
14 14
 class Prefix {
15 15
 	/**
16 16
 	 * @var string
Please login to merge, or discard this patch.
core/traits/Page/Includes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
 		/**
363 363
 		 * Narrow the dependencies to current module only
364 364
 		 */
365
-		$dependencies          = array_merge(
365
+		$dependencies = array_merge(
366 366
 			isset($dependencies[$current_module]) ? $dependencies[$current_module] : [],
367 367
 			$dependencies['System']
368 368
 		);
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 			).
503 503
 			h::style($this->core_css['plain'].$this->css['plain'] ?: false);
504 504
 		/** @noinspection NestedTernaryOperatorInspection */
505
-		$scripts      =
505
+		$scripts =
506 506
 			array_reduce(
507 507
 				array_merge($this->core_js['path'], $this->js['path']),
508 508
 				function ($content, $src) {
Please login to merge, or discard this patch.