Blame view

common/modules/comment/models/interfaces/CommentInterface.php 497 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
      
      namespace common\modules\comment\models\interfaces;
  
      use yii\data\ActiveDataProvider;
  
      /**
       * Interface CommentInterface
       * @package common\modules\comment\models\interfaces
       */
      interface CommentInterface
      {
bff65579   Виталий   test commit
13
          function setEntity( $entity);
4253cbec   root   first commit
14
          
bff65579   Виталий   test commit
15
          function getEntity();
4253cbec   root   first commit
16
          
bff65579   Виталий   test commit
17
          function setEntityId( $entityId);
4253cbec   root   first commit
18
          
bff65579   Виталий   test commit
19
          function getEntityId();
4253cbec   root   first commit
20
          
bff65579   Виталий   test commit
21
          static function getTree( $entity,  $entityId);
4253cbec   root   first commit
22
23
          
      }