1: <?php
2:
3: /*
4: * To change this license header, choose License Headers in Project Properties.
5: * To change this template file, choose Tools | Templates
6: * and open the template in the editor.
7: */
8:
9: class TextObject_internal_deprecations {
10:
11: /**
12: * @deprecated
13: * @since 1.4.6
14: */
15: static function getBody($option) {
16: deprecated_functions::notify(gettext('Use the getContent() method.'));
17: }
18:
19: }
20: