Merge pull request #1384 from flarum/fix-hash-binding

fixes the broken hash & hash.driver ioc binding which is part of 5.6
This commit is contained in:
Toby Zerner 2018-03-09 12:41:28 +10:30 committed by GitHub
commit d5ef9486d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -716,8 +716,7 @@ class Application extends Container implements ApplicationContract
'filesystem' => [\Illuminate\Filesystem\FilesystemManager::class, \Illuminate\Contracts\Filesystem\Factory::class],
'filesystem.disk' => [\Illuminate\Contracts\Filesystem\Filesystem::class],
'filesystem.cloud' => [\Illuminate\Contracts\Filesystem\Cloud::class],
'hash' => [\Illuminate\Hashing\HashManager::class],
'hash.driver' => [\Illuminate\Contracts\Hashing\Hasher::class],
'hash' => [\Illuminate\Contracts\Hashing\Hasher::class],
'mailer' => [\Illuminate\Mail\Mailer::class, \Illuminate\Contracts\Mail\Mailer::class, \Illuminate\Contracts\Mail\MailQueue::class],
'validator' => [\Illuminate\Validation\Factory::class, \Illuminate\Contracts\Validation\Factory::class],
'view' => [\Illuminate\View\Factory::class, \Illuminate\Contracts\View\Factory::class],