Passed
Pull Request — master (#207)
by
unknown
02:25
created
src/Application/App_Factory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,11 +61,11 @@
 block discarded – undo
61 61
 	}
62 62
 
63 63
 		/**
64
-	 * Gets the defined base path.
65
-	 *
66
-	 * @return string
67
-	 * @since 1.4.0
68
-	 */
64
+		 * Gets the defined base path.
65
+		 *
66
+		 * @return string
67
+		 * @since 1.4.0
68
+		 */
69 69
 	public function get_base_path(): string {
70 70
 		return $this->base_path;
71 71
 	}
Please login to merge, or discard this patch.
src/Application/App.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
 		$this->module_manager->register_modules(); // @phpstan-ignore-line, already verified if not null
363 363
 
364 364
 		/**
365
- * @hook{string, App_Config, Loader, DI_Container}
365
+		 * @hook{string, App_Config, Loader, DI_Container}
366 366
 */
367 367
 		do_action( Hooks::APP_INIT_PRE_BOOT, self::$app_config, $this->loader, self::$container ); // phpcs:disable WordPress.NamingConventions.ValidHookName.*
368 368
 
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 			throw App_Initialization_Exception::app_not_initialized( View::class );
425 425
 		}
426 426
 		/**
427
- * @var ?View
427
+		 * @var ?View
428 428
 */
429 429
 		return self::$container->create( View::class ); // @phpstan-ignore-line, already verified if not null
430 430
 	}
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 	 *  base_path:string,
441 441
 	 *  view_path:?string
442 442
 	 * }
443
-	*/
443
+	 */
444 444
 	public function __debugInfo(): array {
445 445
 		return array(
446 446
 			'container'      => self::$container,
Please login to merge, or discard this patch.
src/Interfaces/Renderable.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
 	/**
49 49
 	 * Renders a view Model
50 50
 	 *It is recommended not to use reserved keyword "print" as function parameter name. Found: $print
51
-
52 51
 	 * @param View_Model $view_model
53 52
 	 * @return string|void
54 53
 	 */
Please login to merge, or discard this patch.