Changeset 46631 for trunk/src/wp-includes/pomo/streams.php
- Timestamp:
- 11/02/2019 08:28:31 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
r46629 r46631 26 26 * PHP4 constructor. 27 27 * 28 * @deprecated 5. 3.0 Use __construct() instead.28 * @deprecated 5.4.0 Use __construct() instead. 29 29 * 30 30 * @see POMO_Reader::__construct() 31 31 */ 32 32 public function POMO_Reader() { 33 _deprecated_constructor( self::class, '5. 3.0', static::class );33 _deprecated_constructor( self::class, '5.4.0', static::class ); 34 34 self::__construct(); 35 35 } … … 157 157 * PHP4 constructor. 158 158 * 159 * @deprecated 5. 3.0 Use __construct() instead.159 * @deprecated 5.4.0 Use __construct() instead. 160 160 * 161 161 * @see POMO_FileReader::__construct() 162 162 */ 163 163 public function POMO_FileReader( $filename ) { 164 _deprecated_constructor( self::class, '5. 3.0', static::class );164 _deprecated_constructor( self::class, '5.4.0', static::class ); 165 165 self::__construct( $filename ); 166 166 } … … 241 241 * PHP4 constructor. 242 242 * 243 * @deprecated 5. 3.0 Use __construct() instead.243 * @deprecated 5.4.0 Use __construct() instead. 244 244 * 245 245 * @see POMO_StringReader::__construct() 246 246 */ 247 247 public function POMO_StringReader( $str = '' ) { 248 _deprecated_constructor( self::class, '5. 3.0', static::class );248 _deprecated_constructor( self::class, '5.4.0', static::class ); 249 249 self::__construct( $str ); 250 250 } … … 312 312 * PHP4 constructor. 313 313 * 314 * @deprecated 5. 3.0 Use __construct() instead.314 * @deprecated 5.4.0 Use __construct() instead. 315 315 * 316 316 * @see POMO_CachedFileReader::__construct() 317 317 */ 318 318 public function POMO_CachedFileReader( $filename ) { 319 _deprecated_constructor( self::class, '5. 3.0', static::class );319 _deprecated_constructor( self::class, '5.4.0', static::class ); 320 320 self::__construct( $filename ); 321 321 } … … 338 338 * PHP4 constructor. 339 339 * 340 * @deprecated 5. 3.0 Use __construct() instead.340 * @deprecated 5.4.0 Use __construct() instead. 341 341 * 342 342 * @see POMO_CachedIntFileReader::__construct() 343 343 */ 344 344 function POMO_CachedIntFileReader( $filename ) { 345 _deprecated_constructor( self::class, '5. 3.0', static::class );345 _deprecated_constructor( self::class, '5.4.0', static::class ); 346 346 self::__construct( $filename ); 347 347 }
Note: See TracChangeset
for help on using the changeset viewer.