Commit 16dbf740 authored by Steve Müller's avatar Steve Müller

fix CS

parent 11e462e3
...@@ -77,7 +77,7 @@ class Connection extends \Doctrine\DBAL\Connection ...@@ -77,7 +77,7 @@ class Connection extends \Doctrine\DBAL\Connection
$params['portability'] = self::PORTABILITY_SQLANYWHERE; $params['portability'] = self::PORTABILITY_SQLANYWHERE;
} else if ($this->_platform->getName() === 'sqlsrv') { } else if ($this->_platform->getName() === 'sqlsrv') {
$params['portability'] = $params['portabililty'] & self::PORTABILITY_SQLSRV; $params['portability'] = $params['portabililty'] & self::PORTABILITY_SQLSRV;
} else if ($this->_platform->getName() === 'db2') { } elseif ($this->_platform->getName() === 'db2') {
$params['portability'] = self::PORTABILITY_DB2; $params['portability'] = self::PORTABILITY_DB2;
} else { } else {
$params['portability'] = $params['portability'] & self::PORTABILITY_OTHERVENDORS; $params['portability'] = $params['portability'] & self::PORTABILITY_OTHERVENDORS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment