Failed Conditions
Branch try/acceptance-tests (7c347f)
by Atanas
02:43
created

acceptance/app/routes/web.php (1 issue)

Labels
Severity
1
<?php
2
\App::route()->get()->url( 'hook' )->handle( function () { return 'acceptance:/hook'; } );
0 ignored issues
show
The method route() does not exist on App. 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

2
\App::/** @scrutinizer ignore-call */ 
3
      route()->get()->url( 'hook' )->handle( function () { return 'acceptance:/hook'; } );
Loading history...
3
4
\App::route()->all();
5