Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
PDO::ATTR_PERISISTENT => PDO::ATTR_PERSISTENT
  • Loading branch information
andrew-miller-rakuten committed Dec 9, 2016
1 parent 49b8da4 commit 7d19d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Connectors/Connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected function createPdoConnection($dsn, $username, $password, $options)
*/
protected function isPersistentConnection($options)
{
if (isset($options[PDO::ATTR_PERSISTENT]) && $options[PDO::ATTR_PERISISTENT]) {
if (isset($options[PDO::ATTR_PERSISTENT]) && $options[PDO::ATTR_PERSISTENT]) {
return true;
}

Expand Down

0 comments on commit 7d19d6c

Please sign in to comment.