Doc comment on Notice->getTags() to clarify the return data type

This commit is contained in:
Brion Vibber 2011-03-15 12:51:29 -07:00
parent b66250c6aa
commit 8de24335d2
1 changed files with 5 additions and 0 deletions

View File

@ -2006,6 +2006,11 @@ class Notice extends Memcached_DataObject
$this->is_local == Notice::LOCAL_NONPUBLIC);
}
/**
* Get the list of hash tags saved with this notice.
*
* @return array of strings
*/
public function getTags()
{
$tags = array();