Primo Committ
This commit is contained in:
24
vendor/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php
vendored
Executable file
24
vendor/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Cookie;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class CookieServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register the service provider.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
$this->app->singleton('cookie', function ($app) {
|
||||
$config = $app->make('config')->get('session');
|
||||
|
||||
return (new CookieJar)->setDefaultPathAndDomain(
|
||||
$config['path'], $config['domain'], $config['secure'], $config['same_site'] ?? null
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user