From d5e3e0fc0176fdb7764669032f02ad1bf638a9d2 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 22 Aug 2022 17:58:45 +0200 Subject: [PATCH] wip #5408 --- src/Compiler/CompilerInterface.php | 4 ++++ src/Compiler/FluidbookCompiler.php | 1 + 2 files changed, 5 insertions(+) diff --git a/src/Compiler/CompilerInterface.php b/src/Compiler/CompilerInterface.php index a16fef7..015f0bc 100644 --- a/src/Compiler/CompilerInterface.php +++ b/src/Compiler/CompilerInterface.php @@ -30,4 +30,8 @@ interface CompilerInterface public function setWorkingDir(string $wdir); public function working_path($path = ''): string; + + public function getWidth(); + + public function getHeight(); } diff --git a/src/Compiler/FluidbookCompiler.php b/src/Compiler/FluidbookCompiler.php index ef14612..0f9f61c 100644 --- a/src/Compiler/FluidbookCompiler.php +++ b/src/Compiler/FluidbookCompiler.php @@ -61,4 +61,5 @@ trait FluidbookCompiler { $this->config->set($key, $value); } + } -- 2.39.5