Skip to content

Commit

Permalink
fix(app): Fix email url array typo
Browse files Browse the repository at this point in the history
Also update deps

Signed-off-by: Muhammad Naufal <[email protected]>
  • Loading branch information
falkia34 committed Aug 19, 2024
1 parent 5e8093b commit 7980008
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 57 deletions.
2 changes: 1 addition & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function boot(): void
));
$paths = explode('/', $url['path']);

return $url['scheme'].'://'.$url['host'].(isset($array['port']) ? ':'.$url['port'] : null).'/'.$paths[2].'?id='.$paths[3].'&hash='.$paths[4].'&'.$url['query'];
return $url['scheme'].'://'.$url['host'].(isset($url['port']) ? ':'.$url['port'] : null).'/'.$paths[2].'?id='.$paths[3].'&hash='.$paths[4].'&'.$url['query'];
});
Passport::useClientModel(Client::class);
Passport::usePersonalAccessClientModel(PersonalAccessClient::class);
Expand Down
127 changes: 71 additions & 56 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7980008

Please sign in to comment.