From 6f656e4379e3a4b01e19d35f7b501b15320cf437 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Wed, 26 Jun 2024 20:24:27 +0200 Subject: [PATCH] Extra comment clarification --- packages/framework/src/Support/Includes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Support/Includes.php b/packages/framework/src/Support/Includes.php index a032e9ab2dd..6e88fb4506f 100644 --- a/packages/framework/src/Support/Includes.php +++ b/packages/framework/src/Support/Includes.php @@ -43,7 +43,7 @@ public static function path(?string $filename = null): string * * @param string $filename The name of the partial file, including the extension. * @param string|null $default The default value to return if the partial is not found. - * @return string|null The contents of the partial file, or the default value if not found. + * @return string|null The raw contents of the partial file, or the default value if not found. */ public static function get(string $filename, ?string $default = null): ?string {