mirror of
https://github.com/laravel/valet.git
synced 2026-02-05 08:30:07 +01:00
Adding a function_exists conditional around the tap method to reduce conflict with the illuminate/support library
This commit is contained in:
@@ -108,18 +108,20 @@ function should_be_sudo()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
if (! function_exists('tap')) {
|
||||
/**
|
||||
* Tap the given value.
|
||||
*
|
||||
* @param mixed $value
|
||||
* @param callable $callback
|
||||
* @return mixed
|
||||
*/
|
||||
function tap($value, callable $callback)
|
||||
{
|
||||
function tap($value, callable $callback)
|
||||
{
|
||||
$callback($value);
|
||||
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user