Update the return type.

This commit is contained in:
Alex Tselegidis 2023-04-05 15:35:31 +02:00
parent 23926a4b78
commit 87a114af9c
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ if ( ! function_exists('component'))
* @param array $vars Additional parameters for the component. * @param array $vars Additional parameters for the component.
* @param bool $return Whether to return the HTML or echo it directly. * @param bool $return Whether to return the HTML or echo it directly.
* *
* @return mixed Return the HTML if the $return argument is TRUE or NULL. * @return string|object Return the HTML if the $return argument is TRUE or NULL.
*/ */
function component(string $component, array $vars = [], bool $return = FALSE): mixed function component(string $component, array $vars = [], bool $return = FALSE): string|object
{ {
/** @var EA_Controller $CI */ /** @var EA_Controller $CI */
$CI = get_instance(); $CI = get_instance();