1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 10:14:04 +00:00

Merge branch '3.x' of github.com:stancl/tenancy into 3.x

This commit is contained in:
Samuel Štancl 2020-06-28 11:58:15 +02:00
commit 31af121bac

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Database\Concerns;
trait ConvertsDomainsToLowercase
@ -10,4 +12,4 @@ trait ConvertsDomainsToLowercase
$model->domain = strtolower($model->domain);
});
}
}
}