Changeset 46629 for trunk/src/wp-includes/pomo/streams.php
- Timestamp:
- 11/02/2019 08:09:35 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pomo/streams.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/streams.php
r45580 r46629 25 25 /** 26 26 * PHP4 constructor. 27 * 28 * @deprecated 5.3.0 Use __construct() instead. 29 * 30 * @see POMO_Reader::__construct() 27 31 */ 28 32 public function POMO_Reader() { 33 _deprecated_constructor( self::class, '5.3.0', static::class ); 29 34 self::__construct(); 30 35 } … … 151 156 /** 152 157 * PHP4 constructor. 158 * 159 * @deprecated 5.3.0 Use __construct() instead. 160 * 161 * @see POMO_FileReader::__construct() 153 162 */ 154 163 public function POMO_FileReader( $filename ) { 164 _deprecated_constructor( self::class, '5.3.0', static::class ); 155 165 self::__construct( $filename ); 156 166 } … … 230 240 /** 231 241 * PHP4 constructor. 242 * 243 * @deprecated 5.3.0 Use __construct() instead. 244 * 245 * @see POMO_StringReader::__construct() 232 246 */ 233 247 public function POMO_StringReader( $str = '' ) { 248 _deprecated_constructor( self::class, '5.3.0', static::class ); 234 249 self::__construct( $str ); 235 250 } … … 296 311 /** 297 312 * PHP4 constructor. 313 * 314 * @deprecated 5.3.0 Use __construct() instead. 315 * 316 * @see POMO_CachedFileReader::__construct() 298 317 */ 299 318 public function POMO_CachedFileReader( $filename ) { 319 _deprecated_constructor( self::class, '5.3.0', static::class ); 300 320 self::__construct( $filename ); 301 321 } … … 317 337 /** 318 338 * PHP4 constructor. 339 * 340 * @deprecated 5.3.0 Use __construct() instead. 341 * 342 * @see POMO_CachedIntFileReader::__construct() 319 343 */ 320 344 function POMO_CachedIntFileReader( $filename ) { 345 _deprecated_constructor( self::class, '5.3.0', static::class ); 321 346 self::__construct( $filename ); 322 347 }
Note: See TracChangeset
for help on using the changeset viewer.