Issues (23)

views/admin/index.php (2 issues)

Labels
Severity
1
<?php
2
3
use yii\bootstrap\ActiveForm;
0 ignored issues
show
The type yii\bootstrap\ActiveForm 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...
4
use yii\helpers\Html;
0 ignored issues
show
The type yii\helpers\Html 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...
5
?>
6
7
<div class="panel panel-default">
8
9
    <div class="panel-heading"><?= Yii::t('SteamModule.base', '<strong>Steam</strong> module configuration'); ?></div>
10
11
    <div class="panel-body">
12
13
        <?php $form = ActiveForm::begin(['id' => 'configure-form']); ?>
14
        <div class="form-group">
15
            <?= $form->field($model, 'serverUrl'); ?>
16
        </div>
17
18
        <div class="form-group">
19
            <?= Html::submitButton(Yii::t('SteamModule.base', 'Save'), ['class' => 'btn btn-primary', 'data-ui-loader' => '']); ?>
20
        </div>
21
22
        <?php ActiveForm::end(); ?>
23
    </div>
24
</div>
25