Tencent / Biny

Biny is a tiny, high-performance PHP framework for web applications
BSD 3-Clause "New" or "Revised" License
1.69k stars 258 forks source link

在wiki的demo中,privilegeService.php中这个$this->correct()不存在 #58

Closed yuntianhev closed 6 years ago

yuntianhev commented 6 years ago

public function my_required($action, $key) { if($key){ return$this->correct(); }else{ return $this->error('key not exists'); } }

billge1205 commented 6 years ago

correct()方法实际就是return true 的一层封装 觉得没必要就删除了 wiki没有及时更新 这边直接改成return true就行 谢谢你的提醒 wiki会及时修改

yuntianhev commented 6 years ago

好的,