Skip to content

Commit

Permalink
convert ViteBundler to PHP 7 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Sep 28, 2022
1 parent 8ecdb49 commit 6d599de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Features/ViteBundler.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@

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
{
Expand Down

0 comments on commit 6d599de

Please sign in to comment.