1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:34:03 +00:00

convert ViteBundler to PHP 7 syntax

This commit is contained in:
Samuel Štancl 2022-09-28 17:06:05 +02:00
parent 8ecdb49531
commit 6d599de067

View file

@ -12,7 +12,12 @@ use Stancl\Tenancy\Vite as StanclVite;
class ViteBundler implements Feature
{
public function __construct(protected Application $app) { }
protected Application $app;
public function __construct(Application $app)
{
$this->app = $app;
}
public function bootstrap(Tenancy $tenancy): void
{