-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce MySQLi Connection initializers
- Loading branch information
Showing
2 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
lib/Doctrine/DBAL/Driver/Mysqli/Exception/InvalidOption.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Driver\Mysqli\Exception; | ||
|
||
use Doctrine\DBAL\Driver\Mysqli\MysqliException; | ||
|
||
use function sprintf; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @psalm-immutable | ||
*/ | ||
final class InvalidOption extends MysqliException | ||
{ | ||
/** | ||
* @param mixed $value | ||
*/ | ||
public static function fromOption(int $option, $value): self | ||
{ | ||
return new self( | ||
sprintf('Failed to set option %d with value "%s"', $option, $value) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters