From 62e43b68ca5e41e79388f3df50235bbb931433b9 Mon Sep 17 00:00:00 2001 From: Florian Roepstorf Date: Mon, 25 Sep 2017 11:37:34 +0200 Subject: [PATCH] fixed missing public declaration --- src/Response/Content/IcsContent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Response/Content/IcsContent.php b/src/Response/Content/IcsContent.php index 0bfd1ca..841eeff 100644 --- a/src/Response/Content/IcsContent.php +++ b/src/Response/Content/IcsContent.php @@ -12,7 +12,7 @@ class IcsContent implements Content /** * @param string $value */ - function __construct(string $value) + public function __construct(string $value) { $this->value = $value; }