コード例 #1
0
ファイル: StrTest.php プロジェクト: laradic/support
 public function testCanCheckIfIsEmail()
 {
     $this->assertTrue(Str::isEmail('*****@*****.**'));
     $this->assertFalse(Str::isEmail('foobar'));
 }