Skip to content

Commit

Permalink
Merge pull request #16 from ofcold/master
Browse files Browse the repository at this point in the history
wip
  • Loading branch information
lilianjin authored Oct 10, 2020
2 parents 613d340 + b9514a0 commit 68548eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"require": {
"php": ">=7.1"
"php": ">=7.4"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/IdentityCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ class IdentityCard
*
* @var IdentityCard|null
*/
protected static $instance;
protected static ?IdentityCard $instance = null;

/**
* The user id card.
*
* @var string
*/
protected static $idCard;
protected static string $idCard;

/**
* Get the lcoale slog.
*
* @var string
*/
protected static $locale;
protected static string $locale;

/**
* Create an new IdentityCard instance.
Expand Down

0 comments on commit 68548eb

Please sign in to comment.