| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class IdCard |
||
| 25 | { |
||
| 26 | use Axessors; |
||
| 27 | |||
| 28 | /** @var int card number */ |
||
| 29 | private $number; #> +axs int |
||
| 30 | /** @var int timestamp of expiration date */ |
||
| 31 | private $dateExpire; #> +wrt int +rdb >> `$var = date('d.m.Y', $var)` |
||
| 32 | |||
| 33 | public function __construct(int $number) |
||
| 34 | { |
||
| 35 | $this->number = $number; |
||
| 36 | } |
||
| 37 | } |