. defined('GNUSOCIAL') || die(); /** * Conversation tree list item * * Special class of NoticeListItem for use inside conversation trees. * * @category Widget * @package ConversationTreePlugin * @author Evan Prodromou * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class ConversationTreeItem extends NoticeListItem { /** * start a single notice. * * The default creates the
  • ; we skip, since the ConversationTree * takes care of that. * * @return void */ public function showStart(): void { return; } /** * finish the notice * * The default closes the
  • ; we skip, since the ConversationTree * takes care of that. * * @return void */ public function showEnd(): void { return; } /** * show people this notice is in reply to * * Tree context shows this, so we skip it. * * @return void */ public function showAddressees(): void { return; } }