We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07fd740 commit 04e63afCopy full SHA for 04e63af
1 file changed
src/Database/Connection.php
@@ -43,10 +43,6 @@ class Connection
43
44
public function __construct($dsn, $user = NULL, $password = NULL, array $options = NULL)
45
{
46
- if (func_num_args() > 4) { // compatibility
47
- trigger_error(__METHOD__ . " fifth argument is deprecated, use \$options['driverClass'].", E_USER_DEPRECATED);
48
- $options['driverClass'] = func_get_arg(4);
49
- }
50
$this->params = [$dsn, $user, $password];
51
$this->options = (array) $options;
52
0 commit comments