Skip to content

Commit 2aeaa0e

Browse files
authored
Update README.md
1 parent 02368f4 commit 2aeaa0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ A Laravel package to monitor queue jobs. Logs certain information about [queue j
1515

1616
Install the composer package:
1717

18-
```
18+
```php
1919
composer require gilbitron/laravel-queue-monitor
2020
```
2121

2222
Add the service provider in `config/app.php`:
2323

24-
```
24+
```php
2525
/*
2626
* Package Service Providers...
2727
*/
@@ -30,7 +30,7 @@ Gilbitron\LaravelQueueMonitor\LaravelQueueMonitorProvider::class,
3030

3131
Run a migration to setup the `queue_monitor` database table:
3232

33-
```
33+
```php
3434
php artisan migrate
3535
```
3636

@@ -42,7 +42,7 @@ All queue jobs will now be monitored and results stored to the `queue_monitor` d
4242

4343
To save custom data with the queue monitor results you need to include the `QueueMonitorData` trait in your Job and use the `saveQueueMonitorData()` method. For example:
4444

45-
```
45+
```php
4646
<?php
4747

4848
namespace App\Jobs;
@@ -90,4 +90,4 @@ class ExampleJob implements ShouldQueue
9090
## Credits
9191

9292
Laravel Queue Monitor was created by [Gilbert Pellegrom](https://gilbert.pellegrom.me) from
93-
[Dev7studios](https://dev7studios.co). Released under the MIT license.
93+
[Dev7studios](https://dev7studios.co). Released under the MIT license.

0 commit comments

Comments
 (0)