spl-autoload-compat.php 441 B

1234567891011121314
  1. <?php
  2. /**
  3. * Polyfill for SPL autoload feature. This file is separate to prevent compiler notices
  4. * on the deprecated __autoload() function.
  5. *
  6. * See https://core.trac.wordpress.org/ticket/41134
  7. *
  8. * @deprecated 5.3.0 No longer needed as the minimum PHP requirement has moved beyond PHP 5.3.
  9. *
  10. * @package PHP
  11. * @access private
  12. */
  13. _deprecated_file( basename( __FILE__ ), '5.3.0', '', 'SPL can no longer be disabled as of PHP 5.3.' );