Skip to content

Commit 41e6f8e

Browse files
committed
minor symfony#25250 [FrameworkBundle] Rename getDotEnvVars to getDotenvVars (ro0NL)
This PR was merged into the 3.4 branch. Discussion ---------- [FrameworkBundle] Rename getDotEnvVars to getDotenvVars | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!--highly recommended for new features--> For consistency with symfony#25166 :) Commits ------- de137d2 [FrameworkBundle] Rename getDotEnvVars to getDotenvVars
2 parents dccc5cc + de137d2 commit 41e6f8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/AboutCommand.php

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

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

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

0 commit comments

Comments
 (0)