Skip to content

Fixing syntax for opening note block so notes render correctly #1715

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 18, 2012
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
8 changes: 4 additions & 4 deletions components/dependency_injection/compilation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Compiling the Container

The service container can be compiled for various reasons. These reasons
include checking for any potential issues such as circular references and
making the container more efficient by resolving parameters and removing
making the container more efficient by resolving parameters and removing
unused services.

It is compiled by running::
Expand Down Expand Up @@ -170,7 +170,7 @@ the XML configuration::
return 'http://www.example.com/symfony/schema/';
}

..note::
.. note::

XSD validation is optional, returning ``false`` from the ``getXsdValidationBasePath``
method will disable it.
Expand All @@ -192,7 +192,7 @@ The XML version of the config would then look like this:

</container>

..note::
.. note::

In the Symfony2 full stack framework there is a base Extension class which
implements these methods as well as a shortcut method for processing the
Expand Down Expand Up @@ -371,7 +371,7 @@ but getting an up to date configuration whilst developing your application::
// ...
$container->compile();

if(!$isDebug)
if (!$isDebug) {
$dumper = new PhpDumper($container);
file_put_contents($file, $dumper->dump(array('class' => 'MyCachedContainer')));
}
Expand Down