Skip to content

Commit

Permalink
fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tezcatl committed Jul 30, 2020
1 parent 0c1f60a commit 496b059
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function toApn($notifiable): ApnHttp2Message
]
)
->setTopic($notifiable->org->topic)
->setCertificateFile($notifiable->org->topic)
->setCertificateFile($notifiable->org->ios_cert_push_file)
;
}
```
Expand Down
2 changes: 1 addition & 1 deletion example/Notifications/ExampleNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Notifications;

use App\Channel\ApnHttp2Message;
use Apantle\ApnHttp2Notification\ApnHttp2Message;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;

Expand Down
2 changes: 1 addition & 1 deletion src/ApnHttp2Message.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Channel;
namespace Apantle\ApnHttp2Notification;

use Carbon\Carbon;
use Illuminate\Support\Arr;
Expand Down

0 comments on commit 496b059

Please sign in to comment.