Skip to content

Commit 0897c7c

Browse files
committed
fixed CS
1 parent ef8babf commit 0897c7c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Extension/Core/DataTransformer/DateIntervalToArrayTransformer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(array $fields = null, $pad = false)
6262
*
6363
* @return array Interval array
6464
*
65-
* @throws UnexpectedTypeException If the given value is not a \DateInterval instance.
65+
* @throws UnexpectedTypeException if the given value is not a \DateInterval instance
6666
*/
6767
public function transform($dateInterval)
6868
{
@@ -108,8 +108,8 @@ public function transform($dateInterval)
108108
*
109109
* @return \DateInterval Normalized date interval
110110
*
111-
* @throws UnexpectedTypeException If the given value is not an array.
112-
* @throws TransformationFailedException If the value could not be transformed.
111+
* @throws UnexpectedTypeException if the given value is not an array
112+
* @throws TransformationFailedException if the value could not be transformed
113113
*/
114114
public function reverseTransform($value)
115115
{

Extension/Core/DataTransformer/DateIntervalToStringTransformer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS', $parseSigned = fal
4646
*
4747
* @return string An ISO 8601 or relative date string like date interval presentation
4848
*
49-
* @throws UnexpectedTypeException If the given value is not a \DateInterval instance.
49+
* @throws UnexpectedTypeException if the given value is not a \DateInterval instance
5050
*/
5151
public function transform($value)
5252
{
@@ -67,8 +67,8 @@ public function transform($value)
6767
*
6868
* @return \DateInterval An instance of \DateInterval
6969
*
70-
* @throws UnexpectedTypeException If the given value is not a string.
71-
* @throws TransformationFailedException If the date interval could not be parsed.
70+
* @throws UnexpectedTypeException if the given value is not a string
71+
* @throws TransformationFailedException if the date interval could not be parsed
7272
*/
7373
public function reverseTransform($value)
7474
{

FormErrorIterator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public function seek($position)
271271
*
272272
* @param string|string[] $codes The codes to find
273273
*
274-
* @return static New instance which contains only specific errors.
274+
* @return static new instance which contains only specific errors
275275
*/
276276
public function findByCodes($codes)
277277
{

0 commit comments

Comments
 (0)