| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 95 | public function jsonSerialize() |
||
| 96 | { |
||
| 97 | return array_filter(array( |
||
| 98 | 'name' => $this->name, |
||
| 99 | 'value' => $this->value, |
||
| 100 | 'path' => $this->path, |
||
| 101 | 'domain' => $this->domain, |
||
| 102 | 'httponly' => $this->httpOnly, |
||
| 103 | 'secure' => $this->secure, |
||
| 104 | 'expires' => $this->expires, |
||
| 105 | )); |
||
| 106 | } |
||
| 107 | } |
||
| 108 |