Skip to content

Commit

Permalink
Make properties public.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 10, 2017
1 parent 964fb7f commit 614b94a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Broadcasting/BroadcastEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class BroadcastEvent implements ShouldQueue
*
* @var mixed
*/
protected $event;
public $event;

/**
* Create a new job handler instance.
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Mail/SendQueuedMailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SendQueuedMailable
*
* @var Mailable
*/
protected $mailable;
public $mailable;

/**
* Create a new job instance.
Expand Down
6 changes: 3 additions & 3 deletions src/Illuminate/Notifications/SendQueuedNotifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ class SendQueuedNotifications implements ShouldQueue
*
* @var \Illuminate\Support\Collection
*/
protected $notifiables;
public $notifiables;

/**
* The notification to be sent.
*
* @var \Illuminate\Notifications\Notification
*/
protected $notification;
public $notification;

/**
* All of the channels to send the notification too.
*
* @var array
*/
protected $channels;
public $channels;

/**
* Create a new job instance.
Expand Down

1 comment on commit 614b94a

@Gavrisimo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was just about to send PR for this, but decided to do composer update and checked Illuminate\Notifications\SendQueuedNotifications again and boom - there it was! Thanks @taylorotwell <3

Please sign in to comment.