Skip to content

Commit

Permalink
fix: optional param before required
Browse files Browse the repository at this point in the history
  • Loading branch information
lkm committed Apr 5, 2022
1 parent 4ea7185 commit 5ba1e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/Book.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static function getAll(
public static function getByFilters(
Bookboon $bookboon,
array $bookTypes = [self::_OWN_TYPE],
array $filters
array $filters = []
) : BookboonResponse {
$variables = [
'bookType' => join(',', $bookTypes),
Expand Down

0 comments on commit 5ba1e41

Please sign in to comment.