Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
Fix missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
devngl committed Oct 24, 2019
1 parent 788b1b7 commit 53ce566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name":"philkra/elastic-apm-laravel",
"name":"devngl/elastic-apm-laravel",
"keywords":[
"laravel",
"elastic",
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/ElasticApmServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function getAppConfig(): array
protected function stripVendorTraces(Collection $stackTrace): Collection
{
return collect($stackTrace)->filter(function ($trace) {
return !Str::startsWith((Arr::get($trace, 'file'), [
return !Str::startsWith((Arr::get($trace, 'file')), [
base_path() . '/vendor',
]);
});
Expand Down

0 comments on commit 53ce566

Please sign in to comment.