Skip to content

Commit de261aa

Browse files
committed
Merge branch '2.3' into 2.4
* 2.3: fixed types in phpdocs Conflicts: src/Symfony/Bridge/Twig/TwigEngine.php src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php src/Symfony/Component/Filesystem/Tests/FilesystemTest.php src/Symfony/Component/Form/Extension/Core/ChoiceList/SimpleChoiceList.php src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php src/Symfony/Component/HttpKernel/Controller/ControllerResolverInterface.php src/Symfony/Component/PropertyAccess/PropertyAccessorBuilder.php src/Symfony/Component/Serializer/Encoder/XmlEncoder.php src/Symfony/Component/Stopwatch/StopwatchEvent.php src/Symfony/Component/Templating/PhpEngine.php
2 parents 3633506 + 23cc336 commit de261aa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Options.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Options implements \ArrayAccess, \Iterator, \Countable
5252
* process. If any option is changed after being read, all evaluated
5353
* lazy options that depend on this option would become invalid.
5454
*
55-
* @var Boolean
55+
* @var bool
5656
*/
5757
private $reading = false;
5858

@@ -244,7 +244,7 @@ public function get($option)
244244
*
245245
* @param string $option The option name.
246246
*
247-
* @return Boolean 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 Boolean Whether the option exists.
327+
* @return bool Whether the option exists.
328328
*
329329
* @see \ArrayAccess::offsetExists()
330330
*/

OptionsResolverInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public function setNormalizers(array $normalizers);
175175
*
176176
* @param string $option The name of the option.
177177
*
178-
* @return Boolean 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 Boolean 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)