Skip to content
Snippets Groups Projects
Commit 237e0077 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix lint-found mishaps

parent bcce77c3
No related branches found
No related tags found
No related merge requests found
...@@ -1109,7 +1109,7 @@ class Ticket { ...@@ -1109,7 +1109,7 @@ class Ticket {
// Skip the person who sent in the message // Skip the person who sent in the message
$skip[$entry->getUserId()] = 1; $skip[$entry->getUserId()] = 1;
// Skip all the other recipients of the message // Skip all the other recipients of the message
foreach ($entry->getEmailAllRecipients() as $R) { foreach ($entry->getAllEmailRecipients() as $R) {
foreach ($recipients as $R2) { foreach ($recipients as $R2) {
if ($R2->getEmail() == ($R->mailbox.'@'.$R->hostname)) { if ($R2->getEmail() == ($R->mailbox.'@'.$R->hostname)) {
$skip[$R2->getUserId()] = true; $skip[$R2->getUserId()] = true;
......
...@@ -122,4 +122,8 @@ class IntlBreakIterator { ...@@ -122,4 +122,8 @@ class IntlBreakIterator {
class SqlFunction { class SqlFunction {
static function NOW() {} static function NOW() {}
} }
class Aws_Route53_Client {
function changeResourceRecordSets() {}
}
?> ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment