CopyPastor

Detecting plagiarism made easy.

Score: 0.8618014708312745; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2020-03-23
by IbrahimShendy

Original Post

Original - Posted on 2019-12-15
by senty



            
Present in both answers; Present only in the new answer; Present only in the old answer;

It is because of Flare error reporting service enabled in debug mode There is a workaround for this.
Publish flare config file `php artisan vendor:publish --tag=flare-config `
and in config/flare.php
Set
``` 'collect_git_information' => false ```
``` 'reporting' => [ 'anonymize_ips' => true, 'collect_git_information' => false, 'report_queries' => true, 'maximum_number_of_collected_queries' => 200, 'report_query_bindings' => true, 'report_view_data' => true, ], ```
It is because of Flare error reporting service enabled in debug mode There is a workaround for this.
Publish flare config file `php artisan vendor:publish --tag=flare-config`
and in config/flare.php
Set
`'collect_git_information' => false `
``` 'reporting' => [ 'anonymize_ips' => true, 'collect_git_information' => false, 'report_queries' => true, 'maximum_number_of_collected_queries' => 200, 'report_query_bindings' => true, 'report_view_data' => true, ], ```
----
_Taken from [this comment](https://github.com/laravel/framework/issues/30054#issuecomment-538468357) in laravel/framework github issue_

        
Present in both answers; Present only in the new answer; Present only in the old answer;