Skip to content

Commit

Permalink
Update Registry.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bloatware committed Sep 11, 2021
1 parent 75296f5 commit 3264b5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions textpattern/vendors/Textpattern/Textfilter/Registry.php
Expand Up @@ -150,7 +150,7 @@ public function getHelp($key)
* @see ArrayAccess
*/

public function offsetSet($key, $filter): void
public function offsetSet($key, $filter)
{
if ($key === null) {
$key = $filter->getKey();
Expand Down Expand Up @@ -196,7 +196,7 @@ public function offsetExists($key): bool
* @see ArrayAccess
*/

public function offsetUnset($key): void
public function offsetUnset($key)
{
unset($this->filters[$key]);
}
Expand Down

0 comments on commit 3264b5a

Please sign in to comment.