Browse Source

clean up a few more things.

Taylor Otwell 13 years ago
parent
commit
7898094e25
2 changed files with 13 additions and 4 deletions
  1. 1 1
      laravel/config/container.php
  2. 12 3
      laravel/database/connection.php

+ 1 - 1
laravel/config/container.php

@@ -108,7 +108,7 @@ return array(
 			($request->spoofed()) ? $input = $_POST : parse_str(file_get_contents('php://input'), $input);
 		}
 
-		unset($input['_REQUEST_METHOD_']);
+		unset($input['_REQUEST_METHOD']);
 
 		return new Input($container->resolve('laravel.file'), $container->resolve('laravel.cookie'), $input, $_FILES);
 	}),

+ 12 - 3
laravel/database/connection.php

@@ -13,7 +13,14 @@ class Connection {
 	protected $config;
 
 	/**
-	 * The PDO connection.
+	 * The query grammar instance for the connection.
+	 *
+	 * @var Grammars\Grammar
+	 */
+	protected $grammar;
+
+	/**
+	 * The raw PDO connection instance.
 	 *
 	 * @var PDO
 	 */
@@ -127,13 +134,15 @@ class Connection {
 	 */
 	protected function grammar()
 	{
+		if (isset($this->grammar)) return $this->grammar;
+
 		switch (isset($this->config['grammar']) ? $this->config['grammar'] : $this->driver())
 		{
 			case 'mysql':
-				return new Grammars\MySQL;
+				return $this->grammar = new Grammars\MySQL;
 
 			default:
-				return new Grammars\Grammar;
+				return $this->grammar = new Grammars\Grammar;
 		}
 	}