-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
Inject Guzzle by default into MailChimpClient
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,15 @@ | |
<parameter key="rezzza.mail_chimp.connection.http.class">Rezzza\MailChimpBundle\Connection\HttpConnection</parameter> | ||
<parameter key="rezzza.mail_chimp.connection.stub.class">Rezzza\MailChimpBundle\Connection\StubConnection</parameter> | ||
<parameter key="rezzza.mail_chimp.client.class">Rezzza\MailChimpBundle\Api\Client</parameter> | ||
<parameter key="rezzza.mail_chimp.http.client.class">Guzzle\Http\Client</parameter> | ||
</parameters> | ||
|
||
<services> | ||
<!-- Connection "http" --> | ||
<service id="rezzza.mail_chimp.connection.http" class="%rezzza.mail_chimp.connection.http.class%" public="false" /> | ||
<service id="rezzza.mail_chimp.connection.http" class="%rezzza.mail_chimp.connection.http.class%" public="false" > | ||
<argument>false</argument> | ||
<argument>rezzza.mail_chimp.http.client</argument> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
stephpy
Contributor
|
||
</service> | ||
|
||
<!-- Connection "stub" --> | ||
<service id="rezzza.mail_chimp.connection.stub" class="%rezzza.mail_chimp.connection.stub.class%" public="false" /> | ||
|
@@ -29,5 +33,9 @@ | |
<argument type="service" id="rezzza.mail_chimp.connection" /> | ||
</call> | ||
</service> | ||
|
||
<!-- Client HTTP --> | ||
<service id="rezzza.mail_chimp.http.client" class="%rezzza.mail_chimp.http.client.class%"> | ||
</service> | ||
</services> | ||
</container> |
It should be
<argument type="service" id="rezzza.mail_chimp.http.client"/>
😞How to fix this specific version?