|
|
|
|
|
by asm
3839 days ago
|
|
Phan does not attempt to make sense of things like `$class_name->$function_name()` or `$$v`. I'd be happy to see a pull request that could handle simple strings, but otherwise I imagine the best we can do is emit a warning. I'm not sure what SIMD refers to. Can you clarify that? |
|
I do this for things like:
$user_requirements = [filter1, filter2];
foreach ($user_requirements as $test) { if (!$test($some_data)) { return false; } return true; }
Is there any way to tell the analyzer to make sure that afunction of n arguments is passed in?