Skip to content

Commit

Permalink
No optional arguments before required arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneBruines authored Aug 18, 2021
1 parent 6c1fa94 commit 9684eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LEOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class LEOrder
* @param string $notBefore A date string formatted like 0000-00-00T00:00:00Z (yyyy-mm-dd hh:mm:ss) at which the certificate becomes valid.
* @param string $notAfter A date string formatted like 0000-00-00T00:00:00Z (yyyy-mm-dd hh:mm:ss) until which the certificate is valid.
*/
public function __construct($connector, $log, $certificateKeys, $basename, $domains, $keyType = 'rsa-4096', $notBefore, $notAfter)
public function __construct($connector, $log, $certificateKeys, $basename, $domains, $keyType = 'rsa-4096', $notBefore = '', $notAfter = '')
{
$this->connector = $connector;
$this->basename = $basename;
Expand Down

0 comments on commit 9684eb4

Please sign in to comment.