Skip to content

Commit

Permalink
Merge branch 'v1' of github.com:99codes/laravel-meeting into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
leopoletto committed Dec 31, 2020
2 parents 218f573 + 3b92b94 commit 0d19b19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Providers/Zoom/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ public function handle()
{
$this->call('vendor:publish', [
'--provider' => 'Nncodes\Meeting\MeetingServiceProvider',
'--tag' => 'migrations'
'--tag' => 'migrations',
]);

$this->call('vendor:publish', [
'--provider' => 'Nncodes\MetaAttributes\MetaAttributesServiceProvider',
'--tag' => 'migrations'
'--tag' => 'migrations',
]);

if($this->option('config')){
if ($this->option('config')) {
$this->call('vendor:publish', [
'--provider' => 'Nncodes\Meeting\MeetingServiceProvider',
'--tag' => 'config'
'--tag' => 'config',
]);
}
}
Expand Down

0 comments on commit 0d19b19

Please sign in to comment.