check() public static method

public static check ( $value, $hash )
コード例 #1
0
ファイル: EloquentUserTest.php プロジェクト: ipunkt/auth
 /** @test */
 public function can_set_password()
 {
     $pw = 'testpassword';
     $this->user->setPassword($pw);
     $this->assertTrue(hash::check($pw, $this->user->getAuthPassword()));
 }