Skip to content

Commit 1117226

Browse files
committed
Merge branch '3.0'
* 3.0: Fix computation of PR diffs for component matrix lines [console][table] adjust width of colspanned cell. [BUG] Delete class 'control-group' in bootstrap 3 [2.8] [Form] Modified iterator_to_array's 2nd parameter to false in ViolationMapper added missing constant in Response Update HTTP statuses list [Console][#18619] Prevent fatal error when calling Command#getHelper() without helperSet added StaticVerionStrategyTest Add SplFileInfo array doc on Finder iterator methods so that IDE will know what it returns [2.3] [Form] Modified iterator_to_array's 2nd parameter to false in ViolationMapper Updated the link to the list of currency codes Fixed DateTimeInterface comparaison [console][table] adjust width of colspanned cell.
2 parents 25113fb + 80001c2 commit 1117226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataCollector/Util/ValueExporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ValueExporter
2828
public function exportValue($value, $depth = 1, $deep = false)
2929
{
3030
if (is_object($value)) {
31-
if ($value instanceof \DateTime || $value instanceof \DateTimeInterface) {
31+
if ($value instanceof \DateTimeInterface) {
3232
return sprintf('Object(%s) - %s', get_class($value), $value->format(\DateTime::ISO8601));
3333
}
3434

0 commit comments

Comments
 (0)