Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit 2a333c0

Browse files
authored
Merge pull request #1 from harris21/master
change constructor properties from private to protected
2 parents 8625b34 + 6742c80 commit 2a333c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Domains/Http/Jobs/RespondWithJsonJob.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
class RespondWithJsonJob extends Job
99
{
10-
private $status;
11-
private $content;
12-
private $headers;
13-
private $options;
10+
protected $status;
11+
protected $content;
12+
protected $headers;
13+
protected $options;
1414

1515
public function __construct($content, $status = 200, array $headers = [], $options = 0)
1616
{

0 commit comments

Comments
 (0)