Skip to content

Commit

Permalink
Removing deprecated ArrayData::getArray()
Browse files Browse the repository at this point in the history
Use ArrayData::toMap() instead
  • Loading branch information
Sean Harvey committed Nov 15, 2012
1 parent de2509c commit 0d79897
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions view/ArrayData.php
Expand Up @@ -100,13 +100,5 @@ public static function array_to_object($arr = null) {
if ($arr) foreach($arr as $name => $value) $obj->$name = $value;
return $obj;
}

/**
* @deprecated 3.0 Use {@link ArrayData::toMap()}.
*/
public function getArray() {
Deprecation::notice('3.0', 'Use ArrayData::toMap() instead.');
return $this->toMap();
}

}

0 comments on commit 0d79897

Please sign in to comment.