MINOR Using Deprecation::notice() for deprecated method in ViewableData

This commit is contained in:
Sean Harvey 2012-05-30 22:29:58 +12:00
parent f865891737
commit fa764c72b4

View File

@ -227,7 +227,7 @@ class ViewableData extends Object implements IteratorAggregate {
* @return array
*/
public function castingHelperPair($field) {
user_error("castingHelperPair() Deprecated, use castingHelper() instead", E_USER_NOTICE);
Deprecation::notice('2.5', 'use castingHelper() instead');
return $this->castingHelper($field);
}