| Conditions | 2 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 63 | 8 | public function set(string $name, $data, Configure $configure = null): void |
|
| 64 | { |
||
| 65 | 8 | parent::set($name, $data); |
|
| 66 | 8 | $configure = $configure ?: $this->configure; |
|
| 67 | 8 | \setcookie($name, $this->store[$name], ...$configure->asArray()); |
|
|
1 ignored issue
–
show
|
|||
| 68 | 8 | } |
|
| 83 |