Commit 561b3985 authored by Possum's avatar Possum

typo fixes

parent 029b0bee
...@@ -46,7 +46,7 @@ abstract class AbstractDriverException extends \Exception implements DriverExcep ...@@ -46,7 +46,7 @@ abstract class AbstractDriverException extends \Exception implements DriverExcep
* Constructor. * Constructor.
* *
* @param string $message The driver error message. * @param string $message The driver error message.
* @param string|null $sqlState The SQLSTATE the driver is in at the time the error occured, if any. * @param string|null $sqlState The SQLSTATE the driver is in at the time the error occurred, if any.
* @param integer|string|null $errorCode The driver specific error code if any. * @param integer|string|null $errorCode The driver specific error code if any.
*/ */
public function __construct($message, $sqlState = null, $errorCode = null) public function __construct($message, $sqlState = null, $errorCode = null)
......
...@@ -39,9 +39,9 @@ class DB2Connection implements Connection, ServerInfoAwareConnection ...@@ -39,9 +39,9 @@ class DB2Connection implements Connection, ServerInfoAwareConnection
*/ */
public function __construct(array $params, $username, $password, $driverOptions = array()) public function __construct(array $params, $username, $password, $driverOptions = array())
{ {
$isPersistant = (isset($params['persistent']) && $params['persistent'] == true); $isPersistent = (isset($params['persistent']) && $params['persistent'] == true);
if ($isPersistant) { if ($isPersistent) {
$this->_conn = db2_pconnect($params['dbname'], $username, $password, $driverOptions); $this->_conn = db2_pconnect($params['dbname'], $username, $password, $driverOptions);
} else { } else {
$this->_conn = db2_connect($params['dbname'], $username, $password, $driverOptions); $this->_conn = db2_connect($params['dbname'], $username, $password, $driverOptions);
......
...@@ -152,7 +152,7 @@ abstract class AbstractSchemaManager ...@@ -152,7 +152,7 @@ abstract class AbstractSchemaManager
* *
* In contrast to other libraries and to the old version of Doctrine, * In contrast to other libraries and to the old version of Doctrine,
* this column definition does try to contain the 'primary' field for * this column definition does try to contain the 'primary' field for
* the reason that it is not portable accross different RDBMS. Use * the reason that it is not portable across different RDBMS. Use
* {@see listTableIndexes($tableName)} to retrieve the primary key * {@see listTableIndexes($tableName)} to retrieve the primary key
* of a table. We're a RDBMS specifies more details these are held * of a table. We're a RDBMS specifies more details these are held
* in the platformDetails array. * in the platformDetails array.
......
...@@ -215,7 +215,7 @@ class Index extends AbstractAsset implements Constraint ...@@ -215,7 +215,7 @@ class Index extends AbstractAsset implements Constraint
} }
if ( ! $this->isUnique() && ! $this->isPrimary()) { if ( ! $this->isUnique() && ! $this->isPrimary()) {
// this is a special case: If the current key is neither primary or unique, any uniqe or // this is a special case: If the current key is neither primary or unique, any unique or
// primary key will always have the same effect for the index and there cannot be any constraint // primary key will always have the same effect for the index and there cannot be any constraint
// overlaps. This means a primary or unique index can always fulfill the requirements of just an // overlaps. This means a primary or unique index can always fulfill the requirements of just an
// index that has no constraints. // index that has no constraints.
......
...@@ -41,8 +41,8 @@ use Doctrine\DBAL\Schema\Index; ...@@ -41,8 +41,8 @@ use Doctrine\DBAL\Schema\Index;
* - You always have to work with `filtering=On` when using federations with this * - You always have to work with `filtering=On` when using federations with this
* multi-tenant approach. * multi-tenant approach.
* - Primary keys are either using globally unique ids (GUID, Table Generator) * - Primary keys are either using globally unique ids (GUID, Table Generator)
* or you explicitly add the tenent_id in every UPDATE or DELETE statement * or you explicitly add the tenant_id in every UPDATE or DELETE statement
* (otherwise they will affect the same-id rows from other tenents as well). * (otherwise they will affect the same-id rows from other tenants as well).
* SQLAzure throws errors when you try to create IDENTIY columns on federated * SQLAzure throws errors when you try to create IDENTIY columns on federated
* tables. * tables.
* *
......
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