From 9add013038deeb9baedcdb53bb21f16c4a8814ef Mon Sep 17 00:00:00 2001 From: Jens True Date: Tue, 4 Jul 2023 09:45:32 +0000 Subject: [PATCH] Better file support --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.php b/src/App.php index 0b9e4a3..20814d8 100644 --- a/src/App.php +++ b/src/App.php @@ -51,7 +51,7 @@ class App ])), 'log' => Expect::string()->assert( function (string $path): bool { - return is_writable($path); + return touch($path); } )->required(), 'templates' => Expect::structure(['notify' => Expect::string()])