Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class SetStickerPositionInSetMethod implements SetMethodAliasInterface |
||
15 | { |
||
16 | /** |
||
17 | * File identifier of the sticker. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | public $sticker; |
||
22 | |||
23 | /** |
||
24 | * New sticker position in the set, zero-based. |
||
25 | * |
||
26 | * @var int |
||
27 | */ |
||
28 | public $position; |
||
29 | |||
30 | /** |
||
31 | * @param $sticker |
||
32 | * @param $position |
||
33 | * |
||
34 | * @return SetStickerPositionInSetMethod |
||
35 | */ |
||
36 | 1 | public static function create($sticker, $position): SetStickerPositionInSetMethod |
|
45 |