public CommentType::setDescription($description)
Sets the description of the comment type.
Parameters
string $description: The new description.
Return value
$this
Overrides CommentTypeInterface::setDescription
File
- core/modules/comment/src/Entity/CommentType.php, line 84
Class
- CommentType
- Defines the comment type entity.
Namespace
Drupal\comment\Entity
Code
1 2 3 4 | public function setDescription( $description ) { $this ->description = $description ; return $this ; } |
Please login to continue.