vendor/php-http/discovery/src/MessageFactoryDiscovery.php line 27

Open in your IDE?
  1. <?php
  2. namespace Http\Discovery;
  3. use Http\Discovery\Exception\DiscoveryFailedException;
  4. use Http\Message\MessageFactory;
  5. /**
  6. * Finds a Message Factory.
  7. *
  8. * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
  9. *
  10. * @deprecated This will be removed in 2.0. Consider using Psr17FactoryDiscovery.
  11. */
  12. final class MessageFactoryDiscovery extends ClassDiscovery
  13. {
  14. /**
  15. * Finds a Message Factory.
  16. *
  17. * @return MessageFactory
  18. *
  19. * @throws Exception\NotFoundException
  20. */
  21. public static function find()
  22. {
  23. try {
  24. $messageFactory = static::findOneByType(MessageFactory::class);
  25. } catch (DiscoveryFailedException $e) {
  26. throw new NotFoundException('No php-http message factories found. Note that the php-http message factories are deprecated in favor of the PSR-17 message factories. To use the legacy Guzzle, Diactoros or Slim Framework factories of php-http, install php-http/message and php-http/message-factory and the chosen message implementation.', 0, $e);
  27. }
  28. return static::instantiateClass($messageFactory);
  29. }
  30. }