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:
parent
8ecdb49531
commit
6d599de067
1 changed files with 6 additions and 1 deletions
|
|
@ -12,7 +12,12 @@ use Stancl\Tenancy\Vite as StanclVite;
|
||||||
|
|
||||||
class ViteBundler implements Feature
|
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
|
public function bootstrap(Tenancy $tenancy): void
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue