Skip to content

Commit d02582f

Browse files
committed
Update for 5.4
1 parent 80c3573 commit d02582f

8 files changed

+329
-23
lines changed

.idea/blade.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/notification.iml

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+268
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ IntoTheSource\Notification\NotificationServiceProvider::class,
2121
And at `aliases`:
2222

2323
```php
24-
'Notification' => IntoTheSource\Notification\Facade\Notification::class,
24+
'NotifyMessage' => IntoTheSource\Notification\Facade\NotifyMessage::class,
2525
```
2626

2727
#### Publish files

src/Facade/Notification.php renamed to src/Facade/NotifyMessage.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
use Illuminate\Support\Facades\Facade;
66

7-
class Notification extends Facade {
7+
class NotifyMessage extends Facade
8+
{
89

910
/**
1011
* Get the binding in the IoC container
@@ -13,7 +14,7 @@ class Notification extends Facade {
1314
*/
1415
protected static function getFacadeAccessor()
1516
{
16-
return 'notification';
17+
return 'notifyMessage';
1718
}
1819

1920
}

0 commit comments

Comments
 (0)