1 | <?php |
||
21 | final class Application |
||
22 | { |
||
23 | const VERSION = '1.9.0'; |
||
24 | |||
25 | /** |
||
26 | * @var Environment |
||
27 | */ |
||
28 | protected static $env; |
||
29 | |||
30 | /** |
||
31 | * @var Logger |
||
32 | */ |
||
33 | protected static $logger; |
||
34 | |||
35 | /** |
||
36 | * @var EntityManager |
||
37 | */ |
||
38 | protected static $em; |
||
39 | |||
40 | /** |
||
41 | * @var Router |
||
42 | */ |
||
43 | protected static $router; |
||
44 | |||
45 | /** |
||
46 | * Mechanism used to do initial setup and edging before a application runs. |
||
47 | * |
||
48 | * @param array $conf The array of configuration options. |
||
49 | * @param array $server Array of information such as headers, paths, and script locations. |
||
50 | * |
||
51 | * @return boolean|null |
||
52 | */ |
||
53 | public static function bootstrap(array $conf, array $server = array()) |
||
82 | |||
83 | /** |
||
84 | * Please bootstrap first, than run the application! |
||
85 | * Run a application, let application accept a request, route the request, |
||
86 | * dispatch to controller/action, render response and return response to client finally. |
||
87 | * |
||
88 | * @param array $get Array of variables passed to the current script via the URL parameters. |
||
89 | * @param array $post Array of variables passed to the current script via the HTTP POST method. |
||
90 | * @param array $cookie Array of variables passed to the current script via HTTP Cookies. |
||
91 | * @param array $files An associative array FILES of items uploaded to the current script via the HTTP POST method. |
||
92 | * |
||
93 | * @return void |
||
94 | */ |
||
95 | public static function run(array $get, array $post, array $cookie, array $files) |
||
131 | |||
132 | /** |
||
133 | * @param string $environment |
||
134 | */ |
||
135 | private static function setupErrorHandling($environment) |
||
164 | |||
165 | /** |
||
166 | * @param array $server |
||
167 | * @param $tmpPath |
||
168 | * @param string $logging |
||
169 | */ |
||
170 | private static function setupUtils(array $server, $tmpPath, $logging = 'file') |
||
206 | |||
207 | /** |
||
208 | * @param string $environment |
||
209 | * @param array $dbConf |
||
210 | * @param string $appName |
||
211 | */ |
||
212 | private static function loadPdoDriver($environment, $dbConf, $appName) |
||
218 | |||
219 | /** |
||
220 | * @param boolean $routeable |
||
221 | * @param string $routes Path to routes definition file. |
||
222 | */ |
||
223 | private static function loadRoutes($routeable, $routes) |
||
236 | |||
237 | /** |
||
238 | * @param string $events Path to event listeners |
||
239 | */ |
||
240 | private static function loadListeners($events) |
||
246 | |||
247 | /** |
||
248 | * @param array $problems |
||
249 | * @param float $version |
||
250 | * @param bool $die |
||
251 | * |
||
252 | * @return array|void |
||
253 | */ |
||
254 | private static function reportIf(array $problems, $version, $die = true) |
||
264 | |||
265 | /** |
||
266 | * PIMF Application can not be cloned. |
||
267 | */ |
||
268 | private function __clone() |
||
271 | |||
272 | /** |
||
273 | * Stopping the PHP process for PHP-FastCGI users to speed up some PHP queries. |
||
274 | */ |
||
275 | public static function finish() |
||
281 | } |
||
282 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.