Skip to content

Commit a0ebcd4

Browse files
committed
fix various errors
1 parent 75a6c79 commit a0ebcd4

8 files changed

+21
-11
lines changed

clients/includes/install-message-factory.inc

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ accessed through :ref:`factories <message-factory>`. Message factories for
1818
.. _Laminas Diactoros: https://github.com/laminas/laminas-diactoros
1919
.. _Slim PSR-7: https://github.com/slimphp/Slim-Psr7
2020
.. _Zend Diactoros: https://github.com/zendframework/zend-diactoros
21+
.. _Slim Framework: https://github.com/slimphp/Slim

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
#
8181
# This is also used if you do content translation via gettext catalogs.
8282
# Usually you set "language" from the command line for these cases.
83-
language = None
83+
language = 'en'
8484

8585
# There are two options for replacing |today|: either, you set today to some
8686
# non-false value, then it is used:

discovery.rst

+9-4
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,26 @@ implementations but only on the standard. The library should only require the
3030
PSR standards.
3131

3232
To run tests, you might still need an implementation. We recommend to
33-
explicitly require that, but only for dev. To build a library that needs to
34-
send HTTP requests, you could do:
33+
explicitly require that, but only for development. To build a library that
34+
needs to send HTTP requests, you could do:
3535

3636
.. code-block:: bash
37+
3738
$ composer require --dev symfony/http-client
3839
$ composer require --dev nyholm/psr7
3940
4041
Then, you can disable the Composer plugin provided by ``php-http/discovery``
41-
because you just installed the dev dependencies you need for testing:
42+
because you just installed the ``dev`` dependencies you need for testing:
4243

4344
.. code-block:: bash
45+
4446
$ composer config allow-plugins.php-http/discovery false
4547
4648
Finally, you need to require ``php-http/discovery`` and the generic implementations
4749
that your library is going to need:
4850

4951
.. code-block:: bash
52+
5053
$ composer require php-http/discovery:^1.17
5154
$ composer require psr/http-client-implementation:*
5255
$ composer require psr/http-factory-implementation:*
@@ -132,6 +135,7 @@ to prefer. You can specify the implementation for one of the standards:
132135

133136

134137
.. code-block:: bash
138+
135139
$ composer config extra.discovery.psr/http-factory-implementation GuzzleHttp\Psr7\HttpFactory
136140
137141
This will update your ``composer.json`` file to add the following configuration:
@@ -158,6 +162,7 @@ Don't forget to run composer install to apply the changes, and ensure that
158162
the composer plugin is enabled:
159163

160164
.. code-block:: bash
165+
161166
$ composer config allow-plugins.php-http/discovery true
162167
$ composer install
163168
@@ -338,7 +343,7 @@ Internally, this class relies on the concrete PSR-17 factories that are installe
338343
and can use discovery to find implementations if you do not specify them in the constructor.
339344

340345
``Psr17Factory`` provides two additional methods that allow creating
341-
server requests or URI objects from the PHP super-globals::
346+
server requests or URI objects from the PHP superglobals::
342347

343348
$serverRequest = $factory->createServerRequestFromGlobals();
344349
$uri = $factory->createUriFromGlobals();

integrations/symfony-bundle.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ To mock a response in your tests, do:
562562
$client->getContainer()->get('httplug.clients.my_awesome_backend.client')->addResponse($response);
563563
564564
If you do not specify the factory in your configuration, you can also directly
565-
overwrite the httplug services:
565+
overwrite the HTTPlug services:
566566

567567

568568
.. code-block:: yaml

message/message-factory.rst

+1
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,4 @@ to do that yet. Contributions are welcome if you want to define the
139139
.. _Laminas Diactoros: https://github.com/laminas/laminas-diactoros
140140
.. _Slim PSR-7: https://github.com/slimphp/Slim-Psr7
141141
.. _Zend Diactoros: https://github.com/zendframework/zend-diactoros
142+
.. _Slim Framework: https://github.com/slimphp/Slim

plugins/logger.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ compliant logger::
2626
[$loggerPlugin]
2727
);
2828

29-
The log level for exceptions is `error`, the request and responses without exceptions are logged at level `info`.
30-
Request and response/errors can be correlated by looking at the `uid` of the log context.
31-
If you don't want to normally log requests, you can set the logger to normally only log `error` but use the
32-
Fingerscrossed logger of monolog to also log the request in case an exception is encountered.
29+
The log level for exceptions is ``error``, the request and responses without exceptions are logged at level ``info``.
30+
Request and response/errors can be correlated by looking at the ``uid`` of the log context.
31+
If you don't want to normally log requests, you can set the logger to normally only log ``error`` but use the
32+
``Fingerscrossed`` logger of Monolog to also log the request in case an exception is encountered.
3333

3434
By default it uses ``Http\Message\Formatter\SimpleFormatter`` to format the request or the response into a string.
3535
You can use any formatter implementing the ``Http\Message\Formatter`` interface::

plugins/redirect.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Initiate the redirect plugin as follows::
3232
.. note::
3333

3434
Depending on the status code, redirecting should change POST/PUT requests to GET requests. This
35-
plugin implements this behaviour - except if you set the ``strict`` option to true, as explained
35+
plugin implements this behavior - except if you set the ``strict`` option to true, as explained
3636
below. It removes the request body if the method changes, see ``stream_factory`` below.
3737

3838
To understand the exact semantics of which HTTP status changes the method and which not, have a

spelling_word_list.txt

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ plugin
2727
plugins
2828
matchers
2929
matcher
30+
Monolog
3031
multipart
3132
natively
3233
param
@@ -35,11 +36,13 @@ profiler
3536
PHP
3637
phpdoc
3738
rebase
39+
redirections
3840
Semver
3941
Seekable
4042
seekable
4143
sexualized
4244
sublicense
45+
superglobals
4346
sync
4447
toolbar
4548
typehint

0 commit comments

Comments
 (0)