Skip to content
Snippets Groups Projects
Commit 0f3529b2 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Use mixed instead of any in doc comments.

parent 3e121d10
Branches
Tags
No related merge requests found
......@@ -79,9 +79,9 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
* Get the Slot instance. Create if instance doesn't exist.
*
* @param string $name Name of target block for action
* @param any $value Optional shortcut parameter to set a value
* @param mixed $value Optional shortcut parameter to set a value
*
* @return Slot|string|any
* @return Slot|string|mixed
*/
public function __invoke($name, $value = null)
{
......@@ -95,7 +95,7 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
/**
* Shortcut to get if no methods are called on invoke.
*
* @return string|any
* @return string|mixed
*/
public function __toString()
{
......@@ -124,7 +124,7 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
*
* @param string $name Name of target block for action
*
* @return string|any
* @return string|mixed
*/
protected function build($name)
{
......@@ -144,7 +144,7 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
/**
* Get current value of slot. Returns null if unset.
*
* @param any $default Value to return if no value is set
* @param mixed $default Value to return if no value is set
*
* @return string|null
*/
......@@ -158,7 +158,7 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
/**
* Set current value of slot but only if unset.
*
* @param any $value Value to override if unset
* @param mixed $value Value to override if unset
*
* @return string|null
*/
......@@ -223,7 +223,7 @@ class Slot extends \Laminas\View\Helper\AbstractHelper
*
* @param string $method SET/PREPEND/APPEND for where this buffer should be saved
*
* @return string|any
* @return string|mixed
*/
public function end($method = self::SET)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment