Browse Source

make aggregate method public.

Taylor Otwell 13 years ago
parent
commit
70dd657e80
2 changed files with 2 additions and 2 deletions
  1. 1 1
      laravel/database/query.php
  2. 1 1
      laravel/database/schema.php

+ 1 - 1
laravel/database/query.php

@@ -629,7 +629,7 @@ class Query {
 	 * @param  string  $column
 	 * @return mixed
 	 */
-	private function aggregate($aggregator, $column)
+	public function aggregate($aggregator, $column)
 	{
 		$this->aggregate = compact('aggregator', 'column');
 

+ 1 - 1
laravel/database/schema.php

@@ -78,7 +78,7 @@ class Schema {
 		// For some extra syntax sugar, we'll check for any implicit
 		// indexes on the table. The developer may specify the index
 		// type on the fluent column declaration. Here we'll find
-		// any such implicit index and add the actual command.
+		// any implicit indexes and add the commands.
 		foreach ($table->columns as $column)
 		{
 			foreach (array('primary', 'unique', 'fulltext', 'index') as $key)