From 46a344d42b6a9c478118cce2a5806951da22dead Mon Sep 17 00:00:00 2001 From: Ion Bazan Date: Mon, 19 Dec 2022 10:29:26 +0800 Subject: [PATCH] Add missing property --- src/Check/DiskFree.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Check/DiskFree.php b/src/Check/DiskFree.php index 97acb05..acb9268 100644 --- a/src/Check/DiskFree.php +++ b/src/Check/DiskFree.php @@ -126,6 +126,11 @@ class DiskFree extends AbstractCheck implements CheckInterface 3 => 1073741824, // 2^30 == 1024^3 ]; + /** + * The disk path to check. + */ + private string $path; + /** * @param int|string $size Minimum disk size in bytes or a valid byte string (IEC, SI or Jedec). * @param string $path The disk path to check, i.e. '/tmp' or 'C:' (defaults to /)