コード例 #1
0
ファイル: TextServiceTest.php プロジェクト: dstansby/camdram
 public function testDetectLinks_Emails()
 {
     $this->assertEquals('The email <a href="mailto:websupport@camdram.net">websupport@camdram.net</a> can be used for support', $this->textService->detectLinks('The email websupport@camdram.net can be used for support'));
 }
コード例 #2
0
ファイル: CamdramExtension.php プロジェクト: dstansby/camdram
 public function detectLinks($text)
 {
     return $this->textService->detectLinks($text);
 }