Completed
Push — master ( 0c057f...83f3fd )
by Christopher
13:35
created

index.php (1 issue)

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
0 ignored issues
show
It is not recommended to output anything before PHP's opening tag in non-template files.
Loading history...
2
require 'vendor/autoload.php';
3
4
use Vundi\Checkpoint1\GithubApi;
5
use Vundi\Checkpoint1\EvangelistStatus;
6
use Vundi\Checkpoint1\EvangelizeException;
7
8
try {
9
    $user = new EvangelistStatus();
10
    echo $user->getStatus();
11
} catch (EvangelizeException $e) {
12
    echo $e->getMessage();
13
}
14
15