Skip to content

Commit

Permalink
isset fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 9, 2015
1 parent 0fe8b6e commit bcfab56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Row.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function __set($name, $value)
*/
public function __isset($name)
{
return !empty($this->values[$name]);
return !empty($this->values[$name]) && !($this->values[$name] instanceof NullValue);
}

/**
Expand Down

0 comments on commit bcfab56

Please sign in to comment.