Commit 605be704 by Franz Liedke

Avoid unnecessary end() in Table::column() function.

parent 8fc80c47
...@@ -407,9 +407,7 @@ class Table { ...@@ -407,9 +407,7 @@ class Table {
{ {
$parameters = array_merge(compact('type'), $parameters); $parameters = array_merge(compact('type'), $parameters);
$this->columns[] = new Fluent($parameters); return $this->columns[] = new Fluent($parameters);
return end($this->columns);
} }
} }
\ No newline at end of file
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