Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schobel committed Mar 29, 2017
1 parent cba4b18 commit 89edece
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016 Johannes Schobel
Copyright (c) 2017 Johannes Schobel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DingoQueryMapper
// sort parameters
protected $sort = [];
// elements per page
protected $limit = 25;
protected $limit = 15;
// page to display
protected $page = 1;
// offset of elements (page-1)*limit
Expand Down
2 changes: 1 addition & 1 deletion src/JohannesSchobel/DingoQueryMapper/Parser/UriParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private function appendQueryParameter($parameter) {

list($key, $value) = explode($operator, $parameter);

if(empty($value)) {
if(strlen($value) == 0) {
return;
}

Expand Down

0 comments on commit 89edece

Please sign in to comment.