Improved docblocks + offset code
This commit is contained in:
parent
3f3b167e3d
commit
20c5ecdd94
2 changed files with 16 additions and 0 deletions
|
|
@ -19,6 +19,8 @@ class Filter
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $orderDirection
|
||||
*
|
||||
* @throws FilterDecodeException
|
||||
*
|
||||
* @return Filter
|
||||
|
|
@ -72,6 +74,8 @@ class Filter
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $limit
|
||||
*
|
||||
* @return Filter
|
||||
*/
|
||||
public function setLimit($limit): self
|
||||
|
|
@ -87,6 +91,8 @@ class Filter
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $offset
|
||||
*
|
||||
* @return Filter
|
||||
*/
|
||||
public function setOffset($offset): self
|
||||
|
|
@ -102,6 +108,8 @@ class Filter
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $wheres
|
||||
*
|
||||
* @return Filter
|
||||
*/
|
||||
public function setWheres($wheres): self
|
||||
|
|
@ -117,6 +125,8 @@ class Filter
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $order
|
||||
*
|
||||
* @return Filter
|
||||
*/
|
||||
public function setOrder($order): self
|
||||
|
|
|
|||
|
|
@ -117,6 +117,8 @@ class Route
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $propertyOptions
|
||||
*
|
||||
* @return Route
|
||||
*/
|
||||
public function setPropertyOptions($propertyOptions)
|
||||
|
|
@ -328,6 +330,8 @@ class Route
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $exampleEntity
|
||||
*
|
||||
* @return Route
|
||||
*/
|
||||
public function setExampleEntity($exampleEntity)
|
||||
|
|
@ -343,6 +347,8 @@ class Route
|
|||
}
|
||||
|
||||
/**
|
||||
* @param mixed $exampleEntityFinderFunction
|
||||
*
|
||||
* @return Route
|
||||
*/
|
||||
public function setExampleEntityFinderFunction($exampleEntityFinderFunction)
|
||||
|
|
|
|||
Loading…
Reference in a new issue