Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 41e6f8e

Browse filesBrowse files
committed
minor #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 #25166 :) Commits ------- de137d2 [FrameworkBundle] Rename getDotEnvVars to getDotenvVars
2 parents dccc5cc + de137d2 commit 41e6f8e
Copy full SHA for 41e6f8e

File tree

1 file changed

+2
-2
lines changed
Filter options

1 file changed

+2
-2
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Command/AboutCommand.php
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.