Skip to content

Commit

Permalink
Update DefaultOptions.php
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardPerdaan committed Mar 23, 2020
1 parent 4610c30 commit cd7989a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Source/DefaultOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getDefault($option)
*/
public function getMaxCompanyName(?string $address): ?string
{
if (strlen((string)$address) >= self::COMPANY_NAME_MAX_LENGTH) {
if (strlen((string) $address) >= self::COMPANY_NAME_MAX_LENGTH) {
$address = substr($address, 0, 47) . '...';
}

Expand Down

0 comments on commit cd7989a

Please sign in to comment.