Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Failed Conditions
Push — main ( d9cfb9...10f5c7 )
by Dan
32s queued 21s
created

src/pages/Admin/IpView.php (1 issue)

Labels
Severity
1
<?php declare(strict_types=1);
2
3
namespace Smr\Pages\Admin;
4
5
use Smr\Page\AccountPage;
6
use Smr\Page\ReusableTrait;
7
use Smr\Template;
8
use SmrAccount;
9
10
class IpView extends AccountPage {
11
12
	use ReusableTrait;
13
14
	public string $file = 'admin/ip_view.php';
15
16
	public function build(SmrAccount $account, Template $template): void {
17
		$template->assign('PageTopic', 'IP Search');
18
19
		$template->assign('IpFormHref', (new IpViewResults())->href());
0 ignored issues
show
The type Smr\Pages\Admin\IpViewResults 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...
20
	}
21
22
}
23