From 6742c8065f3f39155a9653fb09a5859651929a88 Mon Sep 17 00:00:00 2001 From: Charalampos Raftopoulos Date: Fri, 18 Nov 2016 00:28:26 +0200 Subject: [PATCH] change constructor properties from private to protected --- app/Domains/Http/Jobs/RespondWithJsonJob.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Domains/Http/Jobs/RespondWithJsonJob.php b/app/Domains/Http/Jobs/RespondWithJsonJob.php index 9531132..7e1ac90 100644 --- a/app/Domains/Http/Jobs/RespondWithJsonJob.php +++ b/app/Domains/Http/Jobs/RespondWithJsonJob.php @@ -7,10 +7,10 @@ class RespondWithJsonJob extends Job { - private $status; - private $content; - private $headers; - private $options; + protected $status; + protected $content; + protected $headers; + protected $options; public function __construct($content, $status = 200, array $headers = [], $options = 0) {