Completed
Push — master ( 903299...3a6cb7 )
by Andrii
02:43
created

src/views/layouts/_footer.php (1 issue)

Labels
Severity
1
<?php
2
3
use hiqdev\thememanager\widgets\CopyrightYears;
4
use hiqdev\thememanager\widgets\OrganizationLink;
5
use hiqdev\thememanager\widgets\SocialLinks;
6
use hiqdev\yii2\language\menus\LanguageMenu;
0 ignored issues
show
The type hiqdev\yii2\language\menus\LanguageMenu was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
8
?>
9
<footer>
10
    <div class="container">
11
        <div class="row">
12
            <div class="col-md-4">
13
                <span class="copyright">
14
                    &copy; <?= CopyrightYears::widget() ?> <?= OrganizationLink::widget() ?>.
15
                    <?= Yii::t('hiqdev:themes:agency', 'All rights reserved.') ?>
16
                </span>
17
            </div>
18
            <div class="col-md-4">
19
                <ul class="list-inline social-buttons">
20
                    <?= SocialLinks::widget() ?>
21
                </ul>
22
                <?php if (class_exists(LanguageMenu::class)) : ?>
23
                    <span class="copyright">
24
                        <?= LanguageMenu::widget() ?>
25
                    </span>
26
                <?php endif ?>
27
            </div>
28
            <div class="col-md-4">
29
                <ul class="list-inline quicklinks">
30
                    <li><a href="#">Privacy Policy</a>
31
                    </li>
32
                    <li><a href="#">Terms of Use</a>
33
                    </li>
34
                </ul>
35
            </div>
36
        </div>
37
    </div>
38
</footer>
39