Skip to content

Commit

Permalink
fix missing build command
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-ivona committed Jan 13, 2021
1 parent e2b643d commit 6d18ea3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use LaravelZero\Framework\Commands\BuildCommand;
use Symfony\Component\Process\Process;

class AppServiceProvider extends ServiceProvider{
Expand Down Expand Up @@ -35,6 +36,8 @@ public function boot(){
*
*/
public function register(){

$this->commands([
BuildCommand::class,
]);
}
}

0 comments on commit 6d18ea3

Please sign in to comment.