From 35e600da386673c477c6d0a4d78b2e0d4c59906b Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 15 Dec 2022 08:39:21 +0100 Subject: [PATCH] wip #5648 --- src/Compiler/Compiler.php | 7 +++++++ src/Compiler/CompilerInterface.php | 2 ++ src/Compiler/DummyCompiler.php | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/src/Compiler/Compiler.php b/src/Compiler/Compiler.php index 720d840..6073022 100644 --- a/src/Compiler/Compiler.php +++ b/src/Compiler/Compiler.php @@ -365,4 +365,11 @@ class Compiler implements ShouldQueue, ShouldBeUnique, CompilerInterface } + public function page_path($page, $path = ''): string { + // TODO: Implement page_path() method. + } + + public function addJsLib($name, $files) { + // TODO: Implement addJsLib() method. + } } diff --git a/src/Compiler/CompilerInterface.php b/src/Compiler/CompilerInterface.php index 430c644..b875663 100644 --- a/src/Compiler/CompilerInterface.php +++ b/src/Compiler/CompilerInterface.php @@ -42,4 +42,6 @@ interface CompilerInterface public function virtualToPhysical($virtual); public function getPagePDFSource($page): string; + + public function addJsLib($name, $files); } diff --git a/src/Compiler/DummyCompiler.php b/src/Compiler/DummyCompiler.php index 176749b..bd672c7 100644 --- a/src/Compiler/DummyCompiler.php +++ b/src/Compiler/DummyCompiler.php @@ -73,4 +73,8 @@ class DummyCompiler implements CompilerInterface { public function getPagePDFSource($page): string { // TODO: Implement getPagePDFSource() method. } + + public function addJsLib($name, $files) { + // TODO: Implement addJsLib() method. + } } -- 2.39.5