Null.php 650 B

1234567891011121314151617
  1. <?php
  2. namespace Elastica\Transport;
  3. trigger_error('Elastica\Transport\Null is deprecated. Use NullTransport instead. From PHP7 null is reserved word and this class will be removed in further Elastica releases', E_USER_DEPRECATED);
  4. /**
  5. * Elastica Null Transport object.
  6. *
  7. * This class is for backward compatibility reason for all php < 7 versions. For PHP 7 and above use NullTransport as Null is reserved.
  8. *
  9. * @author James Boehmer <james.boehmer@jamesboehmer.com>
  10. *
  11. * @deprecated Use NullTransport instead. From PHP7 null is reserved word and this class will be removed in further Elastica releases
  12. */
  13. class Null extends NullTransport
  14. {
  15. }