From e1436bb9276014ed25b8d3aa7bea6981de7ccc8e Mon Sep 17 00:00:00 2001 From: David <75451291+dulkoss@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:14:34 +0200 Subject: [PATCH] fix Typed property Vormkracht10\LaravelOK\Checks\StorageCheck::$path must not be accessed before initialization --- src/Checks/StorageCheck.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Checks/StorageCheck.php b/src/Checks/StorageCheck.php index 8236782..014170c 100644 --- a/src/Checks/StorageCheck.php +++ b/src/Checks/StorageCheck.php @@ -10,7 +10,7 @@ class StorageCheck extends Check { - protected ?string $path; + protected ?string $path = null; protected array $disks = [];