| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| 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 | * SetStickerPositionInSetMethod constructor. |
||
| 30 | * |
||
| 31 | * @param $sticker |
||
| 32 | * @param $position |
||
| 33 | */ |
||
| 34 | public function __construct($sticker, $position) |
||
| 40 |