]> _ Git - fluidbook_tools.git/commitdiff
wip #5410
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 22 Aug 2022 18:31:05 +0000 (20:31 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 22 Aug 2022 18:31:05 +0000 (20:31 +0200)
src/Compiler/Compiler.php
src/Compiler/CompilerInterface.php

index 38c8cb7e176745bb60acde53ba561863b580c7cd..1e26690931110d0ba8270e235663e5b3e7949b88 100644 (file)
@@ -354,4 +354,16 @@ class Compiler implements ShouldQueue, ShouldBeUnique, CompilerInterface
     }
 
 
+    public function source_path($path = ''): string
+    {
+        // TODO: Implement source_path() method.
+        return '';
+    }
+
+
+    public function virtualToPhysical($virtual): string|int
+    {
+        // TODO: Implement virtualToPhysical() method.
+        return "";
+    }
 }
index a7be888cd814f43c3fde1d54b2d07c69b90800bd..fa7e6661c23d051014b0e7b12d5bdff91a01cd87 100644 (file)
@@ -36,4 +36,6 @@ interface CompilerInterface
     public function getWidth();
 
     public function getHeight();
+
+    public function virtualToPhysical($virtual);
 }