Open eberkund opened 6 years ago
With regards to the failing CI checks, this PR removes support for PHP 5.5 which I think is okay given its unsupported at this point so I expect that to fail. And the HVVM check was already broken prior to this it looks like.
@JeffreyWay would you consider merging this? I find the package very useful and would be great if the static analysis didn't warn for every put()
call with an argument. Thanks!
This would be awesome if it could get merged! 😍
Would also love to see this get merged. From a static analysis standpoint, It's a lot more transparent than func_get_args
.
PHPStorm complains about passes arguments to a function with no parameters. This is because the
put()
method usesfunc_get_args()
to dynamically retrieve args from the caller.I followed the suggestion on this Stack Overflow answer and it fixes the issue. I am also using Laravel IDE helper.