public function notifyEveryone()
 {
     $rev = $this->getArticleComment()->mLastRevision;
     if (empty($rev)) {
         return true;
     }
     $notif = WallNotificationEntity::createFromRev($rev);
     /*
      * experimental notfieverone
      */
     $wne = new WallNotificationsEveryone();
     $wne->addNotificationToQueue($notif);
 }