Added short argument explanation

This commit is contained in:
Alex Tselegidis 2021-10-23 13:41:41 +02:00
parent 0a6b596dec
commit d636f60cbc
3 changed files with 6 additions and 6 deletions

View File

@ -20,8 +20,8 @@ if ( ! function_exists('env'))
*
* $debug = env('debug', FALSE);
*
* @param string $key
* @param mixed $default
* @param string $key Environment key.
* @param mixed $default Default value in case the requested variable has no value.
*
* @return mixed
*/

View File

@ -26,8 +26,8 @@ if ( ! function_exists('session'))
*
* session(['logged_in' => FALSE]);
*
* @param array|string $key
* @param mixed $default
* @param array|string $key Session item key.
* @param mixed $default Default value in case the requested session item has no value.
*
* @return mixed|NULL Returns the requested value or NULL if you assign a new session value.
*

View File

@ -26,8 +26,8 @@ if ( ! function_exists('setting'))
*
* setting(['company_name' => 'ACME Inc']);
*
* @param array|string $key
* @param mixed $default
* @param array|string $key Setting key.
* @param mixed $default Default value in case the requested setting has no value.
*
* @return mixed|NULL Returns the requested value or NULL if you assign a new setting value.
*