]> _ Git - fluidbook_tools.git/commitdiff
wip #5648
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 15 Dec 2022 07:39:21 +0000 (08:39 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 15 Dec 2022 07:39:21 +0000 (08:39 +0100)
src/Compiler/Compiler.php
src/Compiler/CompilerInterface.php
src/Compiler/DummyCompiler.php

index 720d84034e4a8d43f231efaf8d18798e0b9f905a..6073022a6a1a26bf1f7d2fdb03faa683f49bbaf1 100644 (file)
@@ -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.
+    }
 }
index 430c64472fced85a5c71a7f2a825412f8e0ccf2e..b875663bb7b42a03a4e71b819bdb0414c63f8b32 100644 (file)
@@ -42,4 +42,6 @@ interface CompilerInterface
     public function virtualToPhysical($virtual);
 
     public function getPagePDFSource($page): string;
+
+    public function addJsLib($name, $files);
 }
index 176749bb2e70b5366240ef8db3a3eed7e7037ae1..bd672c737263303ef579c2eb3c34ad60427073f4 100644 (file)
@@ -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.
+    }
 }