Exemple #1
0
 /**
  * Sets the description of the task after basic sanitizing.
  * 
  * @see        parent::setDescription()
  * @param      string $v the value to set as description
  * @return     PcTask The current object (for fluent API support)
  */
 public function setDescription($v)
 {
     $v = strip_tags(trim($v));
     return parent::setDescription($v);
 }