| 1 | <?php |
||
| 24 | class Application implements TimestampableInterface, EnableableInterface, ApplicationInterface |
||
| 25 | { |
||
| 26 | use TimestampableTrait, EnableableTrait; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var int |
||
| 30 | */ |
||
| 31 | protected $id; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | protected $appId; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | protected $appSecret; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Application constructor. |
||
| 45 | */ |
||
| 46 | 4 | public function __construct() |
|
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritdoc} |
||
| 53 | */ |
||
| 54 | 1 | public function getId() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * {@inheritdoc} |
||
| 61 | */ |
||
| 62 | 4 | public function getAppId() |
|
| 66 | |||
| 67 | /** |
||
| 68 | * {@inheritdoc} |
||
| 69 | */ |
||
| 70 | 4 | public function setAppId(string $appId) |
|
| 74 | |||
| 75 | /** |
||
| 76 | * {@inheritdoc} |
||
| 77 | */ |
||
| 78 | 4 | public function getAppSecret() |
|
| 82 | |||
| 83 | /** |
||
| 84 | * {@inheritdoc} |
||
| 85 | */ |
||
| 86 | 4 | public function setAppSecret(string $appSecret) |
|
| 90 | } |
||
| 91 |