From 1c10775beb36dc05c9644f92af6c047b6cc41fd6 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Sun, 21 Jan 2024 18:56:30 -0500 Subject: [PATCH] add: Titles to SiteInterface --- src/SiteInterface.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SiteInterface.php b/src/SiteInterface.php index 01403bc..0c696a1 100644 --- a/src/SiteInterface.php +++ b/src/SiteInterface.php @@ -32,4 +32,9 @@ public function publicMeta(Path $at): PublicMeta; public function hasPublicContent(Path $at): bool; public function publicContent(Path $at): PublicContent; + + /** + * @return string[] + */ + public function titles(Path $at): array }