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