Skip to content

Commit 010924d

Browse files
Merge branch '3.4' into 4.0
* 3.4: [HttpKernel] fix PHP 5.4 compat Fix surrogate not using original request [Finder] Update RealIteratorTestCase [Routing] remove unneeded dev dep on doctrine/common [minor] SCA [Validator] Remove BOM in some xlf files Fix #27378: Error when rendering a DateIntervalType form with exactly 0 weeks [HttpKernel] fix session tracking in surrogate master requests
2 parents a0a1901 + 41f2bfd commit 010924d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Console/Descriptor/TextDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
311311
$tableRows[] = array('Autoconfigured', $definition->isAutoconfigured() ? 'yes' : 'no');
312312

313313
if ($definition->getFile()) {
314-
$tableRows[] = array('Required File', $definition->getFile() ? $definition->getFile() : '-');
314+
$tableRows[] = array('Required File', $definition->getFile() ?: '-');
315315
}
316316

317317
if ($factory = $definition->getFactory()) {

0 commit comments

Comments
 (0)