Blame view

common/modules/comment/interfaces/CommentInterface.php 363 Bytes
a8370482   Alexander Karnovsky   init project
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($model, $model_id);
          public function postComment();
          public function deleteComment();
          public function updateComment();
      }