Fabien Potencier il y a 14 ans
Parent
commit
a12ea12fc1

+ 1 - 1
src/Symfony/Bundle/DoctrineBundle/Mapping/DisconnectedMetadataFactory.php

@@ -22,4 +22,4 @@ class DisconnectedMetadataFactory extends MetadataFactory
     {
         return 'Doctrine\\ORM\\Tools\\DisconnectedClassMetadataFactory';
     }
-}
+}

+ 1 - 1
src/Symfony/Component/HttpFoundation/Response.php

@@ -152,7 +152,7 @@ class Response
     {
         $this->sendHeaders();
         $this->sendContent();
-        
+
         if (function_exists('fastcgi_finish_request')) {
             fastcgi_finish_request();
         }

+ 1 - 1
src/Symfony/Component/Security/Http/Firewall/LogoutListener.php

@@ -71,7 +71,7 @@ class LogoutListener implements ListenerInterface
 
         $logoutPath = str_replace('{_locale}', $request->getSession()->getLocale(), $this->logoutPath);
         $targetUrl = str_replace('{_locale}', $request->getSession()->getLocale(), $this->targetUrl);
-        
+
         if ($logoutPath !== $request->getPathInfo()) {
             return;
         }

+ 1 - 1
src/Symfony/Component/Serializer/SerializerInterface.php

@@ -122,7 +122,7 @@ interface SerializerInterface
 
     /**
      * Get the encoder for the given format
-     * 
+     *
      * @return EncoderInterface
      * @api
      */

+ 1 - 1
tests/Symfony/Tests/Bridge/Twig/Extension/child_label.html.twig

@@ -1,3 +1,3 @@
 {% block field_label %}
     <label>child</label>
-{% endblock field_label %}
+{% endblock field_label %}

+ 1 - 1
tests/Symfony/Tests/Bridge/Twig/Extension/parent_label.html.twig

@@ -1,3 +1,3 @@
 {% block field_label %}
     <label>parent</label>
-{% endblock field_label %}
+{% endblock field_label %}

+ 1 - 1
tests/Symfony/Tests/Bridge/Twig/Extension/theme.html.twig

@@ -3,4 +3,4 @@
     {% set type = type|default('text') %}
     <input type="{{ type }}" {{ block('attributes') }} value="{{ value }}" rel="theme" />
 {% endspaceless %}
-{% endblock field_widget %}
+{% endblock field_widget %}

+ 1 - 1
tests/Symfony/Tests/Bridge/Twig/Extension/theme_extends.html.twig

@@ -5,4 +5,4 @@
     {% set type = type|default('text') %}
     <input type="{{ type }}" {{ block('attributes') }} value="{{ value }}" rel="theme" />
 {% endspaceless %}
-{% endblock field_widget %}
+{% endblock field_widget %}

+ 1 - 1
tests/Symfony/Tests/Bridge/Twig/Extension/theme_use.html.twig

@@ -5,4 +5,4 @@
     {% set type = type|default('text') %}
     <input type="{{ type }}" {{ block('attributes') }} value="{{ value }}" rel="theme" />
 {% endspaceless %}
-{% endblock field_widget %}
+{% endblock field_widget %}

+ 1 - 1
tests/Symfony/Tests/Component/Form/Extension/Validator/Validator/DelegatingValidatorTest.php

@@ -432,7 +432,7 @@ class DelegatingValidatorTest extends \PHPUnit_Framework_TestCase
             )));
 
         $child->setData(array());
-        
+
         $this->validator->validate($parent);
 
         $this->assertFalse($parent->hasErrors(), '->hasErrors() returns false for parent form');