File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mostafaznv/pdf-optimizer" ,
3
- "description" : " PHP package to optimize PDF files " ,
3
+ "description" : " PDF optimization tool for PHP and Laravel applications " ,
4
4
"keywords" : [
5
5
" pdf" ,
6
6
" pdf-compressor" ,
9
9
" tiny-pdf" ,
10
10
" laravel" ,
11
11
" php" ,
12
+ " ghostscript" ,
12
13
" mostafaznv"
13
14
],
14
15
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -118,17 +118,18 @@ protected $listen = [
118
118
119
119
namespace App\Listeners;
120
120
121
+ use Illuminate\Support\Facades\Log;
121
122
use Mostafaznv\PdfOptimizer\Events\PdfOptimizerJobFinished;
122
123
123
124
124
125
class PdfOptimizerJobNotification
125
126
{
126
127
public function handle(PdfOptimizerJobFinished $event)
127
128
{
128
- info("pdf optimization finished:");
129
- info("id: $event->id");
130
- info("status: $event->status");
131
- info("message: $event->message");
129
+ Log:: info("pdf optimization finished:");
130
+ Log:: info("id: $event->id");
131
+ Log:: info("status: $event->status");
132
+ Log:: info("message: $event->message");
132
133
}
133
134
}
134
135
```
You can’t perform that action at this time.
0 commit comments