Passed
Push — master ( 40f3fd...a0e320 )
by DeGracia
04:30 queued 03:10
created

run.php (1 issue)

Labels
Severity
1
<?php
2
3
require __DIR__ . '/vendor/autoload.php';
4
5
use DeGraciaMathieu\Nero\Breaker;
6
7
8
9
Breaker::exception();
0 ignored issues
show
The method exception() does not exist on DeGraciaMathieu\Nero\Breaker. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

9
Breaker::/** @scrutinizer ignore-call */ 
10
         exception();
Loading history...
10
11
12