Blame view

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