1
|
|
|
<?php declare(strict_types=1); |
2
|
|
|
|
3
|
|
|
namespace Limoncello\Application\Cookies; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Copyright 2015-2020 [email protected] |
7
|
|
|
* |
8
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
9
|
|
|
* you may not use this file except in compliance with the License. |
10
|
|
|
* You may obtain a copy of the License at |
11
|
|
|
* |
12
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
13
|
|
|
* |
14
|
|
|
* Unless required by applicable law or agreed to in writing, software |
15
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
16
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17
|
|
|
* See the License for the specific language governing permissions and |
18
|
|
|
* limitations under the License. |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
use Limoncello\Application\Contracts\Cookie\CookieFunctionsInterface; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @package Limoncello\Application |
25
|
|
|
*/ |
26
|
|
|
class CookieFunctions implements CookieFunctionsInterface |
27
|
|
|
{ |
28
|
|
|
/** @var callable */ |
29
|
|
|
private $setCookieCallable = '\setcookie'; |
30
|
|
|
|
31
|
|
|
/** @var callable */ |
32
|
|
|
private $setRawCookieCallable = '\setrawcookie'; |
33
|
|
|
|
34
|
|
|
/** |
35
|
1 |
|
* @inheritdoc |
36
|
|
|
*/ |
37
|
1 |
|
public function getWriteCookieCallable(): callable |
38
|
|
|
{ |
39
|
|
|
return $this->setCookieCallable; |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
1 |
|
* @inheritdoc |
44
|
|
|
*/ |
45
|
1 |
|
public function setWriteCookieCallable(callable $callable): CookieFunctionsInterface |
46
|
|
|
{ |
47
|
1 |
|
$this->setCookieCallable = $callable; |
48
|
|
|
|
49
|
|
|
return $this; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
1 |
|
* @inheritdoc |
54
|
|
|
*/ |
55
|
1 |
|
public function getWriteRawCookieCallable(): callable |
56
|
|
|
{ |
57
|
|
|
return $this->setRawCookieCallable; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
1 |
|
* @inheritdoc |
62
|
|
|
*/ |
63
|
1 |
|
public function setWriteRawCookieCallable(callable $callable): CookieFunctionsInterface |
64
|
|
|
{ |
65
|
1 |
|
$this->setRawCookieCallable = $callable; |
66
|
|
|
|
67
|
|
|
return $this; |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|