mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-16 02:07:09 +00:00
X509: Array -> array (CS consistency)
This commit is contained in:
parent
ea4dc53a06
commit
dfa583b9ea
@ -3132,9 +3132,9 @@ class File_X509
|
||||
{
|
||||
$year = @gmdate("Y", @strtotime($date)); // the same way ASN1.php parses this
|
||||
if ($year < 2050) {
|
||||
return Array('utcTime' => $date);
|
||||
return array('utcTime' => $date);
|
||||
} else {
|
||||
return Array('generalTime' => $date);
|
||||
return array('generalTime' => $date);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user