1 | <?php |
||
9 | final class FixedSpamScore implements SpamScoreInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var int |
||
13 | */ |
||
14 | private $score; |
||
15 | |||
16 | /** |
||
17 | * FixedSpamScore constructor. |
||
18 | * @param int $score |
||
19 | */ |
||
20 | 2 | public function __construct(int $score) |
|
24 | |||
25 | /** |
||
26 | * @param MessageInterface $message |
||
27 | * @return int |
||
28 | */ |
||
29 | 2 | public function calculate(MessageInterface $message): int |
|
33 | } |