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

anonymous()

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 1
nc 1
nop 0
1
<?php
2
\App::route()->get()->url( 'hook' )->handle( function () { return 'acceptance:/hook'; } );
0 ignored issues
show
Bug introduced by
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