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); * $debug = env('debug', FALSE);
* *
* @param string $key * @param string $key Environment key.
* @param mixed $default * @param mixed $default Default value in case the requested variable has no value.
* *
* @return mixed * @return mixed
*/ */

View file

@ -26,8 +26,8 @@ if ( ! function_exists('session'))
* *
* session(['logged_in' => FALSE]); * session(['logged_in' => FALSE]);
* *
* @param array|string $key * @param array|string $key Session item key.
* @param mixed $default * @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. * @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']); * setting(['company_name' => 'ACME Inc']);
* *
* @param array|string $key * @param array|string $key Setting key.
* @param mixed $default * @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. * @return mixed|NULL Returns the requested value or NULL if you assign a new setting value.
* *