Skip to content

Commit

Permalink
add blank lines after file paths in code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed Feb 23, 2019
1 parent e33e9fe commit cb736f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/cookbook/recipe_auto_configure_admin_classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The only thing you need to do is add the configuration for this bundle:
.. code-block:: yaml
# config/packages/sonata_auto_configure.yaml
sonata_auto_configure:
admin:
suffix: Admin
Expand Down
3 changes: 3 additions & 0 deletions docs/cookbook/recipe_workflow_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Let's say we have a ``BlogPost`` entity that is under a Symfony workflow:
.. code-block:: yaml
# config/packages/workflow.yaml
framework:
workflows:
blog_post:
Expand Down Expand Up @@ -54,6 +55,7 @@ You can use the provided extension to take care of your entity admin.
.. code-block:: yaml
# config/packages/sonata_admin.yaml
services:
app.admin.blog_post:
class: App\Admin\BlogPostAdmin
Expand All @@ -77,6 +79,7 @@ You can use the provided extension to take care of your entity admin.
.. code-block:: yaml
# config/packages/sonata_admin.yaml
sonata_admin:
extensions:
admin.extension.workflow.blog_post:
Expand Down
1 change: 1 addition & 0 deletions docs/getting_started/the_form_view.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Bootstrapping the Admin Class
The basic class definition will look the same as the ``CategoryAdmin``::

// src/Admin/BlogPostAdmin.php

namespace App\Admin;

use Sonata\AdminBundle\Admin\AbstractAdmin;
Expand Down

0 comments on commit cb736f4

Please sign in to comment.