Skip to content

Some unneded spaces fixed #3083

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 1 commit into from
Nov 3, 2013
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cookbook/console/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Manually logging from a console Command
This one is really simple. When you create a console command within the full
framework as described in ":doc:`/cookbook/console/console_command`", your command
extends :class:`Symfony\\Bundle\\FrameworkBundle\\Command\\ContainerAwareCommand`.
This means that you can simply access the standard logger service through the
This means that you can simply access the standard logger service through the
container and use it to do the logging::

// src/Acme/DemoBundle/Command/GreetCommand.php
Expand Down
6 changes: 3 additions & 3 deletions reference/constraints/CardScheme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CardScheme
The CardScheme validation is new in Symfony 2.2.

This constraint ensures that a credit card number is valid for a given credit card
company. It can be used to validate the number before trying to initiate a payment
company. It can be used to validate the number before trying to initiate a payment
through a payment gateway.

+----------------+--------------------------------------------------------------------------+
Expand All @@ -23,7 +23,7 @@ Basic Usage
-----------

To use the ``CardScheme`` validator, simply apply it to a property or method
on an object that will contain a credit card number.
on an object that will contain a credit card number.

.. configuration-block::

Expand Down Expand Up @@ -103,7 +103,7 @@ schemes

**type**: ``mixed`` [:ref:`default option <validation-default-option>`]

This option is required and represents the name of the number scheme used to
This option is required and represents the name of the number scheme used to
validate the credit card number, it can either be a string or an array. Valid
values are:

Expand Down