1 개요[ | ]
- 라라벨 HashServiceProvider
- BcryptHasher를 해시 서비스로 제공함
PHP
Copy
<?php
namespace Illuminate\Hashing;
use Illuminate\Support\ServiceProvider;
class HashServiceProvider extends ServiceProvider
{
protected $defer = true;
public function register()
{
$this->app->singleton('hash', function () {
return new BcryptHasher;
});
}
public function provides()
{
return ['hash'];
}
}
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.