Skip to content

Commit e40c0e7

Browse files
committed
make properties public
1 parent f87f4fa commit e40c0e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Queue/Worker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ class Worker
4444
*
4545
* @var bool
4646
*/
47-
protected $shouldQuit = false;
47+
public $shouldQuit = false;
4848

4949
/**
5050
* Indicates if the worker is paused.
5151
*
5252
* @var bool
5353
*/
54-
protected $paused = false;
54+
public $paused = false;
5555

5656
/**
5757
* Create a new queue worker.

0 commit comments

Comments
 (0)