Completed
Push — master ( 654ce5...53bf16 )
by Nazar
04:07
created
core/traits/Page/Includes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 		/**
400 400
 		 * Narrow the dependencies to current module only
401 401
 		 */
402
-		$dependencies    = array_unique(
402
+		$dependencies = array_unique(
403 403
 			array_merge(
404 404
 				['System'],
405 405
 				$dependencies['System'],
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 	 * @return string[][]
474 474
 	 */
475 475
 	protected function add_versions_hash ($includes) {
476
-		$content     = array_reduce(
476
+		$content = array_reduce(
477 477
 			get_files_list(DIR.'/components', '/^meta\.json$/', 'f', true, true),
478 478
 			function ($content, $file) {
479 479
 				return $content.file_get_contents($file);
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	protected function add_includes_on_page_manually_added ($Config) {
495 495
 		$configs = $this->core_config.$this->config;
496 496
 		/** @noinspection NestedTernaryOperatorInspection */
497
-		$styles       =
497
+		$styles =
498 498
 			array_reduce(
499 499
 				array_merge($this->core_css['path'], $this->css['path']),
500 500
 				function ($content, $href) {
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 				}
503 503
 			).
504 504
 			h::style($this->core_css['plain'].$this->css['plain'] ?: false);
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.