From 6c6a04bba768e66cbf583ddd505ab7e3edab950a Mon Sep 17 00:00:00 2001 From: Quentin Stoeckel Date: Wed, 31 Oct 2018 16:33:06 +0100 Subject: [PATCH] Various documentation enhancements (#1423) --- Resources/doc/alternative_names.rst | 4 ++-- Resources/doc/faq.rst | 2 +- Resources/doc/index.rst | 11 +++++------ 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/doc/alternative_names.rst b/Resources/doc/alternative_names.rst index 35b051a..b38770c 100644 --- a/Resources/doc/alternative_names.rst +++ b/Resources/doc/alternative_names.rst @@ -1,13 +1,13 @@ Alternative Names ================= -NelmioApiDoc generates automatically the model names but the ``nelmio_api_doc.models.names`` option allows to +NelmioApiDoc automatically generates the model names but the ``nelmio_api_doc.models.names`` option allows to customize the names for some models. Configuration ------------- -You can define alternative names for each group and area combination, the last matching rule is used: +You can define alternative names for each group and area combinations: when conflicts arises, the last matching rule will be used: .. code-block:: yaml diff --git a/Resources/doc/faq.rst b/Resources/doc/faq.rst index 4cecf61..9590d4c 100644 --- a/Resources/doc/faq.rst +++ b/Resources/doc/faq.rst @@ -4,7 +4,7 @@ Frequently Asked Questions (FAQ) Sharing parameter configuration ------------------------------- -Q: I use the same value in multiple end points. How can I avoid duplicating the descriptions? +Q: I use the same value in multiple endpoints. How can I avoid duplicating the descriptions? A: You can configure ``definitions`` in the nelmio_api_doc configuration and then reference them: diff --git a/Resources/doc/index.rst b/Resources/doc/index.rst index 51f175f..848b055 100644 --- a/Resources/doc/index.rst +++ b/Resources/doc/index.rst @@ -2,7 +2,7 @@ NelmioApiDocBundle ================== The **NelmioApiDocBundle** bundle allows you to generate documentation in the -OpenAPI (Swagger) format and provides a sandbox to interactively browse the API documentation. +OpenAPI (Swagger) format and provides a sandbox to interactively experiment with the API. What's supported? ----------------- @@ -88,7 +88,7 @@ Open a command console, enter your project directory and execute the following c How does this bundle work? -------------------------- -It generates you an OpenAPI documentation from your symfony app thanks to +It generates an OpenAPI documentation from your Symfony app thanks to **Describers**. One extracts data from SwaggerPHP annotations, one from your routes, etc. @@ -99,8 +99,7 @@ Using the bundle ---------------- You can configure global information in the bundle configuration ``documentation.info`` section (take a look at -`the OpenAPI 2.0 specification (formerly Swagger)`_ to know the fields -available): +`the OpenAPI 2.0 specification (formerly Swagger)`_ to know the available fields): .. code-block:: yaml @@ -170,7 +169,7 @@ To document your routes, you can use the SwaggerPHP annotations and the } } -The normal PHP docblock for the controller method is used for the summary and description. +The normal PHPdoc block on the controller method is used for the summary and description. Use models ---------- @@ -265,7 +264,7 @@ General PHP objects When using the JMS serializer combined with `willdurand/Hateoas`_ (and the `BazingaHateoasBundle`_), HATEOAS metadata are automatically extracted -If you want to customize the documentation of a property of an object, you can use ``@SWG\Property``:: +If you want to customize the documentation of an object's property, you can use ``@SWG\Property``:: use Nelmio\ApiDocBundle\Annotation\Model; use Swagger\Annotations as SWG;