Commit 392caeed authored by Taylor Otwell's avatar Taylor Otwell

refactoring formatting.

parent 6cb79e66
...@@ -59,7 +59,6 @@ class File extends Driver { ...@@ -59,7 +59,6 @@ class File extends Driver {
*/ */
public function put($key, $value, $minutes) 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)); F::put($this->path.$key, (time() + ($minutes * 60)).serialize($value));
} }
......
...@@ -273,7 +273,10 @@ class Grammar { ...@@ -273,7 +273,10 @@ class Grammar {
*/ */
protected function columnize($columns, $append = '') 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); return implode(', ', $sql);
} }
......
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