Issues (23)

widgets/views/steamframe.php (4 issues)

Labels
Severity
1
<?php
2
3
use yii\helpers\Url;
0 ignored issues
show
The type yii\helpers\Url 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 humhub\libs\Html;
0 ignored issues
show
The type humhub\libs\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
use humhub\models\Setting;
0 ignored issues
show
The type humhub\models\Setting 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...
6
7
\humhub\modules\steam\Assets::register($this);
8
?>
9
10
<div class="panel panel-default panel-steam" id="panel-steam">
11
    <?= \humhub\widgets\PanelMenu::widget(['id' => 'panel-steam']); ?>
0 ignored issues
show
The type humhub\widgets\PanelMenu 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...
12
  <div class="panel-heading">
13
    <?=Yii::t('SteamModule.base', '<strong>Steam</strong>'); ?>
14
  </div>
15
  <div class="panel-body">
16
17
<?= Html::beginTag('div') ?>
18
<iframe src="<?= $steamUrl; ?>" frameborder="0" width="100%" height="190"></iframe>
19
<?= Html::endTag('div'); ?>
20
21
</div>
22
</div>
23