Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Services instead of Config #572

Merged
merged 1 commit into from
Sep 21, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tutorial/make-homepage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ follows:

.. code-block:: yaml

# src/Acme/BasicCmsBundle/Resources/config/config.yml
# src/Acme/BasicCmsBundle/Resources/config/services.yml
services:
# ...
acme_basiccms.phpcr.initializer.site:
Expand All @@ -152,7 +152,7 @@ follows:

.. code-block:: xml

<!-- src/Acme/BasicCmsBUndle/Resources/config/config.php
<!-- src/Acme/BasicCmsBUndle/Resources/config/services.xml
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand All @@ -173,7 +173,7 @@ follows:

.. code-block:: php

// src/Acme/BasicCmsBundle/Resources/config/config.php
// src/Acme/BasicCmsBundle/Resources/config/services.php

// ...
$container
Expand Down