Skip to content

Commit 5508333

Browse files
committed
Merge branch '2.3' into 2.5
* 2.3: Configure firewall's kernel exception listener with configured entry point or a default entry point PSR-2 fixes [DependencyInjection] make paths relative to __DIR__ in the generated container Fixed the syntax of a composer.json file Fixed the symfony/config version constraint Tweaked the password-compat version constraint Docblock fixes define constant only if it wasn't defined before Fix incorrect spanish translation Fixed typos Conflicts: composer.json src/Symfony/Bridge/Twig/TwigEngine.php src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php src/Symfony/Bundle/FrameworkBundle/composer.json src/Symfony/Component/Console/Descriptor/MarkdownDescriptor.php src/Symfony/Component/Console/Helper/TableHelper.php src/Symfony/Component/Console/Tests/Helper/HelperSetTest.php src/Symfony/Component/Debug/ErrorHandler.php src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php src/Symfony/Component/Form/Tests/Extension/Core/DataMapper/PropertyPathMapperTest.php src/Symfony/Component/HttpFoundation/Response.php src/Symfony/Component/HttpFoundation/StreamedResponse.php src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php src/Symfony/Component/HttpKernel/Controller/ControllerResolverInterface.php src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php src/Symfony/Component/HttpKernel/Tests/DataCollector/RequestDataCollectorTest.php src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php src/Symfony/Component/Process/Process.php src/Symfony/Component/Process/Tests/AbstractProcessTest.php src/Symfony/Component/PropertyAccess/PropertyAccessorBuilder.php src/Symfony/Component/Routing/Tests/Fixtures/validpattern.php src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php src/Symfony/Component/Security/composer.json src/Symfony/Component/Serializer/Encoder/XmlEncoder.php src/Symfony/Component/Serializer/Normalizer/GetSetMethodNormalizer.php src/Symfony/Component/Stopwatch/StopwatchEvent.php src/Symfony/Component/Stopwatch/StopwatchPeriod.php src/Symfony/Component/Templating/PhpEngine.php src/Symfony/Component/Templating/TemplateReference.php src/Symfony/Component/Templating/TemplateReferenceInterface.php src/Symfony/Component/Translation/TranslatorInterface.php src/Symfony/Component/Validator/ConstraintViolation.php src/Symfony/Component/Validator/ExecutionContextInterface.php src/Symfony/Component/Validator/Mapping/ClassMetadata.php src/Symfony/Component/Validator/MetadataFactoryInterface.php
2 parents 1bdfe2e + d7cfe77 commit 5508333

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Options.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public function get($option)
244244
*
245245
* @param string $option The option name.
246246
*
247-
* @return bool Whether the option exists.
247+
* @return bool Whether the option exists.
248248
*/
249249
public function has($option)
250250
{
@@ -324,7 +324,7 @@ public function all()
324324
*
325325
* @param string $option The option name.
326326
*
327-
* @return bool Whether the option exists.
327+
* @return bool Whether the option exists.
328328
*
329329
* @see \ArrayAccess::offsetExists()
330330
*/

OptionsResolverInterface.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ public function setRequired(array $optionNames);
9797
* @return OptionsResolverInterface The resolver instance.
9898
*
9999
* @throws Exception\InvalidOptionsException If an option has not been defined
100-
* (see {@link isKnown()}) for which
101-
* an allowed value is set.
100+
* (see {@link isKnown()}) for which
101+
* an allowed value is set.
102102
*/
103103
public function setAllowedValues(array $allowedValues);
104104

@@ -114,8 +114,8 @@ public function setAllowedValues(array $allowedValues);
114114
* @return OptionsResolverInterface The resolver instance.
115115
*
116116
* @throws Exception\InvalidOptionsException If an option has not been defined
117-
* (see {@link isKnown()}) for which
118-
* an allowed value is set.
117+
* (see {@link isKnown()}) for which
118+
* an allowed value is set.
119119
*/
120120
public function addAllowedValues(array $allowedValues);
121121

@@ -175,7 +175,7 @@ public function setNormalizers(array $normalizers);
175175
*
176176
* @param string $option The name of the option.
177177
*
178-
* @return bool Whether the option is known.
178+
* @return bool Whether the option is known.
179179
*/
180180
public function isKnown($option);
181181

@@ -188,7 +188,7 @@ public function isKnown($option);
188188
*
189189
* @param string $option The name of the option.
190190
*
191-
* @return bool Whether the option is required.
191+
* @return bool Whether the option is required.
192192
*/
193193
public function isRequired($option);
194194

0 commit comments

Comments
 (0)