Test Failed
Branch development (5e44f6)
by Robert
06:31
created
src/Models/Conversation.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 	{
88 88
 		$matches = [];
89 89
 		$pattern = '/[.A-Za-z0-9_-]+@[A-Za-z0-9_-]+\.([A-Za-z0-9_-][.A-Za-z0-9_]+)/'; //regex for pattern of e-mail address
90
-        preg_match_all($pattern, $this->textTranscript, $matches);
91
-        return count($matches) ? $matches[0] : null;
90
+		preg_match_all($pattern, $this->textTranscript, $matches);
91
+		return count($matches) ? $matches[0] : null;
92 92
 	}
93 93
 }
Please login to merge, or discard this patch.