Blame view

common/modules/comment/interfaces/CommentInterface.php 380 Bytes
b82db04a   Yarik   test
1
2
3
4
5
6
7
8
9
10
11
  <?php
      namespace common\modules\comment\interfaces;
  
      interface CommentInterface {
          public function load($data, $formName = null);
          public function formName();
          public function getComments($entity);
          public function postComment($data);
          public function deleteComment($comment_id);
          public function updateComment($comment_id);
      }