Skip to content

Commit 5c3008c

Browse files
committed
bugfix
1 parent 5baa1f1 commit 5c3008c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tqdev/PhpCrudApi/Middleware/Base/Middleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function setNext(Handler $handler) /*: void*/
2222
$this->next = $handler;
2323
}
2424

25-
private function getArrayProperty(String $property, $default)
25+
protected function getArrayProperty(String $key, $default)
2626
{
2727
return isset($this->properties[$key]) ? array_filter(array_map('trim', explode(',', $this->properties[$key]))) : $default;
2828
}

0 commit comments

Comments
 (0)