onlineExam
發表於 : 2016-12-13 21:11:19
https://github.com/imladrisol/onlineExam
Laravel 5.2.x Call to undefined method Illuminate\Foundation\Application::bindShared() error
It's unclear from your post which package is causing the issue, but you could do a
to find the file and line implementing bindShared().
To fix, change it to bind() and append TRUE before the closing paren, that will have the same behavior bindShared would otherwise have had.
Laravel 5.2.x Call to undefined method Illuminate\Foundation\Application::bindShared() error
It's unclear from your post which package is causing the issue, but you could do a
代碼: 選擇全部
grep -rn bindShared *
To fix, change it to bind() and append TRUE before the closing paren, that will have the same behavior bindShared would otherwise have had.