Skip to content

Commit 18ed550

Browse files
authored
Fix for php8 (#383)
1 parent d01a5f1 commit 18ed550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function postEdit($group = null)
103103
}
104104
}
105105

106-
public function postDelete($group = null, $key)
106+
public function postDelete($group, $key)
107107
{
108108
if(!in_array($group, $this->manager->getConfig('exclude_groups')) && $this->manager->getConfig('delete_enabled')) {
109109
Translation::where('group', $group)->where('key', $key)->delete();

0 commit comments

Comments
 (0)