diff --git a/src/Contracts/Template.php b/src/Contracts/Template.php index 0dadf08..4d22cdb 100644 --- a/src/Contracts/Template.php +++ b/src/Contracts/Template.php @@ -4,7 +4,6 @@ use ChapterThree\AppleNewsAPI\Document\Layouts\Layout; use ChapterThree\AppleNewsAPI\Document\Metadata; -use ChapterThree\AppleNewsAPI\Document\Styles\DocumentStyle; use Statamic\Contracts\Entries\Entry; interface Template @@ -32,6 +31,4 @@ public function componentStyles(): array; public function componentTextStyles(): array; public function textStyles(): array; - - // public function documentStyle(): DocumentStyle; } diff --git a/src/Template.php b/src/Template.php index 060c8b2..66f7d53 100644 --- a/src/Template.php +++ b/src/Template.php @@ -5,7 +5,6 @@ use Aerni\AppleNews\Contracts\Template as Contract; use ChapterThree\AppleNewsAPI\Document\Layouts\Layout; use ChapterThree\AppleNewsAPI\Document\Metadata; -use ChapterThree\AppleNewsAPI\Document\Styles\DocumentStyle; use Statamic\Contracts\Entries\Entry; abstract class Template implements Contract @@ -45,6 +44,4 @@ abstract public function componentStyles(): array; abstract public function componentTextStyles(): array; abstract public function textStyles(): array; - - // abstract public function documentStyle(): DocumentStyle; }