Passed
Push — rbac ( dd17a1...be68b4 )
by Michael
02:24
created
Labels
Severity
1
<?php
2
/******************************************************************************
3
 * Wikipedia Account Creation Assistance tool                                 *
4
 *                                                                            *
5
 * All code in this file is released into the public domain by the ACC        *
6
 * Development Team. Please see team.json for a list of contributors.         *
7
 ******************************************************************************/
8
9
namespace Waca;
10
11
use Waca\Router\ApiRequestRouter;
0 ignored issues
show
The type Waca\Router\ApiRequestRouter 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
13
/*
14
 * Public interface script
15
 *
16
 * THIS IS AN ENTRY POINT
17
 */
18
19
require_once('config.inc.php');
20
21
global $siteConfiguration;
22
$application = new WebStart($siteConfiguration, new ApiRequestRouter());
0 ignored issues
show
The type Waca\WebStart 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...
23
24
// This is a public interface
25
$application->setPublic(true);
26
27
$application->run();
28