コード例 #1
0
ファイル: User.php プロジェクト: hasegaw/IkaLogLog
 public function rehashPasswordIfNeeded($password)
 {
     if (!Password::needsRehash($this->password)) {
         return false;
     }
     $this->password = Password::hash($password);
     return true;
 }