2017-07-27 21:15:52 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Polyfill for SPL autoload feature. This file is separate to prevent compiler notices
|
|
|
|
* on the deprecated __autoload() function.
|
|
|
|
*
|
|
|
|
* See https://core.trac.wordpress.org/ticket/41134
|
|
|
|
*
|
2019-07-15 01:11:56 -04:00
|
|
|
* @deprecated 5.3.0 No longer needed as the minimum PHP requirement has moved beyond PHP 5.3.
|
|
|
|
*
|
2017-07-27 21:15:52 -04:00
|
|
|
* @package PHP
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
|
2020-11-12 06:17:07 -05:00
|
|
|
_deprecated_file( basename( __FILE__ ), '5.3.0', '', 'SPL can no longer be disabled as of PHP 5.3.' );
|