Skip to content

Commit

Permalink
Update MySql.php
Browse files Browse the repository at this point in the history
set default value `setSkipSsl` to `false`
  • Loading branch information
diadal authored Nov 17, 2024
1 parent 033a3bb commit 71632c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Databases/MySql.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct()
$this->port = 3306;
}

public function setSkipSsl(bool $skipSsl): self
public function setSkipSsl(bool $skipSsl = false): self
{
$this->skipSsl = $skipSsl;

Expand Down

0 comments on commit 71632c4

Please sign in to comment.