Skip to content

Commit b759c13

Browse files
Merge branch '3.4' into 4.0
* 3.4: [DI] Add missing deprecation when fetching private services from ContainerBuilder [FrameworkBundle] Rename getDotEnvVars to getDotenvVars [DI] Fix false-positive circular exception Use a more specific file for detecting the bridge [HttpKernel] Fix issue when resetting DumpDataCollector bumped Symfony version to 3.4.1 updated VERSION for 3.4.0 updated CHANGELOG for 3.4.0
2 parents 62277d3 + e8bb02f commit b759c13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Command/AboutCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9090
array('Xdebug', extension_loaded('xdebug') ? 'true' : 'false'),
9191
);
9292

93-
if ($dotenv = self::getDotEnvVars()) {
93+
if ($dotenv = self::getDotenvVars()) {
9494
$rows = array_merge($rows, array(
9595
new TableSeparator(),
9696
array('<info>Environment (.env)</>'),
@@ -129,7 +129,7 @@ private static function isExpired(string $date): bool
129129
return false !== $date && new \DateTime() > $date->modify('last day of this month 23:59:59');
130130
}
131131

132-
private static function getDotEnvVars(): array
132+
private static function getDotenvVars(): array
133133
{
134134
$vars = array();
135135
foreach (explode(',', getenv('SYMFONY_DOTENV_VARS')) as $name) {

0 commit comments

Comments
 (0)