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
Security
Bug
introduced
by
![]() |
|||
2 | require 'vendor/autoload.php'; |
||
3 | |||
4 | use Vundi\Checkpoint1\GithubApi; |
||
5 | use Vundi\Checkpoint1\EvangelistStatus; |
||
6 | use Vundi\Checkpoint1\InvalidUsername; |
||
7 | use Vundi\Checkpoint1\NoUsernamePassed; |
||
8 | |||
9 | |||
10 | try { |
||
11 | $user = new EvangelistStatus("andela-cvundi"); |
||
12 | echo $user->getStatus(); |
||
13 | } catch (InvalidUsername $e) { |
||
0 ignored issues
–
show
The class
Vundi\Checkpoint1\InvalidUsername does not exist. Did you forget a USE statement, or did you not list all dependencies?
Scrutinizer analyzes your 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. ![]() |
|||
14 | echo $e->getMessage(); |
||
15 | } catch (NoUsernamePassed $e) { |
||
0 ignored issues
–
show
The class
Vundi\Checkpoint1\NoUsernamePassed does not exist. Did you forget a USE statement, or did you not list all dependencies?
Scrutinizer analyzes your 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. ![]() |
|||
16 | echo $e->getMessage(); |
||
17 | } |
||
18 | |||
19 |