class ServiceMissingException extends LogicException
8
{
9
public static function noHttpClient()
10
{
11
1
return new self('No HttpClient provided and no discovery service is present to guess it, maybe you need to install the php-http/discovery package?');
12
}
13
14
public static function noMessageFactory()
15
{
16
1
return new self('No MessageFactory provided and no discovery service is present to guess it, maybe you need to install the php-http/discovery package?');