Skip to content

Commit

Permalink
Fix missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
aginev authored Aug 8, 2016
1 parent aae2f69 commit e6d3166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function __call($method, $arguments)

if (method_exists($this, $method)) {
$this->setConstraint($key);
$value = $this->value($key)
$value = $this->value($key);

// Null will be returned if the value do not exists in the request
// Consider empty string ('') as invalid value
Expand Down

0 comments on commit e6d3166

Please sign in to comment.