summaryrefslogtreecommitdiff
path: root/src/Renderer/EngineInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Renderer/EngineInterface.php')
-rw-r--r--src/Renderer/EngineInterface.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Renderer/EngineInterface.php b/src/Renderer/EngineInterface.php
index ca468db5..3bce9c02 100644
--- a/src/Renderer/EngineInterface.php
+++ b/src/Renderer/EngineInterface.php
@@ -11,11 +11,17 @@ interface EngineInterface
* @param mixed[] $data
* @return string
*/
- public function get($path, $data = []);
+ public function get(string $path, array $data = []): string;
/**
* @param string $path
* @return bool
*/
- public function canRender($path);
+ public function canRender(string $path): bool;
+
+ /**
+ * @param string|mixed[] $key
+ * @param mixed $value
+ */
+ public function share($key, $value = null);
}