Completed
Push — master ( 72fb6a...0c057f )
by Christopher
13:57 queued 29s
created
Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
require 'vendor/autoload.php';
3
4
use Vundi\Checkpoint1\GithubApi;
5
use Vundi\Checkpoint1\EvangelistStatus;
6
7
try {
8
    $user = new EvangelistStatus();
9
    echo $user->getStatus();
10
} catch (EvangelizeException $e) {
0 ignored issues
show
The class EvangelizeException does not exist. Did you forget a USE statement, or did you not list all dependencies?

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.

Loading history...
11
    echo $e->getMessage();
12
}
13
14