1<?php 2 3final class NuanceContentSource 4 extends PhabricatorContentSource { 5 6 const SOURCECONST = 'nuance'; 7 8 public function getSourceName() { 9 return pht('Nuance'); 10 } 11 12 public function getSourceDescription() { 13 return pht('Content imported via Nuance.'); 14 } 15 16} 17 18