We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ead305 commit 13f904fCopy full SHA for 13f904f
Extension/Core/DataTransformer/DateIntervalToStringTransformer.php
@@ -23,20 +23,17 @@
23
class DateIntervalToStringTransformer implements DataTransformerInterface
24
{
25
private $format;
26
- private $parseSigned;
27
28
/**
29
* Transforms a \DateInterval instance to a string.
30
*
31
* @see \DateInterval::format() for supported formats
32
33
- * @param string $format The date format
34
- * @param bool $parseSigned Whether to parse as a signed interval
+ * @param string $format The date format
35
*/
36
- public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS', $parseSigned = false)
+ public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS')
37
38
$this->format = $format;
39
- $this->parseSigned = $parseSigned;
40
}
41
42
0 commit comments