From 114947d98f55034ddb55691ca2ca222a294ccbdb Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 22 Aug 2022 20:31:05 +0200 Subject: [PATCH] wip #5410 --- src/Compiler/Compiler.php | 12 ++++++++++++ src/Compiler/CompilerInterface.php | 2 ++ 2 files changed, 14 insertions(+) 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); } -- 2.39.5