mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Added short argument explanation
This commit is contained in:
parent
0a6b596dec
commit
d636f60cbc
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue