예제 #1
0
파일: Token.php 프로젝트: stan5621/eduwind
 public function __construct()
 {
     $this->hash = Random::generateToken();
 }
예제 #2
0
 /**
  * @test
  */
 public function shouldAllowGenerateToken()
 {
     $token = Random::generateToken();
     $this->assertInternalType('string', $token);
     $this->assertEquals(43, strlen($token));
 }