1<?php 2 3final class PhabricatorBoolMailStamp 4 extends PhabricatorMailStamp { 5 6 const STAMPTYPE = 'bool'; 7 8 public function renderStamps($value) { 9 if (!$value) { 10 return null; 11 } 12 13 return $this->renderStamp($this->getKey()); 14 } 15 16} 17 18