Skip to content
Snippets Groups Projects
Commit 323d5089 authored by Pascal Thesing's avatar Pascal Thesing Committed by Simonas Šerlinskas
Browse files

Add nullable for size and from methods (#301)

parent 71876a7d
No related branches found
No related tags found
No related merge requests found
......@@ -458,7 +458,7 @@ class Search
}
/**
* @return int
* @return null|int
*/
public function getFrom()
{
......@@ -466,7 +466,7 @@ class Search
}
/**
* @param int $from
* @param null|int $from
*
* @return $this
*/
......@@ -498,7 +498,7 @@ class Search
}
/**
* @return int
* @return null|int
*/
public function getSize()
{
......@@ -506,7 +506,7 @@ class Search
}
/**
* @param int $size
* @param null|int $size
*
* @return $this
*/
......
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