Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit de137d2

Browse files
authored
[FrameworkBundle] Rename getDotEnvVars to getDotenvVars
1 parent dccc5cc commit de137d2

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)