Blame view

common/modules/comment/interfaces/CommentInterface.php 381 Bytes
14a09168   Alex Savenko   init commit
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 static function getComments($model, $model_id);

          public function postComment();

          public function deleteComment();

          public function updateComment();

      }