From: Vincent Vanwaelscappel Date: Mon, 22 Aug 2022 18:31:05 +0000 (+0200) Subject: wip #5410 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=114947d98f55034ddb55691ca2ca222a294ccbdb;p=fluidbook_tools.git wip #5410 --- diff --git a/src/Compiler/Compiler.php b/src/Compiler/Compiler.php index 38c8cb7..1e26690 100644 --- a/src/Compiler/Compiler.php +++ b/src/Compiler/Compiler.php @@ -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 ""; + } } diff --git a/src/Compiler/CompilerInterface.php b/src/Compiler/CompilerInterface.php index a7be888..fa7e666 100644 --- a/src/Compiler/CompilerInterface.php +++ b/src/Compiler/CompilerInterface.php @@ -36,4 +36,6 @@ interface CompilerInterface public function getWidth(); public function getHeight(); + + public function virtualToPhysical($virtual); }