| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | class Card extends Message |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Message type. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $type = 'wxcard'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Properties. |
||
| 38 | * |
||
| 39 | * @var array |
||
| 40 | */ |
||
| 41 | protected $properties = ['card_id']; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Media constructor. |
||
| 45 | * |
||
| 46 | * @param string $cardId |
||
| 47 | */ |
||
| 48 | 3 | public function __construct(string $cardId) |
|
| 53 |