Skip to content

Commit 385cb13

Browse files
committed
Fix unset operator
1 parent 12e258c commit 385cb13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Directive/Repository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function undef(string $directive): bool
7171
{
7272
$exists = $this->defined($directive);
7373

74-
\unset($this->directives[$directive]);
74+
unset($this->directives[$directive]);
7575

7676
return $exists;
7777
}

0 commit comments

Comments
 (0)