Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5use App\Shared\ApplicationParams;
6use Yiisoft\View\WebView;
7
8/**
9 * @var WebView $this
10 * @var ApplicationParams $applicationParams
11 */
12
13$this->setTitle($applicationParams->name);
14?>
15
16<div class="text-center">
17    <h1>Hello!</h1>
18
19    <p>Let's start something great with <strong>Yii3</strong>!</p>
20
21    <p>
22        <a href="https://yiisoft.github.io/docs/" target="_blank" rel="noopener">
23            <i>Don't forget to check the guide.</i>
24        </a>
25    </p>
26</div>