我有以下代码段:
protected function sendEmail($email)
{
extract($email);
$this->transmail->locale($locale)
->timezone($timezone)
->template($template)
->subject($subject)
->send($header, $params);
}
此代码完美无缺(full source code here)。但是,我想确保在旅途中遵循一些好的做法。我当前得到[一些CodeClimate警告](PHPMD)(https://codeclimate.com/github/timegridio/timegrid/app/Listeners/SendBookingNotification.php):
哪种优雅的方式可以解决这个问题?
我应该使用list()
或类似的东西明确声明变量吗?
提前致谢