Upgrade to 3.5.5

This commit is contained in:
Bastian Allgeier
2021-05-11 11:55:32 +02:00
parent de3560f3d6
commit efeff45192
146 changed files with 2008 additions and 1075 deletions

View File

@@ -66,7 +66,7 @@ class Pagination
*
* @param \Kirby\Toolkit\Collection $collection
* @param mixed ...$arguments
* @return self
* @return static
*/
public static function for(Collection $collection, ...$arguments)
{
@@ -380,7 +380,7 @@ class Pagination
* and validates that the properties match
*
* @param array $props Array with keys limit, total and/or page
* @return self
* @return $this
*/
protected function setProperties(array $props)
{
@@ -417,7 +417,7 @@ class Pagination
* Sets the number of items per page
*
* @param int $limit
* @return self
* @return $this
*/
protected function setLimit(int $limit = 20)
{
@@ -433,7 +433,7 @@ class Pagination
* Sets the total number of items
*
* @param int $total
* @return self
* @return $this
*/
protected function setTotal(int $total = 0)
{
@@ -450,7 +450,7 @@ class Pagination
*
* @param int|string|null $page Int or int in string form;
* automatically determined if null
* @return self
* @return $this
*/
protected function setPage($page = null)
{