Skip to content

Commit

Permalink
Update MySql.php (#216)
Browse files Browse the repository at this point in the history
* Update MySql.php

set default value `setSkipSsl` to `false`

* Update MySql.php

---------

Co-authored-by: Freek Van der Herten <[email protected]>
  • Loading branch information
diadal and freekmurze authored Nov 18, 2024
1 parent 033a3bb commit 55d4d67
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 = true): self
{
$this->skipSsl = $skipSsl;

Expand Down

0 comments on commit 55d4d67

Please sign in to comment.