From: Vincent Vanwaelscappel Date: Thu, 15 Dec 2022 07:39:21 +0000 (+0100) Subject: wip #5648 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=35e600da386673c477c6d0a4d78b2e0d4c59906b;p=fluidbook_tools.git wip #5648 --- 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. + } }