Skip to content

Commit

Permalink
Merge pull request #16 from bjornpost/late-static-binding
Browse files Browse the repository at this point in the history
Added late static binding support
  • Loading branch information
willdurand committed Jan 30, 2014
2 parents bc18972 + f9fae1d commit 7436896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EmailReplyParser/Parser/EmailParser.php
Expand Up @@ -148,12 +148,12 @@ private function isQuoteHeader($line)

private function isSignature($line)
{
return preg_match(self::SIG_REGEX, $line) ? true : false;
return preg_match(static::SIG_REGEX, $line) ? true : false;
}

private function isQuote($line)
{
return preg_match(self::QUOTE_REGEX, $line) ? true : false;
return preg_match(static::QUOTE_REGEX, $line) ? true : false;
}

private function isEmpty(FragmentDTO $fragment)
Expand Down

0 comments on commit 7436896

Please sign in to comment.