Fix CustomResourceAmbiguousTest

This commit is contained in:
Simon Wisselink
2023-01-03 15:02:58 +01:00
parent 98ad1a13af
commit 32df4c6467
2 changed files with 10 additions and 0 deletions

View File

@@ -2335,6 +2335,9 @@ class Smarty extends \Smarty\TemplateBase
return $this; return $this;
} }
public function setAllowAmbiguousResources(bool $allow) {
$this->allow_ambiguous_resources = $allow;
}
} }

View File

@@ -308,6 +308,13 @@ abstract class TemplateBase extends Data {
return $this; return $this;
} }
/**
* @return int
*/
public function getCompileCheck(): int {
return $this->compile_check;
}
/** /**
* @param int $compile_check * @param int $compile_check
*/ */