示例#1
0
 /**
  *
  * @param string $email
  * @return boolean
  */
 public function exist($email)
 {
     return $this->service->exist($email);
 }
示例#2
0
 public function testServiceExist()
 {
     $service = new Service();
     $this->assertTrue($service->exist('*****@*****.**'));
     $this->assertFalse($service->exist(time() . '@wonder.land'));
 }