From 07a478b2c490b51a906ed22fd138f3a2cea55a79 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Sun, 26 Jan 2020 15:45:14 +0300 Subject: [PATCH] Update File.php --- src/Services/File.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/File.php b/src/Services/File.php index cf00e4c..397766b 100644 --- a/src/Services/File.php +++ b/src/Services/File.php @@ -15,7 +15,7 @@ public function __construct(string $content = null) $this->content = $content; } - public static function make(string $content) + public static function make(string $content = null) { return new static($content); }