Skip to content

Commit

Permalink
make properties public
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 2, 2017
1 parent f87f4fa commit e40c0e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Queue/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ class Worker
*
* @var bool
*/
protected $shouldQuit = false;
public $shouldQuit = false;

/**
* Indicates if the worker is paused.
*
* @var bool
*/
protected $paused = false;
public $paused = false;

/**
* Create a new queue worker.
Expand Down

0 comments on commit e40c0e7

Please sign in to comment.