Composer update
* updated Laravel to v5.6.38 * Added laravel tinker in dev dependencies
This commit is contained in:

committed by
Manish Verma

parent
be4b1231b6
commit
6742e13d81
4
vendor/sly/notification-pusher/composer.json
vendored
4
vendor/sly/notification-pusher/composer.json
vendored
@@ -49,8 +49,8 @@
|
||||
"np"
|
||||
],
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"Sly": "src/"
|
||||
"psr-4": {
|
||||
"Sly\\": "src/Sly/"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
0
vendor/sly/notification-pusher/np
vendored
Normal file → Executable file
0
vendor/sly/notification-pusher/np
vendored
Normal file → Executable file
@@ -189,6 +189,7 @@ class Apns extends BaseAdapter implements FeedbackAdapterInterface
|
||||
|
||||
$sound = $message->getOption('sound');
|
||||
$contentAvailable = $message->getOption('content-available');
|
||||
$mutableContent = $message->getOption('mutable-content');
|
||||
$category = $message->getOption('category');
|
||||
$urlArgs = $message->getOption('urlArgs');
|
||||
$expire = $message->getOption('expire');
|
||||
@@ -242,6 +243,10 @@ class Apns extends BaseAdapter implements FeedbackAdapterInterface
|
||||
$serviceMessage->setContentAvailable($contentAvailable);
|
||||
}
|
||||
|
||||
if (null !== $mutableContent) {
|
||||
$serviceMessage->setMutableContent($mutableContent);
|
||||
}
|
||||
|
||||
if (null !== $category) {
|
||||
$serviceMessage->setCategory($category);
|
||||
}
|
||||
|
Reference in New Issue
Block a user