Files
expose/app/Server/SubdomainGenerator/RandomSubdomainGenerator.php
Marcel Pociot e5e53b8b68 wip
2020-04-22 12:32:29 +02:00

15 lines
285 B
PHP

<?php
namespace App\Server\SubdomainGenerator;
use Illuminate\Support\Str;
use App\Contracts\SubdomainGenerator;
class RandomSubdomainGenerator implements SubdomainGenerator
{
public function generateSubdomain(): string
{
return strtolower(Str::random(10));
}
}