diff --git a/view/ArrayData.php b/view/ArrayData.php index 549a953b579..dd3575c9bd7 100644 --- a/view/ArrayData.php +++ b/view/ArrayData.php @@ -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(); - } }