| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\api\controller;
- /**
- *
- */
- class Card
- {
- private $type;
- private $number;
- public function __construct($type, $num)
- {
- $this->type = $type;
- $this->number = $type + $num;
- }
- public function getType() {
- return $this->type;
- }
- public function getNumber() {
- return $this->number - $this->type;
- }
- }
|