Skip to content
Snippets Groups Projects
Unverified Commit b732c8cb authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

added missing field sort getters and setters

parent 2f8e323e
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,42 @@ class FieldSort implements BuilderInterface
$this->setParameters($params);
}
/**
* @return string
*/
public function getField()
{
return $this->field;
}
/**
* @param string $field
* @return self
*/
public function setField($field)
{
$this->field = $field;
return $this;
}
/**
* @return string
*/
public function getOrder()
{
return $this->order;
}
/**
* @param string $order
* @return self
*/
public function setOrder($order)
{
$this->order = $order;
return $this;
}
/**
* @return BuilderInterface
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment