Skip to content

Commit d670251

Browse files
authored
More Codestyle
1 parent ac146e7 commit d670251

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/JoomlaBrowser.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,18 +1301,17 @@ public function createUser($name, $username, $password, $email, $userGroup = 'Su
13011301
}
13021302

13031303
/**
1304-
* getConfig
1304+
* Get a value from the configuration
13051305
*
1306-
* @param string $value Get the setting from the option
1306+
* @param string $name Name of the config option
13071307
*
1308-
* @return mixed
1308+
* @return mixed
13091309
*
1310-
* @since version
1311-
* @throws \Codeception\Exception\ModuleException
1310+
* @since 4.0
1311+
* @throws \Codeception\Exception\ModuleException
13121312
*/
1313-
public function getConfig($value)
1313+
public function getConfig($name)
13141314
{
1315-
// return $this->getModule('JoomlaBrowser')->_getConfig($value);
1316-
return $this->config[$value];
1315+
return $this->config[$name];
13171316
}
13181317
}

0 commit comments

Comments
 (0)