Browse Source

refactoring formatting.

Taylor Otwell 13 years ago
parent
commit
392caeed91
2 changed files with 4 additions and 2 deletions
  1. 0 1
      laravel/cache/drivers/file.php
  2. 4 1
      laravel/database/grammars/grammar.php

+ 0 - 1
laravel/cache/drivers/file.php

@@ -59,7 +59,6 @@ class File extends Driver {
 	 */
 	public function put($key, $value, $minutes)
 	{
-		// The expiration time is stored as a UNIX timestamp at the beginning of the file.
 		F::put($this->path.$key, (time() + ($minutes * 60)).serialize($value));
 	}
 

+ 4 - 1
laravel/database/grammars/grammar.php

@@ -273,7 +273,10 @@ class Grammar {
 	 */
 	protected function columnize($columns, $append = '')
 	{
-		foreach ($columns as $column) { $sql[] = $this->wrap($column).$append; }
+		foreach ($columns as $column)
+		{
+			$sql[] = $this->wrap($column).$append;
+		}
 
 		return implode(', ', $sql);
 	}