葡萄架

Results 8 issues of 葡萄架

https://github.com/top-think/think-captcha/blob/54c8a51552f99ff9ea89ea9c272383a8f738ceee/src/Captcha.php#L314 /* 加密验证码 */ private function authcode($str) { $key = substr(md5($this->seKey), 5, 8); $str = substr(md5($str), 8, 10); return md5($key . $str); } 为什么要截取6-14位和 9-18位呢? 请大佬解惑,谢谢。

一对多关联,Order -> Goods 在调用`$order->goods()->delete();`时会提示`delete without condition`。 问题出现在这里:https://github.com/top-think/think-orm/blob/123a095cd40ef044c7b3f7bcbf22e85082f264bd/src/model/Relation.php#L210 我想了解一下这个地方不“执行基础查询”,带入关联条件,是基于什么考虑呢?

https://github.com/yunwuxin/think-auth/blob/4e253b0a011d0eda6934884b5109fb00aff31783/src/helper.php#L22

修复bug

使用默认的Mail 渠道发送邮件。 实现了toMail方法: ``` use think\queue\ShouldQueue; use yunwuxin\Notification; use yunwuxin\notification\message\Mail as MailMessage; use yunwuxin\notification\Notifiable; class MailTest extends Notification implements ShouldQueue { public function channels($notifiable) { return ['mail']; } public function...

[0] Error in Message.php line 57 Call to undefined method think\facade\App::invoke()