Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
79 | public function __construct($name, $value, $path, $domain, $httpOnly = true, $secure = false, $expires = null) |
||
80 | { |
||
81 | $this->name = $name; |
||
82 | $this->value = $value; |
||
83 | $this->path = $path; |
||
84 | $this->domain = $domain; |
||
85 | $this->httpOnly = $httpOnly; |
||
86 | $this->secure = $secure; |
||
87 | $this->expires = $expires; |
||
88 | } |
||
89 | |||
108 |