Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Initials.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ public function getInitials(): string
return $this->parameter_initials;
}

public function __toString()
{
return $this->getInitials();
}
public function __toString()
{
return $this->getInitials();
}

/**
/**
* Generate a two-letter initial from a name,
* and if no name, assume its already initials.
* For safety, we limit it to two characters,
Expand Down