Merge pull request #774 from franzliedke/patch-8

Avoid unnecessary end() in Table::command() function
This commit is contained in:
Taylor Otwell 2012-06-20 09:59:50 -07:00
commit 1b062499dd
1 changed files with 2 additions and 6 deletions

View File

@ -393,9 +393,7 @@ protected function command($type, $parameters = array())
{
$parameters = array_merge(compact('type'), $parameters);
$this->commands[] = new Fluent($parameters);
return end($this->commands);
return $this->commands[] = new Fluent($parameters);
}
/**
@ -409,9 +407,7 @@ protected function column($type, $parameters = array())
{
$parameters = array_merge(compact('type'), $parameters);
$this->columns[] = new Fluent($parameters);
return end($this->columns);
return $this->columns[] = new Fluent($parameters);
}
}