Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in docs #17

Merged
merged 2 commits into from
Dec 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/health.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'store' => 'file',
],

Spatie\Health\ResultStores\EloquentHealthResultStore\JsonFileHealthResultStore::class => [
Spatie\Health\ResultStores\JsonFileHealthResultStore::class => [
'disk' => 's3',
'path' => 'health.json',
],
Expand Down
4 changes: 2 additions & 2 deletions docs/installation-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ return [
'store' => 'file',
],

Spatie\Health\ResultStores\EloquentHealthResultStore\JsonFileHealthResultStore::class => [
Spatie\Health\ResultStores\JsonFileHealthResultStore::class => [
'disk' => 's3',
'path' => 'health.json',
],
Expand Down Expand Up @@ -135,7 +135,7 @@ return [

## Migrating the database

This package can store health check results [in various ways](https://spatie.be/docs/laravel-health/v1/storing-results/general). When using the `EloquentHealthResultStore` the check results will be stored in the database. To create the `check_result_history_items` table, you must create and run the migration.
This package can store health check results [in various ways](https://spatie.be/docs/laravel-health/v1/storing-results/general). When using the `EloquentHealthResultStore` the check results will be stored in the database. To create the `health_check_result_history_items` table, you must create and run the migration.

```bash
php artisan vendor:publish --tag="health-migrations"
Expand Down