From 1c92b907d5f87198edd5f28152127d9d70c29a0a Mon Sep 17 00:00:00 2001 From: Tobsn Date: Tue, 24 Jul 2012 20:42:38 +0200 Subject: [PATCH] fixed two typos connecter class => connector class Therefor => Therefore --- laravel/documentation/database/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/database/config.md b/laravel/documentation/database/config.md index 2a1b0453..b593dbc6 100644 --- a/laravel/documentation/database/config.md +++ b/laravel/documentation/database/config.md @@ -49,7 +49,7 @@ ## Setting The Default Connection Name ##Overwriting The Default PDO Options -The PDO connecter class (**laravel/database/connectors/connector.php**) has a set of default PDO attributes defined which can be overwritten in the options array for each system. For example, one of the default attributes is to force column names to lowercase (**PDO::CASE_LOWER**) even if they are defined in UPPERCASE or CamelCase in the table. Therefor, under the default attributes, query result object variables would only be accessible in lowercase. +The PDO connector class (**laravel/database/connectors/connector.php**) has a set of default PDO attributes defined which can be overwritten in the options array for each system. For example, one of the default attributes is to force column names to lowercase (**PDO::CASE_LOWER**) even if they are defined in UPPERCASE or CamelCase in the table. Therefore, under the default attributes, query result object variables would only be accessible in lowercase. An example of the MySQL system settings with added default PDO attributes: 'mysql' => array(