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

index 1e26690931110d0ba8270e235663e5b3e7949b88..af5ab4d667b5019c70c75bbb5589942c526ce081 100644 (file)
@@ -30,14 +30,12 @@ class Compiler implements ShouldQueue, ShouldBeUnique, CompilerInterface
     use Styles;
 
 
-
     /**
      * @var string
      */
     protected $out;
 
 
-
     /**
      * @var Source[]
      */
@@ -49,7 +47,6 @@ class Compiler implements ShouldQueue, ShouldBeUnique, CompilerInterface
     protected $pages = [];
 
 
-
     /**
      * @var string
      */
@@ -366,4 +363,10 @@ class Compiler implements ShouldQueue, ShouldBeUnique, CompilerInterface
         // TODO: Implement virtualToPhysical() method.
         return "";
     }
+
+    public function page_path($page, $path = ''): string
+    {
+        // TODO: Implement page_path() method.
+        return '';
+    }
 }
index fa7e6661c23d051014b0e7b12d5bdff91a01cd87..5f56b6696e977e49c1babd8d0e8ecda77b3e5b23 100644 (file)
@@ -33,6 +33,8 @@ interface CompilerInterface
 
     public function source_path($path = ''): string;
 
+    public function page_path($page, $path = ''): string;
+
     public function getWidth();
 
     public function getHeight();