Page MenuHomec4science

PhabricatorBotDifferentialNotificationHandler.php
No OneTemporary

File Metadata

Created
Sat, Jun 21, 01:08

PhabricatorBotDifferentialNotificationHandler.php

<?php
/**
* @deprecated
*/
final class PhabricatorBotDifferentialNotificationHandler
extends PhabricatorBotHandler {
public function receiveMessage(PhabricatorBotMessage $message) {
static $notified;
if (!$notified) {
phlog(
'PhabricatorBotDifferentialNotificationHandler is deprecated, use '.
'PhabricatorBotFeedNotificationHandler instead.');
$notified = true;
}
}
}

Event Timeline