Skip to content

Commit

Permalink
fix var name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Jun 7, 2012
1 parent e976333 commit c9ad409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Erfurt/Rdf/MemoryModel.php
Expand Up @@ -176,7 +176,7 @@ public function getPO($s)
*/
public function getP($s, array $o)
{
$result = array();
$results = array();
if ($this->hasS($s)) {
foreach ($this->_statements[$s] as $predicate => $objects) {
foreach ($objects as $object) {
Expand All @@ -193,7 +193,7 @@ public function getP($s, array $o)
}
}

return $result;
return $results;
}

/*
Expand Down

0 comments on commit c9ad409

Please sign in to comment.