mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 17:56:30 +05:30
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
namespace common\emails;
|
|
|
|
class EmailHelper {
|
|
|
|
public static function buildTo(string $username, string $email): array {
|
|
return [$email => $username];
|
|
}
|
|
|
|
}
|