Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CommentInterface.php
Go to the documentation of this file.
1 <?php
7 
15 {
16  /*
17  * Is-visible-on-storefront flag.
18  */
19  const IS_VISIBLE_ON_FRONT = 'is_visible_on_front';
20 
21  /*
22  * Comment.
23  */
24  const COMMENT = 'comment';
25 
32  public function getComment();
33 
41  public function setComment($comment);
42 
49  public function getIsVisibleOnFront();
50 
58  public function setIsVisibleOnFront($isVisibleOnFront);
59 }