From 11d044ac0f8c9d01ae50110684dfc73db84eac79 Mon Sep 17 00:00:00 2001 From: Kuts Dmitriy Date: Tue, 14 Aug 2018 15:47:04 +0200 Subject: [PATCH] $message must be protected --- src/InvalidContentTypeException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/InvalidContentTypeException.php b/src/InvalidContentTypeException.php index 2c82d4d..4458785 100644 --- a/src/InvalidContentTypeException.php +++ b/src/InvalidContentTypeException.php @@ -20,5 +20,5 @@ */ class InvalidContentTypeException extends \Exception { - private $message = 'Content type should be a string or array of NodeElement objects'; + protected $message = 'Content type should be a string or array of NodeElement objects'; }