Skip to content

Commit

Permalink
Merge 49d136d into 0a28763
Browse files Browse the repository at this point in the history
  • Loading branch information
StijnVrolijk committed Nov 6, 2019
2 parents 0a28763 + 49d136d commit 1aacc35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Frontend/Modules/Profiles/Engine/Profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ public function getRegisteredOn(): int
* Get a profile setting by name.
*
* @param string $name Setting name.
* @param string $defaultValue Default value is used when the setting does not exist.
* @param mixed $defaultValue Default value is used when the setting does not exist.
*
* @return mixed
*/
public function getSetting(string $name, string $defaultValue = null)
public function getSetting(string $name, $defaultValue = null)
{
// if settings array does not exist then get it first
if (empty($this->settings)) {
Expand Down

0 comments on commit 1aacc35

Please sign in to comment.