Skip to content

Commit

Permalink
Add missing traverse call to UnaryExpression.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesper Skytte Hansen committed Mar 3, 2016
1 parent a148462 commit 2b12040
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Database/Expression/UnaryExpression.php
Expand Up @@ -100,6 +100,7 @@ public function traverse(callable $callable)
{
if ($this->_value instanceof ExpressionInterface) {
$callable($this->_value);
$this->_value->traverse($callable);
}
}

Expand Down

0 comments on commit 2b12040

Please sign in to comment.