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

Commit 21292cf

Browse files
committed
properties should not be private for RespondWithJsonErrorJob
1 parent 885d5dc commit 21292cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Domains/Http/Jobs/RespondWithJsonJob.php

Lines changed: 4 additions & 4 deletions
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)