Upgrade to 3.2.5

This commit is contained in:
Bastian Allgeier
2019-09-24 11:00:59 +02:00
parent ff9b5b1861
commit 447a9dd266
234 changed files with 1990 additions and 1224 deletions

View File

@@ -13,7 +13,6 @@ namespace Kirby\Cms;
*/
trait PageSiblings
{
/**
* @deprecated 3.0.0 Use `Page::hasNextUnlisted` instead
* @return boolean
@@ -106,7 +105,7 @@ trait PageSiblings
/**
* Returns the next listed page if it exists
*
* @return Kirby\Cms\Page|null
* @return \Kirby\Cms\Page|null
*/
public function nextListed()
{
@@ -116,7 +115,7 @@ trait PageSiblings
/**
* Returns the next unlisted page if it exists
*
* @return Kirby\Cms\Page|null
* @return \Kirby\Cms\Page|null
*/
public function nextUnlisted()
{
@@ -144,7 +143,7 @@ trait PageSiblings
/**
* Returns the previous listed page
*
* @return Kirby\Cms\Page|null
* @return \Kirby\Cms\Page|null
*/
public function prevListed()
{
@@ -154,7 +153,7 @@ trait PageSiblings
/**
* Returns the previous unlisted page
*
* @return Kirby\Cms\Page|null
* @return \Kirby\Cms\Page|null
*/
public function prevUnlisted()
{
@@ -173,7 +172,7 @@ trait PageSiblings
/**
* Private siblings collector
*
* @return Kirby\Cms\Collection
* @return \Kirby\Cms\Collection
*/
protected function siblingsCollection()
{
@@ -188,7 +187,7 @@ trait PageSiblings
* Returns siblings with the same template
*
* @param bool $self
* @return Kirby\Cms\Pages
* @return \Kirby\Cms\Pages
*/
public function templateSiblings(bool $self = true)
{