Skip to content

Commit 2653d84

Browse files
Merge branch '3.3' into 3.4
* 3.3: (21 commits) [appveyor] disable memory limit on composer up Remove some unused variables and properties Remove some unused variables, properties and methods fix some edge cases with indented blocks [ExpressionLanguage] Fix parse error on 5.3 [HttpKernel] remove noisy frame in controller stack traces [DI] Fix circular-aliases message [ExpressionLanguage] throw an SyntaxError instead of letting a undefined index notice Prevent a loop in aliases within the `findDefinition` method Fix php doc in Table class bumped Symfony version to 3.3.15 updated VERSION for 3.3.14 updated CHANGELOG for 3.3.14 bumped Symfony version to 2.8.33 updated VERSION for 2.8.32 updated CHANGELOG for 2.8.32 bumped Symfony version to 2.7.40 updated VERSION for 2.7.39 update CONTRIBUTORS for 2.7.39 updated CHANGELOG for 2.7.39 ...
2 parents a14e276 + 13f904f commit 2653d84

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Extension/Core/DataTransformer/DateIntervalToStringTransformer.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,17 @@
2323
class DateIntervalToStringTransformer implements DataTransformerInterface
2424
{
2525
private $format;
26-
private $parseSigned;
2726

2827
/**
2928
* Transforms a \DateInterval instance to a string.
3029
*
3130
* @see \DateInterval::format() for supported formats
3231
*
33-
* @param string $format The date format
34-
* @param bool $parseSigned Whether to parse as a signed interval
32+
* @param string $format The date format
3533
*/
36-
public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS', $parseSigned = false)
34+
public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS')
3735
{
3836
$this->format = $format;
39-
$this->parseSigned = $parseSigned;
4037
}
4138

4239
/**

0 commit comments

Comments
 (0)