Skip to content

Commit

Permalink
Prepare for 1.0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Dec 24, 2024
1 parent c6a5715 commit 67a2b79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
2 changes: 1 addition & 1 deletion bin/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected function init()
*
* @return int
*/
public function execute(\Closure $callback = null)
public function execute($callback = null)
{
try {
if ($this->getOption($this->helpOptions)) {
Expand Down
6 changes: 3 additions & 3 deletions src/AbstractSRPHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public static function createFromConfig(array $config): static
}

public static function create(
BigInteger|string $prime = null,
BigInteger|string $generator = null,
BigInteger|string $key = null
BigInteger|string|null $prime = null,
BigInteger|string|null $generator = null,
BigInteger|string|null $key = null
): static {
$prime ??= static::bigInteger(static::DEFAULT_PRIME);
$generator ??= static::bigInteger(static::DEFAULT_GENERATOR);
Expand Down

0 comments on commit 67a2b79

Please sign in to comment.