Blame view

models/interfaces/RatingCacheInterface.php 645 Bytes
226062a5   Yarik   CommentBehavior
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  <?php
      
      namespace artweb\artbox\comment\models\interfaces;
      
      use yii\db\ActiveRecordInterface;
  
      interface RatingCacheInterface extends ActiveRecordInterface
      {
          /**
           * Get foreign key attribute name
           *
           * @return string
           */
          public function getLinkAttribute(): string;
      
          /**
           * Get value
           *
           * @return float
           */
          public function getValue(): float;
      
          /**
           * Set value
           *
           * @param float $value
           *
           * @return void
           */
          public function setValue(float $value);
      }