| 1 | <?php |
||
| 10 | class ArgumentUnpacking extends AbstractFunctionCallAnalyzer |
||
| 11 | { |
||
| 12 | const DESCRIPTION = 'Checks for use of `func_get_args()` and suggests the use of argument unpacking. (... operator)'; |
||
| 13 | |||
| 14 | 10 | public function pass(FuncCall $funcCall, Context $context) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 1 | public static function getMetadata() |
|
| 46 | } |
||
| 47 |