bingo-soft /
jabe
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Jabe\Application\Impl; |
||
| 4 | |||
| 5 | use Jabe\Application\AbstractProcessApplication; |
||
| 6 | use El\ELResolver; |
||
| 7 | |||
| 8 | class DefaultElResolverLookup |
||
| 9 | { |
||
| 10 | public static function lookupResolver(AbstractProcessApplication $processApplication): ?ELResolver |
||
|
0 ignored issues
–
show
|
|||
| 11 | { |
||
| 12 | return null; |
||
| 13 | } |
||
| 14 | } |
||
| 15 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.