@@ -61,11 +61,11 @@ |
||
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 | } |
@@ -362,7 +362,7 @@ discard block |
||
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 |
||
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 |
||
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, |
@@ -48,7 +48,6 @@ |
||
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 | */ |